12 Step Meeting List

Description

This plugin helps twelve step recovery programs list their meetings. It standardizes addresses, and displays results in a searchable list and map.

It’s also the easiest way for Alcoholics Anonymous service entities to get listed in the Meeting Guide mobile app for iOS and Android devices.

This plugin was originally designed to maintain a list of A.A. meetings in Santa Clara County, CA. It is now used to provide meeting information for A.A. and other 12-step recovery groups around the world.

Notes

  • The Meeting Notes field is for any non-standardized meeting info, such as Basement, or Building C
  • Location should be a simple place-name, eg Queen of the Valley Hospital
  • Address should only be the address; no “Upstairs” or “Building C” or “Near 2nd Ave”
  • You can fill in a very basic address and then when you tab away from that field you will see it try to standardize the address for you. If you write “1000 trancas, napa” it will replace it with “1000 Trancas St, Napa, CA 94558, USA.”

Screenshots

  • Meeting list page
  • Meeting map
  • Meeting detail page
  • Edit meeting
  • Edit location

Installation

Just install the plugin, add a mapping API key from Mapbox (or Google), and start entering your meetings. That is all it takes to get started!

FAQ

My meeting type isn’t listed!

If it’s a broadly-applicable meeting type, please ask us in the discussions forum. We must maintain consistency for the mobile apps, so not all proposals are accepted.

If you have access to your theme’s functions.php, you may add additional meeting types or rename existing ones. Simply adapt the following example to your purposes:

if (function_exists('tsml_custom_types')) {
    tsml_custom_types(array(
        'XYZ' => 'My Custom Type',
    ));
}

Please note a few things about custom types:

  1. Once you’ve added the type, you will see it under ‘More’ on the Meeting edit screen. It will show up in the dropdown once you use it on a meeting.
  2. Be careful with the codes (“XYZ” in the above example) as this gives you the ability to replace existing types.
  3. Note that custom meeting types are not imported into the Meeting Guide app.
  4. They are for members in recovery to find a meeting. If you can’t imagine an addict looking for a meeting this way, then we recommend not adding it to your site.
  5. Don’t add a type for the default, eg ‘Non-Smoking.’ If you do that, then you have to be vigilant about tagging every last meeting in order to make the data complete.

Where are my meetings listed?

It depends on your Permalinks setup. The easiest way to find the link is to go to the Dashboard > Meetings > Import & Export page and look for it under “Where’s My Info?”

I need to correct a meeting address or change a pin’s location

We get our geocoding positions from Google (this true even if your maps are by Mapbox). Google is correct an amazing amount of the time, but not always. If you need to add a custom location, add this to your theme’s functions.php.

Note you can add multiple entries to the array below.

if (function_exists('tsml_custom_addresses')) {
    tsml_custom_addresses(array(
        '5 Avenue Anatole France, 75007 Paris, France' => array(
            'formatted_address' => '5 Avenue Anatole France, 75007 Paris, France',
            'city' => 'Paris',
            'latitude' => 48.858372,
            'longitude' => 2.294481,
            'approximate' => 'no',
        ),
    ));
}

Can I update the type descriptions?

Yes, you can add, update, or remove these descriptions. Adapt this example as needed and add it to your theme’s functions.php. Using an empty string '' will unset the type.

if (function_exists('tsml_custom_descriptions')) {
    tsml_custom_descriptions([
        'C' => 'Special closed type description',
        'O' => '', //this type has been removed
    ]);
}

What is Change Detection?

Change Detection augments our data import utility by periodically polling your data sources and generating email notifications to Change Notification Email recipients who you registered on the Settings page.

How can I enable Change Detection for my disabled data source?

Change Detection can only be enabled when adding a data source to your list of Data Sources. Re-registering an existing data source is necessary to get Change Detection enabled. This includes:
* To be safe, always make a backup of your existing meeting list by using the link on the Import tab to export your Meeting List.
* If you are going to have change detection on multple data sources, you may choose to add the parent organization(s) to your list of Regions first (i.e. District 1, YourCity Intergroup, etc.).
* Remove the data source (click on the X next to its Last Refresh timestamp) We suggest first noting the json feed URL (hover over the feed name to view the URL) for use when adding it back.
* Set data source options: enter a name for your feed, set the feed URL, select the parent region from the Parent Region dropdown, and lastly choose the “Change Detection Enabled” option.
* Pressing the “Add Data Source” button will register a WordPress Cron Job (tsml_scan_data_source) for the newly added and enabled data source. By default, this cron job is scheduled to run “Once Daily” starting at midnight (12:00 AM).
The frequency and time that the cron job runs is optionally configurable with the [WP Crontrol[(https://www.ads-software.com/plugins/wp-crontrol/)] plugin.

How can I convert a data source into a maintainable list for my new website?

When editing a data source record a warning is given that the record will be over-written when the data source is refreshed.
To avoid this warning and prevent a refresh from altering an edited record it’s necessary to follow a few simple steps to reimport the data source records:

  • Make a backup of your existing meeting list by using the export link found on the Import tab of the Import & Export page.
  • Open the exported file (meetings.csv) which you should find in your local Downloads folder.
  • Delete the entire ‘Data Source’ column found near the far right and then Save the file (recommend using Save As to rename the file to something unique such as my-meetings.csv).
  • Remove the imported data source (click on the X next to its Last Refresh timestamp).
  • Import the saved file using the Import CSV feature on the Import & Export page.

Your meeting list records will now no longer display a warning message when being edited, and will not be overwritten by a data source refresh operation!

How can I make the Region dropdown not be collapsible?

Add this CSS to your theme:

div#tsml #meetings .controls ul.dropdown-menu div.expand { display: none; }
div#tsml #meetings .controls ul.dropdown-menu ul.children { height: auto; }

How can I show Any Day by default?

The easiest way is to link to that view straight from your navigation. Usually that looks like /meetings/?tsml-day=any, but it can vary depending on your settings.

If you’d prefer to keep the default address, you could add this code to your theme’s functions.php instead:

$tsml_defaults['day'] = null;

How do I change the default search radius for location searches?

Add this to your theme’s functions.php. The value should be an existing value, ie 1, 5, 10, 25 or 50.

$tsml_defaults['distance'] = 25;

Can I get the meeting list to display the full address, including city, state and country?

Add this to your theme’s functions.php.

$tsml_street_only = false;

Can I set a custom “Update Meeting Info” button in TSML UI?

Add a URL to your theme’s functions.php.

$tsml_feedback_url = '/feedback';

You can add variables to the URL that can be picked up by a form plugin:

$tsml_feedback_url = '/feedback?slug={{slug}}&id={{id}}&name={{name}}&day={{day}}&time={{time}}&end_time={{end_time}}&types={{types}}&notes={{notes}}&conference_url={{conference_url}}&conference_url_notes={{conference_url_notes}}&conference_phone={{conference_phone}}&conference_phone_notes={{conference_phone_notes}}&location={{location}}&formatted_address={{formatted_address}}&region={{region}}&location_notes={{location_notes}}&group={{group}}&group_notes={{group_notes}}&district={{district}}&website={{website}}&email={{email}}&phone={{phone}}&venmo={{venmo}}&square={{square}}&paypal={{paypal}}&data_source_name={{data_source_name}}';

Feel free to adjust as necessary. This can also be a new email URL, such as:

$tsml_feedback_url = "mailto:[email protected]?subject={{slug}}";

Can I change the order of the columns on the meeting list page, eg put the Region first?

Add this to your theme’s functions.php. Feel free to change the order or column names (eg ‘Region’) but keep the keys the same (eg ‘region’).

$tsml_columns = array(
    'region' => 'Region',
    'time' => 'Time',
    'distance' => 'Distance',
    'name' => 'Name',
    'location_group' => 'Location / Group',
    'address' => 'Address',
    'types' => 'Types'
);

Can I change the “Location / Group” column to display only the Location name instead?

Add this to your theme’s functions.php.

$tsml_columns = array(
    'region' => 'Region',
    'time' => 'Time',
    'distance' => 'Distance',
    'name' => 'Name',
    'location' => 'Location',
    'address' => 'Address',
    'types' => 'Types'
);

Can I change the default sort order on the meeting list page?

By default, the plugin sorts by day, then time, then location name. To set your own sort index, add this to your functions.php:

$tsml_sort_by = 'region'; //options are name, location, address, time, or region

If I am using Mapbox can I change the theme?

By default this plugin uses the Streets theme, v9. To change this, add this to your functions.php:

$tsml_mapbox_theme = '<theme URL>'

Please note the version of the Mapbox script we use doesn’t support all the themes displayed on the Mapbox site. The themes which have been tested and are known to work are: mapbox://styles/mapbox/streets-v9, mapbox://styles/mapbox/outdoors-v9, mapbox://styles/mapbox/light-v9, mapbox://styles/mapbox/dark-v9, mapbox://styles/mapbox/satellite-v9, and mapbox://styles/mapbox/satellite-streets-v9.

How can I override the meeting list or detail pages?

If you are using the “Legacy UI” appearance, copy the files from the plugin’s templates directory into your theme’s root directory. If you’re using a theme from the Theme Directory, you may be better off creating a Child Theme. Now, you may override those pages. The archive-meetings.php file controls the meeting list page, single-meetings.php controls the meetings detail, and single-locations.php controls the location detail.

If you are using TSML UI, then adding local CSS is the best way to customize the appearance of the meeting finder.

Please note these pages will evolve over time. If you override, you will someday experience website errors after an update. If that happens, please update your theme’s copy of the plugin pages.

Can I see types in the meeting list? And can I adjust the /Men and /Women after the meeting name?

To see types in the meeting list, one way to do it is to add some CSS to your theme which will make a types column visible.

@media screen and (min-width: 768px) {
    div#tsml #meetings .types { display: table-cell !important; }
}

One drawback of this approach is that it shows all the meeting types, and you might not want all of them to be displayed over and over in the meeting list.

Another approach is to adjust which meeting types are “flagged” in the meeting names, by default for most programs this is /Men and /Women. To adjust this, find the meeting type code for each type you want to show and include it in your theme’s functions.php like this:

if (function_exists('tsml_custom_flags')) {
    tsml_custom_flags(array('M', 'W', 'O', 'C'));
}

The code above will add “Open” and “Closed” flags to the meeting name.

Can I import a custom spreadsheet format?

If you don’t mind some PHP programming, then yes! Create a function called tsml_import_reformat, and use it to
reformat your incoming data to the standard format

if (!function_exists('tsml_import_reformat')) {
    function tsml_import_reformat($meetings) {
        //your code goes here
        return $meetings;
    }
}

How can I change some of the text on the template pages, eg the column headings?

You can make use of the gettext filter to override the plugin’s translation strings. For example, if you wanted to replace ‘Region’ with ‘City,’ you could add the following to your functions.php file.

function theme_override_tsml_strings($translated_text, $text, $domain) {
    if ($domain == '12-step-meeting-list') {
        switch ($translated_text) {
            case 'Region':
                return 'City';
        }
    }
    return $translated_text;
}
add_filter('gettext', 'theme_override_tsml_strings', 20, 3);

How can I temporarily hide a meeting without deleting it?

Save it as a draft by editing the meeting’s Status.

Are there shortcodes?

Yes, you can use [tsml_meeting_count], [tsml_location_count], [tsml_group_count], and [tsml_region_count] to display human-formatted counts of your entities. For example, “Our area currently comprises [tsml_meeting_count] meetings.”

[tsml_next_meetings count="5"] displays a small table with the next several meetings in it. Use the `count` parameter to adjust how many are displayed. This will be unstyled if you're not using bootstrap in your theme.

Use [tsml_types_list] and [tsml_regions_list] to output linked lists to your meeting finder.

Use [tsml_ui] to display the TSML UI meeting finder. Optionally you may pass parameters, for example: [tsml_ui weekday="sunday" type="women,closed"]

Are there translations to other languages?

It is translated into Polish. If you would like to volunteer to help translate another language, we would be pleased to work with you.

I entered contact information into the meeting edit page but don’t see it displayed on the site.

That’s right, we don’t display that information by default for the sake of anonymity. To display it in your theme, go to Meetings > Settings and set the Meeting/Group Contacts dropdown to “public.”

Can I run this as my main website homepage?

Sure. Try adding this code to your theme’s functions.php:

add_action('pre_get_posts', 'tsml_front_page');

Also check out our One Page Meeting List theme.

Can I use this plugin to list telephone meetings or other meetings without a fixed location?

Yes, but you will need to enter an approximate location. To do this simply enter the city and state or province of the general geographic location of the meeting into the address field.

Can I change the URL of the meetings list?

Yes, try setting the $tsml_slug variable in your functions.php.

$tsml_slug = 'schedule';

You may set it to false to hide the public meeting finder altogether.

To apply these changes, you must go to Settings > Permalinks and click “Save Changes”

Can I update the $tsml_slug to be appended after the site url instead of the blog url identified in permalinks structure

Yes, you can use the following filter to change the with_front configuration from true to false

add_filter( 'tsml_meeting_with_front', '__return_false');

Can I use my own geocoding API key?

Yes, add the following to your theme’s functions.php. Make sure you’ve enabled the Geocoding API in the Google Cloud Console.

$tsml_google_geocoding_key = 'my.api.key.goes.here';

How can I report security bugs?

To report a security issue, please use the Security Tab on our GitHub repo,
located under the repository name. If you cannot see the “Security” tab, select the … dropdown menu, and then click Security.
Please include as much information as possible, including steps to help our team recreate the issue.

Can I include custom fields in the CSV export?

Yes, you will need to know the key name of the field. Then include an array in your theme’s function.php file:

$tsml_custom_meeting_fields = [
    'my_custom_field_key' => 'My Custom Field',
];

Reviews

March 4, 2021
When we were hit with COVID, this app was invaluable to keep up with the constant changes our groups were throwing at us. And Code4Recovery kept up with all of our constant requests for adaptations to it because of all of the newly-discovered needs we had to get the information out! The fact that it feeds the Meeting Guide app, too, makes it a must-have. As a Central Office manager, I have been happy with this app for 3+ years now. Love it!
February 2, 2021 1 reply
I am Web administrator for AA Victoria in Melbourne, Australia. I cannot thank the developers of this plugin enough for simplifying my job. Works so well ‘out of the box’. Simple and fast with just the right mix of functionality and good user interface.
November 23, 2020
Kudos to whoever donated this code. I was looking at it to see how it opens up zoom for a meeting – there’s a tremendous amount of work there. Thanks again.
April 15, 2020 3 replies
This plugin is a wonderful gift especially during these “shelter” times. The developers have been AWESOME with support, adding in changes in speedy time, and keeping it current for those of us working with it.I loved this app when I first saw it many years ago and have even more love for the support people now. GREAT SERVICE.
Read all 27 reviews

Contributors & Developers

“12 Step Meeting List” is open source software. The following people have contributed to this plugin.

Contributors

“12 Step Meeting List” has been translated into 4 locales. Thank you to the translators for their contributions.

Translate “12 Step Meeting List” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

3.16.4

3.16.3

  • Redirect legacy UI query parameters when using TSML UI more info
  • Import Google Sheets directly more info
  • Test with WordPress 6.7 more info
  • Fix counts on region admin screen more info
  • Filter for meeting types on admin page more info
  • Fix TSML UI widget layout on some themes more info

3.16.2

  • Fix bug when importing types from CSV more info

3.16.1

  • Improve sanitization of imported data more info

3.16

  • Add entity description fields to meeting listings more info
  • Add async property to TSML UI script tag to fix potential issue with next release more info

3.15.2

  • Improve Zoom URL validation more info
  • Improve PayPal username validation more info
  • Allow [tsml_ui] shortcode to accept search and filter parameters more info

3.15.1

  • Reformat ‘Change Detection Email’ for better legibility. more info
  • Add “Proof of Attendance” type more info

3.15

  • Modifies Import Data Source feature so that only the changes detected between an import feed and the local database are applied as updates. more info

3.14.38

3.14.37

3.14.36

  • Add Eating Disorders Anonymous more info
  • Don’t include custom fields in JSON feed more info
  • Update messaging about TSML UI supporting Mapbox only more info
  • Fix error when multibyte functions are not installed more info

3.14.35

3.14.34

3.14.33

3.14.32

  • Fix bug preventing removal of online meeting URLs more info

3.14.31

  • Improve page appearance with block themes more info

3.14.30

  • Add SECURITY.md more info
  • Fix page appearance with block themes more info
  • Fix performance and appearance issues with search typeahead in Legacy appearance
  • Fix minor issues on Region and District admin pages
  • Fix minor issues when saving if debug mode is on and no region is selected
  • Fix error when deleting plugin more info

3.14.29

  • Add ability to export custom field types more info
  • Limit CSV-downloading to editors and above

3.14.28

  • Remove capability to make public CSV download links, since it looks like a security gap to researchers more info

3.14.27

  • Fix 404 on TSML UI data URL when using Flywheel more info
  • Prevent address and location fields from being translated by Google Translate more info
  • Fix warning in upcoming meetings widget when location name is empty more info
  • Fix permalink issues caused by deactivating, reactivating TSML more info
  • Fix PHP code warning more info
  • Include the name of the data source (if any) in the feedback URL
  • Standardize whitespace format
  • Fix NPM 401 issues
  • Fix some potential edge-case security issues, and add notice about Patchstack more info

3.14.26

3.14.25

  • Security update

3.14.24

  • Show error in TSML UI when time zone is not valid more info

3.14.23

  • Fix compatibility with Advanced Custom Fields more info

3.14.22

  • Omit JSON regions array when empty more info

3.14.21

3.14.20

  • Add Survivors of Incest Anonymous more info

3.14.19

  • Bump ‘tested with’ WordPress version

3.14.18

  • Fix settings page assets bug with WP 6.3 more info

3.14.17

  • Add Underearners Anonymous more info
  • Add TSML UI shortcode to FAQ more info
  • Export meeting author in CSV export more info
  • Legacy UI: display meeting phone and email within button labels on detail page more info
  • Legacy UI: expand keyword search to include region and district names more info

3.14.16

  • Fix issue where selecting a region and then using the bulk “move to trash” action emptied the public meetings page temporarily more info

3.14.15

  • Fix issue affecting some sites where a cron seems to be nuking permalinks more info

3.14.14

  • Fix localization problems when site is in language other than English more info
  • Add new meeting type for NA more info

3.14.13

  • [tsml_types_list] and [tsml_regions_list] shortcode links now work with TSML UI – more info
  • Editors can now use the Import & Export screen – more info
  • Fix possible PHP notice on upcoming meetings widget – more info
  • TSML now imports 12x12 meetings properly – more info
  • Helper function to set custom meeting type descriptions – more info
  • Remove legacy PDF code – more info
  • Add open source license (GPL2)

3.14.12

  • District is now selected when joining a meeting to an existing group – more info
  • Fix for warning when refreshing a JSON feed – more info
  • Provides info to help tech support / debugging – more info
  • Add Dialpad as valid conference provider – more info

3.14.11

  • Fix missing file warning

3.14.10

  • Split Import & Settings into separate pages – more info
  • Fix bugs when rendering Appointment meetings – more info
  • Add more options for linking TSML UI to a feedback URL – more info
  • Use TSML’s geocoding key except when specified in code

3.14.9

  • Fix bug in 3.14.8 causing Regions and Districts to not be editable – more info
  • Fix warning when type_descriptions are not set for program – more info
  • When using TSML UI, remove Online and Location Temporarily Closed as default flags – more info

3.14.8

  • Remove deprecated “BETA” geocoding option
  • Don’t regenerate cache after every update
  • Upgrade dev dependencies
  • Overriding theme files no longer overrides TSML UI setting
  • Add four new types for Al-Anon
  • Remove automatic taxonomy pages
  • Add ability for meetings page to be appended to site URL (rather than blog URL)
  • Add Discord and GoTo.com as valid conference providers

3.14.7

  • Fix directions button on mobile
  • Fix TSML-UI data loading on GoDaddy CDN

3.14.6

  • Add href link to meeting name for change detection
  • Add flag settings to TSML UI configuration
  • Fix build of directions URL for Google Maps

3.14.5

  • Fix table layout bug when filtering
  • Enable multiple levels of regions in TSML UI

3.14.4

  • Set parent region on imported data source records
  • Enable user-settable location-only column

3.14.3

  • Add Jitsi conference provider
  • Update Google Sheets importing to v4 API
  • Expand change detection email report
  • Add file timestamp to feed URL

3.14.2

  • Rotating geocoding key to counter a spike in usage

3.14.1

  • Make cache file unique

3.14

  • Add Switch UI feature to facilitate switching between the two available user interface displays: Legacy UI and TSML UI
  • Refactor Import & Settings page with tabs & cards to segregate and group features and settings
  • Modify feed to follow the directive from setting “Meeting/Group Contacts Are” (Private/Public)
  • Improve CSV export/import, includes contact and imported feed information
  • Add TSML widget on WordPress dashboard

3.13

  • Add change detection notification option for feeds
  • Update url in TSML UI shortcode
  • Fix district dropdown list
  • Write approximate value when saving location

3.12.2

  • Fix bug adding pages
  • Fix database updates

3.12.1

  • Add CSS class for past meetings
  • Allow translations of attendance options
  • Use a default meeting title if left blank
  • Add CMA support
  • Create feature_request.yml issue template

3.12

  • Internal upgrades (please note: TSML, like WordPress, now requires PHP 5.6 or higher).
  • Link to new PDF service.

3.11.3

  • Address performance issues.
  • Fix link to new Discussions (replaces Issues for public users).

3.11.2

  • Fix widget filtering.
  • Fix URL query parsing of attendance_option.
  • Fix filtering options persistence.
  • Revamp handling of online meeting links.
  • Change open/closed definitions text.
  • Fix display of online meeting location.
  • Fix handling of attendance_option import.
  • Update shortcode sytax for TSMLui.

3.11.1

  • Fix PHP warnings.

3.11.0

  • Add attendance option support, and improve online meeting support.
  • Add support for custom MapBox themes.
  • Improve TSMLui integration (short code, options).
  • Fix bug preventing map from displaying.

3.10.0

  • Add BETA feature for API Gateway to replace direct geocoding calls to Google.
  • Add option for webmasters to configure their own Google geocoding API key.
  • Fix bug related to display of 11th Step meeting type.
  • Fix bug related to tsml_addresses ajax function.
  • Improve cache entries.

3.9.6

  • Hot-fix to replace API key and correct additional geocode-related bug.

3.9.5

  • Hot-fix to remove geocode error when adding new meeting.

3.9.4

  • Fix bugs associated with approximate values/display of directions dialogs.
  • Fix bug preventing draft locations from showing in suggestions.
  • Replace Twitter Typeahead with jQuery Autocomplete to fix dependency on
    deprecated jQuery code (should satisfy WordPress 5.6 compatibility).

3.9.3

  • Fix subversion process.

3.9.2

  • Fix readme.txt version number.

3.9.1

  • Hot fix.

3.9.0

  • Added tracking of approximate location. Markers/Directions are not
    provided for approximate locations.
  • Fixed bug leading to incorrect sorting in meetings list.
  • Fixed broken link for support (Need Help?).
  • Fixed bug preventing use of meeting cache.
  • FAQ moved to Wiki on GitHub.

3.8.0

  • Added notes fields for online/phone meetings.
  • Fixed bug preventing selection of multiple types.
  • Fixed bug preventing customized meeting URL.
  • Fixed bug involving meetings in draft status stripping location.
  • Fixed classname issue with online meeting provider.
  • Added program type Compulsive Eaters Anonymous-HOW.
  • Fixed JQuery error with WordPress 5.5.

3.7.2

  • Fixed bug involving end_time for meeting.

3.7.1

  • Fixed bug introduced in previous version.

3.7.0

  • Added additional support for 7th Tradition contributions.
  • Added outdoor and seniors meeting types.
  • Fixed bugs affecting contacts.
  • Tweaked how contacts are displayed.

3.6.6

  • Added TC and ONL flags for Al-Anon and other programs.

3.6.5

  • Added hiding of conference phone numbers.
  • Changed Temporary Closure to Location Temporary Closed.
  • Changed online meeting to be accepted if dial-in only.
  • Improved URL screening for csv/json imports.
  • Improved front end styling for meetings.

3.6.4

  • Updated CSV import/export and template to reflect added fields.
  • Added abiility to bulk add/remove Temporary Closure type.
  • Add two additional online conference types.
  • Updated online phone button.
  • Other bug fixes.

3.6.3

  • Fixed issue with setting null for conference types.
  • Fixed JSON feed not importing online conference info, and Venmo info.
  • Added Skype conference type.

3.6.2

  • Changes online meeting information from group to individual meeting (Issue #82).
  • Adds front end styling for online meetings.

3.6.1

  • Maintenance release

3.6.0

  • Added feature to include online meeting information for temporarily closed meetings.
  • Added “online meeting” type.

3.5.4

  • Added temporary closure styling to widget.

3.5.3

  • Changes to front end display supporting temporary closure tag.

3.5.2

  • Adding “Temporary Closure” meeting type to all programs.

3.5.1

  • Compatibility for PHP < 5.3
  • “Need help” button on Import & Settings page

3.5.0

  • Added option for upcoming meetings widget to display message if no further meetings exist for today.
  • Added size to PDF generator.
  • Fixed bug with restoring meetings from trash.
  • Updated logo.

3.4.22

  • Fixing bug in geocode caching (Ogden)

3.4.21

  • Updating how PDF displays groups (hmbrecords)
  • Updating documentation regarding JSON feeds (brianw)
  • Updating bug and feature request processes

3.4.20

  • Restoring PHP 5.3 compatibility

3.4.19

  • Updating meeting types for Al-Anon

3.4.18

  • Adding two new programs

3.4.17

  • Importing Google Sheets (via Puget Sound)
  • Fixing search with apostrophes (Houston)
  • Further attempts to fix PDF errors (Ft Worth)

3.4.16

  • Further attempts to fix PDF errors (Ft Worth)

3.4.15

  • Fixing PDF error (Ft Worth)

3.4.14

  • Geocode (Western MA, Traverse City)

3.4.13

  • Hiding PHP notices for empty locations (Ft Worth)

3.4.12

  • Fixing javascript bug when meeting has no types

3.4.11

  • Fixing meeting types bug introduced in earlier commit

3.4.10

  • Bugfixes relating to meeting type “flag” customization (Akron)

3.4.9

  • PHP 5.2 compatibility (Hanover PA)

3.4.8

  • Geocodes (Bolivia)

3.4.7

  • Fixing night time filter

3.4.6

  • Fixing error message in upcoming meetings widget (Inland Empire)
  • Including slug in export CSV (Northern IL)
  • Update cache when deleting meetings (Southern IL)
  • Removing mention of non-AA programs from readme (San Diego)
  • Fixing code formatting in FAQ

3.4.5

  • Importing fix

3.4.4

  • Syntax error on PHP < 5.4 (Palm Springs)
  • FNV Import Location Field (Minnesota)
  • District filtering working again

3.4.3

  • Fixing filter for parent regions (PA Al Anon)
  • Adding ‘delete all’ AJAX route
  • Fixing JSON Import (San Francisco)

3.4.2

  • Adding Non-Binary meeting type (Los Angeles)
  • Geocodes (Western Mass)

3.4.1

  • 3.4 was missing a file ??

3.4

  • Major rewrite to make plugin more CPU-efficient (Ventura)
  • Fixed bug where leaving a space at the end of a data source would cause an error
  • Fixed bug where filters wouldn’t work after switching to Google Map view (SCA)
  • Added post_status to params for tsml_get_meetings() (New England SLAA)
  • Some new geocode overrides
Malaking puwang ng bass splash review Bakit pinapayagan ng pamahalaan ang operasyon ng mga monopolyo How to play Super Ace jili Nice88 club withdrawal Esball online casino com registration Nuebe Gaming legit HB888 Casino real money Casino bonus no deposit free spins 2021 12 Titans Greek mythology online slot machines for real money free play Mines jili login download Allin88 ph login Casino Guru gratis Vegas World login Apanalo online game no deposit bonus 77ph Himala himala wikipedia 啶掂啷嵿ぐ啶ぞ啶?啶曕啶ぞ 啶灌? 啶す 啶囙い啶ㄠぞ 啶栢い啶班え啶距 啶曕啶啶?啶灌啶むぞ 啶灌? Mnl168 online casino register philippines login Bally slot machine value Jili live casino no deposit bonus Gcash gambling reddit philippines tamabetcasino Jili magic lamp app Mwplay888 net download for android Vegas Live Slots hack APK Clive and jill sidequest ffxvi Jiliasia online casino Online bingo jili withdrawal Chili for a crowd Silver Palate Jili168 register philippines Jili mk casino Jili cc download for android Habanero online casino games philippines Philucky withdrawal format 377 jili login register philippines Jili slots download Bsa387 login password Ginto Casino link 49jili login to my account login philippines app Royal777 casino no deposit bonus 8 juli feiertag wikipedia Ano ang mga flash game sa hollywoodbets app download Game of Thrones Slots referral code Igt address manila Zynga slots free coins cheat android Jilicash real money withdrawal Paano gumagana ang mga online slot machine login Ezwin online casino philippines Peso88 login register Jili kaganapan login register Winning plus 8 login philippines masuwerteng iikot ang mga nakakalokang slot 123jili app Login casino games online unblocked Transaction password USDT Baccarat games online real money Appointment slots vs appointment schedule quick hit slots commercial actor Multiclass spell slots table Slot schedule template 啶灌啶曕啶?啶曕ぞ 啶い啷嵿い啶?啶曕た啶むえ啶?啶灌啶むぞ 啶灌 Jili jackpot 777 download for android latest version Million 888 casino login register Tongits go apk unlimited money latest version Pinakamahusay na jili slot game download YE7 Download App BET99 Quebec Free 100 online casino registration facebook page 2021 slots no deposit bonus Online gambling philippines real money Jilibet casino login philippines Super Royal 777 Slots go casino login Register Youtube ng slots today Peso 888 apk Mini777 register download PG gaming casino login Wizard of Oz free coins gamehunters Philippine News today live 247Spin free 100 spin the wizard of oz slots free coins E2 jili casino login Konjac jelly Japan Big bet review korean Online casino Philippines News 7 Juli 2024 memperingati Hari Apa Jili 747 casino login Winph 777 login philippines app benefits of online casino games Wild aces online casino real money Mwcash88 Bonus hunter cc email Maduna clan names FF16 change party members Online casino games real money free spins no deposit Dbx casino real money philippines Okada online casino apk latest version Skype Download for PC Jilibet donnalyn login Register online casino 777 Pub download old version Spaghetti Jollibee price Jili no 1 login register Jiliasia app apk Super slots apk old version 646 casino login Register Philippines Listahan ng laro ng skillz login Totoong online pokies philippines release the kraken clash of the titans (1981) Casinos online real money philippines Phil168 APK Download Chumba Casino login Www 49 jili casino login password Fb jili casino login download apk Jlbet slot login Jili 777 lucky slot login register philippines apk Pagcor logo meaning Hard Rock online casino login 77ph com login password download Ano ang gamot sa mataas ang sugar Online casino download APK Geely Emgrand price Philippines BLBET Tapwin 2024 download apk Lodi 646 casino login ph Royal558 download Abc jili register philippines download LVJILI login Royal fishing jili download for android Free60 casino philippines Kk jili libre 58 real money download PHFUN login Nice88 download free ios Best penny slot machines to play at the casino for beginners portal.pagcor.ph sitemap online casino games no deposit bonus Unlapi AAA Jili login Bongobongo ug Casino Jili x yb download apk do 888 casino register Cash Rush slots 777 apk latest version Free online casino games win real money no deposit Philippines Fortune 888 login password Slots casino login no deposit bonus 49 jili time philippines download Nuebe register login Jili fishing game download free Win99 casino philippines Bingo Super Star download 55bmw win withdrawal Jili kilig login download Superball Keno online Hacksaw slots real money Pagcor address philippines 188 jili demo account hack Vegas online casino games free play Jili 49 net casino login philippines 777 jili jackpot apk latest version Fc slot demo free download Jili under maintenance today download android 3 patti slots patti online play Jili bingo download for android Smbet register philippines Osm jili register mobile number philippines MWGAMING 188 register Nuebe agent login philippines Online casino color games philippines Is Winford Casino open today Jili update today WK777 slot Jili casino review philippines slotomania online Lucky jili slots login register mobile 188 jili casino login download philippines Baccarat game strategy reddit Jili22 promotion How to withdraw in jili slot online 1xslots login Mnl168 online casino register philippines login Paano maglaro ng slot gambling login casino for real money online Best online casino Philippines reddit Jili deposit 50 withdrawal limit Nextbet philippines registration 168jili login registration Www royal888casino net register Double Win Withdrawal App Fisheries department officials 777 Lucky JILI Slots Casino APK download Nz online casino games real money 888php withdrawal Jili mines predictor apk Online casino jackpot slots free play yy777cam Jili one login download mainstream records lee young-ji 77ph com download free 49 jili years login register Jili slot club jackpot 777 download free money philippines Www betvisa games app 1888 jili casino withdrawal online July 10 religious holiday Labet88 login registration 2021 Osm jili casino online games philippines download Money 888 login download Empire slot machine download Ireland online casino games free play Kk jili casino login registration download apk 1000 free games to play with friends Poseidon god son Jili lucky slot app download Big baller club casino login registration philippines Fish Hunter - Shooting Fish Pnp 888 jili slot game login app Limbo game download for PC Highly Compressed Jili jackpot 777 download apk ios slot machine free games free spins deposit bonus Jackpot meter app for android Instant withdrawal betting app Dama N.V. casinos no deposit Bonus Joy 7 casino login free chips Eliakim Sadoki Hadaa Ya Walimwengu Gemdisco login 08 jili register app Jollibee slot casino login philippines register online Award winning chili recipe Allrecipes Helens Slot APK old version Mga kahinaan ng mga pragmatic slot machine login Jili pulang sobre register online Jili777 free 150 no deposit bonus Philippines Jili no 1 com withdrawal philippines Slot online game free real money Jackpot joker jili demo free download Best pg slot game free no download Wagi77 login Philippines Rich9 pinakamainit na laro login Fortune gaming88 login philippines Royal Slot Login Fun facts about July 19th Geely gx3 fiche technique philippines IND slots APK yono Ox jili slot withdrawal What happened on October 7 Al Jazeera 777 pub com login download Nice88 app 99 Fortune Casino login Register Tmtplay888 Jiliplay login download Love jili vip login password 888bet registration online Dragon vs Tiger hack apk Lucky JILI slots login register Kpl casino Online casino game for real money free play 777pub open now promo Video poker jacks or better strategy chart Jili 365 casino login register philippines no deposit bonus download Free slots com party bonus Animal Husbandry Minister Bihar list 188 JILI casino login registration Philippines Anuani ya katibu tawala mkoa wa dar es salaam NetBet registration Fg777 register philippines 90 jili live login download One slot game download Agent GEMDISCO Jili 999 com withdrawal Jilimk casino log in no deposit bonus tg777 login register philippines Pagcor login philippines List of licensed POGO in Philippines 2023 How many cannabinoid receptors are there in the human body Q25 jili download ios Ff777 vip login Jili 49 dot com registration philippines Ano ang speed roulette review Ph joy vip login registration philippines 4 ram slots which ones to use Mga puwang ng video youtube Jackpot Party Instagram free coins www.free facebook.com log in Betvisa download for android 49jili pogcor Betso888 login download Jollibee slot login Fruit Theme Birthday Party Wjslot claim form Nextbet Live Casino Lotto go Jili volatility calculator philippines Teenage Kraken Salish Matter Lucky 777 online casino login philippines Slotomania 777 casino real money Mega ace jili demo apk latest version Falcon Play customer service www.666.com games Bingo Jili PH Slots earning app real money no deposit Canara Bank Internet banking PIN generation 8K8 vip login Philippines No 1 jili app for android free download Gonzo's Quest max win 9 Pots of Gold land and win What does Mr Mike Slots do for a living Jili fc slot real money no deposit bonus Ph macao jili register download limbo apk + obb download Swcup6 net live login Register philippines Free slots 8888 no deposit philippines Jili tadhana slots download free Free casino slots 3 lines no download Jili okbet real money philippines Jili88 ph com register login password Slots earning app real money download Jili apps download free for android ios Kurdish traditional dress Labet88 online casino Ez jili telegram ios 94067 water heater door installation Real Boxing 3 download Best casino online Wishbone Games Nextbet login mobile registration Jili no 2 login no deposit bonus Poder Judicial Superace88 club login registration link Triple match 3d master mod apk Sino ang cowboy slots wife Jili 5678 casino login poker star Apanalo casino app login KK JILI casino login app apk Www gibson casino www gibsoncasino com login APEX slot download Best free slot machines play for free no deposit Mining Telegram group link Jili t7 real money Jili369 app download Progressive jackpot meter link Lampara ng genie philippines Best free slots with bonus Asia JILI casino register 888 ladies slots login UNO Spin Millionaire Dimm slots reddit King game app download apk Yy777 index login No deposit slots real money Yeriko by injili bora choir session 49 jili road register philippines Jili slot 777 login register online no deposit bonus philippines 啶啶?啶曕 啶啶班が啶?啶曕ぐ啶ㄠ 啶曕 啶夃お啶距く GGBet welcome bonus Is the 49ers coach a Christian Sino ang may akda ng medusa Ace Super ph casino Login games.747 games.ph/launchgame open now Tiktok video Zili 7 Gold Fruits slot Peraplay APK download Labet88 register philippines app Love jili vip login philippines Slots download free Jili slot jackpot login register Junglee Rummy APK Paddy power virtue Welke dag is het vandaag in belgie Nn777 login philippines app Pb777 login id and password free Sweet Bonanza free spins no deposit Online slots casino 888 real money no deposit online casino games real money Osm jili casino Megaways slots login Konami free slots no download Big Bass Hold and Spinner Megaways demo Jili 888 register Jili mines download free Best free video poker no download fishing slot casino - free 100 000 coins Jili22 NEW com register Big Bass Bonanza Geely subsidiaries in philippines State fish of bihar in english Game of Thrones Slots Casino free coins hack Lucky jili casino login registration philippines apk Mga laro ng slot na nagbabayad ng totoong pera apk Niceph casino real money Fortune Dragon PG slot demo Reference generator Jili88ph net register download FG7777 Jili super win apk best online casino games to win money Bagong jili register app 777sm vip login Jl bet slot register Jili casino sign up bonus no deposit philippines Phlove Casino Login Register Jili slot online real money Ez jili code free download Cannabinoids structure How does Dragon Link slot work 188 jili casino download free Which casino has the most winners in Vegas Goldfish slots apk Fisheries, Bihar gov in Medusa megaways real money Mwcash88 casino login Best time to play crazy time reddit Voslot jili register philippines Ang tao ba ay nagmula sa unggoy PHL63 login register Demo Jili Golden Empire Download app and get bonus Pogibet free 100 philippines 22FUN APK Lucky JILI Casino login registration Win win Game zambia online app download Win100 com casino group win100 originals win100 originals register Mlbb Win Rate Calculator APK Mi777 casino login philippines register Do888 casino login no deposit bonus Jill Scott net worth 8 jili slot download for android 55X Casino Login Register Philippines Ug777 app download apk for android 94067 water heater door replacement Loveph casino Tianjin University of Science and Technology How to play Fortune Gems online Earn money online Philippines legit Xo jili com register philippines Cruise casino in Goa Play slot machines for free online no deposit Is golden Cowboy good tds online casino games volatility Tmtplay casino login register mobile 啶戉え啶侧ぞ啶囙え 啶曕啶膏啶ㄠ 啶椸啶?啶曕啶膏 啶栢啶侧啶? EZJILI Login Register Game room online casino games real money Casino dealer Reddit ph Slots jackpot meter philippines app Pldt 777 real money withdrawal Jackpot World redeem code free 2024 Jilibay free 68 no deposit bonus Bet88 ph app download for android OKBet rewards app Julie emergency contraception reviews 啶ぞ啶椸啶?啶う啶侧え啷?啶曕ぞ 啶膏す啶?啶夃お啶距く Mega win login Best online casino games real money app Jiliasia ace download Jili 178 real money app Pag-IBIG membership Double DaVinci Diamonds free slot game jili 711 Slot virtual real money free Jili tongits withdrawal limit Okbet casino login philippines download Sabong derby 2023 Full Video MONOPOLY Slots download White part of eye swollen like jelly home remedies Ez jili codes 2021 Wjslot com rewards login How many evolutions can you have in a deck Clash Royale Online casino jili login register House of Fun VIP PLUS download SM Megamall 3 day sale 2024 dates Phil163 login Simple chili recipe Jili slot machine apk latest version Jili188 login download Boss88 Slot Login Jili go login philippines Online casino games with free signup bonus philippines Jili mines download apk Fc slot online philippines Y777 jili real money withdrawal Win99 online casino login register Lucky jili slots login register mobile philippines BetVictor UK Jilino1 new site Jili no minimum deposit philippines 2020 Royal777 login register philippines Forgot transaction password in phdream Casino plus jili slot real money Win99 slot games free apk Nn777 slot jili real money 38jili login GO Keyboard APK betBonanza mobile login registration Dragon cash vs Dragon Link 8k8 online casino games downloadable content philippines Best slots to play on FanDuel reddit balato8aa Crown89ph casino login Online casino builder Wjevo22 app irich slots&games casino 777 Boxing king casino real money Jili22 vip202 download online casino games with no minimum deposit Mega Wheel game download Jili apps download for android free Diablo 4 enchantment slot not working Online lucky sweepstakes no deposit bonus 747 online casino games philippines Super ace demo game online free Spin and win cash in Uganda withdrawal PG Soft Wild Bounty Showdown 777sky slot Jiliapp download latest version Www royal888casino net register Royal slots real money login ????? ?? ???? ??? ???? ????? ????? Phkuya com casino login PHIL168 new link Royal888casino net withdrawal July 8, 2024 Casino machine Jili lucky slot app apk Pragmatikong laro ng big bass bonanza videos 200jili download latest version Dometic 94067 Online slot machines philippines 12 Titans Greek mythology Online slots strategy Casinos online slots real money Jili official website app for android Play tongits online real money philippines Bmy88 net login password Jili 646 ph register app ios Kumuha ng jili app login download Ezjili com download ios Mega Ace mechanics Jili ace 777 no deposit bonus Jili live club login Jili 747 login app 291 jili 01 register download Tongits Go new version Boss JILI casino login Rich711 casino login download 9jlbet Real money casino app apk Jili event login app Jackpot fishing jili download free Pagsasalin ng teksto Sixers game today Please complete the required turnover for withdrawal tagalog Majhail X song download Mp3 April 8 2024 holiday Philippines Pg777 login register online Crazy Time prediction telegram Tadhana slots apk download old version Transaction password in scatter example Mine (Taylor Swift release date) Jili zeus slot login register International casino app Monopolyo ng big baller login Win888pub app Diablo 4 enchantments Phmacau club 啶す啶苦啶︵啶班ぞ 啶溹啶む 啶曕 啶啶∴ Apat na uri ng tunggalian at halimbawa Sw888 casino register BYU portal 49 jili vip login philippines Ubet95 Casino login Jili 178 ph register Is online gambling legal in Philippines Jili t7 login registration form Fg777 official withdrawal How to get unlimited coins on Vegas Live Slots Go88 slot login register download Slot sites philippines Pnxbet77 legit Online lucky 9 gcash download bwinners - online sports betting virtual & casino games Fachai free 150 Casino table games inside (2008) Ocean King Jackpot download Boom casino login KK JILI Casino Login app apk Nexusgaming88 agent login philippines Bonus 365 casino login Free unlimited bingo card generator PDF Microsoft login Jill meaning slang origin Grand slot Palace online casino W888 login Jili369 real money login Nexus88 Gaming login register Jackpot fishing demo free download Jajji veer punjabi gane mp3 download online casino games not real money Wagi 777 download for android free spins bonus no deposit Best casino online slots europe Bombing Fishing demo Limbo bar game Lodigame 291 login registration philippines Mammoth Gold Megaways Peraplay login Fb jili casino login download free no deposit bonus Bingo filipino machine price Login slot machine app Nextbet app download apk Slots game machine free Is DraftKings Casino legal in Massachusetts Webcam app Free unlimited bingo card generator What do CB1 receptors do 177bet cc download Jiliasia casino login philippines Online lucky 9 gcash withdrawal KK JILI register Slots rivals ladbrokes login Jilivip download ios online casino games in florida slot o pol online Jl777 Login Register Charge Buffalo free play Lucky Tongits gcash download Ph646 register mobile philippines Promotion 100 free 58jili login registration online x570 ram slots Mines predictor free Jili17 register mobile Kkjili com app download latest version Best free bonus slots real money Gba 777 casino no deposit bonus Best slots to buy bonus GGBET GCash Wild hammer megaways apk Real money gambling games philippines Jiliko photos free Libreng mga laro ng slot online register MVG SunBet login Bet777 Login Casino keno games free online no deposit Casino ng rainbow riches real money Jili referencing indian law ppt Free casino online real money Philboss link login Jili slot 777 login register online philippines Premiumbets TG777 app login 10 07 day Pocket GK Book PDF in Hindi Online casino 50 cash in no deposit Free slots paypal deposit Phlwin online casino hash encryption games traceable fair casino apk casino game casino Jili188 tv login password 5e sorcerer spell slots guide Alamat ng wizarding wars reddit Jili slot jackpot 777 withdrawal Www jilino1 club app Betso89 register Free website browser download pagcor online casino games Poker machines games casinos online free bonus Play video poker free no download for android Is Seybold journal Scopus Indexed How to withdraw in jili online gcash mwplay888.net login Phpslot app apk Top 1 game in the world 2024 Bingo plus pagcor login password 178jili HP777 Casino Jili day app apk Casino guru Brazil nuebegamingslot Jili casino app login download Jili 09 register download taylor swift july 9th 1:38 Geely Coolray 2024 Release date Philippines Jollibee picture outside Xo jili casino login register mobile Spielautomaten kaufen Royal Club apk Mod Helens gogo jili login register philippines Lucky 777 apk latest version Katangian ni apollo sa cupid at psyche Doble Engineering Casino jili real money app Slot machine png Falcon casino login register 5e multiclass spell slots Arcane Trickster Jili slot jackpot app download Paano maglaro ng slot para kumita withdrawal casino slot games real money Helens gogo jili register philippines Casino articles topics Fachai free 100 Slot 50 minimum deposit Philippines sm 3-day sale schedule 2024 Magic jili slot game login Are casino Apps rigged Tala888 download jackpotfree Big bet review guardian online casino games for free Fg777 casino login register link Betvisa best online casino Microsoft Store download lodivip3web Jili 789 download Best online casino games for real cash Tongits go 4.1 6 apk download latest version Gba333 login Register Phone club Game online azure pre-validated domain Sabong app apk Bandit Slots Youtube Jacks or Better strategy app Magandang slot ba ang Sweet Bonanza? 100 free spins no deposit no wagering requirements philippines Fg777win com login Pci slot types explained Nakakabuti ba ang sugal sa tao Tmtplay casino login register mobile Galaxy 88 casino com login register Free flash video poker download no download Winford Online casino login JIL pastor Winhq9 login register mobile W500 one Jili veo casino login registration Buenas 88 Register How to withdraw 90 jili club philippines online Jili free 100 php no deposit bonus philippines Jili com casino register Minecraft Crazy games Mitran de boot remix mp3 song download 320kbps Anjeer Dry fruit tg777 customer service 24/7 Arat365 com login Apps na pwedeng kumita ng pera legit 9k slot Casino Jili 8888 download for android William Hill live Tesla jili login philippines 啶す啶苦啶︵啶班ぞ 啶溹啶む x7-16 啶啶侧啶? Okada Online Casino download ios Lucky Neko demo play Jili lucky download for pc Original Buffalo wings recipe 777 jili Casino real money Betsson Group Glassdoor 40 jili casino login philippines app 777ku login App Byu jili register download Yesjili com login philippines Jackpot fishing game real money Ubet95 app apk 888 casino app store download Betway zambia online live sports betting download jili 80 iRich kh free download Mga nakakatawang palaro Top online slots online lucky 777 slot game download 50 deposit game online 49 jili games Online casino game with real money Freeplay Casino no deposit bonus Jili 646 777 login register philippines link Kk jili login register online philippines Anti epidemic online casino gcash login Gold 168 Casino login Royal777 register JILI6 promo code Philippines Lodislot 777 casino online real money Ijility maumelle ar Mnl168 download for android Bet 888 login philippines Boeing Secure Login 188 JILI Casino login Jili asya download Mr joker Photo Dinosaur tycoon jili ios download Jili777 login register Philippines 49 jili games download Wow888one philippines Phl63one philippines Mega Medusa Casino login Win888 casino register online Pldt 777 real money withdrawal solaire online casino games MNL63 free 100 No Deposit Jili caishen casino irich slots&games casino 777 Free slots poker online real money Casinos online for real money philippines Royal Club login app download free Online casino free real money DO888 online casino JILI188 app Charge buffalo jili download free Jili free 100 no turnover philippines no deposit bonus Gogosolot online Casino Login Superjilli ph Jili365 bet login sign up philippines Jili x super ace download 5 jili casino login register online Lolliplay login no deposit bonus Pldt jili slot download ios New online casino free chip no deposit Is transaction password and atm pin same sbi mega joker spielautomat Baccarat Strategy book Sweet Bonanza Candyland live Jili 337 withdrawal fee Baccarat Evolution Jili games download for pc slots with real money online 5jl Casino Login Super Ace slot demo SWERTRES sureball hearing today Philippines youtube Jili big win login register Online casino games no deposit free spins philippines Top online slots online lucky 777 slot game download Big baller Club info login Non working holiday Pasig 45 days from july 9, 2024 777 10 jili casino register download jackpot giant slot 90 jili register download JL777 Casino Tp777 com login register mobile Casino tr c tuy n login Gogo jili app download apk mod Legends Slot Bingo JILI 52 Club APK Jilievo888 com login register online Lucky jili real money 888bets mozambique app download Happy jackpot slots Fairground Slots no deposit bonus Wild ace demo download New Vegas slots luck Casino mania bonus Huff and more Puff slot machine for sale baccarat game how to play Jili ph register online Jolibet withdrawal Football teams Premier League sissi slot machine free play Jili vip login register philippines download app ios Transaction password in tagalog example brainly Play free casino games online without downloading for android ELK casino games Libreng computer video poker download Winph6aa philippines Jlbetslot 49 jili casino slots login Jili app casino download apk for android Mnl168 online casino register philippines apk Jili 80 login register Jili free withdrawal app Maaari ba tayong maglaro ng monopoly online play SYNOT Interactive Playzone cashback labet88.com app Jili49 login register Jili asia com casino login download Gold slots casino sa facebook login Jili balita withdrawal fee Gamezy Rummy Jili day register online 90jili game club download PH Macao game 777sky casino philippines Ibetph web casino Best online casino games philippines gcash 247 slots login Elf bingo jili online registration Funny captions for online casino games 777 lucky slot no deposit bonus OKBet App download apk Z25 Gaming P88 jili login app Jili77win philippines DuckyLuck Casino Ttjl casino link app 55jili login Cali 777 com login password LIMBO APK download latest version 200jili login philippines 646 jili 01 login app FB JILI Login Golden Wealth Baccarat live Panaloka login registration Tala0888 download apk GemDisco Login register Lion dance history Ezjili login register mobile Royal777 register Jili 337 login register philippines download Fishing era poppo How to play jackpot fishing app Libreng jili games login Swerte ng buto 77ph1 com login password How do i install tongits go on android Joy jili casino login register philippines free chips Slot machine 777 login Jili online slot apk Jili ko o casino login register APK injector Slot Pragmatic Play Gogo JILI Casino login 50 minimum Z790 ram slots for gaming Tongits Go update download How to compute special non working holiday Philippines 777 Casino 77 free spins login MWGAMING Login Password How to play taya 777 online How does Lee Young ji know English Phdream88 login app 63jili download ios ME777 Casino Login Philippines Baba Slots online casinoplusslot How to play jili super ace online Unibet sign up bonus 60 jili login download no deposit bonus Philippine online casino no deposit bonus pxbetgamingslot Online casino games that pay real money no deposit 49jili flag login password Jili 2024 login register Paano maglaro ng jili super ace login download Vip jili login philippines app Jili bingo download for android 9Y game City Jili jackpot lucky casino real money no deposit bonus Easy money jackpot fishing philippines Casino free games slots machine no deposit Slots7 Casino free spins Winjili ph login registration Jili games free 100 download apk Jiliplay999 com login Hot chilli megaways review Jili games apk latest version ang mga slot ay nagsusugal Nice 888 login philippines Playzone Casino FC jackpot Casino login Spin jackpot YONO apk Juegos de casino gratis sin descargar ni registrarse Gold slots casino sa facebook withdrawal Jili 168 login registration link Mitran De Junction Te Mp3 Song Download pagalworld Lovejili app for android apk download Helens gogo jili casino login Transaction password in scatter example mainit na jili casino Casino online free credit no deposit How do i install tongits go on iphone Boombet casino 100 JILI casino no deposit bonus Peso88aa philippines Jiliko gcash withdrawal Jili veo login philippines Jili slot game download apk latest version Macau casino online login philippines online casino Katangian ni sita sa rama at sita 49jili login to my account philippines app Forgot transaction password Fg777app download Baccarat in casino online 98 jili casino login register philippines download app Marvelbet apps download apk for android Xo jili app login Speed roulette strategy betway zambia live soccer online casino games Casino 777 lucky jili slots real money yakuza: like a dragon slots high payout token Wild Coaster PG slot Turkish Airlines flights Bet jili app download for iphone Why do slot machines have bingo cards Ez jili code philippines DOUBLE Jackpot Slot MACHINE for sale play free online casino games Bet777 Login app Supabets mobile app download Winning plus 40 apk Play top Dollar slot machine online free no download Jackpot meter jili download apk Plot 777 casino login register link Best time to play jili slot on sunday reddit