├── LICENSE ├── OpenVBX ├── config │ ├── autoload.php │ ├── cache.php │ ├── config.php │ ├── constants.php │ ├── countrycodes.php │ ├── database-sample.php │ ├── database.php │ ├── datamapper.php │ ├── doctypes.php │ ├── email.php │ ├── hooks.php │ ├── index.html │ ├── mimes.php │ ├── openid.php │ ├── openvbx-sample.php │ ├── openvbx.php │ ├── pagination.php │ ├── routes.php │ ├── smileys.php │ ├── template.php │ ├── user_agents.php │ └── version.php ├── controllers │ ├── account.php │ ├── accounts.php │ ├── audiofiles.php │ ├── auth │ │ ├── connect.php │ │ ├── login.php │ │ ├── logout.php │ │ └── reset.php │ ├── calldetails.php │ ├── charge.php │ ├── client.php │ ├── config.php │ ├── dashboard.php │ ├── devices.php │ ├── dialog.php │ ├── external.php │ ├── flows.php │ ├── home.php │ ├── hook.php │ ├── iframe.php │ ├── index.html │ ├── install.php │ ├── iphone.php │ ├── messages │ │ ├── details.php │ │ ├── inbox.php │ │ ├── message_call.php │ │ ├── message_index.php │ │ └── message_text.php │ ├── numbers.php │ ├── page.php │ ├── pm │ │ ├── accounts.php │ │ ├── ajaxpost.php │ │ ├── autocomplete.php │ │ ├── calendar.php │ │ ├── charge.php │ │ ├── cron.php │ │ ├── facebook_auth.php │ │ ├── home.php │ │ ├── igroupsc.php │ │ ├── login.php │ │ ├── phone.php │ │ ├── tasksc.php │ │ ├── twilio_call.php │ │ ├── twilio_sms.php │ │ ├── twilio_tracker.php │ │ └── uploader.php │ ├── settings │ │ ├── caches.php │ │ └── site.php │ ├── support.php │ ├── twiml.php │ ├── unit │ │ └── api_test.php │ ├── upgrade.php │ └── voicemail.php ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── helpers │ ├── JSON.php │ ├── applet_helper.php │ ├── banner_helper.php │ ├── facebook_helper.php │ ├── format_helper.php │ ├── index.html │ ├── json_helper.php │ ├── mail_helper.php │ ├── model_helper.php │ └── twilio_helper.php ├── hooks │ └── index.html ├── index.html ├── language │ └── english │ │ ├── datamapper_lang.php │ │ ├── index.html │ │ └── openid_lang.php ├── libraries │ ├── Applet.php │ ├── AppletInstance.php │ ├── AppletUI.php │ ├── AppletUI │ │ ├── AppletUIWidget.php │ │ ├── AudioSpeechPickerWidget.php │ │ ├── DropZoneWidget.php │ │ ├── TimeRangeWidget.php │ │ ├── UserGroupPickerWidget.php │ │ ├── init.php │ │ └── templates │ │ │ ├── AudioSpeechPickerTemplate.php │ │ │ ├── DropZoneTemplate.php │ │ │ ├── TimeRangeTemplate.php │ │ │ └── UserGroupPickerTemplate.php │ ├── Caches │ │ ├── Abstract.php │ │ ├── DB.php │ │ └── Local.php │ ├── DialList.php │ ├── ErrorMessages.php │ ├── FlowStore.php │ ├── Github │ │ ├── Api.php │ │ ├── Api │ │ │ ├── Commit.php │ │ │ ├── Issue.php │ │ │ ├── Object.php │ │ │ ├── Organization.php │ │ │ ├── PullRequest.php │ │ │ ├── Repo.php │ │ │ └── User.php │ │ ├── ApiInterface.php │ │ ├── Autoloader.php │ │ ├── Client.php │ │ ├── HttpClient.php │ │ ├── HttpClient │ │ │ ├── Curl.php │ │ │ └── Exception.php │ │ └── HttpClientInterface.php │ ├── GoogleDomain.php │ ├── GoogleUtilityClient.php │ ├── MY_Config.php │ ├── MY_Controller.php │ ├── MY_Model.php │ ├── MY_Pagination.php │ ├── MY_Router.php │ ├── MY_Session.lazy.php │ ├── MY_Session.php │ ├── MY_Session.standard.php │ ├── MY_Table.php │ ├── MY_URI.php │ ├── OpenVBX.php │ ├── PasswordHash.php │ ├── PhoneNumber.php │ ├── Plugin.php │ ├── PluginData.php │ ├── PluginStore.php │ ├── Services │ │ ├── Twilio.php │ │ └── Twilio │ │ │ ├── ArrayDataProxy.php │ │ │ ├── AutoPagingIterator.php │ │ │ ├── CachingDataProxy.php │ │ │ ├── Capability.php │ │ │ ├── DataProxy.php │ │ │ ├── InstanceResource.php │ │ │ ├── ListResource.php │ │ │ ├── Page.php │ │ │ ├── PartialApplicationHelper.php │ │ │ ├── RequestValidator.php │ │ │ ├── Resource.php │ │ │ ├── Rest │ │ │ ├── Account.php │ │ │ ├── Accounts.php │ │ │ ├── Application.php │ │ │ ├── Applications.php │ │ │ ├── AuthorizedConnectApp.php │ │ │ ├── AuthorizedConnectApps.php │ │ │ ├── AvailablePhoneNumber.php │ │ │ ├── AvailablePhoneNumbers.php │ │ │ ├── Call.php │ │ │ ├── Calls.php │ │ │ ├── Conference.php │ │ │ ├── Conferences.php │ │ │ ├── ConnectApp.php │ │ │ ├── ConnectApps.php │ │ │ ├── IncomingPhoneNumber.php │ │ │ ├── IncomingPhoneNumbers.php │ │ │ ├── Notification.php │ │ │ ├── Notifications.php │ │ │ ├── OutgoingCallerId.php │ │ │ ├── OutgoingCallerIds.php │ │ │ ├── Participant.php │ │ │ ├── Participants.php │ │ │ ├── Recording.php │ │ │ ├── Recordings.php │ │ │ ├── Sandbox.php │ │ │ ├── ShortCode.php │ │ │ ├── ShortCodes.php │ │ │ ├── SmsMessage.php │ │ │ ├── SmsMessages.php │ │ │ ├── Transcription.php │ │ │ └── Transcriptions.php │ │ │ ├── RestException.php │ │ │ ├── TinyHttp.php │ │ │ └── Twiml.php │ ├── Template.php │ ├── TwimlResponse.php │ ├── User_Controller.php │ ├── base_facebook.php │ ├── facebook.php │ ├── fb_ca_chain_bundle.crt │ ├── fooStack │ │ ├── Fixture.php │ │ ├── README │ │ ├── Spyc.php │ │ ├── Spyc │ │ │ ├── CHANGES │ │ │ ├── README │ │ │ ├── index.html │ │ │ ├── spyc.php │ │ │ ├── spyc.php5 │ │ │ ├── spyc.yaml │ │ │ ├── test.php │ │ │ ├── test.php5 │ │ │ ├── yaml-dump.php │ │ │ └── yaml-load.php │ │ ├── fooBase │ │ │ ├── Base5.php │ │ │ ├── CodeIgniter.php │ │ │ ├── Common.php │ │ │ ├── config.php │ │ │ ├── index.html │ │ │ └── index.php │ │ ├── fooLoader.php │ │ ├── fooOutput.php │ │ └── index.html │ ├── index.html │ ├── plupload.php │ ├── stripe │ │ ├── Stripe.php │ │ ├── Stripe │ │ │ ├── ApiConnectionError.php │ │ │ ├── ApiError.php │ │ │ ├── ApiRequestor.php │ │ │ ├── ApiResource.php │ │ │ ├── AuthenticationError.php │ │ │ ├── CardError.php │ │ │ ├── Charge.php │ │ │ ├── Coupon.php │ │ │ ├── Customer.php │ │ │ ├── Error.php │ │ │ ├── InvalidRequestError.php │ │ │ ├── Invoice.php │ │ │ ├── InvoiceItem.php │ │ │ ├── Object.php │ │ │ ├── Plan.php │ │ │ ├── Token.php │ │ │ ├── Util.php │ │ │ └── Util │ │ │ │ └── Set.php │ │ └── data │ │ │ └── ca-certificates.crt │ ├── twilio.php │ └── xmlbuilder.php ├── models │ ├── billing.php │ ├── index.html │ ├── phoneresources.php │ ├── pm │ │ ├── billing.php │ │ ├── filemanager.php │ │ ├── igroups_group.php │ │ ├── igroups_user.php │ │ ├── index.html │ │ ├── modules │ │ │ ├── feed.php │ │ │ ├── messages.php │ │ │ └── tasksm.php │ │ ├── owners.php │ │ ├── phonenumbers.php │ │ ├── twiliom.php │ │ ├── usergroups.php │ │ └── users.php │ ├── vbx_accounts.php │ ├── vbx_audio_file.php │ ├── vbx_call.php │ ├── vbx_device.php │ ├── vbx_flow.php │ ├── vbx_flow_store.php │ ├── vbx_group.php │ ├── vbx_incoming_numbers.php │ ├── vbx_message.php │ ├── vbx_plugin_store.php │ ├── vbx_rest_access.php │ ├── vbx_settings.php │ ├── vbx_sms_message.php │ ├── vbx_tenant.php │ ├── vbx_theme.php │ ├── vbx_tracker.php │ ├── vbx_user.php │ └── vbx_user_setting.php ├── scripts │ ├── cron.php │ └── cronlist.txt ├── tests │ ├── AllTests.php │ ├── CIUnit.php │ ├── CIUnitTestCase.php │ ├── CIUnitTestSuite.php │ ├── OpenVBX.php │ ├── OpenVBX_Applet.php │ ├── README.md │ ├── applets │ │ ├── AppletsAllTests.php │ │ ├── conferenceTest.php │ │ ├── dialGroupTest.php │ │ ├── dialNumberTest.php │ │ ├── dialUserTest.php │ │ ├── greetingTest.php │ │ ├── hangupTest.php │ │ ├── menuSmsTest.php │ │ ├── menuVoiceTest.php │ │ ├── smsInboxTest.php │ │ ├── smsReplyTest.php │ │ ├── smsVoiceTest.php │ │ ├── startTest.php │ │ ├── timingTest.php │ │ ├── voicemailGroupPlayTest.php │ │ ├── voicemailGroupSayTest.php │ │ ├── voicemailUserPlayTest.php │ │ └── voicemailUserSayTest.php │ ├── ciunit │ │ ├── CiunitAllTests.php │ │ ├── testAssertions.php │ │ ├── testCIUnit.php │ │ ├── testPHPUnitFeatures.php │ │ └── testSpyc.php │ ├── controllers │ │ └── ControllersAllTests.php │ ├── databaseConfig.php │ ├── database_content.php │ ├── fixtures │ │ ├── Controller_fixt.php │ │ ├── Controller_fixt2.php │ │ ├── annotation_types_fixt.yml │ │ ├── annotations_fixt.yml │ │ ├── audio_files_fixt.yml │ │ ├── auth_types_fixt.yml │ │ ├── base.yaml │ │ ├── flow_store_fixt.yml │ │ ├── flows_fixt.yml │ │ ├── group_annotations_fixt.yml │ │ ├── group_messages_fixt.yml │ │ ├── groups_fixt.yml │ │ ├── groups_users_fixt.yml │ │ ├── messages_fixt.yml │ │ ├── numbers_fixt.yml │ │ ├── plugin_store_fixt.yml │ │ ├── rest_access_fixt.yml │ │ ├── settings_fixt.yml │ │ ├── tenants_fixt.yml │ │ ├── user_annotations_fixt.yml │ │ ├── user_messages_fixt.yml │ │ ├── user_settings_fixt.yml │ │ ├── users_fixt.yml │ │ ├── view_fixt.php │ │ └── view_fixt2.php │ ├── generate │ ├── generate.php │ ├── getops.php │ ├── helpers │ │ └── HelpersAllTests.php │ ├── libs │ │ └── LibsAllTests.php │ ├── mocks │ │ ├── setupMocks.php │ │ └── twilio_helper.php │ ├── models │ │ └── ModelsAllTests.php │ ├── settings.php │ ├── system │ │ ├── SystemAllTests.php │ │ └── testPhp.php │ └── views │ │ └── ViewsAllTests.php └── views │ ├── account-deauthorized.php │ ├── account.php │ ├── accounts.php │ ├── banners │ ├── bug-banners.php │ └── flows-start.php │ ├── call.php │ ├── calldetails │ └── index.php │ ├── client_js.php │ ├── connect.php │ ├── dashboard │ └── index.php │ ├── devices.php │ ├── dialer │ ├── devices.php │ ├── dialer.php │ ├── make-call-form.php │ ├── numbers.php │ ├── on-call-pad.php │ └── users-list.php │ ├── dialog │ └── usergroup.php │ ├── emails │ ├── iphone-guide.php │ ├── message.php │ ├── message_assigned.php │ ├── password-reset.php │ └── welcome-user.php │ ├── external-js-redirect.php │ ├── flow.php │ ├── flows.php │ ├── home │ ├── index.php │ ├── privacy.php │ └── tos.php │ ├── iframe.php │ ├── index.html │ ├── js-init.php │ ├── layout │ ├── content │ │ ├── analytics.php │ │ ├── content_footer.php │ │ ├── content_header.php │ │ ├── content_main.php │ │ ├── content_sidebar.php │ │ ├── context_menu.php │ │ ├── error_dialog.php │ │ ├── footer.php │ │ ├── header.php │ │ ├── newlook.php │ │ ├── utility_menu.php │ │ ├── wrapper_footer.php │ │ └── wrapper_header.php │ ├── dialer │ │ ├── analytics.php │ │ ├── content_footer.php │ │ ├── content_header.php │ │ ├── content_main.php │ │ ├── content_sidebar.php │ │ ├── context_menu.php │ │ ├── error_dialog.php │ │ ├── footer.php │ │ ├── header.php │ │ ├── utility_menu.php │ │ ├── wrapper_footer.php │ │ └── wrapper_header.php │ ├── flow-editor │ │ ├── analytics.php │ │ ├── content_footer.php │ │ ├── content_header.php │ │ ├── content_main.php │ │ ├── content_sidebar.php │ │ ├── context_menu.php │ │ ├── error_dialog.php │ │ ├── footer.php │ │ ├── header.php │ │ ├── utility_menu.php │ │ ├── wrapper_footer.php │ │ └── wrapper_header.php │ ├── login │ │ ├── analytics.php │ │ ├── content_footer.php │ │ ├── content_header.php │ │ ├── content_main.php │ │ ├── content_sidebar.php │ │ ├── context_menu.php │ │ ├── error_dialog.php │ │ ├── footer.php │ │ ├── header.php │ │ ├── utility_menu.php │ │ ├── wrapper_footer.php │ │ └── wrapper_header.php │ └── template.php │ ├── login.php │ ├── messages │ ├── details.php │ └── inbox.php │ ├── numbers │ ├── available.php │ ├── dialog-add.php │ ├── dialog-change.php │ ├── dialog-delete.php │ ├── dialog-other-details.php │ ├── incoming.php │ ├── menu-top.php │ ├── numbers-start.php │ ├── numbers.php │ └── other.php │ ├── page │ ├── config.php │ └── index.php │ ├── pm │ ├── charge │ │ └── index.php │ ├── default │ │ ├── blackbar.php │ │ ├── content.php │ │ ├── footer.php │ │ ├── frontpage.php │ │ ├── google_tracking.php │ │ ├── homepage.php │ │ ├── homepage_head.php │ │ ├── menu_bar.php │ │ ├── resultspage.php │ │ ├── sidebar.php │ │ ├── top_left_searchbar.php │ │ └── top_right.php │ ├── facebook_view.php │ ├── igroups │ │ ├── groups.php │ │ └── home.php │ ├── js-init.php │ ├── layout │ │ ├── content │ │ │ ├── footer.php │ │ │ ├── footer2.php │ │ │ ├── header.php │ │ │ ├── leftbar.php │ │ │ ├── main.php │ │ │ ├── modules │ │ │ │ ├── calendar.php │ │ │ │ ├── calendar │ │ │ │ │ ├── edit.php │ │ │ │ │ └── main.php │ │ │ │ ├── dashboard.php │ │ │ │ ├── feed.php │ │ │ │ ├── file_init.php │ │ │ │ ├── file_slim.php │ │ │ │ ├── groups.php │ │ │ │ ├── members.php │ │ │ │ ├── messages.php │ │ │ │ └── tasks.php │ │ │ ├── nl.php │ │ │ ├── rleft.php │ │ │ ├── rright.php │ │ │ ├── slim.php │ │ │ └── topbar.php │ │ ├── homepage.php │ │ ├── phone │ │ │ ├── footer.php │ │ │ ├── header.php │ │ │ ├── leftbar.php │ │ │ ├── main.php │ │ │ ├── modules │ │ │ │ ├── calendar.php │ │ │ │ ├── calendar │ │ │ │ │ ├── edit.php │ │ │ │ │ └── main.php │ │ │ │ ├── dashboard.php │ │ │ │ ├── feed.php │ │ │ │ ├── file_init.php │ │ │ │ ├── file_slim.php │ │ │ │ ├── groups.php │ │ │ │ ├── members.php │ │ │ │ ├── messages.php │ │ │ │ ├── metrics.php │ │ │ │ └── tasks.php │ │ │ └── slim.php │ │ ├── phonetemplate.php │ │ └── template.php │ ├── login │ │ └── index.php │ ├── simple.php │ └── static_gu.php │ ├── reset.php │ ├── set-password.php │ ├── settings │ ├── client-application-notices.php │ ├── license.php │ ├── site-about.php │ ├── site-multi-tenant.php │ ├── site-plugins.php │ ├── site-system-config.php │ ├── site-theme.php │ ├── site-twilio-account.php │ ├── site.php │ ├── tenant.php │ ├── twilio-sid-notices.php │ ├── twilio-token-notices.php │ └── upgrade-notice.php │ ├── steps.php │ ├── unit.php │ ├── upgrade │ ├── main.php │ └── min-php-req-notice.php │ ├── user_group_dialogs.php │ ├── view_openid.php │ ├── view_policy.php │ └── voicemail.php ├── README.md ├── assets ├── c │ ├── Makefile │ ├── admin.css │ ├── applet.css │ ├── buttons.css │ ├── client.css │ ├── content.css │ ├── context-menu.css │ ├── controls.css │ ├── devices.css │ ├── flows.css │ ├── forms.css │ ├── global.css │ ├── ie.css │ ├── iframe.css │ ├── install.css │ ├── jplayer.css │ ├── login.css │ ├── master.css │ ├── messages.css │ ├── minify │ ├── navigation.css │ ├── plugin.css │ ├── reset-fonts-grids-2.8.css │ ├── site-css.sources │ ├── timePicker.css │ ├── uploadify.css │ ├── utility-menu.css │ └── voicemail.css ├── i │ ├── action-icons-mini-sprite.png │ ├── action-icons-sprite.png │ ├── add-button-bg.png │ ├── ajax-loader-circle-dark.gif │ ├── ajax-loader-circle.gif │ ├── ajax-loader.gif │ ├── applet-drag-grip.png │ ├── applet-icons-sprite.png │ ├── assign-owner-button-bg.png │ ├── button-bg.png │ ├── call-button-bg.png │ ├── client-first-run-arrow.png │ ├── client-first-run-bg.png │ ├── countries │ │ ├── ac.png │ │ ├── ad.png │ │ ├── ae.png │ │ ├── af.png │ │ ├── ag.png │ │ ├── ai.png │ │ ├── al.png │ │ ├── am.png │ │ ├── an.png │ │ ├── ao.png │ │ ├── ar.png │ │ ├── as.png │ │ ├── at.png │ │ ├── au.png │ │ ├── aw.png │ │ ├── ax.png │ │ ├── az.png │ │ ├── ba.png │ │ ├── bb.png │ │ ├── bd.png │ │ ├── be.png │ │ ├── bf.png │ │ ├── bg.png │ │ ├── bh.png │ │ ├── bi.png │ │ ├── bj.png │ │ ├── bm.png │ │ ├── bn.png │ │ ├── bo.png │ │ ├── br.png │ │ ├── bs.png │ │ ├── bt.png │ │ ├── bv.png │ │ ├── bw.png │ │ ├── by.png │ │ ├── bz.png │ │ ├── ca.png │ │ ├── catalonia.png │ │ ├── cc.png │ │ ├── cd.png │ │ ├── cf.png │ │ ├── cg.png │ │ ├── ch.png │ │ ├── ci.png │ │ ├── ck.png │ │ ├── cl.png │ │ ├── cm.png │ │ ├── cn.png │ │ ├── co.png │ │ ├── cr.png │ │ ├── cs.png │ │ ├── cu.png │ │ ├── cv.png │ │ ├── cx.png │ │ ├── cy.png │ │ ├── cz.png │ │ ├── de.png │ │ ├── dj.png │ │ ├── dk.png │ │ ├── dm.png │ │ ├── do.png │ │ ├── dr.png │ │ ├── dz.png │ │ ├── ec.png │ │ ├── ee.png │ │ ├── eg.png │ │ ├── eh.png │ │ ├── england.png │ │ ├── er.png │ │ ├── es.png │ │ ├── et.png │ │ ├── europeanunion.png │ │ ├── fam.png │ │ ├── fi.png │ │ ├── fj.png │ │ ├── fk.png │ │ ├── fm.png │ │ ├── fo.png │ │ ├── fr.png │ │ ├── ga.png │ │ ├── gb.png │ │ ├── gd.png │ │ ├── ge.png │ │ ├── gf.png │ │ ├── gh.png │ │ ├── gi.png │ │ ├── gl.png │ │ ├── gm.png │ │ ├── gn.png │ │ ├── gp.png │ │ ├── gq.png │ │ ├── gr.png │ │ ├── gs.png │ │ ├── gt.png │ │ ├── gu.png │ │ ├── gw.png │ │ ├── gy.png │ │ ├── hk.png │ │ ├── hm.png │ │ ├── hn.png │ │ ├── hr.png │ │ ├── ht.png │ │ ├── hu.png │ │ ├── ic.png │ │ ├── id.png │ │ ├── ie.png │ │ ├── il.png │ │ ├── in.png │ │ ├── io.png │ │ ├── iq.png │ │ ├── ir.png │ │ ├── is.png │ │ ├── it.png │ │ ├── je.png │ │ ├── jm.png │ │ ├── jo.png │ │ ├── jp.png │ │ ├── ke.png │ │ ├── kg.png │ │ ├── kh.png │ │ ├── ki.png │ │ ├── km.png │ │ ├── kn.png │ │ ├── kp.png │ │ ├── kr.png │ │ ├── kw.png │ │ ├── ky.png │ │ ├── kz.png │ │ ├── la.png │ │ ├── lb.png │ │ ├── lc.png │ │ ├── li.png │ │ ├── lk.png │ │ ├── lr.png │ │ ├── ls.png │ │ ├── lt.png │ │ ├── lu.png │ │ ├── lv.png │ │ ├── ly.png │ │ ├── ma.png │ │ ├── mc.png │ │ ├── md.png │ │ ├── me.png │ │ ├── mg.png │ │ ├── mh.png │ │ ├── mk.png │ │ ├── ml.png │ │ ├── mm.png │ │ ├── mn.png │ │ ├── mo.png │ │ ├── mp.png │ │ ├── mq.png │ │ ├── mr.png │ │ ├── ms.png │ │ ├── mt.png │ │ ├── mu.png │ │ ├── mv.png │ │ ├── mw.png │ │ ├── mx.png │ │ ├── my.png │ │ ├── mz.png │ │ ├── na.png │ │ ├── nc.png │ │ ├── ne.png │ │ ├── nf.png │ │ ├── ng.png │ │ ├── ni.png │ │ ├── nl.png │ │ ├── no.png │ │ ├── np.png │ │ ├── nr.png │ │ ├── nu.png │ │ ├── nz.png │ │ ├── om.png │ │ ├── pa.png │ │ ├── pe.png │ │ ├── pf.png │ │ ├── pg.png │ │ ├── ph.png │ │ ├── pk.png │ │ ├── pl.png │ │ ├── pm.png │ │ ├── pn.png │ │ ├── pr.png │ │ ├── ps.png │ │ ├── pt.png │ │ ├── pw.png │ │ ├── py.png │ │ ├── qa.png │ │ ├── qk.png │ │ ├── qy.png │ │ ├── re.png │ │ ├── ro.png │ │ ├── rs.png │ │ ├── ru.png │ │ ├── rw.png │ │ ├── sa.png │ │ ├── sb.png │ │ ├── sc.png │ │ ├── scotland.png │ │ ├── sd.png │ │ ├── se.png │ │ ├── sg.png │ │ ├── sh.png │ │ ├── si.png │ │ ├── sj.png │ │ ├── sk.png │ │ ├── sl.png │ │ ├── sm.png │ │ ├── sn.png │ │ ├── so.png │ │ ├── sr.png │ │ ├── st.png │ │ ├── sv.png │ │ ├── sy.png │ │ ├── sz.png │ │ ├── tc.png │ │ ├── td.png │ │ ├── tf.png │ │ ├── tg.png │ │ ├── th.png │ │ ├── tj.png │ │ ├── tk.png │ │ ├── tl.png │ │ ├── tm.png │ │ ├── tn.png │ │ ├── to.png │ │ ├── tr.png │ │ ├── tt.png │ │ ├── tv.png │ │ ├── tw.png │ │ ├── tz.png │ │ ├── ua.png │ │ ├── ug.png │ │ ├── um.png │ │ ├── us.png │ │ ├── uy.png │ │ ├── uz.png │ │ ├── va.png │ │ ├── vc.png │ │ ├── ve.png │ │ ├── vg.png │ │ ├── vi.png │ │ ├── vn.png │ │ ├── vu.png │ │ ├── wales.png │ │ ├── wf.png │ │ ├── ws.png │ │ ├── ye.png │ │ ├── yt.png │ │ ├── za.png │ │ ├── zm.png │ │ └── zw.png │ ├── device-drag-grip.png │ ├── devices-icon.png │ ├── dropdown-select-button-bg.png │ ├── email-button-bg.png │ ├── email.png │ ├── flowline-nav-arrows-sprite.png │ ├── flows-icon.png │ ├── form-input-text-150.png │ ├── form-input-text-200.png │ ├── form-input-text-300.png │ ├── form-input-text-50.png │ ├── form-input-text-600.png │ ├── icon.png │ ├── info-banner-icon.png │ ├── install │ │ └── header.png │ ├── iphone-icon-58.png │ ├── main-context-menu-bg.png │ ├── message-status-icon-bg.png │ ├── messages-icon.png │ ├── mic_big.png │ ├── normal-button-bg.png │ ├── numbers-icon.png │ ├── openvbx-header-logo.png │ ├── openvbx-install-logo.png │ ├── overlay.png │ ├── play-pause-stop-bg.png │ ├── quick-call-button-bg.png │ ├── quick-call-popup-button-bg.png │ ├── quick-sms-button-bg.png │ ├── quick-sms-popup-button-bg.png │ ├── remove-user.png │ ├── sms-button-bg.png │ ├── standard-icons-sprite.png │ ├── submit-button-bg.png │ ├── timepicker-add.png │ ├── timepicker-remove.png │ ├── toggle-arrow-16.png │ ├── user-drag-grip.png │ ├── user-group-icon.png │ ├── user-group-picker-group-icon.png │ ├── user-group-picker-person-icon.png │ ├── user-group-utilities.png │ ├── user-icon.png │ ├── user-list-status-icon-sprite.png │ ├── user.png │ ├── users.png │ ├── vbx-client-status.png │ └── voicemail-icon.png ├── index.html ├── j │ ├── Makefile │ ├── account.js │ ├── accounts.js │ ├── client.js │ ├── compiler.jar │ ├── demo.js │ ├── devices.js │ ├── flow.js │ ├── flows.js │ ├── frameworks │ │ ├── jquery-1.4.2.js │ │ ├── jquery-1.6.2.min.js │ │ ├── jquery-ui-1.8.14.custom.min.js │ │ └── jquery-ui.js │ ├── global.js │ ├── highcharts │ │ ├── adapters │ │ │ ├── mootools-adapter.js │ │ │ ├── mootools-adapter.src.js │ │ │ ├── prototype-adapter.js │ │ │ └── prototype-adapter.src.js │ │ ├── highcharts.js │ │ ├── highcharts.src.js │ │ ├── modules │ │ │ ├── exporting.js │ │ │ └── exporting.src.js │ │ └── themes │ │ │ ├── dark-blue.js │ │ │ ├── dark-green.js │ │ │ ├── gray.js │ │ │ └── grid.js │ ├── iframe.js │ ├── install.js │ ├── messages.js │ ├── modal-tabs.js │ ├── numbers.js │ ├── packer │ ├── pickers.js │ ├── plugins │ │ ├── buttonista.js │ │ ├── call-and-sms-dialogs.js │ │ ├── flicker.js │ │ ├── jquery.address-1.0.min.js │ │ ├── jquery.animateToClass.js │ │ ├── jquery.ba-hashchange.js │ │ ├── jquery.cookie.js │ │ ├── jquery.livequery.js │ │ ├── jquery.swfupload.js │ │ ├── jquery.tabify.js │ │ ├── jquery.timePicker.min.js │ │ ├── jquery.validate.js │ │ ├── json.js │ │ └── static.js │ ├── settings.js │ ├── site-app.sources │ ├── site-bootstrap.sources │ ├── site-externals.sources │ ├── sound.js │ ├── soundmanager2 │ │ ├── soundmanager2.js │ │ ├── soundmanager2.swf │ │ ├── soundmanager2_debug.swf │ │ ├── soundmanager2_flash9.swf │ │ ├── soundmanager2_flash9_debug.swf │ │ └── soundmanager2_flash_xdomain.zip │ ├── steps.js │ ├── swfupload │ │ ├── swfupload.cookies.js │ │ ├── swfupload.js │ │ ├── swfupload.queue.js │ │ ├── swfupload.swf │ │ └── transparent_538x68.png │ ├── timepicker.js │ ├── update-check.js │ ├── upgrade.js │ └── welcome.js ├── min │ ├── .htaccess │ ├── README.txt │ ├── builder │ │ ├── _index.js │ │ ├── bm.js │ │ ├── index.php │ │ ├── ocCheck.php │ │ └── rewriteTest.js │ ├── config.php │ ├── groupsConfig.php │ ├── index.php │ ├── lib │ │ ├── FirePHP.php │ │ ├── HTTP │ │ │ ├── ConditionalGet.php │ │ │ └── Encoder.php │ │ ├── JSMin.php │ │ ├── JSMinPlus.php │ │ ├── Minify.php │ │ ├── Minify │ │ │ ├── Build.php │ │ │ ├── CSS.php │ │ │ ├── CSS │ │ │ │ ├── Compressor.php │ │ │ │ └── UriRewriter.php │ │ │ ├── Cache │ │ │ │ └── File.php │ │ │ ├── CommentPreserver.php │ │ │ ├── Controller │ │ │ │ ├── Base.php │ │ │ │ ├── Files.php │ │ │ │ ├── Groups.php │ │ │ │ ├── MinApp.php │ │ │ │ ├── Page.php │ │ │ │ └── Version1.php │ │ │ ├── HTML.php │ │ │ ├── ImportProcessor.php │ │ │ ├── Lines.php │ │ │ ├── Logger.php │ │ │ ├── Packer.php │ │ │ ├── Source.php │ │ │ └── YUICompressor.php │ │ └── Solar │ │ │ └── Dir.php │ └── utils.php ├── pm │ ├── css │ │ ├── blitzer │ │ │ ├── images │ │ │ │ ├── ui-bg_diagonals-thick_75_f3d8d8_40x40.png │ │ │ │ ├── ui-bg_dots-small_65_a6a6a6_2x2.png │ │ │ │ ├── ui-bg_flat_0_333333_40x100.png │ │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf8ee_1x400.png │ │ │ │ ├── ui-bg_highlight-hard_100_eeeeee_1x100.png │ │ │ │ ├── ui-bg_highlight-hard_100_f6f6f6_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_15_cc0000_1x100.png │ │ │ │ ├── ui-icons_004276_256x240.png │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ └── jquery-ui-1.8.10.custom.css │ │ ├── bootstrap-1.3.css │ │ ├── bootstrap-1.4 │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min-1.3.css │ │ ├── bootstrap.min.css │ │ ├── calendar │ │ │ ├── Error.css │ │ │ ├── alert.css │ │ │ ├── calendar.css │ │ │ ├── colorselect.css │ │ │ ├── dailog.css │ │ │ ├── dp.css │ │ │ ├── dropdown.css │ │ │ ├── images │ │ │ │ ├── alert │ │ │ │ │ ├── bot.gif │ │ │ │ │ ├── close.gif │ │ │ │ │ ├── corners.gif │ │ │ │ │ ├── cornersBlue.gif │ │ │ │ │ ├── help.gif │ │ │ │ │ ├── important.gif │ │ │ │ │ ├── info.gif │ │ │ │ │ ├── title.gif │ │ │ │ │ └── title1.gif │ │ │ │ ├── bgs │ │ │ │ │ ├── CardHeadbg.jpg │ │ │ │ │ ├── CardHeadbg.png │ │ │ │ │ ├── ch.gif │ │ │ │ │ ├── headbg.gif │ │ │ │ │ ├── minus1.gif │ │ │ │ │ └── plus1.gif │ │ │ │ ├── calendar │ │ │ │ │ ├── bubble_combined.png │ │ │ │ │ ├── combined.gif │ │ │ │ │ ├── grid.png │ │ │ │ │ ├── gridth.gif │ │ │ │ │ ├── headbg.gif │ │ │ │ │ ├── indicator_web20_working.gif │ │ │ │ │ ├── load-bg.png │ │ │ │ │ └── tbg.gif │ │ │ │ ├── dailog │ │ │ │ │ ├── app-form.png │ │ │ │ │ ├── headbg.gif │ │ │ │ │ ├── left-corners.png │ │ │ │ │ ├── left-right.png │ │ │ │ │ ├── right-corners.png │ │ │ │ │ ├── tool-sprites.gif │ │ │ │ │ └── top-bottom.png │ │ │ │ ├── dp │ │ │ │ │ ├── btn-arrow-light.gif │ │ │ │ │ └── btn-arrow.gif │ │ │ │ ├── dropdown │ │ │ │ │ ├── dropdown.gif │ │ │ │ │ └── dropdownhover.gif │ │ │ │ ├── home │ │ │ │ │ ├── logo.gif │ │ │ │ │ ├── toolbarbg.jpg │ │ │ │ │ └── top_bg.jpg │ │ │ │ ├── icons │ │ │ │ │ ├── Btn.Close.gif │ │ │ │ │ ├── Item.Add.gif │ │ │ │ │ ├── Item.Delete.gif │ │ │ │ │ ├── Item.Edit.gif │ │ │ │ │ ├── Item.Input.gif │ │ │ │ │ ├── Item.Save.gif │ │ │ │ │ ├── Item.Search.gif │ │ │ │ │ ├── add.png │ │ │ │ │ ├── appt.gif │ │ │ │ │ ├── au.gif │ │ │ │ │ ├── cacheClear.png │ │ │ │ │ ├── cal-day.gif │ │ │ │ │ ├── cal-month.gif │ │ │ │ │ ├── cal-proc.gif │ │ │ │ │ ├── cal-rsc-perm.gif │ │ │ │ │ ├── cal-week.gif │ │ │ │ │ ├── cal-wk-week.gif │ │ │ │ │ ├── cal.gif │ │ │ │ │ ├── calendar.gif │ │ │ │ │ ├── calwrkwk.gif │ │ │ │ │ ├── canmtg.gif │ │ │ │ │ ├── circle_animation.gif │ │ │ │ │ ├── clndr.gif │ │ │ │ │ ├── clndrsmll.gif │ │ │ │ │ ├── cn.gif │ │ │ │ │ ├── date.png │ │ │ │ │ ├── date_add.png │ │ │ │ │ ├── date_reflash.png │ │ │ │ │ ├── delete.png │ │ │ │ │ ├── edit.png │ │ │ │ │ ├── folder_user.gif │ │ │ │ │ ├── group.gif │ │ │ │ │ ├── group_add.gif │ │ │ │ │ ├── hk.png │ │ │ │ │ ├── ico1.gif │ │ │ │ │ ├── indicator.gif │ │ │ │ │ ├── msg_center.gif │ │ │ │ │ ├── msg_email.gif │ │ │ │ │ ├── msg_im.gif │ │ │ │ │ ├── msg_mobile.gif │ │ │ │ │ ├── mtgreq-cancel.gif │ │ │ │ │ ├── mtgreq.gif │ │ │ │ │ ├── mtgrsp-accept.gif │ │ │ │ │ ├── mtgrsp-decline.gif │ │ │ │ │ ├── mtgrsp-tent.gif │ │ │ │ │ ├── pgrs-sm.gif │ │ │ │ │ ├── resultset_next.png │ │ │ │ │ ├── resultset_previous.png │ │ │ │ │ ├── rowdelete.png │ │ │ │ │ ├── table.gif │ │ │ │ │ ├── table_c.gif │ │ │ │ │ ├── table_copy.png │ │ │ │ │ ├── table_r.png │ │ │ │ │ ├── table_refresh.png │ │ │ │ │ ├── tick.png │ │ │ │ │ ├── turnback.png │ │ │ │ │ ├── us.gif │ │ │ │ │ └── view.png │ │ │ │ ├── share │ │ │ │ │ ├── card.gif │ │ │ │ │ ├── glass-bg.gif │ │ │ │ │ ├── hd-sprite.gif │ │ │ │ │ ├── headbg.gif │ │ │ │ │ ├── information.png │ │ │ │ │ ├── left-btn.gif │ │ │ │ │ ├── right-btn.gif │ │ │ │ │ ├── table.gif │ │ │ │ │ ├── table_c.gif │ │ │ │ │ ├── tbg.gif │ │ │ │ │ └── tool-sprites.gif │ │ │ │ └── validation │ │ │ │ │ ├── accept.png │ │ │ │ │ ├── exclamation.png │ │ │ │ │ ├── tooltop.gif │ │ │ │ │ └── warning.gif │ │ │ └── main.css │ │ ├── colors.css │ │ ├── cscss.css │ │ ├── default.css │ │ ├── default2.css │ │ ├── demo.css │ │ ├── docs.css │ │ ├── dp_calendar.css │ │ ├── facebox.css │ │ ├── header.css │ │ ├── homepage.css │ │ ├── ie.css │ │ ├── images │ │ │ ├── ui-bg_diagonals-thick_75_f3d8d8_40x40.png │ │ │ ├── ui-bg_dots-small_65_a6a6a6_2x2.png │ │ │ ├── ui-bg_flat_0_333333_40x100.png │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf8ee_1x400.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_highlight-hard_100_eeeeee_1x100.png │ │ │ ├── ui-bg_highlight-hard_100_f6f6f6_1x100.png │ │ │ ├── ui-bg_highlight-soft_15_cc0000_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_004276_256x240.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── jquery.ui.all.css │ │ ├── jquery.ui.autocomplete.css │ │ ├── jquery.ui.base.css │ │ ├── jquery.ui.button.css │ │ ├── jquery.ui.core.css │ │ ├── jquery.ui.datepicker.css │ │ ├── jquery.ui.dialog.css │ │ ├── jquery.ui.progressbar.css │ │ ├── jquery.ui.resizable.css │ │ ├── jquery.ui.selectable.css │ │ ├── jquery.ui.slider.css │ │ ├── jquery.ui.tabs.css │ │ ├── jquery.ui.theme.css │ │ ├── jqueryui.css │ │ ├── landrush.css │ │ ├── navglass.css │ │ ├── netscape.css │ │ ├── new │ │ │ ├── autoSuggest.css │ │ │ ├── autocomplete.css │ │ │ ├── fonts.css │ │ │ ├── navac.css │ │ │ ├── openlook.css │ │ │ ├── ribbons.css │ │ │ ├── theme_azure.css │ │ │ ├── theme_azure_sidebar.css │ │ │ └── uploadbar.css │ │ ├── phoenix.css │ │ ├── reset 2.css │ │ ├── reset.css │ │ ├── site1.css │ │ ├── smoothness │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ └── jquery-ui-1.7.1.custom.css │ │ ├── style1.css │ │ └── visualsearch │ │ │ ├── icons.css │ │ │ ├── reset.css │ │ │ └── workspace.css │ ├── fonts │ │ ├── DXI1ORHCpsQm3Vp6mXoaTaRDOzjiPcYnFooOUGCOsRk.woff │ │ ├── Kom15zUm24dIPfIRiNogNuvvDin1pK8aKteLpeZ5c0A.woff │ │ ├── SqA9OdmswJX8b4TrqlN76KCWcynf_cDxXwCLxiixG1c.woff │ │ ├── TgrecWq39GVsTOFonFwGXQLUuEpTyoUstqEm5AMlJo4.woff │ │ ├── ZS0wkeOZuckNE3boyLYNt6CWcynf_cDxXwCLxiixG1c.woff │ │ ├── cJZKeOuBrn4kERxqtaUH3bO3LdcAZYWl9Si6vvxL-qU.woff │ │ ├── kJXt72Gt1LyFMZcEKAAvlKCWcynf_cDxXwCLxiixG1c.woff │ │ ├── kcf5uOXucLcbFOydGU24WALUuEpTyoUstqEm5AMlJo4.woff │ │ └── qIIYRU-oROkIk8vfvxw6QvesZW2xOQ-xsNqO47m55DA.woff │ ├── icons │ │ ├── creditcards │ │ │ ├── amex.png │ │ │ ├── discover.png │ │ │ ├── jcb.png │ │ │ ├── maestro.png │ │ │ ├── mastercard.png │ │ │ └── visa.png │ │ ├── minimalistica_red │ │ │ ├── 128x128 │ │ │ │ ├── add.png │ │ │ │ ├── add_to_favorite.png │ │ │ │ ├── apple.png │ │ │ │ ├── attach_document.png │ │ │ │ ├── attachment.png │ │ │ │ ├── back.png │ │ │ │ ├── battery.png │ │ │ │ ├── battery_full.png │ │ │ │ ├── battery_low.png │ │ │ │ ├── briefcase.png │ │ │ │ ├── business_user.png │ │ │ │ ├── calculator.png │ │ │ │ ├── calendar.png │ │ │ │ ├── camcorder.png │ │ │ │ ├── card_game_icon.png │ │ │ │ ├── chalk_board.png │ │ │ │ ├── chart.png │ │ │ │ ├── chart_pie.png │ │ │ │ ├── check_mark.png │ │ │ │ ├── clock.png │ │ │ │ ├── cloud_comment.png │ │ │ │ ├── comment.png │ │ │ │ ├── comments.png │ │ │ │ ├── cut.png │ │ │ │ ├── database.png │ │ │ │ ├── delete.png │ │ │ │ ├── dollar_currency_sign.png │ │ │ │ ├── download.png │ │ │ │ ├── euro_currency_sign.png │ │ │ │ ├── exclamination_mark.png │ │ │ │ ├── favorite.png │ │ │ │ ├── flag.png │ │ │ │ ├── folder.png │ │ │ │ ├── games.png │ │ │ │ ├── home.png │ │ │ │ ├── id_card.png │ │ │ │ ├── image.png │ │ │ │ ├── info.png │ │ │ │ ├── lightbulb.png │ │ │ │ ├── link.png │ │ │ │ ├── lock.png │ │ │ │ ├── mail.png │ │ │ │ ├── map_pin.png │ │ │ │ ├── megaphone.png │ │ │ │ ├── microphone.png │ │ │ │ ├── monitor.png │ │ │ │ ├── mp3_player.png │ │ │ │ ├── music_note.png │ │ │ │ ├── network.png │ │ │ │ ├── new.png │ │ │ │ ├── newsletter.png │ │ │ │ ├── next.png │ │ │ │ ├── notification.png │ │ │ │ ├── package.png │ │ │ │ ├── page.png │ │ │ │ ├── page_full.png │ │ │ │ ├── paint_brush.png │ │ │ │ ├── palette.png │ │ │ │ ├── pencil.png │ │ │ │ ├── phone.png │ │ │ │ ├── photo_camera.png │ │ │ │ ├── printer.png │ │ │ │ ├── promotion.png │ │ │ │ ├── question_mark.png │ │ │ │ ├── refresh.png │ │ │ │ ├── rss.png │ │ │ │ ├── sale.png │ │ │ │ ├── save.png │ │ │ │ ├── search.png │ │ │ │ ├── security.png │ │ │ │ ├── settings.png │ │ │ │ ├── shopping_cart.png │ │ │ │ ├── smart_phone.png │ │ │ │ ├── star.png │ │ │ │ ├── sterling_pound_currency_sign.png │ │ │ │ ├── tag.png │ │ │ │ ├── target.png │ │ │ │ ├── television.png │ │ │ │ ├── tools.png │ │ │ │ ├── unlock.png │ │ │ │ ├── upload.png │ │ │ │ ├── user.png │ │ │ │ ├── users.png │ │ │ │ ├── video.png │ │ │ │ ├── warning.png │ │ │ │ ├── waste.png │ │ │ │ ├── world.png │ │ │ │ ├── yen_currency_sign.png │ │ │ │ ├── zoom_in.png │ │ │ │ └── zoom_out.png │ │ │ ├── 16x16 │ │ │ │ ├── add.png │ │ │ │ ├── add_to_favorite.png │ │ │ │ ├── apple.png │ │ │ │ ├── attach_document.png │ │ │ │ ├── attachment.png │ │ │ │ ├── back.png │ │ │ │ ├── battery.png │ │ │ │ ├── battery_full.png │ │ │ │ ├── battery_low.png │ │ │ │ ├── briefcase.png │ │ │ │ ├── business_user.png │ │ │ │ ├── calculator.png │ │ │ │ ├── calendar.png │ │ │ │ ├── camcorder.png │ │ │ │ ├── card_game_icon.png │ │ │ │ ├── chalk_board.png │ │ │ │ ├── chart.png │ │ │ │ ├── chart_pie.png │ │ │ │ ├── check_mark.png │ │ │ │ ├── clock.png │ │ │ │ ├── cloud_comment.png │ │ │ │ ├── comment.png │ │ │ │ ├── comments.png │ │ │ │ ├── cut.png │ │ │ │ ├── database.png │ │ │ │ ├── delete.png │ │ │ │ ├── dollar_currency_sign.png │ │ │ │ ├── download.png │ │ │ │ ├── euro_currency_sign.png │ │ │ │ ├── exclamination_mark.png │ │ │ │ ├── favorite.png │ │ │ │ ├── flag.png │ │ │ │ ├── folder.png │ │ │ │ ├── games.png │ │ │ │ ├── home.png │ │ │ │ ├── id_card.png │ │ │ │ ├── image.png │ │ │ │ ├── info.png │ │ │ │ ├── lightbulb.png │ │ │ │ ├── link.png │ │ │ │ ├── lock.png │ │ │ │ ├── mail.png │ │ │ │ ├── map_pin.png │ │ │ │ ├── megaphone.png │ │ │ │ ├── microphone.png │ │ │ │ ├── monitor.png │ │ │ │ ├── mp3_player.png │ │ │ │ ├── music_note.png │ │ │ │ ├── network.png │ │ │ │ ├── new.png │ │ │ │ ├── newsletter.png │ │ │ │ ├── next.png │ │ │ │ ├── notification.png │ │ │ │ ├── package.png │ │ │ │ ├── page.png │ │ │ │ ├── page_full.png │ │ │ │ ├── paint_brush.png │ │ │ │ ├── palette.png │ │ │ │ ├── pencil.png │ │ │ │ ├── phone.png │ │ │ │ ├── photo_camera.png │ │ │ │ ├── printer.png │ │ │ │ ├── promotion.png │ │ │ │ ├── question_mark.png │ │ │ │ ├── refresh.png │ │ │ │ ├── rss.png │ │ │ │ ├── sale.png │ │ │ │ ├── save.png │ │ │ │ ├── search.png │ │ │ │ ├── security.png │ │ │ │ ├── settings.png │ │ │ │ ├── shopping_cart.png │ │ │ │ ├── smart_phone.png │ │ │ │ ├── star.png │ │ │ │ ├── sterling_pound_currency_sign.png │ │ │ │ ├── tag.png │ │ │ │ ├── target.png │ │ │ │ ├── television.png │ │ │ │ ├── tools.png │ │ │ │ ├── unlock.png │ │ │ │ ├── upload.png │ │ │ │ ├── user.png │ │ │ │ ├── users.png │ │ │ │ ├── video.png │ │ │ │ ├── warning.png │ │ │ │ ├── waste.png │ │ │ │ ├── world.png │ │ │ │ ├── yen_currency_sign.png │ │ │ │ ├── zoom_in.png │ │ │ │ └── zoom_out.png │ │ │ ├── 24x24 │ │ │ │ ├── add.png │ │ │ │ ├── add_to_favorite.png │ │ │ │ ├── apple.png │ │ │ │ ├── attach_document.png │ │ │ │ ├── attachment.png │ │ │ │ ├── back.png │ │ │ │ ├── battery.png │ │ │ │ ├── battery_full.png │ │ │ │ ├── battery_low.png │ │ │ │ ├── briefcase.png │ │ │ │ ├── business_user.png │ │ │ │ ├── calculator.png │ │ │ │ ├── calendar.png │ │ │ │ ├── camcorder.png │ │ │ │ ├── card_game_icon.png │ │ │ │ ├── chalk_board.png │ │ │ │ ├── chart.png │ │ │ │ ├── chart_pie.png │ │ │ │ ├── check_mark.png │ │ │ │ ├── clock.png │ │ │ │ ├── cloud_comment.png │ │ │ │ ├── comment.png │ │ │ │ ├── comments.png │ │ │ │ ├── cut.png │ │ │ │ ├── database.png │ │ │ │ ├── delete.png │ │ │ │ ├── dollar_currency_sign.png │ │ │ │ ├── download.png │ │ │ │ ├── euro_currency_sign.png │ │ │ │ ├── exclamination_mark.png │ │ │ │ ├── favorite.png │ │ │ │ ├── flag.png │ │ │ │ ├── folder.png │ │ │ │ ├── games.png │ │ │ │ ├── home.png │ │ │ │ ├── id_card.png │ │ │ │ ├── image.png │ │ │ │ ├── info.png │ │ │ │ ├── lightbulb.png │ │ │ │ ├── link.png │ │ │ │ ├── lock.png │ │ │ │ ├── mail.png │ │ │ │ ├── map_pin.png │ │ │ │ ├── megaphone.png │ │ │ │ ├── microphone.png │ │ │ │ ├── monitor.png │ │ │ │ ├── mp3_player.png │ │ │ │ ├── music_note.png │ │ │ │ ├── network.png │ │ │ │ ├── new.png │ │ │ │ ├── newsletter.png │ │ │ │ ├── next.png │ │ │ │ ├── notification.png │ │ │ │ ├── package.png │ │ │ │ ├── page.png │ │ │ │ ├── page_full.png │ │ │ │ ├── paint_brush.png │ │ │ │ ├── palette.png │ │ │ │ ├── pencil.png │ │ │ │ ├── phone.png │ │ │ │ ├── photo_camera.png │ │ │ │ ├── printer.png │ │ │ │ ├── promotion.png │ │ │ │ ├── question_mark.png │ │ │ │ ├── refresh.png │ │ │ │ ├── rss.png │ │ │ │ ├── sale.png │ │ │ │ ├── save.png │ │ │ │ ├── search.png │ │ │ │ ├── security.png │ │ │ │ ├── settings.png │ │ │ │ ├── shopping_cart.png │ │ │ │ ├── smart_phone.png │ │ │ │ ├── star.png │ │ │ │ ├── sterling_pound_currency_sign.png │ │ │ │ ├── tag.png │ │ │ │ ├── target.png │ │ │ │ ├── television.png │ │ │ │ ├── tools.png │ │ │ │ ├── unlock.png │ │ │ │ ├── upload.png │ │ │ │ ├── user.png │ │ │ │ ├── users.png │ │ │ │ ├── video.png │ │ │ │ ├── warning.png │ │ │ │ ├── waste.png │ │ │ │ ├── world.png │ │ │ │ ├── yen_currency_sign.png │ │ │ │ ├── zoom_in.png │ │ │ │ └── zoom_out.png │ │ │ ├── 32x32 │ │ │ │ ├── add.png │ │ │ │ ├── add_to_favorite.png │ │ │ │ ├── apple.png │ │ │ │ ├── attach_document.png │ │ │ │ ├── attachment.png │ │ │ │ ├── back.png │ │ │ │ ├── battery.png │ │ │ │ ├── battery_full.png │ │ │ │ ├── battery_low.png │ │ │ │ ├── briefcase.png │ │ │ │ ├── business_user.png │ │ │ │ ├── calculator.png │ │ │ │ ├── calendar.png │ │ │ │ ├── camcorder.png │ │ │ │ ├── card_game_icon.png │ │ │ │ ├── chalk_board.png │ │ │ │ ├── chart.png │ │ │ │ ├── chart_pie.png │ │ │ │ ├── check_mark.png │ │ │ │ ├── clock.png │ │ │ │ ├── cloud_comment.png │ │ │ │ ├── comment.png │ │ │ │ ├── comments.png │ │ │ │ ├── cut.png │ │ │ │ ├── database.png │ │ │ │ ├── delete.png │ │ │ │ ├── dollar_currency_sign.png │ │ │ │ ├── download.png │ │ │ │ ├── euro_currency_sign.png │ │ │ │ ├── exclamination_mark.png │ │ │ │ ├── favorite.png │ │ │ │ ├── flag.png │ │ │ │ ├── folder.png │ │ │ │ ├── games.png │ │ │ │ ├── home.png │ │ │ │ ├── id_card.png │ │ │ │ ├── image.png │ │ │ │ ├── info.png │ │ │ │ ├── lightbulb.png │ │ │ │ ├── link.png │ │ │ │ ├── lock.png │ │ │ │ ├── mail.png │ │ │ │ ├── map_pin.png │ │ │ │ ├── megaphone.png │ │ │ │ ├── microphone.png │ │ │ │ ├── monitor.png │ │ │ │ ├── mp3_player.png │ │ │ │ ├── music_note.png │ │ │ │ ├── network.png │ │ │ │ ├── new.png │ │ │ │ ├── newsletter.png │ │ │ │ ├── next.png │ │ │ │ ├── notification.png │ │ │ │ ├── package.png │ │ │ │ ├── page.png │ │ │ │ ├── page_full.png │ │ │ │ ├── paint_brush.png │ │ │ │ ├── palette.png │ │ │ │ ├── pencil.png │ │ │ │ ├── phone.png │ │ │ │ ├── photo_camera.png │ │ │ │ ├── printer.png │ │ │ │ ├── promotion.png │ │ │ │ ├── question_mark.png │ │ │ │ ├── refresh.png │ │ │ │ ├── rss.png │ │ │ │ ├── sale.png │ │ │ │ ├── save.png │ │ │ │ ├── search.png │ │ │ │ ├── security.png │ │ │ │ ├── settings.png │ │ │ │ ├── shopping_cart.png │ │ │ │ ├── smart_phone.png │ │ │ │ ├── star.png │ │ │ │ ├── sterling_pound_currency_sign.png │ │ │ │ ├── tag.png │ │ │ │ ├── target.png │ │ │ │ ├── television.png │ │ │ │ ├── tools.png │ │ │ │ ├── unlock.png │ │ │ │ ├── upload.png │ │ │ │ ├── user.png │ │ │ │ ├── users.png │ │ │ │ ├── video.png │ │ │ │ ├── warning.png │ │ │ │ ├── waste.png │ │ │ │ ├── world.png │ │ │ │ ├── yen_currency_sign.png │ │ │ │ ├── zoom_in.png │ │ │ │ └── zoom_out.png │ │ │ ├── 48x48 │ │ │ │ ├── add.png │ │ │ │ ├── add_to_favorite.png │ │ │ │ ├── apple.png │ │ │ │ ├── attach_document.png │ │ │ │ ├── attachment.png │ │ │ │ ├── back.png │ │ │ │ ├── battery.png │ │ │ │ ├── battery_full.png │ │ │ │ ├── battery_low.png │ │ │ │ ├── briefcase.png │ │ │ │ ├── business_user.png │ │ │ │ ├── calculator.png │ │ │ │ ├── calendar.png │ │ │ │ ├── camcorder.png │ │ │ │ ├── card_game_icon.png │ │ │ │ ├── chalk_board.png │ │ │ │ ├── chart.png │ │ │ │ ├── chart_pie.png │ │ │ │ ├── check_mark.png │ │ │ │ ├── clock.png │ │ │ │ ├── cloud_comment.png │ │ │ │ ├── comment.png │ │ │ │ ├── comments.png │ │ │ │ ├── cut.png │ │ │ │ ├── database.png │ │ │ │ ├── delete.png │ │ │ │ ├── dollar_currency_sign.png │ │ │ │ ├── download.png │ │ │ │ ├── euro_currency_sign.png │ │ │ │ ├── exclamination_mark.png │ │ │ │ ├── favorite.png │ │ │ │ ├── flag.png │ │ │ │ ├── folder.png │ │ │ │ ├── games.png │ │ │ │ ├── home.png │ │ │ │ ├── id_card.png │ │ │ │ ├── image.png │ │ │ │ ├── info.png │ │ │ │ ├── lightbulb.png │ │ │ │ ├── link.png │ │ │ │ ├── lock.png │ │ │ │ ├── mail.png │ │ │ │ ├── map_pin.png │ │ │ │ ├── megaphone.png │ │ │ │ ├── microphone.png │ │ │ │ ├── monitor.png │ │ │ │ ├── mp3_player.png │ │ │ │ ├── music_note.png │ │ │ │ ├── network.png │ │ │ │ ├── new.png │ │ │ │ ├── newsletter.png │ │ │ │ ├── next.png │ │ │ │ ├── notification.png │ │ │ │ ├── package.png │ │ │ │ ├── page.png │ │ │ │ ├── page_full.png │ │ │ │ ├── paint_brush.png │ │ │ │ ├── palette.png │ │ │ │ ├── pencil.png │ │ │ │ ├── phone.png │ │ │ │ ├── photo_camera.png │ │ │ │ ├── printer.png │ │ │ │ ├── promotion.png │ │ │ │ ├── question_mark.png │ │ │ │ ├── refresh.png │ │ │ │ ├── rss.png │ │ │ │ ├── sale.png │ │ │ │ ├── save.png │ │ │ │ ├── search.png │ │ │ │ ├── security.png │ │ │ │ ├── settings.png │ │ │ │ ├── shopping_cart.png │ │ │ │ ├── smart_phone.png │ │ │ │ ├── star.png │ │ │ │ ├── sterling_pound_currency_sign.png │ │ │ │ ├── tag.png │ │ │ │ ├── target.png │ │ │ │ ├── television.png │ │ │ │ ├── tools.png │ │ │ │ ├── unlock.png │ │ │ │ ├── upload.png │ │ │ │ ├── user.png │ │ │ │ ├── users.png │ │ │ │ ├── video.png │ │ │ │ ├── warning.png │ │ │ │ ├── waste.png │ │ │ │ ├── world.png │ │ │ │ ├── yen_currency_sign.png │ │ │ │ ├── zoom_in.png │ │ │ │ └── zoom_out.png │ │ │ └── 64x64 │ │ │ │ ├── add.png │ │ │ │ ├── add_to_favorite.png │ │ │ │ ├── apple.png │ │ │ │ ├── attach_document.png │ │ │ │ ├── attachment.png │ │ │ │ ├── back.png │ │ │ │ ├── battery.png │ │ │ │ ├── battery_full.png │ │ │ │ ├── battery_low.png │ │ │ │ ├── briefcase.png │ │ │ │ ├── business_user.png │ │ │ │ ├── calculator.png │ │ │ │ ├── calendar.png │ │ │ │ ├── camcorder.png │ │ │ │ ├── card_game_icon.png │ │ │ │ ├── chalk_board.png │ │ │ │ ├── chart.png │ │ │ │ ├── chart_pie.png │ │ │ │ ├── check_mark.png │ │ │ │ ├── clock.png │ │ │ │ ├── cloud_comment.png │ │ │ │ ├── comment.png │ │ │ │ ├── comments.png │ │ │ │ ├── cut.png │ │ │ │ ├── database.png │ │ │ │ ├── delete.png │ │ │ │ ├── dollar_currency_sign.png │ │ │ │ ├── download.png │ │ │ │ ├── euro_currency_sign.png │ │ │ │ ├── exclamination_mark.png │ │ │ │ ├── favorite.png │ │ │ │ ├── flag.png │ │ │ │ ├── folder.png │ │ │ │ ├── games.png │ │ │ │ ├── home.png │ │ │ │ ├── id_card.png │ │ │ │ ├── image.png │ │ │ │ ├── info.png │ │ │ │ ├── lightbulb.png │ │ │ │ ├── link.png │ │ │ │ ├── lock.png │ │ │ │ ├── mail.png │ │ │ │ ├── map_pin.png │ │ │ │ ├── megaphone.png │ │ │ │ ├── microphone.png │ │ │ │ ├── monitor.png │ │ │ │ ├── mp3_player.png │ │ │ │ ├── music_note.png │ │ │ │ ├── network.png │ │ │ │ ├── new.png │ │ │ │ ├── newsletter.png │ │ │ │ ├── next.png │ │ │ │ ├── notification.png │ │ │ │ ├── package.png │ │ │ │ ├── page.png │ │ │ │ ├── page_full.png │ │ │ │ ├── paint_brush.png │ │ │ │ ├── palette.png │ │ │ │ ├── pencil.png │ │ │ │ ├── phone.png │ │ │ │ ├── photo_camera.png │ │ │ │ ├── printer.png │ │ │ │ ├── promotion.png │ │ │ │ ├── question_mark.png │ │ │ │ ├── refresh.png │ │ │ │ ├── rss.png │ │ │ │ ├── sale.png │ │ │ │ ├── save.png │ │ │ │ ├── search.png │ │ │ │ ├── security.png │ │ │ │ ├── settings.png │ │ │ │ ├── shopping_cart.png │ │ │ │ ├── smart_phone.png │ │ │ │ ├── star.png │ │ │ │ ├── sterling_pound_currency_sign.png │ │ │ │ ├── tag.png │ │ │ │ ├── target.png │ │ │ │ ├── television.png │ │ │ │ ├── tools.png │ │ │ │ ├── unlock.png │ │ │ │ ├── upload.png │ │ │ │ ├── user.png │ │ │ │ ├── users.png │ │ │ │ ├── video.png │ │ │ │ ├── warning.png │ │ │ │ ├── waste.png │ │ │ │ ├── world.png │ │ │ │ ├── yen_currency_sign.png │ │ │ │ ├── zoom_in.png │ │ │ │ └── zoom_out.png │ │ └── sticker │ │ │ ├── 128x128 │ │ │ ├── accept_item.png │ │ │ ├── add_item.png │ │ │ ├── add_to_favorites.png │ │ │ ├── attachment.png │ │ │ ├── calculator.png │ │ │ ├── calendar.png │ │ │ ├── camera.png │ │ │ ├── chart.png │ │ │ ├── comment_bubble.png │ │ │ ├── cut.png │ │ │ ├── database_server.png │ │ │ ├── delete_item.png │ │ │ ├── dollar_currency_sign.png │ │ │ ├── down_arrow.png │ │ │ ├── edit_item.png │ │ │ ├── email.png │ │ │ ├── email_send.png │ │ │ ├── euro_currency_sign.png │ │ │ ├── favorite.png │ │ │ ├── folder.png │ │ │ ├── hard_disk.png │ │ │ ├── headphones.png │ │ │ ├── help.png │ │ │ ├── home.png │ │ │ ├── info.png │ │ │ ├── left_arrow.png │ │ │ ├── lock.png │ │ │ ├── login.png │ │ │ ├── note.png │ │ │ ├── note_accept.png │ │ │ ├── note_delete.png │ │ │ ├── printer.png │ │ │ ├── process.png │ │ │ ├── promotion.png │ │ │ ├── remove_item.png │ │ │ ├── right_arrow.png │ │ │ ├── rss_feed.png │ │ │ ├── search_magnifier.png │ │ │ ├── shopping_cart.png │ │ │ ├── telephone.png │ │ │ ├── tool.png │ │ │ ├── trash.png │ │ │ ├── unlock.png │ │ │ ├── up_arrow.png │ │ │ ├── user.png │ │ │ ├── user_comment.png │ │ │ ├── users.png │ │ │ ├── video_movie_track.png │ │ │ ├── world_globe.png │ │ │ ├── yen_currency_sign.png │ │ │ ├── zoom_in_magnifier.png │ │ │ └── zoom_out_magnifier.png │ │ │ ├── 16x16 │ │ │ ├── accept_item.png │ │ │ ├── add_item.png │ │ │ ├── add_to_favorites.png │ │ │ ├── attachment.png │ │ │ ├── calculator.png │ │ │ ├── calendar.png │ │ │ ├── camera.png │ │ │ ├── chart.png │ │ │ ├── comment_bubble.png │ │ │ ├── cut.png │ │ │ ├── database_server.png │ │ │ ├── delete_item.png │ │ │ ├── dollar_currency_sign.png │ │ │ ├── down_arrow.png │ │ │ ├── edit_item.png │ │ │ ├── email.png │ │ │ ├── email_send.png │ │ │ ├── euro_currency_sign.png │ │ │ ├── favorite.png │ │ │ ├── folder.png │ │ │ ├── hard_disk.png │ │ │ ├── headphones.png │ │ │ ├── help.png │ │ │ ├── home.png │ │ │ ├── info.png │ │ │ ├── left_arrow.png │ │ │ ├── lock.png │ │ │ ├── login.png │ │ │ ├── note.png │ │ │ ├── note_accept.png │ │ │ ├── note_delete.png │ │ │ ├── printer.png │ │ │ ├── process.png │ │ │ ├── promotion.png │ │ │ ├── remove_item.png │ │ │ ├── right_arrow.png │ │ │ ├── rss_feed.png │ │ │ ├── search_magnifier.png │ │ │ ├── shopping_cart.png │ │ │ ├── telephone.png │ │ │ ├── tool.png │ │ │ ├── trash.png │ │ │ ├── unlock.png │ │ │ ├── up_arrow.png │ │ │ ├── user.png │ │ │ ├── user_comment.png │ │ │ ├── users.png │ │ │ ├── video_movie_track.png │ │ │ ├── world_globe.png │ │ │ ├── yen_currency_sign.png │ │ │ ├── zoom_in_magnifier.png │ │ │ └── zoom_out_magnifier.png │ │ │ ├── 24x24 │ │ │ ├── accept_item.png │ │ │ ├── add_item.png │ │ │ ├── add_to_favorites.png │ │ │ ├── attachment.png │ │ │ ├── calculator.png │ │ │ ├── calendar.png │ │ │ ├── camera.png │ │ │ ├── chart.png │ │ │ ├── comment_bubble.png │ │ │ ├── cut.png │ │ │ ├── database_server.png │ │ │ ├── delete_item.png │ │ │ ├── dollar_currency_sign.png │ │ │ ├── down_arrow.png │ │ │ ├── edit_item.png │ │ │ ├── email.png │ │ │ ├── email_send.png │ │ │ ├── euro_currency_sign.png │ │ │ ├── favorite.png │ │ │ ├── folder.png │ │ │ ├── hard_disk.png │ │ │ ├── headphones.png │ │ │ ├── help.png │ │ │ ├── home.png │ │ │ ├── info.png │ │ │ ├── left_arrow.png │ │ │ ├── lock.png │ │ │ ├── login.png │ │ │ ├── note.png │ │ │ ├── note_accept.png │ │ │ ├── note_delete.png │ │ │ ├── printer.png │ │ │ ├── process.png │ │ │ ├── promotion.png │ │ │ ├── remove_item.png │ │ │ ├── right_arrow.png │ │ │ ├── rss_feed.png │ │ │ ├── search_magnifier.png │ │ │ ├── shopping_cart.png │ │ │ ├── telephone.png │ │ │ ├── tool.png │ │ │ ├── trash.png │ │ │ ├── unlock.png │ │ │ ├── up_arrow.png │ │ │ ├── user.png │ │ │ ├── user_comment.png │ │ │ ├── users.png │ │ │ ├── video_movie_track.png │ │ │ ├── world_globe.png │ │ │ ├── yen_currency_sign.png │ │ │ ├── zoom_in_magnifier.png │ │ │ └── zoom_out_magnifier.png │ │ │ ├── 32x32 │ │ │ ├── accept_item.png │ │ │ ├── add_item.png │ │ │ ├── add_to_favorites.png │ │ │ ├── attachment.png │ │ │ ├── calculator.png │ │ │ ├── calendar.png │ │ │ ├── camera.png │ │ │ ├── chart.png │ │ │ ├── comment_bubble.png │ │ │ ├── cut.png │ │ │ ├── database_server.png │ │ │ ├── delete_item.png │ │ │ ├── dollar_currency_sign.png │ │ │ ├── down_arrow.png │ │ │ ├── edit_item.png │ │ │ ├── email.png │ │ │ ├── email_send.png │ │ │ ├── euro_currency_sign.png │ │ │ ├── favorite.png │ │ │ ├── folder.png │ │ │ ├── hard_disk.png │ │ │ ├── headphones.png │ │ │ ├── help.png │ │ │ ├── home.png │ │ │ ├── info.png │ │ │ ├── left_arrow.png │ │ │ ├── lock.png │ │ │ ├── login.png │ │ │ ├── note.png │ │ │ ├── note_accept.png │ │ │ ├── note_delete.png │ │ │ ├── printer.png │ │ │ ├── process.png │ │ │ ├── promotion.png │ │ │ ├── remove_item.png │ │ │ ├── right_arrow.png │ │ │ ├── rss_feed.png │ │ │ ├── search_magnifier.png │ │ │ ├── shopping_cart.png │ │ │ ├── telephone.png │ │ │ ├── tool.png │ │ │ ├── trash.png │ │ │ ├── unlock.png │ │ │ ├── up_arrow.png │ │ │ ├── user.png │ │ │ ├── user_comment.png │ │ │ ├── users.png │ │ │ ├── video_movie_track.png │ │ │ ├── world_globe.png │ │ │ ├── yen_currency_sign.png │ │ │ ├── zoom_in_magnifier.png │ │ │ └── zoom_out_magnifier.png │ │ │ ├── 48x48 │ │ │ ├── accept_item.png │ │ │ ├── add_item.png │ │ │ ├── add_to_favorites.png │ │ │ ├── attachment.png │ │ │ ├── calculator.png │ │ │ ├── calendar.png │ │ │ ├── camera.png │ │ │ ├── chart.png │ │ │ ├── comment_bubble.png │ │ │ ├── cut.png │ │ │ ├── database_server.png │ │ │ ├── delete_item.png │ │ │ ├── dollar_currency_sign.png │ │ │ ├── down_arrow.png │ │ │ ├── edit_item.png │ │ │ ├── email.png │ │ │ ├── email_send.png │ │ │ ├── euro_currency_sign.png │ │ │ ├── favorite.png │ │ │ ├── folder.png │ │ │ ├── hard_disk.png │ │ │ ├── headphones.png │ │ │ ├── help.png │ │ │ ├── home.png │ │ │ ├── info.png │ │ │ ├── left_arrow.png │ │ │ ├── lock.png │ │ │ ├── login.png │ │ │ ├── note.png │ │ │ ├── note_accept.png │ │ │ ├── note_delete.png │ │ │ ├── printer.png │ │ │ ├── process.png │ │ │ ├── promotion.png │ │ │ ├── remove_item.png │ │ │ ├── right_arrow.png │ │ │ ├── rss_feed.png │ │ │ ├── search_magnifier.png │ │ │ ├── shopping_cart.png │ │ │ ├── telephone.png │ │ │ ├── tool.png │ │ │ ├── trash.png │ │ │ ├── unlock.png │ │ │ ├── up_arrow.png │ │ │ ├── user.png │ │ │ ├── user_comment.png │ │ │ ├── users.png │ │ │ ├── video_movie_track.png │ │ │ ├── world_globe.png │ │ │ ├── yen_currency_sign.png │ │ │ ├── zoom_in_magnifier.png │ │ │ └── zoom_out_magnifier.png │ │ │ └── 64x64 │ │ │ ├── accept_item.png │ │ │ ├── add_item.png │ │ │ ├── add_to_favorites.png │ │ │ ├── attachment.png │ │ │ ├── calculator.png │ │ │ ├── calendar.png │ │ │ ├── camera.png │ │ │ ├── chart.png │ │ │ ├── comment_bubble.png │ │ │ ├── cut.png │ │ │ ├── database_server.png │ │ │ ├── delete_item.png │ │ │ ├── dollar_currency_sign.png │ │ │ ├── down_arrow.png │ │ │ ├── edit_item.png │ │ │ ├── email.png │ │ │ ├── email_send.png │ │ │ ├── euro_currency_sign.png │ │ │ ├── favorite.png │ │ │ ├── folder.png │ │ │ ├── hard_disk.png │ │ │ ├── headphones.png │ │ │ ├── help.png │ │ │ ├── home.png │ │ │ ├── info.png │ │ │ ├── left_arrow.png │ │ │ ├── lock.png │ │ │ ├── login.png │ │ │ ├── note.png │ │ │ ├── note_accept.png │ │ │ ├── note_delete.png │ │ │ ├── printer.png │ │ │ ├── process.png │ │ │ ├── promotion.png │ │ │ ├── remove_item.png │ │ │ ├── right_arrow.png │ │ │ ├── rss_feed.png │ │ │ ├── search_magnifier.png │ │ │ ├── shopping_cart.png │ │ │ ├── telephone.png │ │ │ ├── tool.png │ │ │ ├── trash.png │ │ │ ├── unlock.png │ │ │ ├── up_arrow.png │ │ │ ├── user.png │ │ │ ├── user_comment.png │ │ │ ├── users.png │ │ │ ├── video_movie_track.png │ │ │ ├── world_globe.png │ │ │ ├── yen_currency_sign.png │ │ │ ├── zoom_in_magnifier.png │ │ │ └── zoom_out_magnifier.png │ ├── images │ │ ├── 2-1.gif │ │ ├── DXI1ORHCpsQm3Vp6mXoaTaRDOzjiPcYnFooOUGCOsRk.woff │ │ ├── SqA9OdmswJX8b4TrqlN76KCWcynf_cDxXwCLxiixG1c.woff │ │ ├── TgrecWq39GVsTOFonFwGXQLUuEpTyoUstqEm5AMlJo4.woff │ │ ├── ZS0wkeOZuckNE3boyLYNt6CWcynf_cDxXwCLxiixG1c.woff │ │ ├── action-icons-mini-sprite.png │ │ ├── action-icons-sprite.png │ │ ├── add-button-bg.png │ │ ├── ajax-loader-circle.gif │ │ ├── ajax-loader.gif │ │ ├── applet-drag-grip.png │ │ ├── applet-icons-sprite.png │ │ ├── asc.gif │ │ ├── assign-owner-button-bg.png │ │ ├── b.png │ │ ├── bg.gif │ │ ├── bg_bluebarSm.jpg │ │ ├── bg_nav.png │ │ ├── bg_top.jpg │ │ ├── bl.png │ │ ├── bluebar_left.png │ │ ├── bluebar_middle.png │ │ ├── bluebar_right.png │ │ ├── box_border.jpg │ │ ├── br.png │ │ ├── cJZKeOuBrn4kERxqtaUH3bO3LdcAZYWl9Si6vvxL-qU.woff │ │ ├── cal.gif │ │ ├── calfont.woff │ │ ├── cart.png │ │ ├── ccpromo │ │ │ ├── AU.jpg │ │ │ ├── CA.jpg │ │ │ ├── CO.jpg │ │ │ ├── DE.jpg │ │ │ ├── EU.jpg │ │ │ ├── FR.jpg │ │ │ ├── GB.jpg │ │ │ ├── NZ.jpg │ │ │ └── TV.jpg │ │ ├── clock.png │ │ ├── closelabel.gif │ │ ├── contacts-idle.png │ │ ├── dashboard.jpg │ │ ├── demo_bg.jpg │ │ ├── desc.gif │ │ ├── device-drag-grip.png │ │ ├── devices-icon.png │ │ ├── email-button-bg.png │ │ ├── flowline-nav-arrows-sprite.png │ │ ├── flows-icon.png │ │ ├── form-input-text-150.png │ │ ├── form-input-text-200.png │ │ ├── form-input-text-300.png │ │ ├── form-input-text-50.png │ │ ├── form-input-text-600.png │ │ ├── globe.jpg │ │ ├── go.png │ │ ├── gradient.png │ │ ├── gradient_module.jpg │ │ ├── gradient_top.jpg │ │ ├── greenbar_quota.png │ │ ├── greybar_left.png │ │ ├── greybar_middle.png │ │ ├── greybar_quota.png │ │ ├── greybar_right.png │ │ ├── groups.png │ │ ├── header_blue.jpg │ │ ├── homepage.png │ │ ├── hover_dates.png │ │ ├── hover_dates_has_event.png │ │ ├── igroups.png │ │ ├── install │ │ │ └── header.png │ │ ├── iphone-icon-58.png │ │ ├── kJXt72Gt1LyFMZcEKAAvlKCWcynf_cDxXwCLxiixG1c.woff │ │ ├── loading 2.gif │ │ ├── loading.gif │ │ ├── loadingAnimation.gif │ │ ├── logo.png │ │ ├── main-context-menu-bg.png │ │ ├── message-status-icon-bg.png │ │ ├── messages-icon.png │ │ ├── meter-outline.png │ │ ├── meter-outline2.png │ │ ├── mic_big.png │ │ ├── navbar.jpg │ │ ├── navbar │ │ │ ├── text_gray │ │ │ │ ├── contact.png │ │ │ │ ├── email.png │ │ │ │ ├── faq.png │ │ │ │ ├── manage.png │ │ │ │ ├── pricing.png │ │ │ │ └── purchase.png │ │ │ └── text_white │ │ │ │ ├── contact_white.png │ │ │ │ ├── email_white.png │ │ │ │ ├── faq_white.png │ │ │ │ ├── manage_white.png │ │ │ │ ├── pricing_white.png │ │ │ │ └── purchase_white.png │ │ ├── navbar_selected.jpg │ │ ├── normal-button-bg.png │ │ ├── numbers-icon.png │ │ ├── openlook │ │ │ ├── TitilliumText15L.otf │ │ │ ├── TitilliumText250wt.otf │ │ │ ├── TitilliumText600wt.otf │ │ │ ├── close-x.png │ │ │ ├── dd-select.png │ │ │ ├── details-hr.png │ │ │ ├── details-l.png │ │ │ ├── details-t.png │ │ │ ├── gen-btn.png │ │ │ ├── hr-trans.png │ │ │ ├── icon-sprite.png │ │ │ ├── idea-bg.jpg │ │ │ ├── input-text-bg.png │ │ │ ├── link-arrow-black.png │ │ │ ├── link-arrow.png │ │ │ ├── listing-bg.png │ │ │ ├── loading.gif │ │ │ ├── logo.png │ │ │ ├── menu-bottom.png │ │ │ ├── menu-top.png │ │ │ ├── popup-side-arrow.png │ │ │ ├── popup-side-bg.png │ │ │ ├── questionmark.png │ │ │ ├── shadow-b.png │ │ │ ├── shadow-lr.png │ │ │ ├── signup-form.jpg │ │ │ ├── status-badges.png │ │ │ ├── toggle.png │ │ │ ├── top-bg.jpg │ │ │ ├── user-ribbon.png │ │ │ └── vr.png │ │ ├── overlay.png │ │ ├── overview-active.png │ │ ├── overview-idle.png │ │ ├── rightarrow.png │ │ ├── sad_panda.png │ │ ├── screenshot.png │ │ ├── standard-icons-sprite.png │ │ ├── submit-button-bg.png │ │ ├── syt │ │ │ ├── bargraph.png │ │ │ ├── bars.png │ │ │ ├── bell.png │ │ │ ├── book.png │ │ │ ├── box.png │ │ │ ├── brackets.png │ │ │ ├── bubbles.png │ │ │ ├── business.png │ │ │ ├── businessman.png │ │ │ ├── calendar.png │ │ │ ├── callperson.png │ │ │ ├── charts.png │ │ │ ├── check.png │ │ │ ├── check2.png │ │ │ ├── clock.png │ │ │ ├── clock2.png │ │ │ ├── cloud.png │ │ │ ├── compass.png │ │ │ ├── flow.png │ │ │ ├── forks.png │ │ │ ├── gauge.png │ │ │ ├── globe.png │ │ │ ├── graduate.png │ │ │ ├── house.png │ │ │ ├── houseleaf.png │ │ │ ├── key.png │ │ │ ├── keypad.png │ │ │ ├── laptop.png │ │ │ ├── list.png │ │ │ ├── lock.png │ │ │ ├── lockplate.png │ │ │ ├── lockscreen.png │ │ │ ├── lockscreen2.png │ │ │ ├── lookup.png │ │ │ ├── math.png │ │ │ ├── menu.png │ │ │ ├── message.png │ │ │ ├── meter.png │ │ │ ├── money.png │ │ │ ├── money2.png │ │ │ ├── package.png │ │ │ ├── packagelook.png │ │ │ ├── people.png │ │ │ ├── percent.png │ │ │ ├── phone.png │ │ │ ├── phone2.png │ │ │ ├── phone3.png │ │ │ ├── pin.png │ │ │ ├── pin2.png │ │ │ ├── puzzlepiece.png │ │ │ ├── question.png │ │ │ ├── question2.png │ │ │ ├── recycle.png │ │ │ ├── ringoff.png │ │ │ ├── roadsigns.png │ │ │ ├── servers.png │ │ │ ├── smartphone.png │ │ │ ├── smiley.png │ │ │ ├── speaker.png │ │ │ ├── stars.png │ │ │ ├── thumbup.png │ │ │ ├── thunder.png │ │ │ ├── thunder2.png │ │ │ ├── tie.png │ │ │ ├── tower.png │ │ │ ├── tower2.png │ │ │ ├── university.png │ │ │ ├── updown.png │ │ │ ├── user.png │ │ │ ├── videochat.png │ │ │ ├── voicemail.png │ │ │ ├── write.png │ │ │ └── writepad.png │ │ ├── tab_gray.jpg │ │ ├── thinsearch.png │ │ ├── timepicker-add.png │ │ ├── timepicker-remove.png │ │ ├── tl.png │ │ ├── user-drag-grip.png │ │ ├── user-group-icon.png │ │ ├── user-group-picker-group-icon.png │ │ ├── user-group-picker-person-icon.png │ │ ├── user-group-utilities.png │ │ └── visualsearch │ │ │ └── embed │ │ │ └── icons │ │ │ ├── cancel_search.png │ │ │ └── search_glyph.png │ ├── img │ │ ├── board.png │ │ ├── calendar.png │ │ ├── facebook_32.png │ │ ├── grid-18px-masked.png │ │ ├── pad.png │ │ └── wireframe.png │ └── js │ │ ├── application.js │ │ ├── bootstrap-1.4 │ │ ├── bootstrap-alerts.js │ │ ├── bootstrap-buttons.js │ │ ├── bootstrap-dropdown.js │ │ ├── bootstrap-modal.js │ │ ├── bootstrap-popover.js │ │ ├── bootstrap-scrollspy.js │ │ ├── bootstrap-tabs.js │ │ └── bootstrap-twipsy.js │ │ ├── bootstrap-accordion.js │ │ ├── bootstrap-alerts-1.3.js │ │ ├── bootstrap-alerts.js │ │ ├── bootstrap-dropdown-1.3.js │ │ ├── bootstrap-dropdown.js │ │ ├── bootstrap-modal-1.3.js │ │ ├── bootstrap-modal.js │ │ ├── bootstrap-popover-1.3.js │ │ ├── bootstrap-popover.js │ │ ├── bootstrap-scrollspy-1.3.js │ │ ├── bootstrap-scrollspy.js │ │ ├── bootstrap-tabs-1.3.js │ │ ├── bootstrap-tabs.js │ │ ├── bootstrap-transitions.js │ │ ├── bootstrap-twipsy-1.3.js │ │ ├── bootstrap-twipsy.js │ │ ├── calendar │ │ ├── Common.js │ │ ├── datepicker_lang_AU.js │ │ ├── datepicker_lang_HK.js │ │ ├── datepicker_lang_US.js │ │ ├── jquery.alert.js │ │ ├── jquery.calendar.js │ │ ├── jquery.colorselect.js │ │ ├── jquery.datepicker.js │ │ ├── jquery.dropdown.js │ │ ├── jquery.form.js │ │ ├── jquery.ifrmdailog.js │ │ ├── jquery.js │ │ ├── jquery.validate.js │ │ ├── wdCalendar_lang_AU.js │ │ ├── wdCalendar_lang_HK.js │ │ └── wdCalendar_lang_US.js │ │ ├── date.js │ │ ├── form.js │ │ ├── highcharts │ │ ├── adapters │ │ │ ├── mootools-adapter.js │ │ │ ├── mootools-adapter.src.js │ │ │ ├── prototype-adapter.js │ │ │ └── prototype-adapter.src.js │ │ ├── highcharts.js │ │ ├── highcharts.src.js │ │ ├── modules │ │ │ ├── exporting.js │ │ │ └── exporting.src.js │ │ └── themes │ │ │ ├── dark-blue.js │ │ │ ├── dark-green.js │ │ │ ├── gray.js │ │ │ └── grid.js │ │ ├── jquery-1.3.2.min.js │ │ ├── jquery-1.4.2.min.js │ │ ├── jquery-1.4.4.min.js │ │ ├── jquery-1.5.2.min.js │ │ ├── jquery-ui-1.7.1.custom.min.js │ │ ├── jquery-ui-1.8.10.custom.min.js │ │ ├── jquery-ui-timepicker-addon.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.cookie.js │ │ ├── jquery.dp_calendar.max.js │ │ ├── jquery.dp_calendar.min.js │ │ ├── jquery.editable-1.3.3.min.js │ │ ├── jquery.form.js │ │ ├── jquery.getUrlParam.js │ │ ├── jquery.i18n.js │ │ ├── jquery.jcache.js │ │ ├── jquery.js │ │ ├── jquery.min.1.6.4.js │ │ ├── jquery.simplemodal-1.2.3.min.js │ │ ├── jquery.sprintf.js │ │ ├── jquery.tablesorter.min.js │ │ ├── jquery.ui.core.js │ │ ├── jquery.ui.datepicker.js │ │ ├── jquery.ui.position.js │ │ ├── json2.js │ │ ├── new │ │ ├── calendar.js │ │ ├── dynamic.js │ │ ├── file.js │ │ ├── groups.js │ │ ├── jquery.autoSuggest.packed.js │ │ ├── jquery.fcbkcomplete.js │ │ ├── jquery.fcbkcomplete.min.js │ │ ├── jquery.jeditable.mini.js │ │ ├── jquery.validate.min.js │ │ ├── members.js │ │ ├── membersgroups_manager.js │ │ ├── membersgroups_prereq.js │ │ ├── pay.js │ │ ├── sha1.js │ │ └── v1.js │ │ ├── origin.js │ │ ├── phone │ │ ├── application.js │ │ ├── dynamic.js │ │ └── members.js │ │ ├── plupload │ │ ├── plupload.browserplus.js │ │ ├── plupload.flash.js │ │ ├── plupload.flash.swf │ │ ├── plupload.full.js │ │ ├── plupload.gears.js │ │ ├── plupload.html4.js │ │ ├── plupload.html5.js │ │ ├── plupload.js │ │ ├── plupload.silverlight.js │ │ └── plupload.silverlight.xap │ │ ├── prettify.js │ │ ├── prices.js │ │ ├── promo.js │ │ ├── prototype-1.6.0.2.js │ │ ├── prototype.js │ │ ├── search.js │ │ ├── thickbox-compressed.js │ │ ├── ui.selectmenu.js │ │ ├── visualsearch │ │ ├── backbone-0.5.0.js │ │ ├── jquery-1.6.1.js │ │ ├── jquery.ui.autocomplete.js │ │ ├── jquery.ui.core.js │ │ ├── jquery.ui.position.js │ │ ├── jquery.ui.widget.js │ │ ├── models │ │ │ ├── search_facets.js │ │ │ └── search_query.js │ │ ├── templates │ │ │ ├── search_box.jst │ │ │ ├── search_facet.jst │ │ │ ├── search_input.jst │ │ │ └── templates.js │ │ ├── underscore-1.1.5.js │ │ ├── utils │ │ │ ├── backbone_extensions.js │ │ │ ├── hotkeys.js │ │ │ ├── inflector.js │ │ │ ├── jquery_extensions.js │ │ │ └── search_parser.js │ │ ├── views │ │ │ ├── search_box.js │ │ │ ├── search_facet.js │ │ │ └── search_input.js │ │ └── visualsearch.js │ │ └── widgets.js └── themes │ ├── barbosa │ ├── config.ini │ ├── images │ │ ├── applet-drag-grip.png │ │ ├── device-drag-grip.png │ │ ├── flowline-bg.png │ │ ├── main-context-menu-bg.png │ │ ├── openvbx-header-logo.png │ │ ├── quick-call-popup-button-bg.png │ │ ├── quick-sms-send-button-bg.png │ │ └── user-drag-grip.png │ ├── iphone.json │ └── style.css │ ├── bluelook │ ├── bootstrap.min.css │ ├── images │ │ ├── glyph │ │ │ ├── glyphicons_000_glass.png │ │ │ ├── glyphicons_001_leaf.png │ │ │ ├── glyphicons_002_dog.png │ │ │ ├── glyphicons_003_user.png │ │ │ ├── glyphicons_004_girl.png │ │ │ ├── glyphicons_005_car.png │ │ │ ├── glyphicons_006_user_add.png │ │ │ ├── glyphicons_007_user_remove.png │ │ │ ├── glyphicons_008_film.png │ │ │ ├── glyphicons_009_magic.png │ │ │ ├── glyphicons_010_envelope.png │ │ │ ├── glyphicons_011_camera.png │ │ │ ├── glyphicons_012_heart.png │ │ │ ├── glyphicons_013_beach_umbrella.png │ │ │ ├── glyphicons_014_train.png │ │ │ ├── glyphicons_015_print.png │ │ │ ├── glyphicons_016_bin.png │ │ │ ├── glyphicons_017_music.png │ │ │ ├── glyphicons_018_note.png │ │ │ ├── glyphicons_019_cogwheel.png │ │ │ ├── glyphicons_020_home.png │ │ │ ├── glyphicons_021_snowflake.png │ │ │ ├── glyphicons_022_fire.png │ │ │ ├── glyphicons_023_cogwheels.png │ │ │ ├── glyphicons_024_parents.png │ │ │ ├── glyphicons_025_binoculars.png │ │ │ ├── glyphicons_026_road.png │ │ │ ├── glyphicons_027_search.png │ │ │ ├── glyphicons_028_cars.png │ │ │ ├── glyphicons_029_notes_2.png │ │ │ ├── glyphicons_030_pencil.png │ │ │ ├── glyphicons_031_bus.png │ │ │ ├── glyphicons_032_wifi_alt.png │ │ │ ├── glyphicons_033_luggage.png │ │ │ ├── glyphicons_034_old_man.png │ │ │ ├── glyphicons_035_woman.png │ │ │ ├── glyphicons_036_file.png │ │ │ ├── glyphicons_037_credit.png │ │ │ ├── glyphicons_038_airplane.png │ │ │ ├── glyphicons_039_notes.png │ │ │ ├── glyphicons_040_stats.png │ │ │ ├── glyphicons_041_charts.png │ │ │ ├── glyphicons_042_pie_chart.png │ │ │ ├── glyphicons_043_group.png │ │ │ ├── glyphicons_044_keys.png │ │ │ ├── glyphicons_045_calendar.png │ │ │ ├── glyphicons_046_router.png │ │ │ ├── glyphicons_047_camera_small.png │ │ │ ├── glyphicons_048_dislikes.png │ │ │ ├── glyphicons_049_star.png │ │ │ ├── glyphicons_050_link.png │ │ │ ├── glyphicons_051_eye_open.png │ │ │ ├── glyphicons_052_eye_close.png │ │ │ ├── glyphicons_053_alarm.png │ │ │ ├── glyphicons_054_clock.png │ │ │ ├── glyphicons_055_stopwatch.png │ │ │ ├── glyphicons_056_projector.png │ │ │ ├── glyphicons_057_history.png │ │ │ ├── glyphicons_058_truck.png │ │ │ ├── glyphicons_059_cargo.png │ │ │ ├── glyphicons_060_compass.png │ │ │ ├── glyphicons_061_keynote.png │ │ │ ├── glyphicons_062_attach.png │ │ │ ├── glyphicons_063_power.png │ │ │ ├── glyphicons_064_lightbulb.png │ │ │ ├── glyphicons_065_tag.png │ │ │ ├── glyphicons_066_tags.png │ │ │ ├── glyphicons_067_cleaning.png │ │ │ ├── glyphicons_068_ruller.png │ │ │ ├── glyphicons_069_gift.png │ │ │ ├── glyphicons_070_umbrella.png │ │ │ ├── glyphicons_071_book.png │ │ │ ├── glyphicons_072_bookmark.png │ │ │ ├── glyphicons_073_signal.png │ │ │ ├── glyphicons_074_cup.png │ │ │ ├── glyphicons_075_stroller.png │ │ │ ├── glyphicons_076_headphones.png │ │ │ ├── glyphicons_077_headset.png │ │ │ ├── glyphicons_078_warning_sign.png │ │ │ ├── glyphicons_079_signal.png │ │ │ ├── glyphicons_080_retweet.png │ │ │ ├── glyphicons_081_refresh.png │ │ │ ├── glyphicons_082_roundabout.png │ │ │ ├── glyphicons_083_random.png │ │ │ ├── glyphicons_084_heat.png │ │ │ ├── glyphicons_085_repeat.png │ │ │ ├── glyphicons_086_display.png │ │ │ ├── glyphicons_087_log_book.png │ │ │ ├── glyphicons_088_adress_book.png │ │ │ ├── glyphicons_089_magnet.png │ │ │ ├── glyphicons_090_table.png │ │ │ ├── glyphicons_091_adjust.png │ │ │ ├── glyphicons_092_tint.png │ │ │ ├── glyphicons_093_crop.png │ │ │ ├── glyphicons_094_vector_path_square.png │ │ │ ├── glyphicons_095_vector_path_circle.png │ │ │ ├── glyphicons_096_vector_path_polygon.png │ │ │ ├── glyphicons_097_vector_path_line.png │ │ │ ├── glyphicons_098_vector_path_curve.png │ │ │ ├── glyphicons_099_vector_path_all.png │ │ │ ├── glyphicons_100_font.png │ │ │ ├── glyphicons_101_italic.png │ │ │ ├── glyphicons_102_bold.png │ │ │ ├── glyphicons_103_text_underline.png │ │ │ ├── glyphicons_104_text_strike.png │ │ │ ├── glyphicons_105_text_height.png │ │ │ ├── glyphicons_106_text_width.png │ │ │ ├── glyphicons_107_text_resize.png │ │ │ ├── glyphicons_108_left_indent.png │ │ │ ├── glyphicons_109_right_indent.png │ │ │ ├── glyphicons_110_align_left.png │ │ │ ├── glyphicons_111_align_center.png │ │ │ ├── glyphicons_112_align_right.png │ │ │ ├── glyphicons_113_justify.png │ │ │ ├── glyphicons_114_list.png │ │ │ ├── glyphicons_115_text_smaller.png │ │ │ ├── glyphicons_116_text_bigger.png │ │ │ ├── glyphicons_117_embed.png │ │ │ ├── glyphicons_118_embed_close.png │ │ │ ├── glyphicons_119_adjust.png │ │ │ ├── glyphicons_120_message_full.png │ │ │ ├── glyphicons_121_message_empty.png │ │ │ ├── glyphicons_122_message_in.png │ │ │ ├── glyphicons_123_message_out.png │ │ │ ├── glyphicons_124_message_plus.png │ │ │ ├── glyphicons_125_message_minus.png │ │ │ ├── glyphicons_126_message_ban.png │ │ │ ├── glyphicons_127_message_flag.png │ │ │ ├── glyphicons_128_message_lock.png │ │ │ ├── glyphicons_129_message_new.png │ │ │ ├── glyphicons_130_inbox.png │ │ │ ├── glyphicons_131_inbox_plus.png │ │ │ ├── glyphicons_132_inbox_minus.png │ │ │ ├── glyphicons_133_inbox_lock.png │ │ │ ├── glyphicons_134_inbox_in.png │ │ │ ├── glyphicons_135_inbox_out.png │ │ │ ├── glyphicons_136_computer_locked.png │ │ │ ├── glyphicons_137_computer_service.png │ │ │ ├── glyphicons_138_computer_proces.png │ │ │ ├── glyphicons_139_phone.png │ │ │ ├── glyphicons_140_database_lock.png │ │ │ ├── glyphicons_141_database_plus.png │ │ │ ├── glyphicons_142_database_minus.png │ │ │ ├── glyphicons_143_database_ban.png │ │ │ ├── glyphicons_144_folder_open.png │ │ │ ├── glyphicons_145_folder_plus.png │ │ │ ├── glyphicons_146_folder_minus.png │ │ │ ├── glyphicons_147_folder_lock.png │ │ │ ├── glyphicons_148_folder_flag.png │ │ │ ├── glyphicons_149_folder_new.png │ │ │ ├── glyphicons_150_check.png │ │ │ ├── glyphicons_151_edit.png │ │ │ ├── glyphicons_152_new_window.png │ │ │ ├── glyphicons_153_more_windows.png │ │ │ ├── glyphicons_154_show_big_thumbnails.png │ │ │ ├── glyphicons_155_show_thumbnails.png │ │ │ ├── glyphicons_156_show_thumbnails_with_lines.png │ │ │ ├── glyphicons_157_show_lines.png │ │ │ ├── glyphicons_158_playlist.png │ │ │ ├── glyphicons_159_picture.png │ │ │ ├── glyphicons_160_imac.png │ │ │ ├── glyphicons_161_macbook.png │ │ │ ├── glyphicons_162_ipad.png │ │ │ ├── glyphicons_163_iphone.png │ │ │ ├── glyphicons_164_iphone_transfer.png │ │ │ ├── glyphicons_165_iphone_exchange.png │ │ │ ├── glyphicons_166_ipod.png │ │ │ ├── glyphicons_167_ipod_shuffle.png │ │ │ ├── glyphicons_168_ear_plugs.png │ │ │ ├── glyphicons_169_albums.png │ │ │ ├── glyphicons_170_step_backward.png │ │ │ ├── glyphicons_171_fast_backward.png │ │ │ ├── glyphicons_172_rewind.png │ │ │ ├── glyphicons_173_play.png │ │ │ ├── glyphicons_174_pause.png │ │ │ ├── glyphicons_175_stop.png │ │ │ ├── glyphicons_176_forward.png │ │ │ ├── glyphicons_177_fast_forward.png │ │ │ ├── glyphicons_178_step_forward.png │ │ │ ├── glyphicons_179_eject.png │ │ │ ├── glyphicons_180_facetime_video.png │ │ │ ├── glyphicons_181_download_alt.png │ │ │ ├── glyphicons_182_mute.png │ │ │ ├── glyphicons_183_volume_down.png │ │ │ ├── glyphicons_184_volume_up.png │ │ │ ├── glyphicons_185_screenshot.png │ │ │ ├── glyphicons_186_move.png │ │ │ ├── glyphicons_187_more.png │ │ │ ├── glyphicons_188_brightness_reduce.png │ │ │ ├── glyphicons_189_brightness_increase.png │ │ │ ├── glyphicons_190_circle_plus.png │ │ │ ├── glyphicons_191_circle_minus.png │ │ │ ├── glyphicons_192_circle_remove.png │ │ │ ├── glyphicons_193_circle_ok.png │ │ │ ├── glyphicons_194_circle_question_mark.png │ │ │ ├── glyphicons_195_circle_info.png │ │ │ ├── glyphicons_196_circle_exclamation_mark.png │ │ │ ├── glyphicons_197_remove.png │ │ │ ├── glyphicons_198_ok.png │ │ │ ├── glyphicons_199_ban.png │ │ │ ├── glyphicons_200_download.png │ │ │ ├── glyphicons_201_upload.png │ │ │ ├── glyphicons_202_shopping_cart.png │ │ │ ├── glyphicons_203_lock.png │ │ │ ├── glyphicons_204_unlock.png │ │ │ ├── glyphicons_205_electricity.png │ │ │ ├── glyphicons_206_ok_2.png │ │ │ ├── glyphicons_207_remove_2.png │ │ │ ├── glyphicons_208_cart_out.png │ │ │ ├── glyphicons_209_cart_in.png │ │ │ ├── glyphicons_210_left_arrow.png │ │ │ ├── glyphicons_211_right_arrow.png │ │ │ ├── glyphicons_212_down_arrow.png │ │ │ ├── glyphicons_213_up_arrow.png │ │ │ ├── glyphicons_214_resize_small.png │ │ │ ├── glyphicons_215_resize_full.png │ │ │ ├── glyphicons_216_circle_arrow_left.png │ │ │ ├── glyphicons_217_circle_arrow_right.png │ │ │ ├── glyphicons_218_circle_arrow_right.png │ │ │ ├── glyphicons_219_circle_arrow_right.png │ │ │ ├── glyphicons_220_play_button.png │ │ │ ├── glyphicons_221_unshare.png │ │ │ ├── glyphicons_222_share.png │ │ │ ├── glyphicons_223_thin_right_arrow.png │ │ │ ├── glyphicons_224_thin_arrow_left.png │ │ │ ├── glyphicons_225_bluetooth.png │ │ │ ├── glyphicons_226_euro.png │ │ │ ├── glyphicons_227_usd.png │ │ │ ├── glyphicons_228_bp.png │ │ │ ├── glyphicons_229_retweet_2.png │ │ │ ├── glyphicons_230_moon.png │ │ │ ├── glyphicons_231_sun.png │ │ │ ├── glyphicons_232_cloud.png │ │ │ ├── glyphicons_233_direction.png │ │ │ ├── glyphicons_234_brush.png │ │ │ ├── glyphicons_235_pen.png │ │ │ ├── glyphicons_236_zoom_in.png │ │ │ ├── glyphicons_237_zoom_out.png │ │ │ ├── glyphicons_238_pin.png │ │ │ ├── glyphicons_239_riflescope.png │ │ │ ├── glyphicons_240_rotation_lock.png │ │ │ ├── glyphicons_241_flash.png │ │ │ ├── glyphicons_242_google_maps.png │ │ │ ├── glyphicons_243_anchor.png │ │ │ ├── glyphicons_244_conversation.png │ │ │ ├── glyphicons_245_chat.png │ │ │ ├── glyphicons_246_male.png │ │ │ ├── glyphicons_247_female.png │ │ │ ├── glyphicons_248_asterisk.png │ │ │ ├── glyphicons_249_divide.png │ │ │ ├── glyphicons_250_snorkel_diving.png │ │ │ ├── glyphicons_251_scuba_diving.png │ │ │ ├── glyphicons_252_oxygen_bottle.png │ │ │ ├── glyphicons_253_fins.png │ │ │ ├── glyphicons_254_fishes.png │ │ │ ├── glyphicons_255_boat.png │ │ │ ├── glyphicons_256_delete_point.png │ │ │ ├── glyphicons_257_sheriffs_-star.png │ │ │ ├── glyphicons_258_qrcode.png │ │ │ ├── glyphicons_259_barcode.png │ │ │ ├── glyphicons_260_pool.png │ │ │ ├── glyphicons_261_buoy.png │ │ │ ├── glyphicons_262_spade.png │ │ │ ├── glyphicons_263_bank.png │ │ │ ├── glyphicons_264_vcard.png │ │ │ ├── glyphicons_265_electrical_plug.png │ │ │ ├── glyphicons_266_flag.png │ │ │ ├── glyphicons_267_credit_card.png │ │ │ ├── glyphicons_268_keyboard_wireless.png │ │ │ ├── glyphicons_269_keyboard_wired.png │ │ │ ├── glyphicons_270_shield.png │ │ │ ├── glyphicons_271_ring.png │ │ │ ├── glyphicons_272_cake.png │ │ │ ├── glyphicons_273_drink.png │ │ │ ├── glyphicons_274_beer.png │ │ │ ├── glyphicons_275_fast_food.png │ │ │ ├── glyphicons_276_cutlery.png │ │ │ ├── glyphicons_277_pizza.png │ │ │ ├── glyphicons_278_birthday_cake.png │ │ │ ├── glyphicons_279_tablet.png │ │ │ ├── glyphicons_280_settings.png │ │ │ ├── glyphicons_281_bullets.png │ │ │ ├── glyphicons_282_cardio.png │ │ │ ├── glyphicons_283_t-shirt.png │ │ │ ├── glyphicons_284_pants.png │ │ │ ├── glyphicons_285_sweater.png │ │ │ ├── glyphicons_286_fabric.png │ │ │ ├── glyphicons_287_leather.png │ │ │ ├── glyphicons_288_scissors.png │ │ │ ├── glyphicons_289_podium.png │ │ │ ├── glyphicons_290_skull.png │ │ │ ├── glyphicons_291_celebration.png │ │ │ ├── glyphicons_292_tea_kettle.png │ │ │ ├── glyphicons_293_french_press.png │ │ │ ├── glyphicons_294_coffe_cup.png │ │ │ ├── glyphicons_295_pot.png │ │ │ ├── glyphicons_296_grater.png │ │ │ ├── glyphicons_297_kettle.png │ │ │ ├── glyphicons_298_hospital.png │ │ │ ├── glyphicons_299_hospital_h.png │ │ │ ├── glyphicons_300_microphone.png │ │ │ ├── glyphicons_301_webcam.png │ │ │ ├── glyphicons_302_temple_christianity_church.png │ │ │ ├── glyphicons_303_temple_islam.png │ │ │ ├── glyphicons_304_temple_hindu.png │ │ │ ├── glyphicons_305_temple_buddhist.png │ │ │ ├── glyphicons_306_electrical_socket_eu.png │ │ │ ├── glyphicons_307_electrical_socket_us.png │ │ │ ├── glyphicons_308_bomb.png │ │ │ ├── glyphicons_309_comments.png │ │ │ ├── glyphicons_310_flower.png │ │ │ ├── glyphicons_311_baseball.png │ │ │ ├── glyphicons_312_rugby.png │ │ │ ├── glyphicons_313_ax.png │ │ │ ├── glyphicons_314_table_tennis.png │ │ │ ├── glyphicons_315_bowling.png │ │ │ ├── glyphicons_316_tree_conifer.png │ │ │ ├── glyphicons_317_tree_deciduous.png │ │ │ ├── glyphicons_318_more-items.png │ │ │ ├── glyphicons_319_sort.png │ │ │ ├── glyphicons_320_facebook.png │ │ │ ├── glyphicons_321_twitter_t.png │ │ │ ├── glyphicons_322_twitter.png │ │ │ ├── glyphicons_323_buzz.png │ │ │ ├── glyphicons_324_vimeo.png │ │ │ ├── glyphicons_325_flickr.png │ │ │ ├── glyphicons_326_last_fm.png │ │ │ ├── glyphicons_327_rss.png │ │ │ ├── glyphicons_328_skype.png │ │ │ ├── glyphicons_329_e-mail.png │ │ │ ├── glyphicons_330_instapaper.png │ │ │ ├── glyphicons_331_evernote.png │ │ │ ├── glyphicons_332_xing.png │ │ │ ├── glyphicons_333_zootool.png │ │ │ ├── glyphicons_334_dribbble.png │ │ │ ├── glyphicons_335_deviantart.png │ │ │ ├── glyphicons_336_read_it_later.png │ │ │ ├── glyphicons_337_linked_in.png │ │ │ ├── glyphicons_338_forrst.png │ │ │ ├── glyphicons_339_pinboard.png │ │ │ ├── glyphicons_340_behance.png │ │ │ ├── glyphicons_341_github.png │ │ │ ├── glyphicons_342_youtube.png │ │ │ ├── glyphicons_343_skitch.png │ │ │ ├── glyphicons_344_4square.png │ │ │ ├── glyphicons_345_quora.png │ │ │ ├── glyphicons_346_google_plus.png │ │ │ ├── glyphicons_347_spootify.png │ │ │ ├── glyphicons_348_stumbleupon.png │ │ │ └── glyphicons_349_readability.png │ │ ├── glyph2 │ │ │ ├── 00-Read me first - license.txt │ │ │ ├── 01-refresh.png │ │ │ ├── 02-redo.png │ │ │ ├── 03-loopback.png │ │ │ ├── 04-squiggle.png │ │ │ ├── 05-shuffle.png │ │ │ ├── 06-magnify.png │ │ │ ├── 07-map-marker.png │ │ │ ├── 08-chat.png │ │ │ ├── 09-chat-2.png │ │ │ ├── 09-chat-22.png │ │ │ ├── 10-medical.png │ │ │ ├── 100-coffee.png │ │ │ ├── 101-gameplan.png │ │ │ ├── 102-walk.png │ │ │ ├── 103-map.png │ │ │ ├── 104-index-cards.png │ │ │ ├── 105-piano.png │ │ │ ├── 106-sliders.png │ │ │ ├── 107-widescreen.png │ │ │ ├── 108-badge.png │ │ │ ├── 109-chicken.png │ │ │ ├── 11-clock.png │ │ │ ├── 11-clock2.png │ │ │ ├── 110-bug.png │ │ │ ├── 111-user.png │ │ │ ├── 112-group2.png │ │ │ ├── 113-navigation.png │ │ │ ├── 114-balloon.png │ │ │ ├── 115-bow-and-arrow.png │ │ │ ├── 116-controller.png │ │ │ ├── 117-todo.png │ │ │ ├── 118-coat-hanger.png │ │ │ ├── 119-piggy-bank.png │ │ │ ├── 12-eye.png │ │ │ ├── 120-headphones.png │ │ │ ├── 121-landscape.png │ │ │ ├── 122-stats2.png │ │ │ ├── 123-id-card.png │ │ │ ├── 124-bullhorn.png │ │ │ ├── 125-food.png │ │ │ ├── 126-moon.png │ │ │ ├── 127-sock.png │ │ │ ├── 128-bone.png │ │ │ ├── 129-golf.png │ │ │ ├── 13-target.png │ │ │ ├── 130-dice.png │ │ │ ├── 131-tower.png │ │ │ ├── 132-ghost.png │ │ │ ├── 133-ufo.png │ │ │ ├── 134-viking.png │ │ │ ├── 135-hockeymask.png │ │ │ ├── 136-tractor.png │ │ │ ├── 137-presentation.png │ │ │ ├── 138-scales.png │ │ │ ├── 139-flags.png │ │ │ ├── 14-tag.png │ │ │ ├── 140-gradhat.png │ │ │ ├── 141-lamp.png │ │ │ ├── 142-wine-bottle.png │ │ │ ├── 143-liquor-bottle.png │ │ │ ├── 144-martini.png │ │ │ ├── 145-persondot.png │ │ │ ├── 146-gavel.png │ │ │ ├── 147-popsicle.png │ │ │ ├── 148-doghouse.png │ │ │ ├── 149-windmill.png │ │ │ ├── 15-tags.png │ │ │ ├── 150-sailboat.png │ │ │ ├── 151-telescope.png │ │ │ ├── 152-rolodex.png │ │ │ ├── 153-guitar.png │ │ │ ├── 154-necktie.png │ │ │ ├── 155-bowtie.png │ │ │ ├── 156-controlpad.png │ │ │ ├── 157-wrench.png │ │ │ ├── 158-wrench-2.png │ │ │ ├── 159-voicemail.png │ │ │ ├── 16-line-chart.png │ │ │ ├── 160-voicemail-2.png │ │ │ ├── 161-calculator.png │ │ │ ├── 162-receipt.png │ │ │ ├── 163-glasses-1.png │ │ │ ├── 164-glasses-2.png │ │ │ ├── 165-glasses-3.png │ │ │ ├── 166-newspaper.png │ │ │ ├── 167-upload-photo.png │ │ │ ├── 168-upload-photo-2.png │ │ │ ├── 169-8ball.png │ │ │ ├── 17-bar-chart2.png │ │ │ ├── 170-butterfly.png │ │ │ ├── 171-sun.png │ │ │ ├── 172-pricetag.png │ │ │ ├── 173-eyedropper.png │ │ │ ├── 174-imac.png │ │ │ ├── 175-macbook.png │ │ │ ├── 176-ipad.png │ │ │ ├── 177-building.png │ │ │ ├── 178-city.png │ │ │ ├── 179-notepad.png │ │ │ ├── 18-envelope.png │ │ │ ├── 18-envelope2.png │ │ │ ├── 180-stickynote.png │ │ │ ├── 181-hammer.png │ │ │ ├── 182-messenger-bag.png │ │ │ ├── 183-genie-lamp.png │ │ │ ├── 184-warning.png │ │ │ ├── 185-printer.png │ │ │ ├── 186-ruler.png │ │ │ ├── 187-pencil.png │ │ │ ├── 188-paint-roller.png │ │ │ ├── 189-plant.png │ │ │ ├── 19-gear.png │ │ │ ├── 190-bank.png │ │ │ ├── 191-collection.png │ │ │ ├── 192-credit-card.png │ │ │ ├── 193-location-arrow.png │ │ │ ├── 194-note-2.png │ │ │ ├── 195-barcode.png │ │ │ ├── 196-radiation.png │ │ │ ├── 197-card-diamonds.png │ │ │ ├── 198-card-spades.png │ │ │ ├── 199-card-hearts.png │ │ │ ├── 20-gear2.png │ │ │ ├── 200-card-clubs.png │ │ │ ├── 21-skull.png │ │ │ ├── 22-skull-n-bones.png │ │ │ ├── 23-bird.png │ │ │ ├── 24-gift.png │ │ │ ├── 25-weather.png │ │ │ ├── 26-bandaid.png │ │ │ ├── 27-planet.png │ │ │ ├── 28-star.png │ │ │ ├── 29-heart.png │ │ │ ├── 30-key.png │ │ │ ├── 31-ipod.png │ │ │ ├── 32-iphone.png │ │ │ ├── 33-cabinet.png │ │ │ ├── 34-coffee.png │ │ │ ├── 35-shopping.png │ │ │ ├── 36-toolbox.png │ │ │ ├── 37-suitcase.png │ │ │ ├── 38-airplane.png │ │ │ ├── 39-spraycan.png │ │ │ ├── 40-inbox.png │ │ │ ├── 41-picture-frame.png │ │ │ ├── 42-photos.png │ │ │ ├── 43-film-roll.png │ │ │ ├── 44-shoebox.png │ │ │ ├── 45-movie-1.png │ │ │ ├── 46-movie-2.png │ │ │ ├── 47-fuel.png │ │ │ ├── 48-fork-and-knife.png │ │ │ ├── 49-battery.png │ │ │ ├── 50-beaker.png │ │ │ ├── 51-outlet.png │ │ │ ├── 52-pine-tree.png │ │ │ ├── 53-house.png │ │ │ ├── 54-lock.png │ │ │ ├── 55-network.png │ │ │ ├── 55-network2.png │ │ │ ├── 56-cloud.png │ │ │ ├── 57-download.png │ │ │ ├── 58-bookmark.png │ │ │ ├── 59-flag.png │ │ │ ├── 60-signpost.png │ │ │ ├── 61-brightness.png │ │ │ ├── 62-contrast.png │ │ │ ├── 63-runner.png │ │ │ ├── 64-zap.png │ │ │ ├── 65-note.png │ │ │ ├── 66-microphone.png │ │ │ ├── 67-tshirt.png │ │ │ ├── 68-paperclip.png │ │ │ ├── 69-display.png │ │ │ ├── 70-tv.png │ │ │ ├── 71-compass.png │ │ │ ├── 72-pin.png │ │ │ ├── 73-radar.png │ │ │ ├── 74-location.png │ │ │ ├── 75-phone.png │ │ │ ├── 75-phone2.png │ │ │ ├── 76-baby.png │ │ │ ├── 77-ekg.png │ │ │ ├── 78-stopwatch.png │ │ │ ├── 79-medical-bag.png │ │ │ ├── 80-shopping-cart.png │ │ │ ├── 81-dashboard.png │ │ │ ├── 81-dashboard2.png │ │ │ ├── 82-dog-paw.png │ │ │ ├── 83-calendar.png │ │ │ ├── 84-lightbulb.png │ │ │ ├── 85-trophy.png │ │ │ ├── 86-camera.png │ │ │ ├── 87-wine-glass.png │ │ │ ├── 88-beer-mug.png │ │ │ ├── 89-dumbell.png │ │ │ ├── 90-life-buoy.png │ │ │ ├── 91-beaker-2.png │ │ │ ├── 92-test-tube.png │ │ │ ├── 93-thermometer.png │ │ │ ├── 94-pill.png │ │ │ ├── 95-equalizer.png │ │ │ ├── 96-book.png │ │ │ ├── 97-puzzle.png │ │ │ ├── 98-palette.png │ │ │ └── 99-umbrella.png │ │ ├── igroups.png │ │ ├── img │ │ │ ├── amex.png │ │ │ ├── anchor-arrow.png │ │ │ ├── arrow-left.png │ │ │ ├── arrow-right.png │ │ │ ├── arrow.png │ │ │ ├── arrow3.png │ │ │ ├── arrow4.png │ │ │ ├── arrow_active.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_small.png │ │ │ ├── background.png │ │ │ ├── bezel_right.png │ │ │ ├── bezel_top.png │ │ │ ├── bottom.png │ │ │ ├── bottom_big.png │ │ │ ├── bullet.png │ │ │ ├── bullet2.png │ │ │ ├── c0345e3f1e0b71161d086cbc97a7adf9.png │ │ │ ├── calendar-view │ │ │ │ └── arrow.png │ │ │ ├── calendar_arrow_up.png │ │ │ ├── calendar_border.png │ │ │ ├── calendar_glyph.png │ │ │ ├── center.png │ │ │ ├── center_big.png │ │ │ ├── center_big2.png │ │ │ ├── clear.png │ │ │ ├── close.png │ │ │ ├── company.png │ │ │ ├── copy.png │ │ │ ├── create.png │ │ │ ├── curved_arrow.png │ │ │ ├── delete.png │ │ │ ├── discover.png │ │ │ ├── dispute.png │ │ │ ├── divider.png │ │ │ ├── divider2.png │ │ │ ├── divider3.png │ │ │ ├── done.png │ │ │ ├── edit.png │ │ │ ├── error.png │ │ │ ├── error_arrow.png │ │ │ ├── export.png │ │ │ ├── header-background.png │ │ │ ├── icons.png │ │ │ ├── icons2.png │ │ │ ├── individual.png │ │ │ ├── info.png │ │ │ ├── jcb.png │ │ │ ├── knob.png │ │ │ ├── left_center.png │ │ │ ├── logo.png │ │ │ ├── marker.png │ │ │ ├── mastercard.png │ │ │ ├── negative.png │ │ │ ├── positive.png │ │ │ ├── refunded.png │ │ │ ├── remove.png │ │ │ ├── retry.png │ │ │ ├── right.png │ │ │ ├── roll.png │ │ │ ├── search_clear.png │ │ │ ├── search_left_center.png │ │ │ ├── search_right.png │ │ │ ├── selected.png │ │ │ ├── selected_indicator.png │ │ │ ├── settings.png │ │ │ ├── small-divider.png │ │ │ ├── spinner.gif │ │ │ ├── spinner_24x24.gif │ │ │ ├── success.png │ │ │ ├── test-badge.png │ │ │ ├── top.png │ │ │ ├── top2.png │ │ │ ├── top_big.png │ │ │ ├── track-live.png │ │ │ ├── track-test.png │ │ │ ├── triangle.png │ │ │ ├── uncaptured.png │ │ │ └── visa.png │ │ └── jquery_ui │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ └── ui-icons_f9bd01_256x240.png │ ├── jqueryui │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_75_ffffff_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-bg_inset-soft_95_fef1ec_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ └── ui-icons_f6cf3b_256x240.png │ │ ├── jquery-ui-1.8.16.custom.css │ │ └── jquery.ui.1.8.16.ie.css │ ├── js │ │ ├── demo.js │ │ ├── jquery-1.6.2.min.js │ │ └── jquery-ui-1.8.16.custom.min.js │ └── style.css │ ├── default │ ├── bootstrap.min.css │ ├── images │ │ ├── add-button-bg.png │ │ ├── applet-drag-grip.png │ │ ├── assign-owner-button-bg.png │ │ ├── button-bg.png │ │ ├── call-button-bg.png │ │ ├── device-drag-grip.png │ │ ├── dropdown-select-button-bg.png │ │ ├── main-context-menu-bg.png │ │ ├── nav-title-bg.png │ │ ├── normal-button-bg.png │ │ ├── openvbx-header-logo.png │ │ ├── play-pause-stop-bg.png │ │ ├── quick-call-button-bg.png │ │ ├── quick-call-popup-button-bg.png │ │ ├── quick-sms-button-bg.png │ │ ├── quick-sms-popup-button-bg.png │ │ ├── quick-sms-send-button-bg.png │ │ ├── sms-button-bg.png │ │ ├── submit-button-bg.png │ │ └── user-drag-grip.png │ └── style.css │ ├── griffin │ ├── images │ │ ├── assign-owner-button-bg.png │ │ ├── bg-overlay.png │ │ ├── button-bg.png │ │ ├── call-button-bg.png │ │ ├── dropdown-select-button-bg.png │ │ ├── flowline-nav-arrows-sprite.png │ │ ├── griffinvbx-logo.png │ │ ├── main-context-menu-bg.png │ │ ├── normal-button-bg.png │ │ ├── openvbx-header-logo.png │ │ ├── play-pause-stop-bg.png │ │ ├── quick-call-button-bg.png │ │ ├── quick-call-popup-button-bg.png │ │ ├── quick-sms-button-bg.png │ │ ├── quick-sms-popup-button-bg.png │ │ ├── sms-button-bg.png │ │ └── submit-button-bg.png │ └── style.css │ ├── homepage │ ├── css │ │ ├── blitzer │ │ │ ├── images │ │ │ │ ├── ui-bg_diagonals-thick_75_f3d8d8_40x40.png │ │ │ │ ├── ui-bg_dots-small_65_a6a6a6_2x2.png │ │ │ │ ├── ui-bg_flat_0_333333_40x100.png │ │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf8ee_1x400.png │ │ │ │ ├── ui-bg_highlight-hard_100_eeeeee_1x100.png │ │ │ │ ├── ui-bg_highlight-hard_100_f6f6f6_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_15_cc0000_1x100.png │ │ │ │ ├── ui-icons_004276_256x240.png │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ └── jquery-ui-1.8.10.custom.css │ │ ├── bootstrap-1.3.css │ │ ├── bootstrap-1.4 │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min-1.3.css │ │ ├── bootstrap.min.css │ │ ├── calendar │ │ │ ├── Error.css │ │ │ ├── alert.css │ │ │ ├── calendar.css │ │ │ ├── colorselect.css │ │ │ ├── dailog.css │ │ │ ├── dp.css │ │ │ ├── dropdown.css │ │ │ ├── images │ │ │ │ ├── alert │ │ │ │ │ ├── bot.gif │ │ │ │ │ ├── close.gif │ │ │ │ │ ├── corners.gif │ │ │ │ │ ├── cornersBlue.gif │ │ │ │ │ ├── help.gif │ │ │ │ │ ├── important.gif │ │ │ │ │ ├── info.gif │ │ │ │ │ ├── title.gif │ │ │ │ │ └── title1.gif │ │ │ │ ├── bgs │ │ │ │ │ ├── CardHeadbg.jpg │ │ │ │ │ ├── CardHeadbg.png │ │ │ │ │ ├── ch.gif │ │ │ │ │ ├── headbg.gif │ │ │ │ │ ├── minus1.gif │ │ │ │ │ └── plus1.gif │ │ │ │ ├── calendar │ │ │ │ │ ├── bubble_combined.png │ │ │ │ │ ├── combined.gif │ │ │ │ │ ├── grid.png │ │ │ │ │ ├── gridth.gif │ │ │ │ │ ├── headbg.gif │ │ │ │ │ ├── indicator_web20_working.gif │ │ │ │ │ ├── load-bg.png │ │ │ │ │ └── tbg.gif │ │ │ │ ├── dailog │ │ │ │ │ ├── app-form.png │ │ │ │ │ ├── headbg.gif │ │ │ │ │ ├── left-corners.png │ │ │ │ │ ├── left-right.png │ │ │ │ │ ├── right-corners.png │ │ │ │ │ ├── tool-sprites.gif │ │ │ │ │ └── top-bottom.png │ │ │ │ ├── dp │ │ │ │ │ ├── btn-arrow-light.gif │ │ │ │ │ └── btn-arrow.gif │ │ │ │ ├── dropdown │ │ │ │ │ ├── dropdown.gif │ │ │ │ │ └── dropdownhover.gif │ │ │ │ ├── home │ │ │ │ │ ├── logo.gif │ │ │ │ │ ├── toolbarbg.jpg │ │ │ │ │ └── top_bg.jpg │ │ │ │ ├── icons │ │ │ │ │ ├── Btn.Close.gif │ │ │ │ │ ├── Item.Add.gif │ │ │ │ │ ├── Item.Delete.gif │ │ │ │ │ ├── Item.Edit.gif │ │ │ │ │ ├── Item.Input.gif │ │ │ │ │ ├── Item.Save.gif │ │ │ │ │ ├── Item.Search.gif │ │ │ │ │ ├── add.png │ │ │ │ │ ├── appt.gif │ │ │ │ │ ├── au.gif │ │ │ │ │ ├── cacheClear.png │ │ │ │ │ ├── cal-day.gif │ │ │ │ │ ├── cal-month.gif │ │ │ │ │ ├── cal-proc.gif │ │ │ │ │ ├── cal-rsc-perm.gif │ │ │ │ │ ├── cal-week.gif │ │ │ │ │ ├── cal-wk-week.gif │ │ │ │ │ ├── cal.gif │ │ │ │ │ ├── calendar.gif │ │ │ │ │ ├── calwrkwk.gif │ │ │ │ │ ├── canmtg.gif │ │ │ │ │ ├── circle_animation.gif │ │ │ │ │ ├── clndr.gif │ │ │ │ │ ├── clndrsmll.gif │ │ │ │ │ ├── cn.gif │ │ │ │ │ ├── date.png │ │ │ │ │ ├── date_add.png │ │ │ │ │ ├── date_reflash.png │ │ │ │ │ ├── delete.png │ │ │ │ │ ├── edit.png │ │ │ │ │ ├── folder_user.gif │ │ │ │ │ ├── group.gif │ │ │ │ │ ├── group_add.gif │ │ │ │ │ ├── hk.png │ │ │ │ │ ├── ico1.gif │ │ │ │ │ ├── indicator.gif │ │ │ │ │ ├── msg_center.gif │ │ │ │ │ ├── msg_email.gif │ │ │ │ │ ├── msg_im.gif │ │ │ │ │ ├── msg_mobile.gif │ │ │ │ │ ├── mtgreq-cancel.gif │ │ │ │ │ ├── mtgreq.gif │ │ │ │ │ ├── mtgrsp-accept.gif │ │ │ │ │ ├── mtgrsp-decline.gif │ │ │ │ │ ├── mtgrsp-tent.gif │ │ │ │ │ ├── pgrs-sm.gif │ │ │ │ │ ├── resultset_next.png │ │ │ │ │ ├── resultset_previous.png │ │ │ │ │ ├── rowdelete.png │ │ │ │ │ ├── table.gif │ │ │ │ │ ├── table_c.gif │ │ │ │ │ ├── table_copy.png │ │ │ │ │ ├── table_r.png │ │ │ │ │ ├── table_refresh.png │ │ │ │ │ ├── tick.png │ │ │ │ │ ├── turnback.png │ │ │ │ │ ├── us.gif │ │ │ │ │ └── view.png │ │ │ │ ├── share │ │ │ │ │ ├── card.gif │ │ │ │ │ ├── glass-bg.gif │ │ │ │ │ ├── hd-sprite.gif │ │ │ │ │ ├── headbg.gif │ │ │ │ │ ├── information.png │ │ │ │ │ ├── left-btn.gif │ │ │ │ │ ├── right-btn.gif │ │ │ │ │ ├── table.gif │ │ │ │ │ ├── table_c.gif │ │ │ │ │ ├── tbg.gif │ │ │ │ │ └── tool-sprites.gif │ │ │ │ └── validation │ │ │ │ │ ├── accept.png │ │ │ │ │ ├── exclamation.png │ │ │ │ │ ├── tooltop.gif │ │ │ │ │ └── warning.gif │ │ │ └── main.css │ │ ├── colors.css │ │ ├── cscss.css │ │ ├── default.css │ │ ├── default2.css │ │ ├── demo.css │ │ ├── docs.css │ │ ├── dp_calendar.css │ │ ├── facebox.css │ │ ├── header.css │ │ ├── homepage.css │ │ ├── ie.css │ │ ├── images │ │ │ ├── ui-bg_diagonals-thick_75_f3d8d8_40x40.png │ │ │ ├── ui-bg_dots-small_65_a6a6a6_2x2.png │ │ │ ├── ui-bg_flat_0_333333_40x100.png │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf8ee_1x400.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_highlight-hard_100_eeeeee_1x100.png │ │ │ ├── ui-bg_highlight-hard_100_f6f6f6_1x100.png │ │ │ ├── ui-bg_highlight-soft_15_cc0000_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_004276_256x240.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── jquery.ui.all.css │ │ ├── jquery.ui.autocomplete.css │ │ ├── jquery.ui.base.css │ │ ├── jquery.ui.button.css │ │ ├── jquery.ui.core.css │ │ ├── jquery.ui.datepicker.css │ │ ├── jquery.ui.dialog.css │ │ ├── jquery.ui.progressbar.css │ │ ├── jquery.ui.resizable.css │ │ ├── jquery.ui.selectable.css │ │ ├── jquery.ui.slider.css │ │ ├── jquery.ui.tabs.css │ │ ├── jquery.ui.theme.css │ │ ├── jqueryui.css │ │ ├── landrush.css │ │ ├── navglass.css │ │ ├── netscape.css │ │ ├── new │ │ │ ├── autoSuggest.css │ │ │ ├── autocomplete.css │ │ │ ├── fonts.css │ │ │ ├── navac.css │ │ │ ├── openlook.css │ │ │ ├── ribbons.css │ │ │ ├── theme_azure.css │ │ │ ├── theme_azure_sidebar.css │ │ │ └── uploadbar.css │ │ ├── orbit-1.2.3.css │ │ ├── orbit │ │ │ ├── bullets.jpg │ │ │ ├── left-arrow.png │ │ │ ├── loading.gif │ │ │ ├── mask-black.png │ │ │ ├── pause-black.png │ │ │ ├── right-arrow.png │ │ │ ├── rotator-black.png │ │ │ ├── timer-black.png │ │ │ └── white.png │ │ ├── phoenix.css │ │ ├── reset 2.css │ │ ├── reset.css │ │ ├── site1.css │ │ ├── smoothness │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ └── jquery-ui-1.7.1.custom.css │ │ ├── style1.css │ │ └── visualsearch │ │ │ ├── icons.css │ │ │ ├── reset.css │ │ │ └── workspace.css │ ├── fonts │ │ ├── DXI1ORHCpsQm3Vp6mXoaTaRDOzjiPcYnFooOUGCOsRk.woff │ │ ├── Kom15zUm24dIPfIRiNogNuvvDin1pK8aKteLpeZ5c0A.woff │ │ ├── SqA9OdmswJX8b4TrqlN76KCWcynf_cDxXwCLxiixG1c.woff │ │ ├── TgrecWq39GVsTOFonFwGXQLUuEpTyoUstqEm5AMlJo4.woff │ │ ├── ZS0wkeOZuckNE3boyLYNt6CWcynf_cDxXwCLxiixG1c.woff │ │ ├── cJZKeOuBrn4kERxqtaUH3bO3LdcAZYWl9Si6vvxL-qU.woff │ │ ├── kJXt72Gt1LyFMZcEKAAvlKCWcynf_cDxXwCLxiixG1c.woff │ │ ├── kcf5uOXucLcbFOydGU24WALUuEpTyoUstqEm5AMlJo4.woff │ │ └── qIIYRU-oROkIk8vfvxw6QvesZW2xOQ-xsNqO47m55DA.woff │ ├── icons │ │ ├── creditcards │ │ │ ├── amex.png │ │ │ ├── discover.png │ │ │ ├── jcb.png │ │ │ ├── maestro.png │ │ │ ├── mastercard.png │ │ │ └── visa.png │ │ ├── logos │ │ │ ├── bubble.jpg │ │ │ ├── chatbubble.jpg │ │ │ ├── chatbubble2.jpg │ │ │ ├── chatbubbles.jpg │ │ │ ├── checkbox.jpg │ │ │ ├── cloud.jpg │ │ │ ├── cloud2.jpg │ │ │ ├── com.jpg │ │ │ ├── communications.jpg │ │ │ ├── computer.jpg │ │ │ ├── computers.jpg │ │ │ ├── contact.jpg │ │ │ ├── contactus2.jpg │ │ │ ├── contactus3.jpg │ │ │ ├── contactus4.jpg │ │ │ ├── flags.jpg │ │ │ ├── laptop.jpg │ │ │ ├── letter.jpg │ │ │ ├── man.jpg │ │ │ ├── message.jpg │ │ │ ├── money.jpg │ │ │ ├── papers.jpg │ │ │ ├── people.jpg │ │ │ ├── people2.jpg │ │ │ ├── people3.jpg │ │ │ ├── phone.jpg │ │ │ ├── phone2.jpg │ │ │ ├── phone3.jpg │ │ │ ├── phone4.jpg │ │ │ ├── phone5.jpg │ │ │ ├── phonesw.jpg │ │ │ ├── puzzlepiece.jpg │ │ │ ├── puzzlepieces.jpg │ │ │ ├── receiver.jpg │ │ │ ├── search.jpg │ │ │ ├── tabler.jpg │ │ │ └── tele.jpg │ │ ├── minimalistica_red │ │ │ ├── 128x128 │ │ │ │ ├── add.png │ │ │ │ ├── add_to_favorite.png │ │ │ │ ├── apple.png │ │ │ │ ├── attach_document.png │ │ │ │ ├── attachment.png │ │ │ │ ├── back.png │ │ │ │ ├── battery.png │ │ │ │ ├── battery_full.png │ │ │ │ ├── battery_low.png │ │ │ │ ├── briefcase.png │ │ │ │ ├── business_user.png │ │ │ │ ├── calculator.png │ │ │ │ ├── calendar.png │ │ │ │ ├── camcorder.png │ │ │ │ ├── card_game_icon.png │ │ │ │ ├── chalk_board.png │ │ │ │ ├── chart.png │ │ │ │ ├── chart_pie.png │ │ │ │ ├── check_mark.png │ │ │ │ ├── clock.png │ │ │ │ ├── cloud_comment.png │ │ │ │ ├── comment.png │ │ │ │ ├── comments.png │ │ │ │ ├── cut.png │ │ │ │ ├── database.png │ │ │ │ ├── delete.png │ │ │ │ ├── dollar_currency_sign.png │ │ │ │ ├── download.png │ │ │ │ ├── euro_currency_sign.png │ │ │ │ ├── exclamination_mark.png │ │ │ │ ├── favorite.png │ │ │ │ ├── flag.png │ │ │ │ ├── folder.png │ │ │ │ ├── games.png │ │ │ │ ├── home.png │ │ │ │ ├── id_card.png │ │ │ │ ├── image.png │ │ │ │ ├── info.png │ │ │ │ ├── lightbulb.png │ │ │ │ ├── link.png │ │ │ │ ├── lock.png │ │ │ │ ├── mail.png │ │ │ │ ├── map_pin.png │ │ │ │ ├── megaphone.png │ │ │ │ ├── microphone.png │ │ │ │ ├── monitor.png │ │ │ │ ├── mp3_player.png │ │ │ │ ├── music_note.png │ │ │ │ ├── network.png │ │ │ │ ├── new.png │ │ │ │ ├── newsletter.png │ │ │ │ ├── next.png │ │ │ │ ├── notification.png │ │ │ │ ├── package.png │ │ │ │ ├── page.png │ │ │ │ ├── page_full.png │ │ │ │ ├── paint_brush.png │ │ │ │ ├── palette.png │ │ │ │ ├── pencil.png │ │ │ │ ├── phone.png │ │ │ │ ├── photo_camera.png │ │ │ │ ├── printer.png │ │ │ │ ├── promotion.png │ │ │ │ ├── question_mark.png │ │ │ │ ├── refresh.png │ │ │ │ ├── rss.png │ │ │ │ ├── sale.png │ │ │ │ ├── save.png │ │ │ │ ├── search.png │ │ │ │ ├── security.png │ │ │ │ ├── settings.png │ │ │ │ ├── shopping_cart.png │ │ │ │ ├── smart_phone.png │ │ │ │ ├── star.png │ │ │ │ ├── sterling_pound_currency_sign.png │ │ │ │ ├── tag.png │ │ │ │ ├── target.png │ │ │ │ ├── television.png │ │ │ │ ├── tools.png │ │ │ │ ├── unlock.png │ │ │ │ ├── upload.png │ │ │ │ ├── user.png │ │ │ │ ├── users.png │ │ │ │ ├── video.png │ │ │ │ ├── warning.png │ │ │ │ ├── waste.png │ │ │ │ ├── world.png │ │ │ │ ├── yen_currency_sign.png │ │ │ │ ├── zoom_in.png │ │ │ │ └── zoom_out.png │ │ │ ├── 16x16 │ │ │ │ ├── add.png │ │ │ │ ├── add_to_favorite.png │ │ │ │ ├── apple.png │ │ │ │ ├── attach_document.png │ │ │ │ ├── attachment.png │ │ │ │ ├── back.png │ │ │ │ ├── battery.png │ │ │ │ ├── battery_full.png │ │ │ │ ├── battery_low.png │ │ │ │ ├── briefcase.png │ │ │ │ ├── business_user.png │ │ │ │ ├── calculator.png │ │ │ │ ├── calendar.png │ │ │ │ ├── camcorder.png │ │ │ │ ├── card_game_icon.png │ │ │ │ ├── chalk_board.png │ │ │ │ ├── chart.png │ │ │ │ ├── chart_pie.png │ │ │ │ ├── check_mark.png │ │ │ │ ├── clock.png │ │ │ │ ├── cloud_comment.png │ │ │ │ ├── comment.png │ │ │ │ ├── comments.png │ │ │ │ ├── cut.png │ │ │ │ ├── database.png │ │ │ │ ├── delete.png │ │ │ │ ├── dollar_currency_sign.png │ │ │ │ ├── download.png │ │ │ │ ├── euro_currency_sign.png │ │ │ │ ├── exclamination_mark.png │ │ │ │ ├── favorite.png │ │ │ │ ├── flag.png │ │ │ │ ├── folder.png │ │ │ │ ├── games.png │ │ │ │ ├── home.png │ │ │ │ ├── id_card.png │ │ │ │ ├── image.png │ │ │ │ ├── info.png │ │ │ │ ├── lightbulb.png │ │ │ │ ├── link.png │ │ │ │ ├── lock.png │ │ │ │ ├── mail.png │ │ │ │ ├── map_pin.png │ │ │ │ ├── megaphone.png │ │ │ │ ├── microphone.png │ │ │ │ ├── monitor.png │ │ │ │ ├── mp3_player.png │ │ │ │ ├── music_note.png │ │ │ │ ├── network.png │ │ │ │ ├── new.png │ │ │ │ ├── newsletter.png │ │ │ │ ├── next.png │ │ │ │ ├── notification.png │ │ │ │ ├── package.png │ │ │ │ ├── page.png │ │ │ │ ├── page_full.png │ │ │ │ ├── paint_brush.png │ │ │ │ ├── palette.png │ │ │ │ ├── pencil.png │ │ │ │ ├── phone.png │ │ │ │ ├── photo_camera.png │ │ │ │ ├── printer.png │ │ │ │ ├── promotion.png │ │ │ │ ├── question_mark.png │ │ │ │ ├── refresh.png │ │ │ │ ├── rss.png │ │ │ │ ├── sale.png │ │ │ │ ├── save.png │ │ │ │ ├── search.png │ │ │ │ ├── security.png │ │ │ │ ├── settings.png │ │ │ │ ├── shopping_cart.png │ │ │ │ ├── smart_phone.png │ │ │ │ ├── star.png │ │ │ │ ├── sterling_pound_currency_sign.png │ │ │ │ ├── tag.png │ │ │ │ ├── target.png │ │ │ │ ├── television.png │ │ │ │ ├── tools.png │ │ │ │ ├── unlock.png │ │ │ │ ├── upload.png │ │ │ │ ├── user.png │ │ │ │ ├── users.png │ │ │ │ ├── video.png │ │ │ │ ├── warning.png │ │ │ │ ├── waste.png │ │ │ │ ├── world.png │ │ │ │ ├── yen_currency_sign.png │ │ │ │ ├── zoom_in.png │ │ │ │ └── zoom_out.png │ │ │ ├── 24x24 │ │ │ │ ├── add.png │ │ │ │ ├── add_to_favorite.png │ │ │ │ ├── apple.png │ │ │ │ ├── attach_document.png │ │ │ │ ├── attachment.png │ │ │ │ ├── back.png │ │ │ │ ├── battery.png │ │ │ │ ├── battery_full.png │ │ │ │ ├── battery_low.png │ │ │ │ ├── briefcase.png │ │ │ │ ├── business_user.png │ │ │ │ ├── calculator.png │ │ │ │ ├── calendar.png │ │ │ │ ├── camcorder.png │ │ │ │ ├── card_game_icon.png │ │ │ │ ├── chalk_board.png │ │ │ │ ├── chart.png │ │ │ │ ├── chart_pie.png │ │ │ │ ├── check_mark.png │ │ │ │ ├── clock.png │ │ │ │ ├── cloud_comment.png │ │ │ │ ├── comment.png │ │ │ │ ├── comments.png │ │ │ │ ├── cut.png │ │ │ │ ├── database.png │ │ │ │ ├── delete.png │ │ │ │ ├── dollar_currency_sign.png │ │ │ │ ├── download.png │ │ │ │ ├── euro_currency_sign.png │ │ │ │ ├── exclamination_mark.png │ │ │ │ ├── favorite.png │ │ │ │ ├── flag.png │ │ │ │ ├── folder.png │ │ │ │ ├── games.png │ │ │ │ ├── home.png │ │ │ │ ├── id_card.png │ │ │ │ ├── image.png │ │ │ │ ├── info.png │ │ │ │ ├── lightbulb.png │ │ │ │ ├── link.png │ │ │ │ ├── lock.png │ │ │ │ ├── mail.png │ │ │ │ ├── map_pin.png │ │ │ │ ├── megaphone.png │ │ │ │ ├── microphone.png │ │ │ │ ├── monitor.png │ │ │ │ ├── mp3_player.png │ │ │ │ ├── music_note.png │ │ │ │ ├── network.png │ │ │ │ ├── new.png │ │ │ │ ├── newsletter.png │ │ │ │ ├── next.png │ │ │ │ ├── notification.png │ │ │ │ ├── package.png │ │ │ │ ├── page.png │ │ │ │ ├── page_full.png │ │ │ │ ├── paint_brush.png │ │ │ │ ├── palette.png │ │ │ │ ├── pencil.png │ │ │ │ ├── phone.png │ │ │ │ ├── photo_camera.png │ │ │ │ ├── printer.png │ │ │ │ ├── promotion.png │ │ │ │ ├── question_mark.png │ │ │ │ ├── refresh.png │ │ │ │ ├── rss.png │ │ │ │ ├── sale.png │ │ │ │ ├── save.png │ │ │ │ ├── search.png │ │ │ │ ├── security.png │ │ │ │ ├── settings.png │ │ │ │ ├── shopping_cart.png │ │ │ │ ├── smart_phone.png │ │ │ │ ├── star.png │ │ │ │ ├── sterling_pound_currency_sign.png │ │ │ │ ├── tag.png │ │ │ │ ├── target.png │ │ │ │ ├── television.png │ │ │ │ ├── tools.png │ │ │ │ ├── unlock.png │ │ │ │ ├── upload.png │ │ │ │ ├── user.png │ │ │ │ ├── users.png │ │ │ │ ├── video.png │ │ │ │ ├── warning.png │ │ │ │ ├── waste.png │ │ │ │ ├── world.png │ │ │ │ ├── yen_currency_sign.png │ │ │ │ ├── zoom_in.png │ │ │ │ └── zoom_out.png │ │ │ ├── 32x32 │ │ │ │ ├── add.png │ │ │ │ ├── add_to_favorite.png │ │ │ │ ├── apple.png │ │ │ │ ├── attach_document.png │ │ │ │ ├── attachment.png │ │ │ │ ├── back.png │ │ │ │ ├── battery.png │ │ │ │ ├── battery_full.png │ │ │ │ ├── battery_low.png │ │ │ │ ├── briefcase.png │ │ │ │ ├── business_user.png │ │ │ │ ├── calculator.png │ │ │ │ ├── calendar.png │ │ │ │ ├── camcorder.png │ │ │ │ ├── card_game_icon.png │ │ │ │ ├── chalk_board.png │ │ │ │ ├── chart.png │ │ │ │ ├── chart_pie.png │ │ │ │ ├── check_mark.png │ │ │ │ ├── clock.png │ │ │ │ ├── cloud_comment.png │ │ │ │ ├── comment.png │ │ │ │ ├── comments.png │ │ │ │ ├── cut.png │ │ │ │ ├── database.png │ │ │ │ ├── delete.png │ │ │ │ ├── dollar_currency_sign.png │ │ │ │ ├── download.png │ │ │ │ ├── euro_currency_sign.png │ │ │ │ ├── exclamination_mark.png │ │ │ │ ├── favorite.png │ │ │ │ ├── flag.png │ │ │ │ ├── folder.png │ │ │ │ ├── games.png │ │ │ │ ├── home.png │ │ │ │ ├── id_card.png │ │ │ │ ├── image.png │ │ │ │ ├── info.png │ │ │ │ ├── lightbulb.png │ │ │ │ ├── link.png │ │ │ │ ├── lock.png │ │ │ │ ├── mail.png │ │ │ │ ├── map_pin.png │ │ │ │ ├── megaphone.png │ │ │ │ ├── microphone.png │ │ │ │ ├── monitor.png │ │ │ │ ├── mp3_player.png │ │ │ │ ├── music_note.png │ │ │ │ ├── network.png │ │ │ │ ├── new.png │ │ │ │ ├── newsletter.png │ │ │ │ ├── next.png │ │ │ │ ├── notification.png │ │ │ │ ├── package.png │ │ │ │ ├── page.png │ │ │ │ ├── page_full.png │ │ │ │ ├── paint_brush.png │ │ │ │ ├── palette.png │ │ │ │ ├── pencil.png │ │ │ │ ├── phone.png │ │ │ │ ├── photo_camera.png │ │ │ │ ├── printer.png │ │ │ │ ├── promotion.png │ │ │ │ ├── question_mark.png │ │ │ │ ├── refresh.png │ │ │ │ ├── rss.png │ │ │ │ ├── sale.png │ │ │ │ ├── save.png │ │ │ │ ├── search.png │ │ │ │ ├── security.png │ │ │ │ ├── settings.png │ │ │ │ ├── shopping_cart.png │ │ │ │ ├── smart_phone.png │ │ │ │ ├── star.png │ │ │ │ ├── sterling_pound_currency_sign.png │ │ │ │ ├── tag.png │ │ │ │ ├── target.png │ │ │ │ ├── television.png │ │ │ │ ├── tools.png │ │ │ │ ├── unlock.png │ │ │ │ ├── upload.png │ │ │ │ ├── user.png │ │ │ │ ├── users.png │ │ │ │ ├── video.png │ │ │ │ ├── warning.png │ │ │ │ ├── waste.png │ │ │ │ ├── world.png │ │ │ │ ├── yen_currency_sign.png │ │ │ │ ├── zoom_in.png │ │ │ │ └── zoom_out.png │ │ │ ├── 48x48 │ │ │ │ ├── add.png │ │ │ │ ├── add_to_favorite.png │ │ │ │ ├── apple.png │ │ │ │ ├── attach_document.png │ │ │ │ ├── attachment.png │ │ │ │ ├── back.png │ │ │ │ ├── battery.png │ │ │ │ ├── battery_full.png │ │ │ │ ├── battery_low.png │ │ │ │ ├── briefcase.png │ │ │ │ ├── business_user.png │ │ │ │ ├── calculator.png │ │ │ │ ├── calendar.png │ │ │ │ ├── camcorder.png │ │ │ │ ├── card_game_icon.png │ │ │ │ ├── chalk_board.png │ │ │ │ ├── chart.png │ │ │ │ ├── chart_pie.png │ │ │ │ ├── check_mark.png │ │ │ │ ├── clock.png │ │ │ │ ├── cloud_comment.png │ │ │ │ ├── comment.png │ │ │ │ ├── comments.png │ │ │ │ ├── cut.png │ │ │ │ ├── database.png │ │ │ │ ├── delete.png │ │ │ │ ├── dollar_currency_sign.png │ │ │ │ ├── download.png │ │ │ │ ├── euro_currency_sign.png │ │ │ │ ├── exclamination_mark.png │ │ │ │ ├── favorite.png │ │ │ │ ├── flag.png │ │ │ │ ├── folder.png │ │ │ │ ├── games.png │ │ │ │ ├── home.png │ │ │ │ ├── id_card.png │ │ │ │ ├── image.png │ │ │ │ ├── info.png │ │ │ │ ├── lightbulb.png │ │ │ │ ├── link.png │ │ │ │ ├── lock.png │ │ │ │ ├── mail.png │ │ │ │ ├── map_pin.png │ │ │ │ ├── megaphone.png │ │ │ │ ├── microphone.png │ │ │ │ ├── monitor.png │ │ │ │ ├── mp3_player.png │ │ │ │ ├── music_note.png │ │ │ │ ├── network.png │ │ │ │ ├── new.png │ │ │ │ ├── newsletter.png │ │ │ │ ├── next.png │ │ │ │ ├── notification.png │ │ │ │ ├── package.png │ │ │ │ ├── page.png │ │ │ │ ├── page_full.png │ │ │ │ ├── paint_brush.png │ │ │ │ ├── palette.png │ │ │ │ ├── pencil.png │ │ │ │ ├── phone.png │ │ │ │ ├── photo_camera.png │ │ │ │ ├── printer.png │ │ │ │ ├── promotion.png │ │ │ │ ├── question_mark.png │ │ │ │ ├── refresh.png │ │ │ │ ├── rss.png │ │ │ │ ├── sale.png │ │ │ │ ├── save.png │ │ │ │ ├── search.png │ │ │ │ ├── security.png │ │ │ │ ├── settings.png │ │ │ │ ├── shopping_cart.png │ │ │ │ ├── smart_phone.png │ │ │ │ ├── star.png │ │ │ │ ├── sterling_pound_currency_sign.png │ │ │ │ ├── tag.png │ │ │ │ ├── target.png │ │ │ │ ├── television.png │ │ │ │ ├── tools.png │ │ │ │ ├── unlock.png │ │ │ │ ├── upload.png │ │ │ │ ├── user.png │ │ │ │ ├── users.png │ │ │ │ ├── video.png │ │ │ │ ├── warning.png │ │ │ │ ├── waste.png │ │ │ │ ├── world.png │ │ │ │ ├── yen_currency_sign.png │ │ │ │ ├── zoom_in.png │ │ │ │ └── zoom_out.png │ │ │ └── 64x64 │ │ │ │ ├── add.png │ │ │ │ ├── add_to_favorite.png │ │ │ │ ├── apple.png │ │ │ │ ├── attach_document.png │ │ │ │ ├── attachment.png │ │ │ │ ├── back.png │ │ │ │ ├── battery.png │ │ │ │ ├── battery_full.png │ │ │ │ ├── battery_low.png │ │ │ │ ├── briefcase.png │ │ │ │ ├── business_user.png │ │ │ │ ├── calculator.png │ │ │ │ ├── calendar.png │ │ │ │ ├── camcorder.png │ │ │ │ ├── card_game_icon.png │ │ │ │ ├── chalk_board.png │ │ │ │ ├── chart.png │ │ │ │ ├── chart_pie.png │ │ │ │ ├── check_mark.png │ │ │ │ ├── clock.png │ │ │ │ ├── cloud_comment.png │ │ │ │ ├── comment.png │ │ │ │ ├── comments.png │ │ │ │ ├── cut.png │ │ │ │ ├── database.png │ │ │ │ ├── delete.png │ │ │ │ ├── dollar_currency_sign.png │ │ │ │ ├── download.png │ │ │ │ ├── euro_currency_sign.png │ │ │ │ ├── exclamination_mark.png │ │ │ │ ├── favorite.png │ │ │ │ ├── flag.png │ │ │ │ ├── folder.png │ │ │ │ ├── games.png │ │ │ │ ├── home.png │ │ │ │ ├── id_card.png │ │ │ │ ├── image.png │ │ │ │ ├── info.png │ │ │ │ ├── lightbulb.png │ │ │ │ ├── link.png │ │ │ │ ├── lock.png │ │ │ │ ├── mail.png │ │ │ │ ├── map_pin.png │ │ │ │ ├── megaphone.png │ │ │ │ ├── microphone.png │ │ │ │ ├── monitor.png │ │ │ │ ├── mp3_player.png │ │ │ │ ├── music_note.png │ │ │ │ ├── network.png │ │ │ │ ├── new.png │ │ │ │ ├── newsletter.png │ │ │ │ ├── next.png │ │ │ │ ├── notification.png │ │ │ │ ├── package.png │ │ │ │ ├── page.png │ │ │ │ ├── page_full.png │ │ │ │ ├── paint_brush.png │ │ │ │ ├── palette.png │ │ │ │ ├── pencil.png │ │ │ │ ├── phone.png │ │ │ │ ├── photo_camera.png │ │ │ │ ├── printer.png │ │ │ │ ├── promotion.png │ │ │ │ ├── question_mark.png │ │ │ │ ├── refresh.png │ │ │ │ ├── rss.png │ │ │ │ ├── sale.png │ │ │ │ ├── save.png │ │ │ │ ├── search.png │ │ │ │ ├── security.png │ │ │ │ ├── settings.png │ │ │ │ ├── shopping_cart.png │ │ │ │ ├── smart_phone.png │ │ │ │ ├── star.png │ │ │ │ ├── sterling_pound_currency_sign.png │ │ │ │ ├── tag.png │ │ │ │ ├── target.png │ │ │ │ ├── television.png │ │ │ │ ├── tools.png │ │ │ │ ├── unlock.png │ │ │ │ ├── upload.png │ │ │ │ ├── user.png │ │ │ │ ├── users.png │ │ │ │ ├── video.png │ │ │ │ ├── warning.png │ │ │ │ ├── waste.png │ │ │ │ ├── world.png │ │ │ │ ├── yen_currency_sign.png │ │ │ │ ├── zoom_in.png │ │ │ │ └── zoom_out.png │ │ └── sticker │ │ │ ├── 128x128 │ │ │ ├── accept_item.png │ │ │ ├── add_item.png │ │ │ ├── add_to_favorites.png │ │ │ ├── attachment.png │ │ │ ├── calculator.png │ │ │ ├── calendar.png │ │ │ ├── camera.png │ │ │ ├── chart.png │ │ │ ├── comment_bubble.png │ │ │ ├── cut.png │ │ │ ├── database_server.png │ │ │ ├── delete_item.png │ │ │ ├── dollar_currency_sign.png │ │ │ ├── down_arrow.png │ │ │ ├── edit_item.png │ │ │ ├── email.png │ │ │ ├── email_send.png │ │ │ ├── euro_currency_sign.png │ │ │ ├── favorite.png │ │ │ ├── folder.png │ │ │ ├── hard_disk.png │ │ │ ├── headphones.png │ │ │ ├── help.png │ │ │ ├── home.png │ │ │ ├── info.png │ │ │ ├── left_arrow.png │ │ │ ├── lock.png │ │ │ ├── login.png │ │ │ ├── note.png │ │ │ ├── note_accept.png │ │ │ ├── note_delete.png │ │ │ ├── printer.png │ │ │ ├── process.png │ │ │ ├── promotion.png │ │ │ ├── remove_item.png │ │ │ ├── right_arrow.png │ │ │ ├── rss_feed.png │ │ │ ├── search_magnifier.png │ │ │ ├── shopping_cart.png │ │ │ ├── telephone.png │ │ │ ├── tool.png │ │ │ ├── trash.png │ │ │ ├── unlock.png │ │ │ ├── up_arrow.png │ │ │ ├── user.png │ │ │ ├── user_comment.png │ │ │ ├── users.png │ │ │ ├── video_movie_track.png │ │ │ ├── world_globe.png │ │ │ ├── yen_currency_sign.png │ │ │ ├── zoom_in_magnifier.png │ │ │ └── zoom_out_magnifier.png │ │ │ ├── 16x16 │ │ │ ├── accept_item.png │ │ │ ├── add_item.png │ │ │ ├── add_to_favorites.png │ │ │ ├── attachment.png │ │ │ ├── calculator.png │ │ │ ├── calendar.png │ │ │ ├── camera.png │ │ │ ├── chart.png │ │ │ ├── comment_bubble.png │ │ │ ├── cut.png │ │ │ ├── database_server.png │ │ │ ├── delete_item.png │ │ │ ├── dollar_currency_sign.png │ │ │ ├── down_arrow.png │ │ │ ├── edit_item.png │ │ │ ├── email.png │ │ │ ├── email_send.png │ │ │ ├── euro_currency_sign.png │ │ │ ├── favorite.png │ │ │ ├── folder.png │ │ │ ├── hard_disk.png │ │ │ ├── headphones.png │ │ │ ├── help.png │ │ │ ├── home.png │ │ │ ├── info.png │ │ │ ├── left_arrow.png │ │ │ ├── lock.png │ │ │ ├── login.png │ │ │ ├── note.png │ │ │ ├── note_accept.png │ │ │ ├── note_delete.png │ │ │ ├── printer.png │ │ │ ├── process.png │ │ │ ├── promotion.png │ │ │ ├── remove_item.png │ │ │ ├── right_arrow.png │ │ │ ├── rss_feed.png │ │ │ ├── search_magnifier.png │ │ │ ├── shopping_cart.png │ │ │ ├── telephone.png │ │ │ ├── tool.png │ │ │ ├── trash.png │ │ │ ├── unlock.png │ │ │ ├── up_arrow.png │ │ │ ├── user.png │ │ │ ├── user_comment.png │ │ │ ├── users.png │ │ │ ├── video_movie_track.png │ │ │ ├── world_globe.png │ │ │ ├── yen_currency_sign.png │ │ │ ├── zoom_in_magnifier.png │ │ │ └── zoom_out_magnifier.png │ │ │ ├── 24x24 │ │ │ ├── accept_item.png │ │ │ ├── add_item.png │ │ │ ├── add_to_favorites.png │ │ │ ├── attachment.png │ │ │ ├── calculator.png │ │ │ ├── calendar.png │ │ │ ├── camera.png │ │ │ ├── chart.png │ │ │ ├── comment_bubble.png │ │ │ ├── cut.png │ │ │ ├── database_server.png │ │ │ ├── delete_item.png │ │ │ ├── dollar_currency_sign.png │ │ │ ├── down_arrow.png │ │ │ ├── edit_item.png │ │ │ ├── email.png │ │ │ ├── email_send.png │ │ │ ├── euro_currency_sign.png │ │ │ ├── favorite.png │ │ │ ├── folder.png │ │ │ ├── hard_disk.png │ │ │ ├── headphones.png │ │ │ ├── help.png │ │ │ ├── home.png │ │ │ ├── info.png │ │ │ ├── left_arrow.png │ │ │ ├── lock.png │ │ │ ├── login.png │ │ │ ├── note.png │ │ │ ├── note_accept.png │ │ │ ├── note_delete.png │ │ │ ├── printer.png │ │ │ ├── process.png │ │ │ ├── promotion.png │ │ │ ├── remove_item.png │ │ │ ├── right_arrow.png │ │ │ ├── rss_feed.png │ │ │ ├── search_magnifier.png │ │ │ ├── shopping_cart.png │ │ │ ├── telephone.png │ │ │ ├── tool.png │ │ │ ├── trash.png │ │ │ ├── unlock.png │ │ │ ├── up_arrow.png │ │ │ ├── user.png │ │ │ ├── user_comment.png │ │ │ ├── users.png │ │ │ ├── video_movie_track.png │ │ │ ├── world_globe.png │ │ │ ├── yen_currency_sign.png │ │ │ ├── zoom_in_magnifier.png │ │ │ └── zoom_out_magnifier.png │ │ │ ├── 32x32 │ │ │ ├── accept_item.png │ │ │ ├── add_item.png │ │ │ ├── add_to_favorites.png │ │ │ ├── attachment.png │ │ │ ├── calculator.png │ │ │ ├── calendar.png │ │ │ ├── camera.png │ │ │ ├── chart.png │ │ │ ├── comment_bubble.png │ │ │ ├── cut.png │ │ │ ├── database_server.png │ │ │ ├── delete_item.png │ │ │ ├── dollar_currency_sign.png │ │ │ ├── down_arrow.png │ │ │ ├── edit_item.png │ │ │ ├── email.png │ │ │ ├── email_send.png │ │ │ ├── euro_currency_sign.png │ │ │ ├── favorite.png │ │ │ ├── folder.png │ │ │ ├── hard_disk.png │ │ │ ├── headphones.png │ │ │ ├── help.png │ │ │ ├── home.png │ │ │ ├── info.png │ │ │ ├── left_arrow.png │ │ │ ├── lock.png │ │ │ ├── login.png │ │ │ ├── note.png │ │ │ ├── note_accept.png │ │ │ ├── note_delete.png │ │ │ ├── printer.png │ │ │ ├── process.png │ │ │ ├── promotion.png │ │ │ ├── remove_item.png │ │ │ ├── right_arrow.png │ │ │ ├── rss_feed.png │ │ │ ├── search_magnifier.png │ │ │ ├── shopping_cart.png │ │ │ ├── telephone.png │ │ │ ├── tool.png │ │ │ ├── trash.png │ │ │ ├── unlock.png │ │ │ ├── up_arrow.png │ │ │ ├── user.png │ │ │ ├── user_comment.png │ │ │ ├── users.png │ │ │ ├── video_movie_track.png │ │ │ ├── world_globe.png │ │ │ ├── yen_currency_sign.png │ │ │ ├── zoom_in_magnifier.png │ │ │ └── zoom_out_magnifier.png │ │ │ ├── 48x48 │ │ │ ├── accept_item.png │ │ │ ├── add_item.png │ │ │ ├── add_to_favorites.png │ │ │ ├── attachment.png │ │ │ ├── calculator.png │ │ │ ├── calendar.png │ │ │ ├── camera.png │ │ │ ├── chart.png │ │ │ ├── comment_bubble.png │ │ │ ├── cut.png │ │ │ ├── database_server.png │ │ │ ├── delete_item.png │ │ │ ├── dollar_currency_sign.png │ │ │ ├── down_arrow.png │ │ │ ├── edit_item.png │ │ │ ├── email.png │ │ │ ├── email_send.png │ │ │ ├── euro_currency_sign.png │ │ │ ├── favorite.png │ │ │ ├── folder.png │ │ │ ├── hard_disk.png │ │ │ ├── headphones.png │ │ │ ├── help.png │ │ │ ├── home.png │ │ │ ├── info.png │ │ │ ├── left_arrow.png │ │ │ ├── lock.png │ │ │ ├── login.png │ │ │ ├── note.png │ │ │ ├── note_accept.png │ │ │ ├── note_delete.png │ │ │ ├── printer.png │ │ │ ├── process.png │ │ │ ├── promotion.png │ │ │ ├── remove_item.png │ │ │ ├── right_arrow.png │ │ │ ├── rss_feed.png │ │ │ ├── search_magnifier.png │ │ │ ├── shopping_cart.png │ │ │ ├── telephone.png │ │ │ ├── tool.png │ │ │ ├── trash.png │ │ │ ├── unlock.png │ │ │ ├── up_arrow.png │ │ │ ├── user.png │ │ │ ├── user_comment.png │ │ │ ├── users.png │ │ │ ├── video_movie_track.png │ │ │ ├── world_globe.png │ │ │ ├── yen_currency_sign.png │ │ │ ├── zoom_in_magnifier.png │ │ │ └── zoom_out_magnifier.png │ │ │ └── 64x64 │ │ │ ├── accept_item.png │ │ │ ├── add_item.png │ │ │ ├── add_to_favorites.png │ │ │ ├── attachment.png │ │ │ ├── calculator.png │ │ │ ├── calendar.png │ │ │ ├── camera.png │ │ │ ├── chart.png │ │ │ ├── comment_bubble.png │ │ │ ├── cut.png │ │ │ ├── database_server.png │ │ │ ├── delete_item.png │ │ │ ├── dollar_currency_sign.png │ │ │ ├── down_arrow.png │ │ │ ├── edit_item.png │ │ │ ├── email.png │ │ │ ├── email_send.png │ │ │ ├── euro_currency_sign.png │ │ │ ├── favorite.png │ │ │ ├── folder.png │ │ │ ├── hard_disk.png │ │ │ ├── headphones.png │ │ │ ├── help.png │ │ │ ├── home.png │ │ │ ├── info.png │ │ │ ├── left_arrow.png │ │ │ ├── lock.png │ │ │ ├── login.png │ │ │ ├── note.png │ │ │ ├── note_accept.png │ │ │ ├── note_delete.png │ │ │ ├── printer.png │ │ │ ├── process.png │ │ │ ├── promotion.png │ │ │ ├── remove_item.png │ │ │ ├── right_arrow.png │ │ │ ├── rss_feed.png │ │ │ ├── search_magnifier.png │ │ │ ├── shopping_cart.png │ │ │ ├── telephone.png │ │ │ ├── tool.png │ │ │ ├── trash.png │ │ │ ├── unlock.png │ │ │ ├── up_arrow.png │ │ │ ├── user.png │ │ │ ├── user_comment.png │ │ │ ├── users.png │ │ │ ├── video_movie_track.png │ │ │ ├── world_globe.png │ │ │ ├── yen_currency_sign.png │ │ │ ├── zoom_in_magnifier.png │ │ │ └── zoom_out_magnifier.png │ ├── images │ │ ├── 2-1.gif │ │ ├── DXI1ORHCpsQm3Vp6mXoaTaRDOzjiPcYnFooOUGCOsRk.woff │ │ ├── SqA9OdmswJX8b4TrqlN76KCWcynf_cDxXwCLxiixG1c.woff │ │ ├── TgrecWq39GVsTOFonFwGXQLUuEpTyoUstqEm5AMlJo4.woff │ │ ├── ZS0wkeOZuckNE3boyLYNt6CWcynf_cDxXwCLxiixG1c.woff │ │ ├── action-icons-mini-sprite.png │ │ ├── action-icons-sprite.png │ │ ├── add-button-bg.png │ │ ├── ajax-loader-circle.gif │ │ ├── ajax-loader.gif │ │ ├── applet-drag-grip.png │ │ ├── applet-icons-sprite.png │ │ ├── asc.gif │ │ ├── assign-owner-button-bg.png │ │ ├── b.png │ │ ├── bg.gif │ │ ├── bg_bluebarSm.jpg │ │ ├── bg_nav.png │ │ ├── bg_top.jpg │ │ ├── bl.png │ │ ├── bluebar_left.png │ │ ├── bluebar_middle.png │ │ ├── bluebar_right.png │ │ ├── box_border.jpg │ │ ├── br.png │ │ ├── cJZKeOuBrn4kERxqtaUH3bO3LdcAZYWl9Si6vvxL-qU.woff │ │ ├── cal.gif │ │ ├── calfont.woff │ │ ├── cart.png │ │ ├── ccpromo │ │ │ ├── AU.jpg │ │ │ ├── CA.jpg │ │ │ ├── CO.jpg │ │ │ ├── DE.jpg │ │ │ ├── EU.jpg │ │ │ ├── FR.jpg │ │ │ ├── GB.jpg │ │ │ ├── NZ.jpg │ │ │ └── TV.jpg │ │ ├── clock.png │ │ ├── closelabel.gif │ │ ├── contacts-idle.png │ │ ├── dashboard.jpg │ │ ├── demo_bg.jpg │ │ ├── desc.gif │ │ ├── device-drag-grip.png │ │ ├── devices-icon.png │ │ ├── email-button-bg.png │ │ ├── flowline-nav-arrows-sprite.png │ │ ├── flows-icon.png │ │ ├── form-input-text-150.png │ │ ├── form-input-text-200.png │ │ ├── form-input-text-300.png │ │ ├── form-input-text-50.png │ │ ├── form-input-text-600.png │ │ ├── globe.jpg │ │ ├── go.png │ │ ├── gradient.png │ │ ├── gradient_module.jpg │ │ ├── gradient_top.jpg │ │ ├── greenbar_quota.png │ │ ├── greybar_left.png │ │ ├── greybar_middle.png │ │ ├── greybar_quota.png │ │ ├── greybar_right.png │ │ ├── groups.png │ │ ├── header_blue.jpg │ │ ├── homepage.png │ │ ├── hover_dates.png │ │ ├── hover_dates_has_event.png │ │ ├── igroups.png │ │ ├── igroups2.png │ │ ├── install │ │ │ └── header.png │ │ ├── iphone-icon-58.png │ │ ├── kJXt72Gt1LyFMZcEKAAvlKCWcynf_cDxXwCLxiixG1c.woff │ │ ├── loading 2.gif │ │ ├── loading.gif │ │ ├── loadingAnimation.gif │ │ ├── logo.png │ │ ├── main-context-menu-bg.png │ │ ├── message-status-icon-bg.png │ │ ├── messages-icon.png │ │ ├── meter-outline.png │ │ ├── meter-outline2.png │ │ ├── mic_big.png │ │ ├── navbar.jpg │ │ ├── navbar │ │ │ ├── text_gray │ │ │ │ ├── contact.png │ │ │ │ ├── email.png │ │ │ │ ├── faq.png │ │ │ │ ├── manage.png │ │ │ │ ├── pricing.png │ │ │ │ └── purchase.png │ │ │ └── text_white │ │ │ │ ├── contact_white.png │ │ │ │ ├── email_white.png │ │ │ │ ├── faq_white.png │ │ │ │ ├── manage_white.png │ │ │ │ ├── pricing_white.png │ │ │ │ └── purchase_white.png │ │ ├── navbar_selected.jpg │ │ ├── normal-button-bg.png │ │ ├── numbers-icon.png │ │ ├── openlook │ │ │ ├── TitilliumText15L.otf │ │ │ ├── TitilliumText250wt.otf │ │ │ ├── TitilliumText600wt.otf │ │ │ ├── close-x.png │ │ │ ├── dd-select.png │ │ │ ├── details-hr.png │ │ │ ├── details-l.png │ │ │ ├── details-t.png │ │ │ ├── gen-btn.png │ │ │ ├── hr-trans.png │ │ │ ├── icon-sprite.png │ │ │ ├── idea-bg.jpg │ │ │ ├── input-text-bg.png │ │ │ ├── link-arrow-black.png │ │ │ ├── link-arrow.png │ │ │ ├── listing-bg.png │ │ │ ├── loading.gif │ │ │ ├── logo.png │ │ │ ├── menu-bottom.png │ │ │ ├── menu-top.png │ │ │ ├── popup-side-arrow.png │ │ │ ├── popup-side-bg.png │ │ │ ├── questionmark.png │ │ │ ├── shadow-b.png │ │ │ ├── shadow-lr.png │ │ │ ├── signup-form.jpg │ │ │ ├── status-badges.png │ │ │ ├── toggle.png │ │ │ ├── top-bg.jpg │ │ │ ├── user-ribbon.png │ │ │ └── vr.png │ │ ├── overlay.png │ │ ├── overview-active.png │ │ ├── overview-idle.png │ │ ├── rightarrow.png │ │ ├── sad_panda.png │ │ ├── screenshot.png │ │ ├── standard-icons-sprite.png │ │ ├── submit-button-bg.png │ │ ├── syt │ │ │ ├── bargraph.png │ │ │ ├── bars.png │ │ │ ├── bell.png │ │ │ ├── book.png │ │ │ ├── box.png │ │ │ ├── brackets.png │ │ │ ├── bubbles.png │ │ │ ├── business.png │ │ │ ├── businessman.png │ │ │ ├── calendar.png │ │ │ ├── callperson.png │ │ │ ├── charts.png │ │ │ ├── check.png │ │ │ ├── check2.png │ │ │ ├── clock.png │ │ │ ├── clock2.png │ │ │ ├── cloud.png │ │ │ ├── compass.png │ │ │ ├── flow.png │ │ │ ├── forks.png │ │ │ ├── gauge.png │ │ │ ├── globe.png │ │ │ ├── graduate.png │ │ │ ├── house.png │ │ │ ├── houseleaf.png │ │ │ ├── key.png │ │ │ ├── keypad.png │ │ │ ├── laptop.png │ │ │ ├── list.png │ │ │ ├── lock.png │ │ │ ├── lockplate.png │ │ │ ├── lockscreen.png │ │ │ ├── lockscreen2.png │ │ │ ├── lookup.png │ │ │ ├── math.png │ │ │ ├── menu.png │ │ │ ├── message.png │ │ │ ├── meter.png │ │ │ ├── money.png │ │ │ ├── money2.png │ │ │ ├── package.png │ │ │ ├── packagelook.png │ │ │ ├── people.png │ │ │ ├── percent.png │ │ │ ├── phone.png │ │ │ ├── phone2.png │ │ │ ├── phone3.png │ │ │ ├── pin.png │ │ │ ├── pin2.png │ │ │ ├── puzzlepiece.png │ │ │ ├── question.png │ │ │ ├── question2.png │ │ │ ├── recycle.png │ │ │ ├── ringoff.png │ │ │ ├── roadsigns.png │ │ │ ├── servers.png │ │ │ ├── smartphone.png │ │ │ ├── smiley.png │ │ │ ├── speaker.png │ │ │ ├── stars.png │ │ │ ├── thumbup.png │ │ │ ├── thunder.png │ │ │ ├── thunder2.png │ │ │ ├── tie.png │ │ │ ├── tower.png │ │ │ ├── tower2.png │ │ │ ├── university.png │ │ │ ├── updown.png │ │ │ ├── user.png │ │ │ ├── videochat.png │ │ │ ├── voicemail.png │ │ │ ├── write.png │ │ │ └── writepad.png │ │ ├── tab_gray.jpg │ │ ├── thinsearch.png │ │ ├── timepicker-add.png │ │ ├── timepicker-remove.png │ │ ├── tl.png │ │ ├── user-drag-grip.png │ │ ├── user-group-icon.png │ │ ├── user-group-picker-group-icon.png │ │ ├── user-group-picker-person-icon.png │ │ ├── user-group-utilities.png │ │ └── visualsearch │ │ │ └── embed │ │ │ └── icons │ │ │ ├── cancel_search.png │ │ │ └── search_glyph.png │ ├── img │ │ ├── board.png │ │ ├── calendar.png │ │ ├── facebook_32.png │ │ ├── grid-18px-masked.png │ │ ├── pad.png │ │ └── wireframe.png │ └── js │ │ ├── application.js │ │ ├── bootstrap-1.4 │ │ ├── bootstrap-alerts.js │ │ ├── bootstrap-buttons.js │ │ ├── bootstrap-dropdown.js │ │ ├── bootstrap-modal.js │ │ ├── bootstrap-popover.js │ │ ├── bootstrap-scrollspy.js │ │ ├── bootstrap-tabs.js │ │ └── bootstrap-twipsy.js │ │ ├── bootstrap-accordion.js │ │ ├── bootstrap-alerts-1.3.js │ │ ├── bootstrap-alerts.js │ │ ├── bootstrap-dropdown-1.3.js │ │ ├── bootstrap-dropdown.js │ │ ├── bootstrap-modal-1.3.js │ │ ├── bootstrap-modal.js │ │ ├── bootstrap-popover-1.3.js │ │ ├── bootstrap-popover.js │ │ ├── bootstrap-scrollspy-1.3.js │ │ ├── bootstrap-scrollspy.js │ │ ├── bootstrap-tabs-1.3.js │ │ ├── bootstrap-tabs.js │ │ ├── bootstrap-transitions.js │ │ ├── bootstrap-twipsy-1.3.js │ │ ├── bootstrap-twipsy.js │ │ ├── calendar │ │ ├── Common.js │ │ ├── datepicker_lang_AU.js │ │ ├── datepicker_lang_HK.js │ │ ├── datepicker_lang_US.js │ │ ├── jquery.alert.js │ │ ├── jquery.calendar.js │ │ ├── jquery.colorselect.js │ │ ├── jquery.datepicker.js │ │ ├── jquery.dropdown.js │ │ ├── jquery.form.js │ │ ├── jquery.ifrmdailog.js │ │ ├── jquery.js │ │ ├── jquery.validate.js │ │ ├── wdCalendar_lang_AU.js │ │ ├── wdCalendar_lang_HK.js │ │ └── wdCalendar_lang_US.js │ │ ├── date.js │ │ ├── form.js │ │ ├── highcharts │ │ ├── adapters │ │ │ ├── mootools-adapter.js │ │ │ ├── mootools-adapter.src.js │ │ │ ├── prototype-adapter.js │ │ │ └── prototype-adapter.src.js │ │ ├── highcharts.js │ │ ├── highcharts.src.js │ │ ├── modules │ │ │ ├── exporting.js │ │ │ └── exporting.src.js │ │ └── themes │ │ │ ├── dark-blue.js │ │ │ ├── dark-green.js │ │ │ ├── gray.js │ │ │ └── grid.js │ │ ├── jquery-1.3.2.min.js │ │ ├── jquery-1.4.2.min.js │ │ ├── jquery-1.4.4.min.js │ │ ├── jquery-1.5.2.min.js │ │ ├── jquery-ui-1.7.1.custom.min.js │ │ ├── jquery-ui-1.8.10.custom.min.js │ │ ├── jquery-ui-timepicker-addon.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.cookie.js │ │ ├── jquery.dp_calendar.max.js │ │ ├── jquery.dp_calendar.min.js │ │ ├── jquery.editable-1.3.3.min.js │ │ ├── jquery.form.js │ │ ├── jquery.getUrlParam.js │ │ ├── jquery.i18n.js │ │ ├── jquery.jcache.js │ │ ├── jquery.js │ │ ├── jquery.min.1.6.4.js │ │ ├── jquery.orbit-1.2.3.min.js │ │ ├── jquery.simplemodal-1.2.3.min.js │ │ ├── jquery.sprintf.js │ │ ├── jquery.tablesorter.min.js │ │ ├── jquery.ui.core.js │ │ ├── jquery.ui.datepicker.js │ │ ├── jquery.ui.position.js │ │ ├── json2.js │ │ ├── new │ │ ├── calendar.js │ │ ├── dynamic.js │ │ ├── file.js │ │ ├── groups.js │ │ ├── jquery.autoSuggest.packed.js │ │ ├── jquery.fcbkcomplete.js │ │ ├── jquery.fcbkcomplete.min.js │ │ ├── jquery.jeditable.mini.js │ │ ├── jquery.validate.min.js │ │ ├── members.js │ │ ├── membersgroups_manager.js │ │ ├── membersgroups_prereq.js │ │ ├── pay.js │ │ ├── sha1.js │ │ └── v1.js │ │ ├── origin.js │ │ ├── phone │ │ ├── application.js │ │ ├── dynamic.js │ │ └── members.js │ │ ├── plupload │ │ ├── plupload.browserplus.js │ │ ├── plupload.flash.js │ │ ├── plupload.flash.swf │ │ ├── plupload.full.js │ │ ├── plupload.gears.js │ │ ├── plupload.html4.js │ │ ├── plupload.html5.js │ │ ├── plupload.js │ │ ├── plupload.silverlight.js │ │ └── plupload.silverlight.xap │ │ ├── prettify.js │ │ ├── prices.js │ │ ├── promo.js │ │ ├── prototype-1.6.0.2.js │ │ ├── prototype.js │ │ ├── search.js │ │ ├── thickbox-compressed.js │ │ ├── ui.selectmenu.js │ │ ├── visualsearch │ │ ├── backbone-0.5.0.js │ │ ├── jquery-1.6.1.js │ │ ├── jquery.ui.autocomplete.js │ │ ├── jquery.ui.core.js │ │ ├── jquery.ui.position.js │ │ ├── jquery.ui.widget.js │ │ ├── models │ │ │ ├── search_facets.js │ │ │ └── search_query.js │ │ ├── templates │ │ │ ├── search_box.jst │ │ │ ├── search_facet.jst │ │ │ ├── search_input.jst │ │ │ └── templates.js │ │ ├── underscore-1.1.5.js │ │ ├── utils │ │ │ ├── backbone_extensions.js │ │ │ ├── hotkeys.js │ │ │ ├── inflector.js │ │ │ ├── jquery_extensions.js │ │ │ └── search_parser.js │ │ ├── views │ │ │ ├── search_box.js │ │ │ ├── search_facet.js │ │ │ └── search_input.js │ │ └── visualsearch.js │ │ └── widgets.js │ └── mandala │ ├── images │ ├── assign-owner-button-bg.png │ ├── button-bg.png │ ├── call-button-bg.png │ ├── dropdown-select-button-bg.png │ ├── main-context-menu-bg.png │ ├── normal-button-bg.png │ ├── openvbx-header-logo.png │ ├── play-message-button-bg.png │ ├── play-pause-stop-bg.png │ ├── quick-call-button-bg.png │ ├── quick-call-popup-button-bg.png │ ├── quick-sms-button-bg.png │ ├── quick-sms-popup-button-bg.png │ ├── quick-sms-send-button-bg.png │ ├── sms-button-bg.png │ ├── submit-button-bg.png │ └── user-drag-grip.png │ └── style.css ├── certs ├── ovbx.dev.crt └── ovbx.dev.key ├── fallback ├── rewrite.php ├── sms.php └── voice.php ├── igroups.sql ├── index.php ├── plugins ├── callercookies │ ├── README │ ├── applets │ │ ├── check │ │ │ ├── applet.json │ │ │ ├── icon.png │ │ │ ├── twiml.php │ │ │ └── ui.php │ │ ├── read │ │ │ ├── applet.json │ │ │ ├── icon.png │ │ │ ├── twiml.php │ │ │ └── ui.php │ │ ├── reset │ │ │ ├── applet.json │ │ │ ├── icon.png │ │ │ ├── twiml.php │ │ │ └── ui.php │ │ └── set │ │ │ ├── applet.json │ │ │ ├── icon.png │ │ │ ├── script.js │ │ │ ├── twiml.php │ │ │ └── ui.php │ └── plugin.json ├── callerid │ ├── applet.json │ ├── icon.png │ ├── plugin.json │ ├── script.js │ ├── twiml.php │ └── ui.php ├── flowtest │ ├── FlowTest.php │ ├── LICENSE │ ├── README.markdown │ ├── pages │ │ └── flowtest.php │ └── plugin.json ├── googleanalyticstracker │ ├── README.md │ ├── applets │ │ └── track │ │ │ ├── Galvanize.php │ │ │ ├── applet.json │ │ │ ├── icon.png │ │ │ ├── twiml.php │ │ │ └── ui.php │ └── plugin.json ├── inputexportflows │ ├── README.md │ ├── export.php │ ├── import.php │ └── plugin.json ├── menu │ ├── applets │ │ ├── menu │ │ │ ├── applet.json │ │ │ ├── icon.png │ │ │ ├── script.js │ │ │ ├── twiml.php │ │ │ └── ui.php │ │ └── query │ │ │ ├── applet.json │ │ │ ├── icon.png │ │ │ ├── script.js │ │ │ ├── twiml.php │ │ │ └── ui.php │ └── plugin.json ├── outbound │ ├── README.md │ ├── applets │ │ ├── call │ │ │ ├── applet.json │ │ │ ├── icon.png │ │ │ ├── twiml.php │ │ │ └── ui.php │ │ └── text │ │ │ ├── applet.json │ │ │ ├── icon.png │ │ │ ├── twiml.php │ │ │ └── ui.php │ ├── cron.php │ ├── db.sql │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ ├── jquery-ui-1.7.3.custom.css │ ├── jquery-ui-1.7.3.custom.min.js │ ├── outbound.php │ ├── plugin.json │ ├── queue.js │ ├── queue.php │ ├── schedule.js │ └── schedule.php ├── polls │ ├── README.md │ ├── applets │ │ └── poll │ │ │ ├── applet.json │ │ │ ├── icon.png │ │ │ ├── script.js │ │ │ ├── twiml.php │ │ │ └── ui.php │ ├── db.sql │ ├── plugin.json │ ├── polls.js │ └── polls.php ├── sms │ ├── applets │ │ ├── sms-inbox │ │ │ ├── applet.json │ │ │ ├── icon.png │ │ │ ├── twiml.php │ │ │ └── ui.php │ │ └── sms │ │ │ ├── applet.json │ │ │ ├── icon.png │ │ │ ├── twiml.php │ │ │ └── ui.php │ └── plugin.json ├── smskeywordmatch │ ├── README.md │ ├── applets │ │ ├── match │ │ │ ├── applet.json │ │ │ ├── icon.png │ │ │ ├── script.js │ │ │ ├── twiml.php │ │ │ └── ui.php │ │ └── regex │ │ │ ├── applet.json │ │ │ ├── icon.png │ │ │ ├── script.js │ │ │ ├── twiml.php │ │ │ └── ui.php │ └── plugin.json ├── standard │ ├── applets │ │ ├── conference │ │ │ ├── applet.json │ │ │ ├── icon.png │ │ │ ├── twiml.php │ │ │ └── ui.php │ │ ├── dial │ │ │ ├── TwimlDial.php │ │ │ ├── applet.json │ │ │ ├── icon.png │ │ │ ├── script.js │ │ │ ├── style.css │ │ │ ├── twiml.php │ │ │ └── ui.php │ │ ├── greeting │ │ │ ├── applet.json │ │ │ ├── icon.png │ │ │ ├── twiml.php │ │ │ └── ui.php │ │ ├── hangup │ │ │ ├── applet.json │ │ │ ├── icon.png │ │ │ ├── twiml.php │ │ │ └── ui.php │ │ ├── start │ │ │ ├── applet.json │ │ │ ├── icon.png │ │ │ ├── script.js │ │ │ ├── style.css │ │ │ ├── twiml.php │ │ │ └── ui.php │ │ ├── twiml │ │ │ ├── applet.json │ │ │ ├── icon.png │ │ │ ├── twiml.php │ │ │ └── ui.php │ │ └── voicemail │ │ │ ├── applet.json │ │ │ ├── icon.png │ │ │ ├── script.js │ │ │ ├── twiml.php │ │ │ └── ui.php │ └── plugin.json ├── timing │ ├── applets │ │ └── timing │ │ │ ├── applet.json │ │ │ ├── icon.png │ │ │ ├── style.css │ │ │ ├── twiml.php │ │ │ └── ui.php │ └── plugin.json ├── transferflow │ ├── applets │ │ └── transfer │ │ │ ├── applet.json │ │ │ ├── icon.png │ │ │ ├── twiml.php │ │ │ └── ui.php │ └── plugin.json └── vbx-styles │ ├── applets │ └── sandbox │ │ ├── applet.json │ │ ├── icon.png │ │ ├── twiml.php │ │ └── ui.php │ ├── plugin.json │ └── vbx-style.php ├── support └── nginx.conf ├── system ├── .htaccess ├── cache │ └── index.html ├── codeigniter │ ├── Base4.php │ ├── Base5.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Compat.php │ └── index.html ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── URI.php │ ├── Utf8.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_active_rec.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ └── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ └── index.html ├── fonts │ ├── index.html │ └── texb.ttf ├── helpers │ ├── array_helper.php │ ├── asset_helper.php │ ├── captcha_helper.php │ ├── compatibility_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── simplexml_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── index.html ├── language │ ├── english │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── domains_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── number_lang.php │ │ ├── profiler_lang.php │ │ ├── scaffolding_lang.php │ │ ├── unit_test_lang.php │ │ ├── upload_lang.php │ │ └── validation_lang.php │ └── index.html ├── libraries │ ├── Benchmark.php │ ├── Cache │ │ ├── Cache.php │ │ └── drivers │ │ │ ├── Cache_apc.php │ │ │ ├── Cache_dummy.php │ │ │ ├── Cache_file.php │ │ │ └── Cache_memcached.php │ ├── Calendar.php │ ├── Cart.php │ ├── Config.php │ ├── Controller.php │ ├── Curl.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Exceptions.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Hooks.php │ ├── Image_lib.php │ ├── Input.php │ ├── Javascript.php │ ├── Language.php │ ├── Loader.php │ ├── Log.php │ ├── Model.php │ ├── Output.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Sha1.php │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── URI.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Validation.php │ ├── Xml.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ ├── index.html │ └── javascript │ │ └── Jquery.php └── plugins │ ├── captcha_pi.php │ ├── index.html │ └── js_calendar_pi.php ├── updates ├── 1.sql ├── 10.sql ├── 11.sql ├── 12.sql ├── 13.sql ├── 14.sql ├── 15.sql ├── 16.sql ├── 17.sql ├── 18.sql ├── 19.sql ├── 2.sql ├── 20.sql ├── 21.sql ├── 22.sql ├── 23.sql ├── 24.sql ├── 25.sql ├── 26.sql ├── 27.sql ├── 28.sql ├── 29.sql ├── 3.sql ├── 30.sql ├── 31.sql ├── 32.sql ├── 33.sql ├── 34.sql ├── 35.sql ├── 36.sql ├── 37.sql ├── 38.sql ├── 39.sql ├── 4.sql ├── 40.sql ├── 41.sql ├── 42.sql ├── 43.sql ├── 44.sql ├── 45.php ├── 46.sql ├── 47.sql ├── 48.sql ├── 49.php ├── 5.sql ├── 50.php ├── 51.sql ├── 52.sql ├── 53.sql ├── 54.php ├── 55.php ├── 56.php ├── 57.php ├── 58.php ├── 59.sql ├── 6.sql ├── 60.php ├── 61.sql ├── 62.sql ├── 63.sql ├── 64.php ├── 65.php ├── 66.sql ├── 67.php ├── 68.php ├── 69.sql ├── 7.sql ├── 70.sql ├── 8.sql └── 9.sql ├── vbx_business_case.pdf └── vbx_screenshots.pdf /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/LICENSE -------------------------------------------------------------------------------- /OpenVBX/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/config/autoload.php -------------------------------------------------------------------------------- /OpenVBX/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/config/cache.php -------------------------------------------------------------------------------- /OpenVBX/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/config/config.php -------------------------------------------------------------------------------- /OpenVBX/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/config/constants.php -------------------------------------------------------------------------------- /OpenVBX/config/countrycodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/config/countrycodes.php -------------------------------------------------------------------------------- /OpenVBX/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/config/database.php -------------------------------------------------------------------------------- /OpenVBX/config/datamapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/config/datamapper.php -------------------------------------------------------------------------------- /OpenVBX/config/doctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/config/doctypes.php -------------------------------------------------------------------------------- /OpenVBX/config/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/config/email.php -------------------------------------------------------------------------------- /OpenVBX/config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/config/hooks.php -------------------------------------------------------------------------------- /OpenVBX/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/config/index.html -------------------------------------------------------------------------------- /OpenVBX/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/config/mimes.php -------------------------------------------------------------------------------- /OpenVBX/config/openid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/config/openid.php -------------------------------------------------------------------------------- /OpenVBX/config/openvbx-sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/config/openvbx-sample.php -------------------------------------------------------------------------------- /OpenVBX/config/openvbx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/config/openvbx.php -------------------------------------------------------------------------------- /OpenVBX/config/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/config/pagination.php -------------------------------------------------------------------------------- /OpenVBX/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/config/routes.php -------------------------------------------------------------------------------- /OpenVBX/config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/config/smileys.php -------------------------------------------------------------------------------- /OpenVBX/config/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/config/template.php -------------------------------------------------------------------------------- /OpenVBX/config/user_agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/config/user_agents.php -------------------------------------------------------------------------------- /OpenVBX/controllers/account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/account.php -------------------------------------------------------------------------------- /OpenVBX/controllers/accounts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/accounts.php -------------------------------------------------------------------------------- /OpenVBX/controllers/charge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/charge.php -------------------------------------------------------------------------------- /OpenVBX/controllers/client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/client.php -------------------------------------------------------------------------------- /OpenVBX/controllers/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/config.php -------------------------------------------------------------------------------- /OpenVBX/controllers/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/dashboard.php -------------------------------------------------------------------------------- /OpenVBX/controllers/devices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/devices.php -------------------------------------------------------------------------------- /OpenVBX/controllers/dialog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/dialog.php -------------------------------------------------------------------------------- /OpenVBX/controllers/external.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/external.php -------------------------------------------------------------------------------- /OpenVBX/controllers/flows.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/flows.php -------------------------------------------------------------------------------- /OpenVBX/controllers/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/home.php -------------------------------------------------------------------------------- /OpenVBX/controllers/hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/hook.php -------------------------------------------------------------------------------- /OpenVBX/controllers/iframe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/iframe.php -------------------------------------------------------------------------------- /OpenVBX/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/index.html -------------------------------------------------------------------------------- /OpenVBX/controllers/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/install.php -------------------------------------------------------------------------------- /OpenVBX/controllers/iphone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/iphone.php -------------------------------------------------------------------------------- /OpenVBX/controllers/numbers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/numbers.php -------------------------------------------------------------------------------- /OpenVBX/controllers/page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/page.php -------------------------------------------------------------------------------- /OpenVBX/controllers/pm/charge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/pm/charge.php -------------------------------------------------------------------------------- /OpenVBX/controllers/pm/cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/pm/cron.php -------------------------------------------------------------------------------- /OpenVBX/controllers/pm/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/pm/home.php -------------------------------------------------------------------------------- /OpenVBX/controllers/pm/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/pm/login.php -------------------------------------------------------------------------------- /OpenVBX/controllers/pm/phone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/pm/phone.php -------------------------------------------------------------------------------- /OpenVBX/controllers/pm/tasksc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/pm/tasksc.php -------------------------------------------------------------------------------- /OpenVBX/controllers/support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/support.php -------------------------------------------------------------------------------- /OpenVBX/controllers/twiml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/twiml.php -------------------------------------------------------------------------------- /OpenVBX/controllers/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/upgrade.php -------------------------------------------------------------------------------- /OpenVBX/controllers/voicemail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/controllers/voicemail.php -------------------------------------------------------------------------------- /OpenVBX/errors/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/errors/error_404.php -------------------------------------------------------------------------------- /OpenVBX/errors/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/errors/error_db.php -------------------------------------------------------------------------------- /OpenVBX/errors/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/errors/error_general.php -------------------------------------------------------------------------------- /OpenVBX/errors/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/errors/error_php.php -------------------------------------------------------------------------------- /OpenVBX/errors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/errors/index.html -------------------------------------------------------------------------------- /OpenVBX/helpers/JSON.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/helpers/JSON.php -------------------------------------------------------------------------------- /OpenVBX/helpers/applet_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/helpers/applet_helper.php -------------------------------------------------------------------------------- /OpenVBX/helpers/banner_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/helpers/banner_helper.php -------------------------------------------------------------------------------- /OpenVBX/helpers/format_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/helpers/format_helper.php -------------------------------------------------------------------------------- /OpenVBX/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/helpers/index.html -------------------------------------------------------------------------------- /OpenVBX/helpers/json_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/helpers/json_helper.php -------------------------------------------------------------------------------- /OpenVBX/helpers/mail_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/helpers/mail_helper.php -------------------------------------------------------------------------------- /OpenVBX/helpers/model_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/helpers/model_helper.php -------------------------------------------------------------------------------- /OpenVBX/helpers/twilio_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/helpers/twilio_helper.php -------------------------------------------------------------------------------- /OpenVBX/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/hooks/index.html -------------------------------------------------------------------------------- /OpenVBX/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/index.html -------------------------------------------------------------------------------- /OpenVBX/libraries/Applet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/libraries/Applet.php -------------------------------------------------------------------------------- /OpenVBX/libraries/AppletUI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/libraries/AppletUI.php -------------------------------------------------------------------------------- /OpenVBX/libraries/Caches/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/libraries/Caches/DB.php -------------------------------------------------------------------------------- /OpenVBX/libraries/DialList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/libraries/DialList.php -------------------------------------------------------------------------------- /OpenVBX/libraries/FlowStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/libraries/FlowStore.php -------------------------------------------------------------------------------- /OpenVBX/libraries/Github/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/libraries/Github/Api.php -------------------------------------------------------------------------------- /OpenVBX/libraries/MY_Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/libraries/MY_Config.php -------------------------------------------------------------------------------- /OpenVBX/libraries/MY_Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/libraries/MY_Model.php -------------------------------------------------------------------------------- /OpenVBX/libraries/MY_Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/libraries/MY_Router.php -------------------------------------------------------------------------------- /OpenVBX/libraries/MY_Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/libraries/MY_Session.php -------------------------------------------------------------------------------- /OpenVBX/libraries/MY_Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/libraries/MY_Table.php -------------------------------------------------------------------------------- /OpenVBX/libraries/MY_URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/libraries/MY_URI.php -------------------------------------------------------------------------------- /OpenVBX/libraries/OpenVBX.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/libraries/OpenVBX.php -------------------------------------------------------------------------------- /OpenVBX/libraries/PhoneNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/libraries/PhoneNumber.php -------------------------------------------------------------------------------- /OpenVBX/libraries/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/libraries/Plugin.php -------------------------------------------------------------------------------- /OpenVBX/libraries/PluginData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/libraries/PluginData.php -------------------------------------------------------------------------------- /OpenVBX/libraries/PluginStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/libraries/PluginStore.php -------------------------------------------------------------------------------- /OpenVBX/libraries/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/libraries/Template.php -------------------------------------------------------------------------------- /OpenVBX/libraries/facebook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/libraries/facebook.php -------------------------------------------------------------------------------- /OpenVBX/libraries/fooStack/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/libraries/fooStack/README -------------------------------------------------------------------------------- /OpenVBX/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/libraries/index.html -------------------------------------------------------------------------------- /OpenVBX/libraries/plupload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/libraries/plupload.php -------------------------------------------------------------------------------- /OpenVBX/libraries/stripe/Stripe/Error.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/tests/generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/tests/generate -------------------------------------------------------------------------------- /OpenVBX/tests/generate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/tests/generate.php -------------------------------------------------------------------------------- /OpenVBX/tests/getops.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/tests/getops.php -------------------------------------------------------------------------------- /OpenVBX/tests/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/tests/settings.php -------------------------------------------------------------------------------- /OpenVBX/tests/system/testPhp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/tests/system/testPhp.php -------------------------------------------------------------------------------- /OpenVBX/views/account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/account.php -------------------------------------------------------------------------------- /OpenVBX/views/accounts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/accounts.php -------------------------------------------------------------------------------- /OpenVBX/views/call.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OpenVBX/views/client_js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/client_js.php -------------------------------------------------------------------------------- /OpenVBX/views/connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/connect.php -------------------------------------------------------------------------------- /OpenVBX/views/dashboard/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/dashboard/index.php -------------------------------------------------------------------------------- /OpenVBX/views/devices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/devices.php -------------------------------------------------------------------------------- /OpenVBX/views/dialer/devices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/dialer/devices.php -------------------------------------------------------------------------------- /OpenVBX/views/dialer/dialer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/dialer/dialer.php -------------------------------------------------------------------------------- /OpenVBX/views/dialer/numbers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/dialer/numbers.php -------------------------------------------------------------------------------- /OpenVBX/views/emails/message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/emails/message.php -------------------------------------------------------------------------------- /OpenVBX/views/flow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/flow.php -------------------------------------------------------------------------------- /OpenVBX/views/flows.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/flows.php -------------------------------------------------------------------------------- /OpenVBX/views/home/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/home/index.php -------------------------------------------------------------------------------- /OpenVBX/views/home/privacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/home/privacy.php -------------------------------------------------------------------------------- /OpenVBX/views/home/tos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/home/tos.php -------------------------------------------------------------------------------- /OpenVBX/views/iframe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/iframe.php -------------------------------------------------------------------------------- /OpenVBX/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/index.html -------------------------------------------------------------------------------- /OpenVBX/views/js-init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/js-init.php -------------------------------------------------------------------------------- /OpenVBX/views/layout/content/content_footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /OpenVBX/views/layout/content/content_header.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | -------------------------------------------------------------------------------- /OpenVBX/views/layout/content/content_sidebar.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/views/layout/content/context_menu.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/views/layout/content/footer.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/views/layout/dialer/analytics.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/views/layout/dialer/content_footer.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/views/layout/dialer/content_header.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/views/layout/dialer/content_sidebar.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/views/layout/dialer/context_menu.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/views/layout/dialer/error_dialog.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/views/layout/dialer/footer.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/views/layout/dialer/header.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/views/layout/dialer/utility_menu.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/views/layout/dialer/wrapper_footer.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/views/layout/dialer/wrapper_header.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/views/layout/flow-editor/analytics.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/views/layout/flow-editor/content_footer.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | -------------------------------------------------------------------------------- /OpenVBX/views/layout/flow-editor/content_header.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | -------------------------------------------------------------------------------- /OpenVBX/views/layout/flow-editor/footer.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/views/layout/flow-editor/header.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /OpenVBX/views/layout/login/footer.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/views/layout/login/header.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OpenVBX/views/layout/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/layout/template.php -------------------------------------------------------------------------------- /OpenVBX/views/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/login.php -------------------------------------------------------------------------------- /OpenVBX/views/messages/inbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/messages/inbox.php -------------------------------------------------------------------------------- /OpenVBX/views/numbers/numbers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/numbers/numbers.php -------------------------------------------------------------------------------- /OpenVBX/views/numbers/other.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/numbers/other.php -------------------------------------------------------------------------------- /OpenVBX/views/page/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/page/config.php -------------------------------------------------------------------------------- /OpenVBX/views/page/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/page/index.php -------------------------------------------------------------------------------- /OpenVBX/views/pm/charge/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/pm/charge/index.php -------------------------------------------------------------------------------- /OpenVBX/views/pm/igroups/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/pm/igroups/home.php -------------------------------------------------------------------------------- /OpenVBX/views/pm/js-init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/pm/js-init.php -------------------------------------------------------------------------------- /OpenVBX/views/pm/layout/content/header.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/views/pm/layout/content/modules/members.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/views/pm/layout/content/slim.php: -------------------------------------------------------------------------------- 1 | load->view('layout/content/modules/feed', $owner_group); ?> 2 | -------------------------------------------------------------------------------- /OpenVBX/views/pm/layout/phone/footer.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/views/pm/layout/phone/header.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/views/pm/layout/phone/modules/members.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/views/pm/layout/phone/slim.php: -------------------------------------------------------------------------------- 1 | load->view('layout/content/modules/feed', $owner_group); ?> 2 | -------------------------------------------------------------------------------- /OpenVBX/views/pm/login/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/pm/login/index.php -------------------------------------------------------------------------------- /OpenVBX/views/pm/simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/pm/simple.php -------------------------------------------------------------------------------- /OpenVBX/views/pm/static_gu.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVBX/views/reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/reset.php -------------------------------------------------------------------------------- /OpenVBX/views/set-password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/set-password.php -------------------------------------------------------------------------------- /OpenVBX/views/settings/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/settings/site.php -------------------------------------------------------------------------------- /OpenVBX/views/settings/tenant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/settings/tenant.php -------------------------------------------------------------------------------- /OpenVBX/views/steps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/steps.php -------------------------------------------------------------------------------- /OpenVBX/views/unit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/unit.php -------------------------------------------------------------------------------- /OpenVBX/views/upgrade/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/upgrade/main.php -------------------------------------------------------------------------------- /OpenVBX/views/view_openid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/view_openid.php -------------------------------------------------------------------------------- /OpenVBX/views/view_policy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/view_policy.php -------------------------------------------------------------------------------- /OpenVBX/views/voicemail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/OpenVBX/views/voicemail.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/README.md -------------------------------------------------------------------------------- /assets/c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/Makefile -------------------------------------------------------------------------------- /assets/c/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/admin.css -------------------------------------------------------------------------------- /assets/c/applet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/applet.css -------------------------------------------------------------------------------- /assets/c/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/buttons.css -------------------------------------------------------------------------------- /assets/c/client.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/client.css -------------------------------------------------------------------------------- /assets/c/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/content.css -------------------------------------------------------------------------------- /assets/c/context-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/context-menu.css -------------------------------------------------------------------------------- /assets/c/controls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/controls.css -------------------------------------------------------------------------------- /assets/c/devices.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/devices.css -------------------------------------------------------------------------------- /assets/c/flows.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/flows.css -------------------------------------------------------------------------------- /assets/c/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/forms.css -------------------------------------------------------------------------------- /assets/c/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/global.css -------------------------------------------------------------------------------- /assets/c/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/ie.css -------------------------------------------------------------------------------- /assets/c/iframe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/iframe.css -------------------------------------------------------------------------------- /assets/c/install.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/install.css -------------------------------------------------------------------------------- /assets/c/jplayer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/jplayer.css -------------------------------------------------------------------------------- /assets/c/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/login.css -------------------------------------------------------------------------------- /assets/c/master.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/master.css -------------------------------------------------------------------------------- /assets/c/messages.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/messages.css -------------------------------------------------------------------------------- /assets/c/minify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/minify -------------------------------------------------------------------------------- /assets/c/navigation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/navigation.css -------------------------------------------------------------------------------- /assets/c/plugin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/plugin.css -------------------------------------------------------------------------------- /assets/c/site-css.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/site-css.sources -------------------------------------------------------------------------------- /assets/c/timePicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/timePicker.css -------------------------------------------------------------------------------- /assets/c/uploadify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/uploadify.css -------------------------------------------------------------------------------- /assets/c/utility-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/utility-menu.css -------------------------------------------------------------------------------- /assets/c/voicemail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/c/voicemail.css -------------------------------------------------------------------------------- /assets/i/action-icons-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/action-icons-sprite.png -------------------------------------------------------------------------------- /assets/i/add-button-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/add-button-bg.png -------------------------------------------------------------------------------- /assets/i/ajax-loader-circle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/ajax-loader-circle.gif -------------------------------------------------------------------------------- /assets/i/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/ajax-loader.gif -------------------------------------------------------------------------------- /assets/i/applet-drag-grip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/applet-drag-grip.png -------------------------------------------------------------------------------- /assets/i/applet-icons-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/applet-icons-sprite.png -------------------------------------------------------------------------------- /assets/i/button-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/button-bg.png -------------------------------------------------------------------------------- /assets/i/call-button-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/call-button-bg.png -------------------------------------------------------------------------------- /assets/i/client-first-run-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/client-first-run-bg.png -------------------------------------------------------------------------------- /assets/i/countries/ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ac.png -------------------------------------------------------------------------------- /assets/i/countries/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ad.png -------------------------------------------------------------------------------- /assets/i/countries/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ae.png -------------------------------------------------------------------------------- /assets/i/countries/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/af.png -------------------------------------------------------------------------------- /assets/i/countries/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ag.png -------------------------------------------------------------------------------- /assets/i/countries/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ai.png -------------------------------------------------------------------------------- /assets/i/countries/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/al.png -------------------------------------------------------------------------------- /assets/i/countries/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/am.png -------------------------------------------------------------------------------- /assets/i/countries/an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/an.png -------------------------------------------------------------------------------- /assets/i/countries/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ao.png -------------------------------------------------------------------------------- /assets/i/countries/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ar.png -------------------------------------------------------------------------------- /assets/i/countries/as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/as.png -------------------------------------------------------------------------------- /assets/i/countries/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/at.png -------------------------------------------------------------------------------- /assets/i/countries/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/au.png -------------------------------------------------------------------------------- /assets/i/countries/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/aw.png -------------------------------------------------------------------------------- /assets/i/countries/ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ax.png -------------------------------------------------------------------------------- /assets/i/countries/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/az.png -------------------------------------------------------------------------------- /assets/i/countries/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ba.png -------------------------------------------------------------------------------- /assets/i/countries/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/bb.png -------------------------------------------------------------------------------- /assets/i/countries/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/bd.png -------------------------------------------------------------------------------- /assets/i/countries/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/be.png -------------------------------------------------------------------------------- /assets/i/countries/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/bf.png -------------------------------------------------------------------------------- /assets/i/countries/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/bg.png -------------------------------------------------------------------------------- /assets/i/countries/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/bh.png -------------------------------------------------------------------------------- /assets/i/countries/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/bi.png -------------------------------------------------------------------------------- /assets/i/countries/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/bj.png -------------------------------------------------------------------------------- /assets/i/countries/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/bm.png -------------------------------------------------------------------------------- /assets/i/countries/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/bn.png -------------------------------------------------------------------------------- /assets/i/countries/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/bo.png -------------------------------------------------------------------------------- /assets/i/countries/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/br.png -------------------------------------------------------------------------------- /assets/i/countries/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/bs.png -------------------------------------------------------------------------------- /assets/i/countries/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/bt.png -------------------------------------------------------------------------------- /assets/i/countries/bv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/bv.png -------------------------------------------------------------------------------- /assets/i/countries/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/bw.png -------------------------------------------------------------------------------- /assets/i/countries/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/by.png -------------------------------------------------------------------------------- /assets/i/countries/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/bz.png -------------------------------------------------------------------------------- /assets/i/countries/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ca.png -------------------------------------------------------------------------------- /assets/i/countries/catalonia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/catalonia.png -------------------------------------------------------------------------------- /assets/i/countries/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/cc.png -------------------------------------------------------------------------------- /assets/i/countries/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/cd.png -------------------------------------------------------------------------------- /assets/i/countries/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/cf.png -------------------------------------------------------------------------------- /assets/i/countries/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/cg.png -------------------------------------------------------------------------------- /assets/i/countries/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ch.png -------------------------------------------------------------------------------- /assets/i/countries/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ci.png -------------------------------------------------------------------------------- /assets/i/countries/ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ck.png -------------------------------------------------------------------------------- /assets/i/countries/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/cl.png -------------------------------------------------------------------------------- /assets/i/countries/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/cm.png -------------------------------------------------------------------------------- /assets/i/countries/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/cn.png -------------------------------------------------------------------------------- /assets/i/countries/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/co.png -------------------------------------------------------------------------------- /assets/i/countries/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/cr.png -------------------------------------------------------------------------------- /assets/i/countries/cs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/cs.png -------------------------------------------------------------------------------- /assets/i/countries/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/cu.png -------------------------------------------------------------------------------- /assets/i/countries/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/cv.png -------------------------------------------------------------------------------- /assets/i/countries/cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/cx.png -------------------------------------------------------------------------------- /assets/i/countries/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/cy.png -------------------------------------------------------------------------------- /assets/i/countries/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/cz.png -------------------------------------------------------------------------------- /assets/i/countries/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/de.png -------------------------------------------------------------------------------- /assets/i/countries/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/dj.png -------------------------------------------------------------------------------- /assets/i/countries/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/dk.png -------------------------------------------------------------------------------- /assets/i/countries/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/dm.png -------------------------------------------------------------------------------- /assets/i/countries/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/do.png -------------------------------------------------------------------------------- /assets/i/countries/dr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/dr.png -------------------------------------------------------------------------------- /assets/i/countries/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/dz.png -------------------------------------------------------------------------------- /assets/i/countries/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ec.png -------------------------------------------------------------------------------- /assets/i/countries/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ee.png -------------------------------------------------------------------------------- /assets/i/countries/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/eg.png -------------------------------------------------------------------------------- /assets/i/countries/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/eh.png -------------------------------------------------------------------------------- /assets/i/countries/england.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/england.png -------------------------------------------------------------------------------- /assets/i/countries/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/er.png -------------------------------------------------------------------------------- /assets/i/countries/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/es.png -------------------------------------------------------------------------------- /assets/i/countries/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/et.png -------------------------------------------------------------------------------- /assets/i/countries/fam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/fam.png -------------------------------------------------------------------------------- /assets/i/countries/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/fi.png -------------------------------------------------------------------------------- /assets/i/countries/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/fj.png -------------------------------------------------------------------------------- /assets/i/countries/fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/fk.png -------------------------------------------------------------------------------- /assets/i/countries/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/fm.png -------------------------------------------------------------------------------- /assets/i/countries/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/fo.png -------------------------------------------------------------------------------- /assets/i/countries/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/fr.png -------------------------------------------------------------------------------- /assets/i/countries/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ga.png -------------------------------------------------------------------------------- /assets/i/countries/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/gb.png -------------------------------------------------------------------------------- /assets/i/countries/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/gd.png -------------------------------------------------------------------------------- /assets/i/countries/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ge.png -------------------------------------------------------------------------------- /assets/i/countries/gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/gf.png -------------------------------------------------------------------------------- /assets/i/countries/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/gh.png -------------------------------------------------------------------------------- /assets/i/countries/gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/gi.png -------------------------------------------------------------------------------- /assets/i/countries/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/gl.png -------------------------------------------------------------------------------- /assets/i/countries/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/gm.png -------------------------------------------------------------------------------- /assets/i/countries/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/gn.png -------------------------------------------------------------------------------- /assets/i/countries/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/gp.png -------------------------------------------------------------------------------- /assets/i/countries/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/gq.png -------------------------------------------------------------------------------- /assets/i/countries/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/gr.png -------------------------------------------------------------------------------- /assets/i/countries/gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/gs.png -------------------------------------------------------------------------------- /assets/i/countries/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/gt.png -------------------------------------------------------------------------------- /assets/i/countries/gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/gu.png -------------------------------------------------------------------------------- /assets/i/countries/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/gw.png -------------------------------------------------------------------------------- /assets/i/countries/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/gy.png -------------------------------------------------------------------------------- /assets/i/countries/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/hk.png -------------------------------------------------------------------------------- /assets/i/countries/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/hm.png -------------------------------------------------------------------------------- /assets/i/countries/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/hn.png -------------------------------------------------------------------------------- /assets/i/countries/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/hr.png -------------------------------------------------------------------------------- /assets/i/countries/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ht.png -------------------------------------------------------------------------------- /assets/i/countries/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/hu.png -------------------------------------------------------------------------------- /assets/i/countries/ic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ic.png -------------------------------------------------------------------------------- /assets/i/countries/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/id.png -------------------------------------------------------------------------------- /assets/i/countries/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ie.png -------------------------------------------------------------------------------- /assets/i/countries/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/il.png -------------------------------------------------------------------------------- /assets/i/countries/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/in.png -------------------------------------------------------------------------------- /assets/i/countries/io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/io.png -------------------------------------------------------------------------------- /assets/i/countries/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/iq.png -------------------------------------------------------------------------------- /assets/i/countries/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ir.png -------------------------------------------------------------------------------- /assets/i/countries/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/is.png -------------------------------------------------------------------------------- /assets/i/countries/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/it.png -------------------------------------------------------------------------------- /assets/i/countries/je.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/je.png -------------------------------------------------------------------------------- /assets/i/countries/jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/jm.png -------------------------------------------------------------------------------- /assets/i/countries/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/jo.png -------------------------------------------------------------------------------- /assets/i/countries/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/jp.png -------------------------------------------------------------------------------- /assets/i/countries/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ke.png -------------------------------------------------------------------------------- /assets/i/countries/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/kg.png -------------------------------------------------------------------------------- /assets/i/countries/kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/kh.png -------------------------------------------------------------------------------- /assets/i/countries/ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ki.png -------------------------------------------------------------------------------- /assets/i/countries/km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/km.png -------------------------------------------------------------------------------- /assets/i/countries/kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/kn.png -------------------------------------------------------------------------------- /assets/i/countries/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/kp.png -------------------------------------------------------------------------------- /assets/i/countries/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/kr.png -------------------------------------------------------------------------------- /assets/i/countries/kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/kw.png -------------------------------------------------------------------------------- /assets/i/countries/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ky.png -------------------------------------------------------------------------------- /assets/i/countries/kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/kz.png -------------------------------------------------------------------------------- /assets/i/countries/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/la.png -------------------------------------------------------------------------------- /assets/i/countries/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/lb.png -------------------------------------------------------------------------------- /assets/i/countries/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/lc.png -------------------------------------------------------------------------------- /assets/i/countries/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/li.png -------------------------------------------------------------------------------- /assets/i/countries/lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/lk.png -------------------------------------------------------------------------------- /assets/i/countries/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/lr.png -------------------------------------------------------------------------------- /assets/i/countries/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ls.png -------------------------------------------------------------------------------- /assets/i/countries/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/lt.png -------------------------------------------------------------------------------- /assets/i/countries/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/lu.png -------------------------------------------------------------------------------- /assets/i/countries/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/lv.png -------------------------------------------------------------------------------- /assets/i/countries/ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ly.png -------------------------------------------------------------------------------- /assets/i/countries/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ma.png -------------------------------------------------------------------------------- /assets/i/countries/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/mc.png -------------------------------------------------------------------------------- /assets/i/countries/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/md.png -------------------------------------------------------------------------------- /assets/i/countries/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/me.png -------------------------------------------------------------------------------- /assets/i/countries/mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/mg.png -------------------------------------------------------------------------------- /assets/i/countries/mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/mh.png -------------------------------------------------------------------------------- /assets/i/countries/mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/mk.png -------------------------------------------------------------------------------- /assets/i/countries/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ml.png -------------------------------------------------------------------------------- /assets/i/countries/mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/mm.png -------------------------------------------------------------------------------- /assets/i/countries/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/mn.png -------------------------------------------------------------------------------- /assets/i/countries/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/mo.png -------------------------------------------------------------------------------- /assets/i/countries/mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/mp.png -------------------------------------------------------------------------------- /assets/i/countries/mq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/mq.png -------------------------------------------------------------------------------- /assets/i/countries/mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/mr.png -------------------------------------------------------------------------------- /assets/i/countries/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ms.png -------------------------------------------------------------------------------- /assets/i/countries/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/mt.png -------------------------------------------------------------------------------- /assets/i/countries/mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/mu.png -------------------------------------------------------------------------------- /assets/i/countries/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/mv.png -------------------------------------------------------------------------------- /assets/i/countries/mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/mw.png -------------------------------------------------------------------------------- /assets/i/countries/mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/mx.png -------------------------------------------------------------------------------- /assets/i/countries/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/my.png -------------------------------------------------------------------------------- /assets/i/countries/mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/mz.png -------------------------------------------------------------------------------- /assets/i/countries/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/na.png -------------------------------------------------------------------------------- /assets/i/countries/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/nc.png -------------------------------------------------------------------------------- /assets/i/countries/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ne.png -------------------------------------------------------------------------------- /assets/i/countries/nf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/nf.png -------------------------------------------------------------------------------- /assets/i/countries/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ng.png -------------------------------------------------------------------------------- /assets/i/countries/ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ni.png -------------------------------------------------------------------------------- /assets/i/countries/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/nl.png -------------------------------------------------------------------------------- /assets/i/countries/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/no.png -------------------------------------------------------------------------------- /assets/i/countries/np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/np.png -------------------------------------------------------------------------------- /assets/i/countries/nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/nr.png -------------------------------------------------------------------------------- /assets/i/countries/nu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/nu.png -------------------------------------------------------------------------------- /assets/i/countries/nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/nz.png -------------------------------------------------------------------------------- /assets/i/countries/om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/om.png -------------------------------------------------------------------------------- /assets/i/countries/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/pa.png -------------------------------------------------------------------------------- /assets/i/countries/pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/pe.png -------------------------------------------------------------------------------- /assets/i/countries/pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/pf.png -------------------------------------------------------------------------------- /assets/i/countries/pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/pg.png -------------------------------------------------------------------------------- /assets/i/countries/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ph.png -------------------------------------------------------------------------------- /assets/i/countries/pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/pk.png -------------------------------------------------------------------------------- /assets/i/countries/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/pl.png -------------------------------------------------------------------------------- /assets/i/countries/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/pm.png -------------------------------------------------------------------------------- /assets/i/countries/pn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/pn.png -------------------------------------------------------------------------------- /assets/i/countries/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/pr.png -------------------------------------------------------------------------------- /assets/i/countries/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ps.png -------------------------------------------------------------------------------- /assets/i/countries/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/pt.png -------------------------------------------------------------------------------- /assets/i/countries/pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/pw.png -------------------------------------------------------------------------------- /assets/i/countries/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/py.png -------------------------------------------------------------------------------- /assets/i/countries/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/qa.png -------------------------------------------------------------------------------- /assets/i/countries/qk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/qk.png -------------------------------------------------------------------------------- /assets/i/countries/qy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/qy.png -------------------------------------------------------------------------------- /assets/i/countries/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/re.png -------------------------------------------------------------------------------- /assets/i/countries/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ro.png -------------------------------------------------------------------------------- /assets/i/countries/rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/rs.png -------------------------------------------------------------------------------- /assets/i/countries/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ru.png -------------------------------------------------------------------------------- /assets/i/countries/rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/rw.png -------------------------------------------------------------------------------- /assets/i/countries/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/sa.png -------------------------------------------------------------------------------- /assets/i/countries/sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/sb.png -------------------------------------------------------------------------------- /assets/i/countries/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/sc.png -------------------------------------------------------------------------------- /assets/i/countries/scotland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/scotland.png -------------------------------------------------------------------------------- /assets/i/countries/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/sd.png -------------------------------------------------------------------------------- /assets/i/countries/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/se.png -------------------------------------------------------------------------------- /assets/i/countries/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/sg.png -------------------------------------------------------------------------------- /assets/i/countries/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/sh.png -------------------------------------------------------------------------------- /assets/i/countries/si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/si.png -------------------------------------------------------------------------------- /assets/i/countries/sj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/sj.png -------------------------------------------------------------------------------- /assets/i/countries/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/sk.png -------------------------------------------------------------------------------- /assets/i/countries/sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/sl.png -------------------------------------------------------------------------------- /assets/i/countries/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/sm.png -------------------------------------------------------------------------------- /assets/i/countries/sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/sn.png -------------------------------------------------------------------------------- /assets/i/countries/so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/so.png -------------------------------------------------------------------------------- /assets/i/countries/sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/sr.png -------------------------------------------------------------------------------- /assets/i/countries/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/st.png -------------------------------------------------------------------------------- /assets/i/countries/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/sv.png -------------------------------------------------------------------------------- /assets/i/countries/sy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/sy.png -------------------------------------------------------------------------------- /assets/i/countries/sz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/sz.png -------------------------------------------------------------------------------- /assets/i/countries/tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/tc.png -------------------------------------------------------------------------------- /assets/i/countries/td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/td.png -------------------------------------------------------------------------------- /assets/i/countries/tf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/tf.png -------------------------------------------------------------------------------- /assets/i/countries/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/tg.png -------------------------------------------------------------------------------- /assets/i/countries/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/th.png -------------------------------------------------------------------------------- /assets/i/countries/tj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/tj.png -------------------------------------------------------------------------------- /assets/i/countries/tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/tk.png -------------------------------------------------------------------------------- /assets/i/countries/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/tl.png -------------------------------------------------------------------------------- /assets/i/countries/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/tm.png -------------------------------------------------------------------------------- /assets/i/countries/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/tn.png -------------------------------------------------------------------------------- /assets/i/countries/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/to.png -------------------------------------------------------------------------------- /assets/i/countries/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/tr.png -------------------------------------------------------------------------------- /assets/i/countries/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/tt.png -------------------------------------------------------------------------------- /assets/i/countries/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/tv.png -------------------------------------------------------------------------------- /assets/i/countries/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/tw.png -------------------------------------------------------------------------------- /assets/i/countries/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/tz.png -------------------------------------------------------------------------------- /assets/i/countries/ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ua.png -------------------------------------------------------------------------------- /assets/i/countries/ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ug.png -------------------------------------------------------------------------------- /assets/i/countries/um.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/um.png -------------------------------------------------------------------------------- /assets/i/countries/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/us.png -------------------------------------------------------------------------------- /assets/i/countries/uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/uy.png -------------------------------------------------------------------------------- /assets/i/countries/uz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/uz.png -------------------------------------------------------------------------------- /assets/i/countries/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/va.png -------------------------------------------------------------------------------- /assets/i/countries/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/vc.png -------------------------------------------------------------------------------- /assets/i/countries/ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ve.png -------------------------------------------------------------------------------- /assets/i/countries/vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/vg.png -------------------------------------------------------------------------------- /assets/i/countries/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/vi.png -------------------------------------------------------------------------------- /assets/i/countries/vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/vn.png -------------------------------------------------------------------------------- /assets/i/countries/vu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/vu.png -------------------------------------------------------------------------------- /assets/i/countries/wales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/wales.png -------------------------------------------------------------------------------- /assets/i/countries/wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/wf.png -------------------------------------------------------------------------------- /assets/i/countries/ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ws.png -------------------------------------------------------------------------------- /assets/i/countries/ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/ye.png -------------------------------------------------------------------------------- /assets/i/countries/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/yt.png -------------------------------------------------------------------------------- /assets/i/countries/za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/za.png -------------------------------------------------------------------------------- /assets/i/countries/zm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/zm.png -------------------------------------------------------------------------------- /assets/i/countries/zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/countries/zw.png -------------------------------------------------------------------------------- /assets/i/device-drag-grip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/device-drag-grip.png -------------------------------------------------------------------------------- /assets/i/devices-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/devices-icon.png -------------------------------------------------------------------------------- /assets/i/email-button-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/email-button-bg.png -------------------------------------------------------------------------------- /assets/i/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/email.png -------------------------------------------------------------------------------- /assets/i/flows-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/flows-icon.png -------------------------------------------------------------------------------- /assets/i/form-input-text-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/form-input-text-150.png -------------------------------------------------------------------------------- /assets/i/form-input-text-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/form-input-text-200.png -------------------------------------------------------------------------------- /assets/i/form-input-text-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/form-input-text-300.png -------------------------------------------------------------------------------- /assets/i/form-input-text-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/form-input-text-50.png -------------------------------------------------------------------------------- /assets/i/form-input-text-600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/form-input-text-600.png -------------------------------------------------------------------------------- /assets/i/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/icon.png -------------------------------------------------------------------------------- /assets/i/info-banner-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/info-banner-icon.png -------------------------------------------------------------------------------- /assets/i/install/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/install/header.png -------------------------------------------------------------------------------- /assets/i/iphone-icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/iphone-icon-58.png -------------------------------------------------------------------------------- /assets/i/main-context-menu-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/main-context-menu-bg.png -------------------------------------------------------------------------------- /assets/i/messages-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/messages-icon.png -------------------------------------------------------------------------------- /assets/i/mic_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/mic_big.png -------------------------------------------------------------------------------- /assets/i/normal-button-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/normal-button-bg.png -------------------------------------------------------------------------------- /assets/i/numbers-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/numbers-icon.png -------------------------------------------------------------------------------- /assets/i/openvbx-header-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/openvbx-header-logo.png -------------------------------------------------------------------------------- /assets/i/openvbx-install-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/openvbx-install-logo.png -------------------------------------------------------------------------------- /assets/i/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/overlay.png -------------------------------------------------------------------------------- /assets/i/play-pause-stop-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/play-pause-stop-bg.png -------------------------------------------------------------------------------- /assets/i/quick-call-button-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/quick-call-button-bg.png -------------------------------------------------------------------------------- /assets/i/quick-sms-button-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/quick-sms-button-bg.png -------------------------------------------------------------------------------- /assets/i/remove-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/remove-user.png -------------------------------------------------------------------------------- /assets/i/sms-button-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/sms-button-bg.png -------------------------------------------------------------------------------- /assets/i/submit-button-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/submit-button-bg.png -------------------------------------------------------------------------------- /assets/i/timepicker-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/timepicker-add.png -------------------------------------------------------------------------------- /assets/i/timepicker-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/timepicker-remove.png -------------------------------------------------------------------------------- /assets/i/toggle-arrow-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/toggle-arrow-16.png -------------------------------------------------------------------------------- /assets/i/user-drag-grip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/user-drag-grip.png -------------------------------------------------------------------------------- /assets/i/user-group-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/user-group-icon.png -------------------------------------------------------------------------------- /assets/i/user-group-utilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/user-group-utilities.png -------------------------------------------------------------------------------- /assets/i/user-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/user-icon.png -------------------------------------------------------------------------------- /assets/i/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/user.png -------------------------------------------------------------------------------- /assets/i/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/users.png -------------------------------------------------------------------------------- /assets/i/vbx-client-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/vbx-client-status.png -------------------------------------------------------------------------------- /assets/i/voicemail-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/i/voicemail-icon.png -------------------------------------------------------------------------------- /assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/index.html -------------------------------------------------------------------------------- /assets/j/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/Makefile -------------------------------------------------------------------------------- /assets/j/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/account.js -------------------------------------------------------------------------------- /assets/j/accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/accounts.js -------------------------------------------------------------------------------- /assets/j/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/client.js -------------------------------------------------------------------------------- /assets/j/compiler.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/compiler.jar -------------------------------------------------------------------------------- /assets/j/demo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/j/devices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/devices.js -------------------------------------------------------------------------------- /assets/j/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/flow.js -------------------------------------------------------------------------------- /assets/j/flows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/flows.js -------------------------------------------------------------------------------- /assets/j/frameworks/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/frameworks/jquery-ui.js -------------------------------------------------------------------------------- /assets/j/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/global.js -------------------------------------------------------------------------------- /assets/j/highcharts/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/highcharts/highcharts.js -------------------------------------------------------------------------------- /assets/j/iframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/iframe.js -------------------------------------------------------------------------------- /assets/j/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/install.js -------------------------------------------------------------------------------- /assets/j/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/messages.js -------------------------------------------------------------------------------- /assets/j/modal-tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/modal-tabs.js -------------------------------------------------------------------------------- /assets/j/numbers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/numbers.js -------------------------------------------------------------------------------- /assets/j/packer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/packer -------------------------------------------------------------------------------- /assets/j/pickers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/pickers.js -------------------------------------------------------------------------------- /assets/j/plugins/buttonista.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/plugins/buttonista.js -------------------------------------------------------------------------------- /assets/j/plugins/flicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/plugins/flicker.js -------------------------------------------------------------------------------- /assets/j/plugins/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/plugins/jquery.cookie.js -------------------------------------------------------------------------------- /assets/j/plugins/jquery.tabify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/plugins/jquery.tabify.js -------------------------------------------------------------------------------- /assets/j/plugins/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/plugins/json.js -------------------------------------------------------------------------------- /assets/j/plugins/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/plugins/static.js -------------------------------------------------------------------------------- /assets/j/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/settings.js -------------------------------------------------------------------------------- /assets/j/site-app.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/site-app.sources -------------------------------------------------------------------------------- /assets/j/site-bootstrap.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/site-bootstrap.sources -------------------------------------------------------------------------------- /assets/j/sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/sound.js -------------------------------------------------------------------------------- /assets/j/steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/steps.js -------------------------------------------------------------------------------- /assets/j/timepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/timepicker.js -------------------------------------------------------------------------------- /assets/j/update-check.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/j/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/upgrade.js -------------------------------------------------------------------------------- /assets/j/welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/j/welcome.js -------------------------------------------------------------------------------- /assets/min/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/min/.htaccess -------------------------------------------------------------------------------- /assets/min/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/min/README.txt -------------------------------------------------------------------------------- /assets/min/builder/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/min/builder/_index.js -------------------------------------------------------------------------------- /assets/min/builder/bm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/min/builder/bm.js -------------------------------------------------------------------------------- /assets/min/builder/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/min/builder/index.php -------------------------------------------------------------------------------- /assets/min/builder/ocCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/min/builder/ocCheck.php -------------------------------------------------------------------------------- /assets/min/builder/rewriteTest.js: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /assets/min/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/min/config.php -------------------------------------------------------------------------------- /assets/min/groupsConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/min/groupsConfig.php -------------------------------------------------------------------------------- /assets/min/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/min/index.php -------------------------------------------------------------------------------- /assets/min/lib/FirePHP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/min/lib/FirePHP.php -------------------------------------------------------------------------------- /assets/min/lib/JSMin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/min/lib/JSMin.php -------------------------------------------------------------------------------- /assets/min/lib/JSMinPlus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/min/lib/JSMinPlus.php -------------------------------------------------------------------------------- /assets/min/lib/Minify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/min/lib/Minify.php -------------------------------------------------------------------------------- /assets/min/lib/Minify/CSS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/min/lib/Minify/CSS.php -------------------------------------------------------------------------------- /assets/min/lib/Minify/HTML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/min/lib/Minify/HTML.php -------------------------------------------------------------------------------- /assets/min/lib/Solar/Dir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/min/lib/Solar/Dir.php -------------------------------------------------------------------------------- /assets/min/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/min/utils.php -------------------------------------------------------------------------------- /assets/pm/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/bootstrap.css -------------------------------------------------------------------------------- /assets/pm/css/calendar/dp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/calendar/dp.css -------------------------------------------------------------------------------- /assets/pm/css/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/colors.css -------------------------------------------------------------------------------- /assets/pm/css/cscss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/cscss.css -------------------------------------------------------------------------------- /assets/pm/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/default.css -------------------------------------------------------------------------------- /assets/pm/css/default2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/default2.css -------------------------------------------------------------------------------- /assets/pm/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/demo.css -------------------------------------------------------------------------------- /assets/pm/css/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/docs.css -------------------------------------------------------------------------------- /assets/pm/css/dp_calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/dp_calendar.css -------------------------------------------------------------------------------- /assets/pm/css/facebox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/facebox.css -------------------------------------------------------------------------------- /assets/pm/css/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/header.css -------------------------------------------------------------------------------- /assets/pm/css/homepage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/homepage.css -------------------------------------------------------------------------------- /assets/pm/css/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/ie.css -------------------------------------------------------------------------------- /assets/pm/css/jqueryui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/jqueryui.css -------------------------------------------------------------------------------- /assets/pm/css/landrush.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/landrush.css -------------------------------------------------------------------------------- /assets/pm/css/navglass.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/navglass.css -------------------------------------------------------------------------------- /assets/pm/css/netscape.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/netscape.css -------------------------------------------------------------------------------- /assets/pm/css/new/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/new/fonts.css -------------------------------------------------------------------------------- /assets/pm/css/new/navac.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/new/navac.css -------------------------------------------------------------------------------- /assets/pm/css/new/openlook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/new/openlook.css -------------------------------------------------------------------------------- /assets/pm/css/new/ribbons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/new/ribbons.css -------------------------------------------------------------------------------- /assets/pm/css/phoenix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/phoenix.css -------------------------------------------------------------------------------- /assets/pm/css/reset 2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/reset 2.css -------------------------------------------------------------------------------- /assets/pm/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/reset.css -------------------------------------------------------------------------------- /assets/pm/css/site1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/site1.css -------------------------------------------------------------------------------- /assets/pm/css/style1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/css/style1.css -------------------------------------------------------------------------------- /assets/pm/images/2-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/2-1.gif -------------------------------------------------------------------------------- /assets/pm/images/asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/asc.gif -------------------------------------------------------------------------------- /assets/pm/images/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/b.png -------------------------------------------------------------------------------- /assets/pm/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/bg.gif -------------------------------------------------------------------------------- /assets/pm/images/bg_nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/bg_nav.png -------------------------------------------------------------------------------- /assets/pm/images/bg_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/bg_top.jpg -------------------------------------------------------------------------------- /assets/pm/images/bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/bl.png -------------------------------------------------------------------------------- /assets/pm/images/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/br.png -------------------------------------------------------------------------------- /assets/pm/images/cal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/cal.gif -------------------------------------------------------------------------------- /assets/pm/images/calfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/calfont.woff -------------------------------------------------------------------------------- /assets/pm/images/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/cart.png -------------------------------------------------------------------------------- /assets/pm/images/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/clock.png -------------------------------------------------------------------------------- /assets/pm/images/dashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/dashboard.jpg -------------------------------------------------------------------------------- /assets/pm/images/demo_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/demo_bg.jpg -------------------------------------------------------------------------------- /assets/pm/images/desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/desc.gif -------------------------------------------------------------------------------- /assets/pm/images/globe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/globe.jpg -------------------------------------------------------------------------------- /assets/pm/images/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/go.png -------------------------------------------------------------------------------- /assets/pm/images/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/gradient.png -------------------------------------------------------------------------------- /assets/pm/images/groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/groups.png -------------------------------------------------------------------------------- /assets/pm/images/homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/homepage.png -------------------------------------------------------------------------------- /assets/pm/images/igroups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/igroups.png -------------------------------------------------------------------------------- /assets/pm/images/loading 2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/loading 2.gif -------------------------------------------------------------------------------- /assets/pm/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/loading.gif -------------------------------------------------------------------------------- /assets/pm/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/logo.png -------------------------------------------------------------------------------- /assets/pm/images/mic_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/mic_big.png -------------------------------------------------------------------------------- /assets/pm/images/navbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/navbar.jpg -------------------------------------------------------------------------------- /assets/pm/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/overlay.png -------------------------------------------------------------------------------- /assets/pm/images/sad_panda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/sad_panda.png -------------------------------------------------------------------------------- /assets/pm/images/syt/bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/bars.png -------------------------------------------------------------------------------- /assets/pm/images/syt/bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/bell.png -------------------------------------------------------------------------------- /assets/pm/images/syt/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/book.png -------------------------------------------------------------------------------- /assets/pm/images/syt/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/box.png -------------------------------------------------------------------------------- /assets/pm/images/syt/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/check.png -------------------------------------------------------------------------------- /assets/pm/images/syt/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/clock.png -------------------------------------------------------------------------------- /assets/pm/images/syt/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/cloud.png -------------------------------------------------------------------------------- /assets/pm/images/syt/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/flow.png -------------------------------------------------------------------------------- /assets/pm/images/syt/forks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/forks.png -------------------------------------------------------------------------------- /assets/pm/images/syt/gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/gauge.png -------------------------------------------------------------------------------- /assets/pm/images/syt/globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/globe.png -------------------------------------------------------------------------------- /assets/pm/images/syt/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/house.png -------------------------------------------------------------------------------- /assets/pm/images/syt/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/key.png -------------------------------------------------------------------------------- /assets/pm/images/syt/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/list.png -------------------------------------------------------------------------------- /assets/pm/images/syt/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/lock.png -------------------------------------------------------------------------------- /assets/pm/images/syt/math.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/math.png -------------------------------------------------------------------------------- /assets/pm/images/syt/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/menu.png -------------------------------------------------------------------------------- /assets/pm/images/syt/meter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/meter.png -------------------------------------------------------------------------------- /assets/pm/images/syt/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/money.png -------------------------------------------------------------------------------- /assets/pm/images/syt/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/phone.png -------------------------------------------------------------------------------- /assets/pm/images/syt/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/pin.png -------------------------------------------------------------------------------- /assets/pm/images/syt/pin2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/pin2.png -------------------------------------------------------------------------------- /assets/pm/images/syt/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/stars.png -------------------------------------------------------------------------------- /assets/pm/images/syt/tie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/tie.png -------------------------------------------------------------------------------- /assets/pm/images/syt/tower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/tower.png -------------------------------------------------------------------------------- /assets/pm/images/syt/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/user.png -------------------------------------------------------------------------------- /assets/pm/images/syt/write.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/syt/write.png -------------------------------------------------------------------------------- /assets/pm/images/tab_gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/tab_gray.jpg -------------------------------------------------------------------------------- /assets/pm/images/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/images/tl.png -------------------------------------------------------------------------------- /assets/pm/img/board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/img/board.png -------------------------------------------------------------------------------- /assets/pm/img/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/img/calendar.png -------------------------------------------------------------------------------- /assets/pm/img/facebook_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/img/facebook_32.png -------------------------------------------------------------------------------- /assets/pm/img/pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/img/pad.png -------------------------------------------------------------------------------- /assets/pm/img/wireframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/img/wireframe.png -------------------------------------------------------------------------------- /assets/pm/js/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/application.js -------------------------------------------------------------------------------- /assets/pm/js/bootstrap-tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/bootstrap-tabs.js -------------------------------------------------------------------------------- /assets/pm/js/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/date.js -------------------------------------------------------------------------------- /assets/pm/js/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/form.js -------------------------------------------------------------------------------- /assets/pm/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/jquery-ui.min.js -------------------------------------------------------------------------------- /assets/pm/js/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/jquery.cookie.js -------------------------------------------------------------------------------- /assets/pm/js/jquery.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/jquery.form.js -------------------------------------------------------------------------------- /assets/pm/js/jquery.i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/jquery.i18n.js -------------------------------------------------------------------------------- /assets/pm/js/jquery.jcache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/jquery.jcache.js -------------------------------------------------------------------------------- /assets/pm/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/jquery.js -------------------------------------------------------------------------------- /assets/pm/js/jquery.sprintf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/jquery.sprintf.js -------------------------------------------------------------------------------- /assets/pm/js/jquery.ui.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/jquery.ui.core.js -------------------------------------------------------------------------------- /assets/pm/js/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/json2.js -------------------------------------------------------------------------------- /assets/pm/js/new/calendar.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/pm/js/new/dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/new/dynamic.js -------------------------------------------------------------------------------- /assets/pm/js/new/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/new/file.js -------------------------------------------------------------------------------- /assets/pm/js/new/groups.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/pm/js/new/members.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/new/members.js -------------------------------------------------------------------------------- /assets/pm/js/new/pay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/new/pay.js -------------------------------------------------------------------------------- /assets/pm/js/new/sha1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/new/sha1.js -------------------------------------------------------------------------------- /assets/pm/js/new/v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/new/v1.js -------------------------------------------------------------------------------- /assets/pm/js/origin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/origin.js -------------------------------------------------------------------------------- /assets/pm/js/phone/dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/phone/dynamic.js -------------------------------------------------------------------------------- /assets/pm/js/phone/members.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/phone/members.js -------------------------------------------------------------------------------- /assets/pm/js/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/prettify.js -------------------------------------------------------------------------------- /assets/pm/js/prices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/prices.js -------------------------------------------------------------------------------- /assets/pm/js/promo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/promo.js -------------------------------------------------------------------------------- /assets/pm/js/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/prototype.js -------------------------------------------------------------------------------- /assets/pm/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/search.js -------------------------------------------------------------------------------- /assets/pm/js/ui.selectmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/ui.selectmenu.js -------------------------------------------------------------------------------- /assets/pm/js/visualsearch/templates/search_input.jst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/pm/js/widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/assets/pm/js/widgets.js -------------------------------------------------------------------------------- /assets/themes/barbosa/config.ini: -------------------------------------------------------------------------------- 1 | [theme] 2 | site_title = "VBX" 3 | -------------------------------------------------------------------------------- /assets/themes/bluelook/js/demo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/themes/homepage/js/new/calendar.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/themes/homepage/js/new/groups.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/themes/homepage/js/visualsearch/templates/search_input.jst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /certs/ovbx.dev.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/certs/ovbx.dev.crt -------------------------------------------------------------------------------- /certs/ovbx.dev.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/certs/ovbx.dev.key -------------------------------------------------------------------------------- /fallback/rewrite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/fallback/rewrite.php -------------------------------------------------------------------------------- /fallback/sms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/fallback/sms.php -------------------------------------------------------------------------------- /fallback/voice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/fallback/voice.php -------------------------------------------------------------------------------- /igroups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/igroups.sql -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/index.php -------------------------------------------------------------------------------- /plugins/callercookies/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/callerid/applet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/callerid/applet.json -------------------------------------------------------------------------------- /plugins/callerid/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/callerid/icon.png -------------------------------------------------------------------------------- /plugins/callerid/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/callerid/plugin.json -------------------------------------------------------------------------------- /plugins/callerid/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/callerid/script.js -------------------------------------------------------------------------------- /plugins/callerid/twiml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/callerid/twiml.php -------------------------------------------------------------------------------- /plugins/callerid/ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/callerid/ui.php -------------------------------------------------------------------------------- /plugins/flowtest/FlowTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/flowtest/FlowTest.php -------------------------------------------------------------------------------- /plugins/flowtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/flowtest/LICENSE -------------------------------------------------------------------------------- /plugins/flowtest/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/flowtest/plugin.json -------------------------------------------------------------------------------- /plugins/menu/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/menu/plugin.json -------------------------------------------------------------------------------- /plugins/outbound/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/outbound/README.md -------------------------------------------------------------------------------- /plugins/outbound/cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/outbound/cron.php -------------------------------------------------------------------------------- /plugins/outbound/db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/outbound/db.sql -------------------------------------------------------------------------------- /plugins/outbound/outbound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/outbound/outbound.php -------------------------------------------------------------------------------- /plugins/outbound/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/outbound/plugin.json -------------------------------------------------------------------------------- /plugins/outbound/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/outbound/queue.js -------------------------------------------------------------------------------- /plugins/outbound/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/outbound/queue.php -------------------------------------------------------------------------------- /plugins/outbound/schedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/outbound/schedule.js -------------------------------------------------------------------------------- /plugins/outbound/schedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/outbound/schedule.php -------------------------------------------------------------------------------- /plugins/polls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/polls/README.md -------------------------------------------------------------------------------- /plugins/polls/db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/polls/db.sql -------------------------------------------------------------------------------- /plugins/polls/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/polls/plugin.json -------------------------------------------------------------------------------- /plugins/polls/polls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/polls/polls.js -------------------------------------------------------------------------------- /plugins/polls/polls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/polls/polls.php -------------------------------------------------------------------------------- /plugins/sms/applets/sms/ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/sms/applets/sms/ui.php -------------------------------------------------------------------------------- /plugins/sms/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/sms/plugin.json -------------------------------------------------------------------------------- /plugins/standard/applets/start/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/standard/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/standard/plugin.json -------------------------------------------------------------------------------- /plugins/timing/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/timing/plugin.json -------------------------------------------------------------------------------- /plugins/vbx-styles/applets/sandbox/twiml.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/vbx-styles/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/plugins/vbx-styles/plugin.json -------------------------------------------------------------------------------- /support/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/support/nginx.conf -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /system/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/cache/index.html -------------------------------------------------------------------------------- /system/codeigniter/Base4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/codeigniter/Base4.php -------------------------------------------------------------------------------- /system/codeigniter/Base5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/codeigniter/Base5.php -------------------------------------------------------------------------------- /system/codeigniter/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/codeigniter/Common.php -------------------------------------------------------------------------------- /system/codeigniter/Compat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/codeigniter/Compat.php -------------------------------------------------------------------------------- /system/codeigniter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/codeigniter/index.html -------------------------------------------------------------------------------- /system/core/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/core/Benchmark.php -------------------------------------------------------------------------------- /system/core/CodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/core/CodeIgniter.php -------------------------------------------------------------------------------- /system/core/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/core/Common.php -------------------------------------------------------------------------------- /system/core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/core/Config.php -------------------------------------------------------------------------------- /system/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/core/Controller.php -------------------------------------------------------------------------------- /system/core/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/core/Exceptions.php -------------------------------------------------------------------------------- /system/core/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/core/Hooks.php -------------------------------------------------------------------------------- /system/core/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/core/Input.php -------------------------------------------------------------------------------- /system/core/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/core/Lang.php -------------------------------------------------------------------------------- /system/core/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/core/Loader.php -------------------------------------------------------------------------------- /system/core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/core/Model.php -------------------------------------------------------------------------------- /system/core/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/core/Output.php -------------------------------------------------------------------------------- /system/core/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/core/Router.php -------------------------------------------------------------------------------- /system/core/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/core/URI.php -------------------------------------------------------------------------------- /system/core/Utf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/core/Utf8.php -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/core/index.html -------------------------------------------------------------------------------- /system/database/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/database/DB.php -------------------------------------------------------------------------------- /system/database/DB_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/database/DB_cache.php -------------------------------------------------------------------------------- /system/database/DB_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/database/DB_driver.php -------------------------------------------------------------------------------- /system/database/DB_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/database/DB_forge.php -------------------------------------------------------------------------------- /system/database/DB_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/database/DB_result.php -------------------------------------------------------------------------------- /system/database/DB_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/database/DB_utility.php -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/database/index.html -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/fonts/index.html -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/helpers/date_helper.php -------------------------------------------------------------------------------- /system/helpers/file_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/helpers/file_helper.php -------------------------------------------------------------------------------- /system/helpers/form_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/helpers/form_helper.php -------------------------------------------------------------------------------- /system/helpers/html_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/helpers/html_helper.php -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/helpers/index.html -------------------------------------------------------------------------------- /system/helpers/path_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/helpers/path_helper.php -------------------------------------------------------------------------------- /system/helpers/text_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/helpers/text_helper.php -------------------------------------------------------------------------------- /system/helpers/url_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/helpers/url_helper.php -------------------------------------------------------------------------------- /system/helpers/xml_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/helpers/xml_helper.php -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/index.html -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/language/index.html -------------------------------------------------------------------------------- /system/libraries/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Benchmark.php -------------------------------------------------------------------------------- /system/libraries/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Calendar.php -------------------------------------------------------------------------------- /system/libraries/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Cart.php -------------------------------------------------------------------------------- /system/libraries/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Config.php -------------------------------------------------------------------------------- /system/libraries/Curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Curl.php -------------------------------------------------------------------------------- /system/libraries/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Driver.php -------------------------------------------------------------------------------- /system/libraries/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Email.php -------------------------------------------------------------------------------- /system/libraries/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Encrypt.php -------------------------------------------------------------------------------- /system/libraries/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Ftp.php -------------------------------------------------------------------------------- /system/libraries/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Hooks.php -------------------------------------------------------------------------------- /system/libraries/Image_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Image_lib.php -------------------------------------------------------------------------------- /system/libraries/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Input.php -------------------------------------------------------------------------------- /system/libraries/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Language.php -------------------------------------------------------------------------------- /system/libraries/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Loader.php -------------------------------------------------------------------------------- /system/libraries/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Log.php -------------------------------------------------------------------------------- /system/libraries/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Model.php -------------------------------------------------------------------------------- /system/libraries/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Output.php -------------------------------------------------------------------------------- /system/libraries/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Parser.php -------------------------------------------------------------------------------- /system/libraries/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Profiler.php -------------------------------------------------------------------------------- /system/libraries/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Router.php -------------------------------------------------------------------------------- /system/libraries/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Security.php -------------------------------------------------------------------------------- /system/libraries/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Session.php -------------------------------------------------------------------------------- /system/libraries/Sha1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Sha1.php -------------------------------------------------------------------------------- /system/libraries/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Table.php -------------------------------------------------------------------------------- /system/libraries/Trackback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Trackback.php -------------------------------------------------------------------------------- /system/libraries/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/URI.php -------------------------------------------------------------------------------- /system/libraries/Unit_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Unit_test.php -------------------------------------------------------------------------------- /system/libraries/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Upload.php -------------------------------------------------------------------------------- /system/libraries/Xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Xml.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Xmlrpc.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Xmlrpcs.php -------------------------------------------------------------------------------- /system/libraries/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/Zip.php -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/libraries/index.html -------------------------------------------------------------------------------- /system/plugins/captcha_pi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/plugins/captcha_pi.php -------------------------------------------------------------------------------- /system/plugins/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/system/plugins/index.html -------------------------------------------------------------------------------- /updates/1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/1.sql -------------------------------------------------------------------------------- /updates/10.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE flows ADD COLUMN sms_data TEXT NULL; -------------------------------------------------------------------------------- /updates/11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/11.sql -------------------------------------------------------------------------------- /updates/12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/12.sql -------------------------------------------------------------------------------- /updates/13.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/13.sql -------------------------------------------------------------------------------- /updates/14.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/14.sql -------------------------------------------------------------------------------- /updates/15.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/15.sql -------------------------------------------------------------------------------- /updates/16.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `users` DROP COLUMN extension; -------------------------------------------------------------------------------- /updates/17.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/17.sql -------------------------------------------------------------------------------- /updates/18.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/18.sql -------------------------------------------------------------------------------- /updates/19.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/19.sql -------------------------------------------------------------------------------- /updates/2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/2.sql -------------------------------------------------------------------------------- /updates/20.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/20.sql -------------------------------------------------------------------------------- /updates/21.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/21.sql -------------------------------------------------------------------------------- /updates/22.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/22.sql -------------------------------------------------------------------------------- /updates/23.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/23.sql -------------------------------------------------------------------------------- /updates/24.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/24.sql -------------------------------------------------------------------------------- /updates/25.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/25.sql -------------------------------------------------------------------------------- /updates/26.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/26.sql -------------------------------------------------------------------------------- /updates/27.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/27.sql -------------------------------------------------------------------------------- /updates/28.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/28.sql -------------------------------------------------------------------------------- /updates/29.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/29.sql -------------------------------------------------------------------------------- /updates/3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/3.sql -------------------------------------------------------------------------------- /updates/30.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/30.sql -------------------------------------------------------------------------------- /updates/31.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/31.sql -------------------------------------------------------------------------------- /updates/32.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/32.sql -------------------------------------------------------------------------------- /updates/33.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/33.sql -------------------------------------------------------------------------------- /updates/34.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/34.sql -------------------------------------------------------------------------------- /updates/35.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/35.sql -------------------------------------------------------------------------------- /updates/36.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/36.sql -------------------------------------------------------------------------------- /updates/37.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/37.sql -------------------------------------------------------------------------------- /updates/38.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/38.sql -------------------------------------------------------------------------------- /updates/39.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/39.sql -------------------------------------------------------------------------------- /updates/4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/4.sql -------------------------------------------------------------------------------- /updates/40.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/40.sql -------------------------------------------------------------------------------- /updates/41.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/41.sql -------------------------------------------------------------------------------- /updates/42.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/42.sql -------------------------------------------------------------------------------- /updates/43.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/43.sql -------------------------------------------------------------------------------- /updates/44.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/44.sql -------------------------------------------------------------------------------- /updates/45.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/45.php -------------------------------------------------------------------------------- /updates/46.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/46.sql -------------------------------------------------------------------------------- /updates/47.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/47.sql -------------------------------------------------------------------------------- /updates/48.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/48.sql -------------------------------------------------------------------------------- /updates/49.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/49.php -------------------------------------------------------------------------------- /updates/5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/5.sql -------------------------------------------------------------------------------- /updates/50.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/50.php -------------------------------------------------------------------------------- /updates/51.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/51.sql -------------------------------------------------------------------------------- /updates/52.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/52.sql -------------------------------------------------------------------------------- /updates/53.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/53.sql -------------------------------------------------------------------------------- /updates/54.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/54.php -------------------------------------------------------------------------------- /updates/55.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/55.php -------------------------------------------------------------------------------- /updates/56.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/56.php -------------------------------------------------------------------------------- /updates/57.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/57.php -------------------------------------------------------------------------------- /updates/58.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/58.php -------------------------------------------------------------------------------- /updates/59.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/59.sql -------------------------------------------------------------------------------- /updates/6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/6.sql -------------------------------------------------------------------------------- /updates/60.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/60.php -------------------------------------------------------------------------------- /updates/61.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/61.sql -------------------------------------------------------------------------------- /updates/62.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/62.sql -------------------------------------------------------------------------------- /updates/63.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/63.sql -------------------------------------------------------------------------------- /updates/64.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/64.php -------------------------------------------------------------------------------- /updates/65.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/65.php -------------------------------------------------------------------------------- /updates/66.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/66.sql -------------------------------------------------------------------------------- /updates/67.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/67.php -------------------------------------------------------------------------------- /updates/68.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/68.php -------------------------------------------------------------------------------- /updates/69.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/69.sql -------------------------------------------------------------------------------- /updates/7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/7.sql -------------------------------------------------------------------------------- /updates/70.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/70.sql -------------------------------------------------------------------------------- /updates/8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/8.sql -------------------------------------------------------------------------------- /updates/9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/updates/9.sql -------------------------------------------------------------------------------- /vbx_business_case.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/vbx_business_case.pdf -------------------------------------------------------------------------------- /vbx_screenshots.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreioprisan/igroups/HEAD/vbx_screenshots.pdf --------------------------------------------------------------------------------