Info
Welcome to the V3 Collivery.net API reference.
Please refer to the documentation of our older api Learn more
Headers
{
"X-App-Name": "My Custom App", // Application Name
"X-App-Version": "0.2.1", // Application Version
"X-App-Host": ".NET Framework 4.8", // Framework/CMS name and version
"X-App-Lang": "C#", // Language your implementation is written in
}
The following headers are required with each request, they help us to track the requests from each app in order to offer you help when you get stuck.
As a reminder you will see this tag with each example to indicate that you must include these in production.
Please make these values your own, they will be rejected if they are all the default values suggested here. You can, however, use the default headers if you are logging in as api@collivery.co.za or demo@collivery.co.za.
Customise this page's example headers
We offer a json collection for you to import into PostMan while testing.
Get Postman Collection
1. Authentication
Please note:
- indicates that this endpoint can only be accessed with your credentials
- With these routes, you must provide an
api_token
parameter with the request - You can get your api_token calling the
/login
endpoint or by selectingEdit
on Users indexLog in
Log in with your credentials and receive back your api token (to be used in further calls)
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->post("https://api.collivery.co.za/v3/login", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
'Content-Type' => 'application/json',
],
'json' => [
'email' => "demo@collivery.co.za",
'password' => "demo",
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/login");
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Content-Type": "application/json",
"Accept": "application/json",
}
let body = {"email":"demo@collivery.co.za","password":"demo"}
fetch(url, {
method: "POST",
headers: headers,
body: JSON.stringify(body)
})
.then(response => response.json())
.then(json => console.log(json));
curl -X POST "https://api.collivery.co.za/v3/login" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#" \
-H "Content-Type: application/json" \
-d '{"email":"demo@collivery.co.za","password":"demo"}'
Example response (200):
{
"data": {
"id": 87,
"full_name": "Collivery Demo",
"email_address": "demo@collivery.co.za",
"landline_number": "011 241 4911",
"mobile_number": "",
"api_token": "OpSjx5TlXGCGkzGAvUOm",
"client": {
"id": 116,
"name": "Test Collivery (Pty) Ltd",
"landline_number": "011 241 4911",
"mobile_number": null,
"account_code": null,
"account_type": "account",
"primary_address": {
"id": 1363971,
"custom_id": "67",
"town_id": 419,
"suburb_id": 4095,
"text": "MDS Collivery, 89, 1235 Main Street, CBD, Louis Trichardt",
"short_text": "MDS Collivery, CBD, Louis Trichardt",
"location_type": {
"id": 1,
"name": "Business Premises",
"surcharge": false,
"surcharge_amount": 0
}
}
}
}
}
HTTP Request
POST v3/login
Body Parameters
Parameter | Type | Status | Description |
---|---|---|---|
string | required | Your email address. | |
password | string | required | Your login password. |
Register
Create a new client account
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->post("https://api.collivery.co.za/v3/register", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
'Content-Type' => 'application/json',
],
'json' => [
'name' => "John Doe",
'terms' => "1",
'email_address' => "foobar@example.com",
'cellphone' => 123456789,
'town_id' => "147",
'suburb_id' => "1936",
'street_name' => "Webber Street",
'street_number' => "58c",
'building' => "MDS House",
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/register");
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Content-Type": "application/json",
"Accept": "application/json",
}
let body = {"name":"John Doe","terms":"1","email_address":"foobar@example.com","cellphone":123456789,"town_id":"147","suburb_id":"1936","street_name":"Webber Street","street_number":"58c","building":"MDS House"}
fetch(url, {
method: "POST",
headers: headers,
body: JSON.stringify(body)
})
.then(response => response.json())
.then(json => console.log(json));
curl -X POST "https://api.collivery.co.za/v3/register" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#" \
-H "Content-Type: application/json" \
-d '{"name":"John Doe","terms":"1","email_address":"foobar@example.com","cellphone":123456789,"town_id":"147","suburb_id":"1936","street_name":"Webber Street","street_number":"58c","building":"MDS House"}'
Example response (200):
{
"data": {
"id": 54596,
"full_name": "John Doe",
"email_address": "foobar@example.com",
"landline_number": "123456789",
"mobile_number": "123456789",
"api_token": "q4HuuQP67J6NabYoqov4",
"client": {
"id": 40203,
"name": "John Doe",
"landline_number": "123456789",
"mobile_number": "123456789",
"account_code": null,
"account_type": "pre-paid",
"primary_address": {
"id": 2433244,
"custom_id": null,
"town": "Johannesburg",
"town_id": 147,
"suburb": "Selby",
"suburb_id": 1936,
"text": "John Doe, MDS House, 58c Webber Street, Selby, Johannesburg",
"short_text": "John Doe, Selby, Johannesburg"
}
}
}
}
Example response (412):
{
"error": [
[
"That email address is already registered. Please rather login through http:\/\/api.collivery.local\/v3\/login"
]
]
}
Example response (302):
null
HTTP Request
POST v3/register
Body Parameters
Parameter | Type | Status | Description |
---|---|---|---|
name | required | optional | string Your full name. Minimum 5 characters. Maximum 50 characters. |
terms | required | optional | boolean Whether you accept all terms an conditions. Should be fetched from our /terms endpoint. |
email_address | required | optional | string A valid email address that is not yet registered. |
telephone | number | optional | Your personal or business land-line number. One of telephone or cellphone must be provided. |
cellphone | number | optional | Your personal or business mobile number. One of telephone or cellphone must be provided. |
town_id | required | optional | number A valid town id, can be fetched from out /towns endpoint. |
suburb_id | required | optional | number A valid id of a suburb in the town provided, can be fetched from out /suburbs endpoint. |
street_name | required | optional | string The name of the street your primary address is on. Minimum 5 characters, maximum 50 characters. |
street_number | string | optional | The street number of your primary address. Maximum 5 characters. |
building | string | optional | The building name of your primary address. Maximum 50 characters. |
company_name | string | optional | The name of your business. Indicates that this is a business registration. Minimum 5 characters. Maximum 70 characters. |
id_number | number | optional | ID number of the person responsible for the payment of the account. Required if company_name is filled. Maximum 20 characters. If you are registering as a business and this is an invalid RSA id number your account will automatically be placed on hold, and we will contact you to get the correct details. |
vat_number | string | optional | Your company VAT number. Required if company_name is filled. Maximum 20 characters. |
registration | string | optional | Your company registration number. Required if company_name is filled. Maximum 20 characters. |
2. Addresses
Manage Addresses
Index
List your addresses
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->get("https://api.collivery.co.za/v3/address", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
'query' => [
'per_page' => "3",
'search' => "Johannes",
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/address");
let params = {
"per_page": "3",
"search": "Johannes",
};
Object.keys(params).forEach(key => url.searchParams.append(key, params[key]));
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X GET -G "https://api.collivery.co.za/v3/address?per_page=3&search=Johannes" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"data": [
{
"id": 952,
"custom_id": null,
"town_id": 147,
"suburb_id": 1936,
"text": "MDS JHB, 58C Webber St, Selby, Johannesburg",
"short_text": "MDS JHB, Selby, Johannesburg",
"location_type": {
"id": 1,
"name": "Business Premises",
"surcharge": false,
"surcharge_amount": 0
}
},
{
"id": 2226089,
"custom_id": "JAN0001",
"town_id": 147,
"suburb_id": 1936,
"text": "Feyen, MDS House, 58c Webber St, Selby, Johannesburg",
"short_text": "Feyen, Selby, Johannesburg",
"location_type": {
"id": 5,
"name": "Mine",
"surcharge": true,
"surcharge_amount": 0
}
},
{
"id": 2226090,
"custom_id": "JAN0001",
"town_id": 147,
"suburb_id": 1936,
"text": "Feyen, MDS House, 58c Webber St, Selby, Johannesburg",
"short_text": "Feyen, Selby, Johannesburg",
"location_type": {
"id": 5,
"name": "Mine",
"surcharge": true,
"surcharge_amount": 0
}
}
],
"links": {
"first": "https:\/\/api.collivery.co.za\/v3\/address?page=1",
"last": "https:\/\/api.collivery.co.za\/v3\/address?page=121",
"prev": null,
"next": "https:\/\/api.collivery.co.za\/v3\/address?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 121,
"path": "https:\/\/api.collivery.co.za\/v3\/address",
"per_page": "3",
"to": 3,
"total": 361
}
}
HTTP Request
GET v3/address
Query Parameters
Parameter | Status | Description |
---|---|---|
per_page | optional | The limit per page. If this option is provided, 'links' and meta will exist in the; response with further information about the full list of addresses. 0 is the same as not limiting. Default is 100. |
include | optional | A comma separated list of relationships to return. Available entries: contacts , suburb , town , active_waybills . |
custom_id | optional | Search by this custom address id only. |
search | optional | Search in street , building , company_name , suburb or town for a match. |
town_id | optional | Limit to results with this town id. |
suburb_id | optional | Limit to results with this suburb id. |
Store
Save a new Address.
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->post("https://api.collivery.co.za/v3/address", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
'Content-Type' => 'application/json',
],
'json' => [
'town_id' => 147,
'town_name' => "Johannesburg",
'suburb_id' => 1936,
'suburb_name' => "Selby",
'company_name' => "MDS Collivery",
'building' => "MDS House",
'street_number' => "58c",
'street' => "Webber Street",
'location_type' => 1,
'location_type_name' => "Business Premises",
'contact' => [ 'id' => 2519728, 'full_name' => "John Doe", 'cellphone' => "0723456789", 'email_address' => "demo@collivery.co.za", ],
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/address");
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Content-Type": "application/json",
"Accept": "application/json",
}
let body = {"town_id":147,"town_name":"Johannesburg","suburb_id":1936,"suburb_name":"Selby","company_name":"MDS Collivery","building":"MDS House","street_number":"58c","street":"Webber Street","location_type":1,"location_type_name":"Business Premises","contact":{"id":2519728,"full_name":"John Doe","cellphone":"0723456789","email_address":"demo@collivery.co.za"}}
fetch(url, {
method: "POST",
headers: headers,
body: JSON.stringify(body)
})
.then(response => response.json())
.then(json => console.log(json));
curl -X POST "https://api.collivery.co.za/v3/address" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#" \
-H "Content-Type: application/json" \
-d '{"town_id":147,"town_name":"Johannesburg","suburb_id":1936,"suburb_name":"Selby","company_name":"MDS Collivery","building":"MDS House","street_number":"58c","street":"Webber Street","location_type":1,"location_type_name":"Business Premises","contact":{"id":2519728,"full_name":"John Doe","cellphone":"0723456789","email_address":"demo@collivery.co.za"}}'
Example response (201):
{
"data": {
"id": 3195754,
"custom_id": null,
"town_id": 147,
"suburb_id": 1936,
"text": "MDS Collivery, MDS House, 58c Webber Street, Selby, Johannesburg",
"short_text": "MDS Collivery, Selby, Johannesburg",
"location_type": {
"id": 1,
"name": "Business Premises",
"surcharge": false,
"surcharge_amount": 0
},
"contacts": [
{
"id": 3342723,
"full_name": "John Doe ",
"cell_no": "0723456789",
"cellphone": "0723456789",
"work_no": "",
"work_phone": "",
"email": "demo@collivery.co.za"
}
]
}
}
HTTP Request
POST v3/address
Body Parameters
Parameter | Type | Status | Description |
---|---|---|---|
custom_id | string | optional | The custom id you would like to assign to this address. Must be unique. Max 20 characters. |
town_id | integer | optional | Required without town_name . Can be obtained from /towns/ endpoint. |
town_name | string | optional | Required without town_id . Can be obtained from /towns/ endpoint. |
suburb_id | integer | optional | Required without suburb_name . Can be obtained from /suburbs/ endpoint. |
suburb_name | string | optional | Required without suburb_id . Can be obtained from /suburbs/ endpoint. |
company_name | string | optional | The name of the company of the address. Max 50 characters. |
building | string | optional | The building of the address. Max 50 characters. |
street_number | string | optional | The number on the street of the address. Max 5 characters. |
street | string | required | The name of the street that the address is on. Max 50 characters. |
location_type | integer | optional | Required without location_type_name . The id of the location type for the address. Can be obtained from /location_types/ endpoint. |
location_type_name | string | optional | Required without location_type . The name of the location type for the address. Can be obtained from /location_types/ endpoint. |
contact | object | optional | optional If you are creating/updating a contact with the address, please ensure that it is a valid JSON object. |
contact.id | integer | optional | optional Only required for update requests. The id of the contact that you wish to update. |
contact.full_name | string | optional | optional If you are creating a contact with the address, their full name. Required if any of cellphone , work_phone or email_address is present in the contact object. Min 2 characters, max 50 characters. |
contact.cellphone | string | optional | optional If you are creating a contact with the address, their cellphone. Required if any of full_name or email_address is present in the contact object - and work_phone is not provided. Min 10 characters, max 20 characters. |
contact.work_phone | string | optional | optional If you are creating a contact with the address, their cellphone. Required if any of full_name or email_address is present in the contact object - and cellphone is not provided. Min 10 characters, max 20 characters. |
contact.email_address | string | optional | optional If you are creating a contact with the address, their full name. Useful for tracking updates to be sent to. Max 50 characters. |
Show
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->get("https://api.collivery.co.za/v3/address/1363971", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/address/1363971");
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X GET -G "https://api.collivery.co.za/v3/address/1363971" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"data": {
"id": 1363971,
"custom_id": "67",
"town_id": 419,
"suburb_id": 4095,
"text": "MDS Collivery, 89, 1235 Main Street, CBD, Louis Trichardt",
"short_text": "MDS Collivery, CBD, Louis Trichardt",
"location_type": {
"id": 1,
"name": "Business Premises",
"surcharge": false,
"surcharge_amount": 0
},
"contacts": [
{
"id": 592,
"full_name": "Collivery Demo ",
"cell_no": "011 241 4911",
"cellphone": "011 241 4911",
"work_no": "",
"work_phone": "",
"email": "demo@collivery.co.za"
},
{
"id": 1413835,
"full_name": "Some Person ",
"cell_no": "0831245679",
"cellphone": "0831245679",
"work_no": "0123456789",
"work_phone": "0123456789",
"email": ""
},
{
"id": 2650431,
"full_name": "John Doe ",
"cell_no": "0721828159",
"cellphone": "0721828159",
"work_no": null,
"work_phone": null,
"email": "foo@example.com"
},
{
"id": 3074000,
"full_name": "prosper tinarwo ",
"cell_no": "0677459931",
"cellphone": "0677459931",
"work_no": "",
"work_phone": "",
"email": "prosper@lsystems.co.za"
},
{
"id": 3074012,
"full_name": "prosper tinarwo ",
"cell_no": "0677459931",
"cellphone": "0677459931",
"work_no": "",
"work_phone": "",
"email": "prospert@lsystems.co.za"
},
{
"id": 3074013,
"full_name": "prosper tinarwo ",
"cell_no": "0677459931",
"cellphone": "0677459931",
"work_no": null,
"work_phone": null,
"email": "prosper@lsystems.co.za"
},
{
"id": 3074173,
"full_name": "prosper tinarwo ",
"cell_no": "0677459931",
"cellphone": "0677459931",
"work_no": null,
"work_phone": null,
"email": "prosper@lsystems.co.za"
}
]
}
}
HTTP Request
GET v3/address/{address}
Update
Modify the details of a pre-existing address.
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->put("https://api.collivery.co.za/v3/address/1363971", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
'Content-Type' => 'application/json',
],
'json' => [
'town_id' => 147,
'town_name' => "Johannesburg",
'suburb_id' => 1936,
'suburb_name' => "Selby",
'company_name' => "MDS Collivery",
'building' => "MDS House",
'street_number' => "58c",
'street' => "Webber Street",
'location_type' => 1,
'location_type_name' => "Business Premises",
'contact' => [ 'id' => 2519728, 'full_name' => "John Doe", 'cellphone' => "0723456789", 'email_address' => "demo@collivery.co.za", ],
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/address/1363971");
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Content-Type": "application/json",
"Accept": "application/json",
}
let body = {"town_id":147,"town_name":"Johannesburg","suburb_id":1936,"suburb_name":"Selby","company_name":"MDS Collivery","building":"MDS House","street_number":"58c","street":"Webber Street","location_type":1,"location_type_name":"Business Premises","contact":{"id":2519728,"full_name":"John Doe","cellphone":"0723456789","email_address":"demo@collivery.co.za"}}
fetch(url, {
method: "PUT",
headers: headers,
body: JSON.stringify(body)
})
.then(response => response.json())
.then(json => console.log(json));
curl -X PUT "https://api.collivery.co.za/v3/address/1363971" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#" \
-H "Content-Type: application/json" \
-d '{"town_id":147,"town_name":"Johannesburg","suburb_id":1936,"suburb_name":"Selby","company_name":"MDS Collivery","building":"MDS House","street_number":"58c","street":"Webber Street","location_type":1,"location_type_name":"Business Premises","contact":{"id":2519728,"full_name":"John Doe","cellphone":"0723456789","email_address":"demo@collivery.co.za"}}'
Example response (200):
{
"data": {
"id": 2415979,
"custom_id": "",
"town": "Johannesburg",
"town_id": 147,
"suburb": "Selby",
"suburb_id": 1936,
"text": "MDS Collivery, MDS House, 58c Webber Street, Selby, Johannesburg",
"short_text": "MDS Collivery, Selby, Johannesburg"
}
}
Example response (400):
{
"error": {
"http_code_text": "Bad Request",
"http_code": 400,
"message": "You cannot move the town of an address."
}
}
HTTP Request
PUT v3/address/{address}
PATCH v3/address/{address}
Body Parameters
Parameter | Type | Status | Description |
---|---|---|---|
custom_id | string | optional | The custom id you would like to assign to this address. Must be unique. Max 20 characters. |
town_id | integer | optional | Required without town_name . Can be obtained from /towns/ endpoint. |
town_name | string | optional | Required without town_id . Can be obtained from /towns/ endpoint. |
suburb_id | integer | optional | Required without suburb_name . Can be obtained from /suburbs/ endpoint. |
suburb_name | string | optional | Required without suburb_id . Can be obtained from /suburbs/ endpoint. |
company_name | string | optional | The name of the company of the address. Max 50 characters. |
building | string | optional | The building of the address. Max 50 characters. |
street_number | string | optional | The number on the street of the address. Max 5 characters. |
street | string | required | The name of the street that the address is on. Max 50 characters. |
location_type | integer | optional | Required without location_type_name . The id of the location type for the address. Can be obtained from /location_types/ endpoint. |
location_type_name | string | optional | Required without location_type . The name of the location type for the address. Can be obtained from /location_types/ endpoint. |
contact | object | optional | optional If you are creating/updating a contact with the address, please ensure that it is a valid JSON object. |
contact.id | integer | optional | optional Only required for update requests. The id of the contact that you wish to update. |
contact.full_name | string | optional | optional If you are creating a contact with the address, their full name. Required if any of cellphone , work_phone or email_address is present in the contact object. Min 2 characters, max 50 characters. |
contact.cellphone | string | optional | optional If you are creating a contact with the address, their cellphone. Required if any of full_name or email_address is present in the contact object - and work_phone is not provided. Min 10 characters, max 20 characters. |
contact.work_phone | string | optional | optional If you are creating a contact with the address, their cellphone. Required if any of full_name or email_address is present in the contact object - and cellphone is not provided. Min 10 characters, max 20 characters. |
contact.email_address | string | optional | optional If you are creating a contact with the address, their full name. Useful for tracking updates to be sent to. Max 50 characters. |
Delete
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->delete("https://api.collivery.co.za/v3/address/1363971", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/address/1363971");
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "DELETE",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X DELETE "https://api.collivery.co.za/v3/address/1363971" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"success": {
"http_code_text": 200,
"http_code": 200,
"message": {
"message": "Address # 1363971 has been deleted"
}
}
}
Example response (400):
{
"error": {
"http_code_text": "Bad Request",
"http_code": 400,
"message": "Address # 1363971 is already used for waybills, you cannot delete it."
}
}
HTTP Request
DELETE v3/address/{address}
Show
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->get("https://api.collivery.co.za/v3/default_address", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/default_address");
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X GET -G "https://api.collivery.co.za/v3/default_address" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"data": {
"id": 1363971,
"custom_id": "67",
"town_id": 419,
"suburb_id": 4095,
"text": "MDS Collivery, 89, 1235 Main Street, CBD, Louis Trichardt",
"short_text": "MDS Collivery, CBD, Louis Trichardt",
"location_type": {
"id": 1,
"name": "Business Premises",
"surcharge": false,
"surcharge_amount": 0
}
}
}
HTTP Request
GET v3/default_address
3. Contacts
Manage Address Contacts
For legacy reasons, on all endpoints all of cell_no
/cellphone
and work_no
/work_phone
are returned
Index
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->get("https://api.collivery.co.za/v3/contacts", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
'query' => [
'per_page' => "3",
'search' => "Collivery",
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/contacts");
let params = {
"per_page": "3",
"search": "Collivery",
};
Object.keys(params).forEach(key => url.searchParams.append(key, params[key]));
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X GET -G "https://api.collivery.co.za/v3/contacts?per_page=3&search=Collivery" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"data": [
{
"id": 592,
"full_name": "Collivery Demo ",
"cell_no": "011 241 4911",
"cellphone": "011 241 4911",
"work_no": "",
"work_phone": "",
"email": "demo@collivery.co.za"
},
{
"id": 596,
"full_name": "DBN Collivery ",
"cell_no": "079-891-3211",
"cellphone": "079-891-3211",
"work_no": "031-534-6500",
"work_phone": "031-534-6500",
"email": "dbn@collivery.co.za"
},
{
"id": 2839716,
"full_name": "Test Collivery Company ",
"cell_no": "22-322-223",
"cellphone": "22-322-223",
"work_no": "22-322-223",
"work_phone": "22-322-223",
"email": "demo@collivery.co.za"
}
],
"links": {
"first": "https:\/\/api.collivery.co.za\/v3\/contacts?page=1",
"last": "https:\/\/api.collivery.co.za\/v3\/contacts?page=11",
"prev": null,
"next": "https:\/\/api.collivery.co.za\/v3\/contacts?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 11,
"path": "https:\/\/api.collivery.co.za\/v3\/contacts",
"per_page": "3",
"to": 3,
"total": 31
}
}
HTTP Request
GET v3/contacts
Query Parameters
Parameter | Status | Description |
---|---|---|
per_page | optional | The limit per page. If this option is provided, links and meta will exist in the response with further information about the full list of addresses. 0 is the same as not limiting. Default is 100. |
address_id | optional | Limit to contacts for this specific address. |
search | optional | Search in name for a match. |
Store
Save a new Contact.
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->post("https://api.collivery.co.za/v3/contacts", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
'Content-Type' => 'application/json',
],
'json' => [
'address_id' => 1363971,
'email' => "foo@example.com",
'full_name' => "John Doe",
'cellphone' => "0721234567",
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/contacts");
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Content-Type": "application/json",
"Accept": "application/json",
}
let body = {"address_id":1363971,"email":"foo@example.com","full_name":"John Doe","cellphone":"0721234567"}
fetch(url, {
method: "POST",
headers: headers,
body: JSON.stringify(body)
})
.then(response => response.json())
.then(json => console.log(json));
curl -X POST "https://api.collivery.co.za/v3/contacts" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#" \
-H "Content-Type: application/json" \
-d '{"address_id":1363971,"email":"foo@example.com","full_name":"John Doe","cellphone":"0721234567"}'
Example response (201):
{
"data": {
"id": 3342724,
"full_name": "John Doe ",
"cell_no": "0721234567",
"cellphone": "0721234567",
"work_no": null,
"work_phone": null,
"email": "foo@example.com"
}
}
HTTP Request
POST v3/contacts
Body Parameters
Parameter | Type | Status | Description |
---|---|---|---|
address_id | integer | required | The id of the address you wish to add this contact to. Can be fetched through the /addresses endpoint. |
string | optional | optional Valid email address. Minimum 5 characters. | |
full_name | string | optional | required. The contact's full name. Minimum 3 characters. |
cellphone | string | optional | Required without work_phone . Minimum 10 characters. For legacy reasons, cell_no is also supported. |
work_phone | string | optional | Required without cellphone . Minimum 10 characters. For legacy reasons, work_no is also supported. |
Show
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->get("https://api.collivery.co.za/v3/contacts/592", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/contacts/592");
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X GET -G "https://api.collivery.co.za/v3/contacts/592" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"data": {
"id": 592,
"full_name": "Collivery Demo ",
"cell_no": "011 241 4911",
"cellphone": "011 241 4911",
"work_no": "",
"work_phone": "",
"email": "demo@collivery.co.za"
}
}
HTTP Request
GET v3/contacts/{contact}
Update
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->put("https://api.collivery.co.za/v3/contacts/592", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
'Content-Type' => 'application/json',
],
'json' => [
'address_id' => 1363971,
'email' => "foo@example.com",
'full_name' => "John Doe",
'cellphone' => "0721234567",
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/contacts/592");
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Content-Type": "application/json",
"Accept": "application/json",
}
let body = {"address_id":1363971,"email":"foo@example.com","full_name":"John Doe","cellphone":"0721234567"}
fetch(url, {
method: "PUT",
headers: headers,
body: JSON.stringify(body)
})
.then(response => response.json())
.then(json => console.log(json));
curl -X PUT "https://api.collivery.co.za/v3/contacts/592" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#" \
-H "Content-Type: application/json" \
-d '{"address_id":1363971,"email":"foo@example.com","full_name":"John Doe","cellphone":"0721234567"}'
Example response (200):
{
"data": {
"id": 592,
"full_name": "John Doe ",
"cell_no": "0721234567",
"cellphone": "0721234567",
"work_no": null,
"work_phone": null,
"email": "foo@example.com"
}
}
HTTP Request
PUT v3/contacts/{contact}
PATCH v3/contacts/{contact}
Body Parameters
Parameter | Type | Status | Description |
---|---|---|---|
address_id | integer | required | The id of the address you wish to add this contact to. Can be fetched through the /addresses endpoint. |
string | optional | optional Valid email address. Minimum 5 characters. | |
full_name | string | optional | required. The contact's full name. Minimum 3 characters. |
cellphone | string | optional | Required without work_phone . Minimum 10 characters. For legacy reasons, cell_no is also supported. |
work_phone | string | optional | Required without cellphone . Minimum 10 characters. For legacy reasons, work_no is also supported. |
Delete
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->delete("https://api.collivery.co.za/v3/contacts/592", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/contacts/592");
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "DELETE",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X DELETE "https://api.collivery.co.za/v3/contacts/592" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"success": {
"http_code_text": 200,
"http_code": 200,
"message": {
"message": "Contact # 592 has been deleted."
}
}
}
Example response (400):
{
"error": {
"http_code_text": "Bad Request",
"http_code": 400,
"message": "Contact # 592 is already used for waybills, you cannot delete it."
}
}
HTTP Request
DELETE v3/contacts/{contact}
4. Get Quote
Request a quote
Get a waybill quote based on the parameters provided.
Any time warnings as well as adjusted times are returned in a "meta" array
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->post("https://api.collivery.co.za/v3/quote", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
'Content-Type' => 'application/json',
],
'json' => [
'services' => [ '0' => 1, ],
'parcels' => [ '0' => {"length":21.5,"width":10,"height":5.5,"weight":5.2,"quantity":2}, ],
'collection_town' => 147,
'delivery_town' => 200,
'collection_location_type' => 1,
'delivery_location_type' => 5,
'collection_time' => "2025-01-24 12:00",
'delivery_time' => "2025-01-25 16:00:00",
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/quote");
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Content-Type": "application/json",
"Accept": "application/json",
}
let body = {"services":[1],"parcels":[{"length":21.5,"width":10,"height":5.5,"weight":5.2,"quantity":2}],"collection_town":147,"delivery_town":200,"collection_location_type":1,"delivery_location_type":5,"collection_time":"2025-01-24 12:00","delivery_time":"2025-01-25 16:00:00"}
fetch(url, {
method: "POST",
headers: headers,
body: JSON.stringify(body)
})
.then(response => response.json())
.then(json => console.log(json));
curl -X POST "https://api.collivery.co.za/v3/quote" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#" \
-H "Content-Type: application/json" \
-d '{"services":[1],"parcels":[{"length":21.5,"width":10,"height":5.5,"weight":5.2,"quantity":2}],"collection_town":147,"delivery_town":200,"collection_location_type":1,"delivery_location_type":5,"collection_time":"2025-01-24 12:00","delivery_time":"2025-01-25 16:00:00"}'
Example response (200):
{
"data": [
{
"service_type": 1,
"total": 2112
}
],
"meta": {
"times": {
"1": {
"collection_time": "2025-01-24 12:00",
"delivery_time": "2025-01-25 16:00"
}
},
"warnings": {
"1": "You have selected a same-day service, but your collection and delivery dates are not the same, or cannot be achieved within time window provided."
},
"surcharges": {
"1": {
"locationTypeSurcharge": 120,
"regionalSurcharge": 88
}
}
}
}
HTTP Request
POST v3/quote
Body Parameters
Parameter | Type | Status | Description |
---|---|---|---|
services.* | number | optional | A list of the services you would like a quote on. Any or none of 1 ,2 ,3 ,5 . Defaults to all services. |
parcels.* | object | optional | Very important for determining accurate an quote. Will default to an "average" parcel if not supplied. Dimensions are limited to 1000, weight is limited to 400 |
parcels.*.length | float | optional | The length of the parcel. Values in centimetres. Can be supplied as floats or integers. |
parcels.*.width | float | optional | The width of the parcel. Values in centimetres. Can be supplied as floats or integers. |
parcels.*.height | float | optional | The height of the parcel. Values in centimetres. Can be supplied as floats or integers. |
parcels.*.weight | float | optional | The weight of the parcel. Values in kilograms. Can be supplied as floats or integers. |
parcels.*.quantity | number | optional | The amount of parcels of this type. |
collection_address | number/object | optional | optional Required if collection_town is not supplied. Can be the id of the address or a json object if the address is not yet stored. See below for object structure |
delivery_address | number/object | optional | optional Required if delivery_town is not supplied. Can be the id of the address or a json object if the address is not yet stored. See below for object structure |
collection_town | number | optional | optional Required if collection_address is not supplied. |
delivery_town | number | optional | optional Required if delivery_address is not supplied. |
collection_location_type | number | optional | optional Must be a valid location type. Values can be gotten from our /location_type endpoint. |
delivery_location_type | number | optional | optional Must be a valid location type. Values can be gotten from our /location_type endpoint. |
collection_time | string | optional | optional Any future date/time representation that can be parsed by PHP strtotime() . Interpreted as GMT+2. If left empty no time surcharges will be encountered. Must be after current time. |
delivery_time | string | optional | Any future date/time representation that can be parsed by PHP strtotime() . Interpreted as GMT+2. If left empty no time surcharges will be encountered. Must be after collection_time . |
exclude_weekend | boolean | optional | optional Whether to allow for weekend collection or delivery. Surcharges will be applied. Defaults to true . |
risk_cover | boolean | optional | optional Whether to enable risk cover over and above the default cover. See terms and conditions. Surcharges will be applied. Defaults to false . |
rica | boolean | optional | optional Whether this delivery requires RICA information and documentation to be supplied. Surcharges will be applied. Defaults to false . |
consignee | boolean | optional | optional Whether this delivery can only be received by the person it is addressed to, with identity document required. Surcharges will be applied. Defaults to false . |
sms_tracking | boolean | optional | optional Whether to send SMS updates to you, the collection and delivery contacts. Surcharges will be applied. Defaults to false . |
collection_address.custom_id | string | optional | The custom id you would like to assign to this address. Must be unique. Max 20 characters. |
collection_address.town_id | integer | optional | Required without town_name . Can be obtained from /towns/ endpoint. |
collection_address.town_name | string | optional | Required without town_id . Can be obtained from /towns/ endpoint. |
collection_address.suburb_id | integer | optional | Required without suburb_name . Can be obtained from /suburbs/ endpoint. |
collection_address.suburb_name | string | optional | Required without suburb_id . Can be obtained from /suburbs/ endpoint. |
collection_address.company_name | string | optional | The name of the company of the address. Max 50 characters. |
collection_address.building | string | optional | The building of the address. Max 50 characters. |
collection_address.street_number | string | optional | The number on the street of the address. Max 5 characters. |
collection_address.street | string | optional | optional Required if the collection_address is filled. The name of the street that the address is on. Max 50 characters. |
collection_address.location_type | integer | optional | Required without location_type_name . The id of the location type for the address. Can be obtained from /location_types/ endpoint. |
collection_address.location_type_name | string | optional | Required without location_type . The name of the location type for the address. Can be obtained from /location_types/ endpoint. |
delivery_address.custom_id | string | optional | The custom id you would like to assign to this address. Must be unique. Max 20 characters. |
delivery_address.town_id | integer | optional | Required without town_name . Can be obtained from /towns/ endpoint. |
delivery_address.town_name | string | optional | Required without town_id . Can be obtained from /towns/ endpoint. |
delivery_address.suburb_id | integer | optional | Required without suburb_name . Can be obtained from /suburbs/ endpoint. |
delivery_address.suburb_name | string | optional | Required without suburb_id . Can be obtained from /suburbs/ endpoint. |
delivery_address.company_name | string | optional | The name of the company of the address. Max 50 characters. |
delivery_address.building | string | optional | The building of the address. Max 50 characters. |
delivery_address.street_number | string | optional | The number on the street of the address. Max 5 characters. |
delivery_address.street | string | optional | optional Required if the delivery_address is filled. The name of the street that the address is on. Max 50 characters. |
delivery_address.location_type | integer | optional | Required without location_type_name . The id of the location type for the address. Can be obtained from /location_types/ endpoint. |
delivery_address.location_type_name | string | optional | Required without location_type . The name of the location type for the address. Can be obtained from /location_types/ endpoint. |
5. Waybills
Store
Create a new waybill
Any time errors are returned in a "meta" array
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->post("https://api.collivery.co.za/v3/waybill", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
'Content-Type' => 'application/json',
],
'json' => [
'service' => 3,
'parcels' => [ '0' => {"length":21.5,"width":10,"height":5.5,"weight":5.2,"quantity":2}, ],
'collection_address' => "952",
'collection_contact' => 593,
'delivery_address' => "955",
'delivery_contact' => 596,
'collection_time' => "2025-01-24",
'delivery_time' => "2025-01-25",
'exclude_weekend' => true,
'risk_cover' => true,
'battery_type' => "pi_965",
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/waybill");
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Content-Type": "application/json",
"Accept": "application/json",
}
let body = {"service":3,"parcels":[{"length":21.5,"width":10,"height":5.5,"weight":5.2,"quantity":2}],"collection_address":"952","collection_contact":593,"delivery_address":"955","delivery_contact":596,"collection_time":"2025-01-24","delivery_time":"2025-01-25","exclude_weekend":true,"risk_cover":true,"battery_type":"pi_965"}
fetch(url, {
method: "POST",
headers: headers,
body: JSON.stringify(body)
})
.then(response => response.json())
.then(json => console.log(json));
curl -X POST "https://api.collivery.co.za/v3/waybill" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#" \
-H "Content-Type: application/json" \
-d '{"service":3,"parcels":[{"length":21.5,"width":10,"height":5.5,"weight":5.2,"quantity":2}],"collection_address":"952","collection_contact":593,"delivery_address":"955","delivery_contact":596,"collection_time":"2025-01-24","delivery_time":"2025-01-25","exclude_weekend":true,"risk_cover":true,"battery_type":"pi_965"}'
Example response (201):
{
"data": {
"id": 5033780,
"custom_id": "",
"service_type_id": 3,
"service_type_name": "Road Freight",
"collection_time": 1737698400,
"customer_reference": "",
"delivery_time": 1738159200,
"parcel_count": 2,
"special_instructions": "pi_965 ",
"collection_address_id": 952,
"collection_contact_id": 593,
"delivery_address_id": 955,
"delivery_contact_id": 596,
"status_id": 1,
"status_name": "Waiting Client Acceptance",
"parcel_description": "pi_965 ",
"weight": 10.4,
"volumetric_weight": 0.6,
"total_price": 250.6,
"risk_cover": true,
"parcels": [
{
"id": 8370311,
"waybill_id": 5033780,
"parcel_number": 1,
"custom_id": "",
"quantity": 2,
"length": "22.0",
"width": "10.0",
"height": "6.0",
"weight": "5.2",
"volumetric_weight": "0.3",
"created_at": "2021-02-19 11:49:51",
"add_method": "client"
}
]
},
"meta": {
"opening_hours": [
"The earliest collect after time is 8:00. Collection time has been adjusted.",
"The earliest deliver before time is 8:00. Delivery time has been adjusted."
],
"delivery_hours": [
"Minimum hours from Johannesburg to Durban on the Road Freight service is 72, you requested the waybill be delivered within 24 hours. Weekends included. Deliver before time has adjusted."
],
"delivery_time": [
"Road Freight and Road Freight express only deliver at 16:00. Deliver before time has adjusted."
],
"service_type": [
"Road Freight service needs at least 3 working days between collection and delivery. Moving delivery date forward."
]
}
}
HTTP Request
POST v3/waybill
Body Parameters
Parameter | Type | Status | Description |
---|---|---|---|
service | integer | optional | A service you would like to deliver the waybill on. Defaults to 2 (Overnight Express). |
parcels.* | object | optional | Very important for determining accurate an quote. Will default to an "average" parcel if not supplied. Dimensions are limited to 1000, weight is limited to 400 |
parcels.*.length | float | optional | The length of the parcel. Values in centimetres. Can be supplied as floats or integers. |
parcels.*.width | float | optional | The width of the parcel. Values in centimetres. Can be supplied as floats or integers. |
parcels.*.height | float | optional | The height of the parcel. Values in centimetres. Can be supplied as floats or integers. |
parcels.*.weight | float | optional | The weight of the parcel. Values in kilograms. Can be supplied as floats or integers. |
parcels.*.quantity | number | optional | The amount of parcels of this type. |
delivery_method | integer | optional | The vehicle that we should collect it with. Defaults to 1 (Motorbike). |
collection_address | number/object | optional | optional Required if collection_town is not supplied. Can be the id of the address or a json object if the address is not yet stored. See below for object structure. |
collection_contact | number | optional | optional The id of the Collection Contact. Required only if you are not providing the contact object in collection_address . |
delivery_address | number/object | optional | optional Required if delivery_town is not supplied. Can be the id of the address or a json object if the address is not yet stored. See below for object structure. |
delivery_contact | number | optional | optional The id of the Delivery Contact. Required only if you are not providing the contact object in delivery_address . |
collection_time | string | optional | optional Any future date/time representation that can be parsed by PHP strtotime() . Interpreted as GMT+2. If left empty no time surcharges will be encountered. Must be after current time. |
delivery_time | string | optional | Any future date/time representation that can be parsed by PHP strtotime() . Interpreted as GMT+2. If left empty no time surcharges will be encountered. Must be after collection_time . Example: |
exclude_weekend | boolean | optional | optional Whether to allow for weekend collection or delivery. Surcharges will be applied. Defaults to true . |
custom_id | string | optional | A custom id for you to track the waybill by. Max 25 characters. |
reference | string | optional | Customer reference number. Max 100 characters. |
description | string | optional | A description of the package. Max 100 characters. |
special_instructions | string | optional | Any instructions on the handling, collection or delivery of your waybill. Max 2048 characters. |
risk_cover | boolean | optional | optional Whether to enable risk cover over and above the default cover. See terms and conditions. Surcharges will be applied. Defaults to false . |
rica | boolean | optional | optional Whether this delivery requires RICA information and documentation to be supplied. Surcharges will be applied. Defaults to false . |
consignee | boolean | optional | optional Whether this delivery can only be received by the person it is addressed to, with identity document required. Surcharges will be applied. Defaults to false . |
sms_tracking | boolean | optional | optional Whether to send SMS updates to you, the collection and delivery contacts. Surcharges will be applied. Defaults to false . |
battery_type | string | optional | optional Does the parcel contain any lithium ion batteries. The values for this can be gotten from our /battery_types endpoint. Defaults to false . |
collection_address.custom_id | string | optional | The custom id you would like to assign to this address. Must be unique. Max 20 characters. |
collection_address.town_id | integer | optional | Required without town_name . Can be obtained from /towns/ endpoint. |
collection_address.town_name | string | optional | Required without town_id . Can be obtained from /towns/ endpoint. |
collection_address.suburb_id | integer | optional | Required without suburb_name . Can be obtained from /suburbs/ endpoint. |
collection_address.suburb_name | string | optional | Required without suburb_id . Can be obtained from /suburbs/ endpoint. |
collection_address.company_name | string | optional | The name of the company of the address. Max 50 characters. |
collection_address.building | string | optional | The building of the address. Max 50 characters. |
collection_address.street_number | string | optional | The number on the street of the address. Max 5 characters. |
collection_address.street | string | optional | optional Required if the collection_address is filled. The name of the street that the address is on. Max 50 characters. |
collection_address.location_type | integer | optional | Required without location_type_name . The id of the location type for the address. Can be obtained from /location_types/ endpoint. |
collection_address.location_type_name | string | optional | Required without location_type . The name of the location type for the address. Can be obtained from /location_types/ endpoint. |
collection_address.contact | object | optional | optional If you are creating a contact with the address, please ensure that it is a valid JSON object. |
collection_address.contact.full_name | string | optional | optional If you are creating a contact with the address, their full name. Required if any of cellphone , work_phone or email_address is present in the contact object. Min 2 characters, max 50 characters. |
collection_address.contact.cellphone | string | optional | optional If you are creating a contact with the address, their cellphone. Required if any of full_name or email_address is present in the contact object - and work_phone is not provided. Min 10 characters, max 20 characters. |
collection_address.contact.work_phone | string | optional | optional If you are creating a contact with the address, their cellphone. Required if any of full_name or email_address is present in the contact object - and cellphone is not provided. Min 10 characters, max 20 characters. |
collection_address.contact.email_address | string | optional | optional If you are creating a contact with the address, their full name. Useful for tracking updates to be sent to. Max 50 characters. |
delivery_address.custom_id | string | optional | The custom id you would like to assign to this address. Must be unique. Max 20 characters. |
delivery_address.town_id | integer | optional | Required without town_name . Can be obtained from /towns/ endpoint. |
delivery_address.town_name | string | optional | Required without town_id . Can be obtained from /towns/ endpoint. |
delivery_address.suburb_id | integer | optional | Required without suburb_name . Can be obtained from /suburbs/ endpoint. |
delivery_address.suburb_name | string | optional | Required without suburb_id . Can be obtained from /suburbs/ endpoint. |
delivery_address.company_name | string | optional | The name of the company of the address. Max 50 characters. |
delivery_address.building | string | optional | The building of the address. Max 50 characters. |
delivery_address.street_number | string | optional | The number on the street of the address. Max 5 characters. |
delivery_address.street | string | optional | optional Required if the delivery_address is filled. The name of the street that the address is on. Max 50 characters. |
delivery_address.location_type | integer | optional | Required without location_type_name . The id of the location type for the address. Can be obtained from /location_types/ endpoint. |
delivery_address.location_type_name | string | optional | Required without location_type . The name of the location type for the address. Can be obtained from /location_types/ endpoint. |
delivery_address.contact | object | optional | optional If you are creating a contact with the address, please ensure that it is a valid JSON object. |
delivery_address.contact.full_name | string | optional | optional If you are creating a contact with the address, their full name. Required if any of cellphone , work_phone or email_address is present in the contact object. Min 2 characters, max 50 characters. |
delivery_address.contact.cellphone | string | optional | optional If you are creating a contact with the address, their cellphone. Required if any of full_name or email_address is present in the contact object - and work_phone is not provided. Min 10 characters, max 20 characters. |
delivery_address.contact.work_phone | string | optional | optional If you are creating a contact with the address, their cellphone. Required if any of full_name or email_address is present in the contact object - and cellphone is not provided. Min 10 characters, max 20 characters. |
delivery_address.contact.email_address | string | optional | optional If you are creating a contact with the address, their full name. Useful for tracking updates to be sent to. Max 50 characters. |
Show
This will return a waybill's information, optionally along with addresses, contacts, proofs of delivery as needed
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->get("https://api.collivery.co.za/v3/waybill/4001907", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
'query' => [
'include' => "client,collection_address",
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/waybill/4001907");
let params = {
"include": "client,collection_address",
};
Object.keys(params).forEach(key => url.searchParams.append(key, params[key]));
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X GET -G "https://api.collivery.co.za/v3/waybill/4001907?include=client,collection_address" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"data": {
"id": 4001907,
"custom_id": "",
"service_type_id": 2,
"service_type_name": "Next Day",
"collection_time": 1559127600,
"customer_reference": "",
"delivery_time": 1559224800,
"parcel_count": 1,
"special_instructions": "",
"collection_address_id": 647187,
"collection_contact_id": 671846,
"delivery_address_id": 660058,
"delivery_contact_id": 684889,
"status_id": 5,
"status_name": "Collivery Cancelled",
"parcel_description": "",
"weight": 0.4,
"volumetric_weight": 0.6,
"total_price": 100,
"risk_cover": false,
"client": {
"id": 116,
"name": "Test Collivery (Pty) Ltd",
"landline_number": "011 241 4911",
"mobile_number": null,
"account_code": null,
"account_type": "account"
},
"collection_address": {
"id": 647187,
"custom_id": null,
"town_id": 147,
"suburb_id": 1936,
"text": "MDS Collivery, MDS House, 58c Webber St, Selby, Johannesburg",
"short_text": "MDS Collivery, Selby, Johannesburg",
"location_type": {
"id": 1,
"name": "Business Premises",
"surcharge": false,
"surcharge_amount": 0
}
},
"parcels": []
}
}
Example response (403):
{
"error": {
"http_code_text": "Forbidden",
"http_code": 403,
"message": "That waybill is not linked to your account."
}
}
HTTP Request
GET v3/waybill/{waybill}
Query Parameters
Parameter | Status | Description |
---|---|---|
include | optional | A comma separated list of relationships to return. Available entries: client, collection_address, delivery_address, collection_contact, delivery_contact, proofs_of_delivery. |
6. Status Tracking
Fetch and query status updates for your waybills
Index
Show a list of status tracking records
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->get("https://api.collivery.co.za/v3/status_tracking", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
'query' => [
'statuses' => "1,3",
'per_page' => "3",
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/status_tracking");
let params = {
"statuses": "1,3",
"per_page": "3",
};
Object.keys(params).forEach(key => url.searchParams.append(key, params[key]));
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X GET -G "https://api.collivery.co.za/v3/status_tracking?statuses=1,3&per_page=3" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"data": [
{
"status_id": 1,
"status_name": "Waiting Client Acceptance",
"waybill_id": 5019907,
"created_at": "2021-02-13 17:25"
},
{
"status_id": 1,
"status_name": "Waiting Client Acceptance",
"waybill_id": 5019908,
"created_at": "2021-02-13 17:29"
},
{
"status_id": 1,
"status_name": "Waiting Client Acceptance",
"waybill_id": 5019909,
"created_at": "2021-02-13 17:30"
}
],
"links": {
"first": "https:\/\/api.collivery.co.za\/v3\/status_tracking?page=1",
"last": "https:\/\/api.collivery.co.za\/v3\/status_tracking?page=9",
"prev": null,
"next": "https:\/\/api.collivery.co.za\/v3\/status_tracking?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 9,
"path": "https:\/\/api.collivery.co.za\/v3\/status_tracking",
"per_page": "3",
"to": 3,
"total": 25
}
}
HTTP Request
GET v3/status_tracking
Query Parameters
Parameter | Status | Description |
---|---|---|
statuses | optional | optional A comma-separated list of statuses to limit the results to. Defaults to all statuses. |
per_page | optional | optional The limit per page. If this option is provided, links and meta will exist in the response with further information about the full list of addresses. 0 is the same as not limiting. Default is 100. |
start_date | optional | optional Any valid time representation that can be parsed by PHP strtotime() . Defaults to a week ago. |
end_date | optional | optional. |
Show
Display all status tracking for a specific waybill
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->get("https://api.collivery.co.za/v3/status_tracking/4001907", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/status_tracking/4001907");
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X GET -G "https://api.collivery.co.za/v3/status_tracking/4001907" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"data": [
{
"status_id": 1,
"status_name": "Waiting Client Acceptance",
"waybill_id": 4001907,
"created_at": "2019-05-29 12:13"
},
{
"status_id": 3,
"status_name": "Quote Accepted",
"waybill_id": 4001907,
"created_at": "2019-05-29 12:13"
},
{
"status_id": 10,
"status_name": "Collection Driver Dispatched",
"waybill_id": 4001907,
"created_at": "2019-05-29 12:14"
},
{
"status_id": 5,
"status_name": "Collivery Cancelled",
"waybill_id": 4001907,
"created_at": "2019-05-29 20:41"
}
]
}
HTTP Request
GET v3/status_tracking/{waybill}
Update
Accept or Cancel a waybill
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->put("https://api.collivery.co.za/v3/status_tracking/4001907", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
'Content-Type' => 'application/json',
],
'json' => [
'status_id' => 3,
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/status_tracking/4001907");
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Content-Type": "application/json",
"Accept": "application/json",
}
let body = {"status_id":3}
fetch(url, {
method: "PUT",
headers: headers,
body: JSON.stringify(body)
})
.then(response => response.json())
.then(json => console.log(json));
curl -X PUT "https://api.collivery.co.za/v3/status_tracking/4001907" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#" \
-H "Content-Type: application/json" \
-d '{"status_id":3}'
Example response (200):
{
"data": {
"message": "Waybill 4001907 has been accepted, Price updated to R100.80"
}
}
Example response (400):
{
"error": {
"http_code_text": "Bad Request",
"http_code": 400,
"message": "Waybill # 4001907 has already started collection\/delivery process, cannot cancel."
}
}
HTTP Request
PUT v3/status_tracking/{waybill}
PATCH v3/status_tracking/{waybill}
Body Parameters
Parameter | Type | Status | Description |
---|---|---|---|
status_id | number | required | The id of the status you want to update to. Must be 3 (Quote Accepted) or 5 (Cancelled). |
7. Waybill Documents
Get your Quote or Waybill documents
Index
List your waybill documents
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->get("https://api.collivery.co.za/v3/waybill_documents/4001907", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
'query' => [
'waybill_id' => "4001907",
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/waybill_documents/4001907");
let params = {
"waybill_id": "4001907",
};
Object.keys(params).forEach(key => url.searchParams.append(key, params[key]));
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X GET -G "https://api.collivery.co.za/v3/waybill_documents/4001907?waybill_id=4001907" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"data": [
{
"type": "waybill",
"file_name": "4001907-waybill.pdf",
"pages": 1,
"mime": "application\/pdf",
"size": 35916,
"created_at": "2021-02-19 11:49:51",
"image_url": "https:\/\/api.collivery.co.za\/v3\/waybill_documents\/4001907\/waybill"
},
{
"type": "quote",
"file_name": "4001907-quote.pdf",
"pages": 1,
"mime": "application\/pdf",
"size": 27135,
"created_at": "2021-02-19 11:49:51",
"image_url": "https:\/\/api.collivery.co.za\/v3\/waybill_documents\/4001907\/quote"
}
]
}
HTTP Request
GET v3/waybill_documents/{waybill_id}
Query Parameters
Parameter | Status | Description |
---|---|---|
waybill_id | optional | int required The waybill you are requesting documents for. |
Show
Get the details and base64 encoded image of the waybill document
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->get("https://api.collivery.co.za/v3/waybill_documents/4001907/1", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
'query' => [
'waybill_id' => "4001907",
'type' => "waybill",
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/waybill_documents/4001907/1");
let params = {
"waybill_id": "4001907",
"type": "waybill",
};
Object.keys(params).forEach(key => url.searchParams.append(key, params[key]));
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X GET -G "https://api.collivery.co.za/v3/waybill_documents/4001907/1?waybill_id=4001907&type=waybill" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"data": {
"id": 4001907,
"type": "waybill",
"file_name": "4001907.pdf",
"pages": 1,
"mime": "application\/pdf",
"size": 2605,
"created_at": "2019-05-29 18:41:11",
"image": "JVBERi0xLjMgCjEgMCBvYmoKPDwKL1BhZ2VzIDIgMCBSCi9UeXBlIC9DYXRhbG9nCj4+CmVuZG9iagoyIDAgb2JqCjw8Ci9UeXBlIC9QYWdlcwovS2lkcyBbIDMgMCBSIF0KL0NvdW50IDEKPj4KZW5kb2JqCjMgMCBvYmoKPDwKL1R5cGUgL1BhZ2UKL1BhcmVudCAyIDAgUgovUmVzb3VyY2VzIDw8Ci9YT2JqZWN0IDw8IC9JbTAgOCAwIFIgPj4KL1Byb2NTZXQgNiAwIFIgPj4KL01lZGlhQm94IFswIDAgMSAxXQovQ3JvcEJveCBbMCAwIDEgMV0KL0NvbnRlbnRzIDQgMCBSCi9UaHVtYiAxMSAwIFIKPj4KZW5kb2JqCjQgMCBvYmoKPDwKL0xlbmd0aCA1IDAgUgo+PgpzdHJlYW0KcQoxIDAgMCAxIDAgMCBjbQovSW0wIERvClEKCmVuZHN0cmVhbQplbmRvYmoKNSAwIG9iagoyNwplbmRvYmoKNiAwIG9iagpbIC9QREYgL1RleHQgL0ltYWdlQyBdCmVuZG9iago3IDAgb2JqCjw8Cj4+CmVuZG9iago4IDAgb2JqCjw8Ci9UeXBlIC9YT2JqZWN0Ci9TdWJ0eXBlIC9JbWFnZQovTmFtZSAvSW0wCi9GaWx0ZXIgWyAvRENURGVjb2RlIF0KL1dpZHRoIDEKL0hlaWdodCAxCi9Db2xvclNwYWNlIDEwIDAgUgovQml0c1BlckNvbXBvbmVudCA4Ci9MZW5ndGggOSAwIFIKPj4Kc3RyZWFtCv\/Y\/+AAEEpGSUYAAQEAAAEAAQAA\/9sAQwAMCAkKCQcMCgoKDQ0MDhIeExIQEBIkGhsVHismLSwqJikpLzVEOi8yQDMpKTtRPEBGSUxNTC45VFpTSllES0xJ\/8AACwgAAQABAQERAP\/EABQAAQAAAAAAAAAAAAAAAAAAAAf\/xAAUEAEAAAAAAAAAAAAAAAAAAAAA\/9oACAEBAAA\/AFV\/\/9kKZW5kc3RyZWFtCmVuZG9iago5IDAgb2JqCjE2MAplbmRvYmoKMTAgMCBvYmoKL0RldmljZUdyYXkKZW5kb2JqCjExIDAgb2JqCjw8Ci9GaWx0ZXIgWyAvRENURGVjb2RlIF0KL1dpZHRoIDEKL0hlaWdodCAxCi9Db2xvclNwYWNlIDEwIDAgUgovQml0c1BlckNvbXBvbmVudCA4Ci9MZW5ndGggMTIgMCBSCj4+CnN0cmVhbQr\/2P\/gABBKRklGAAEBAAABAAEAAP\/bAEMADAgJCgkHDAoKCg0NDA4SHhMSEBASJBobFR4rJi0sKiYpKS81RDovMkAzKSk7UTxARklMTUwuOVRaU0pZREtMSf\/AAAsIAAEAAQEBEQD\/xAAUAAEAAAAAAAAAAAAAAAAAAAAH\/8QAFBABAAAAAAAAAAAAAAAAAAAAAP\/aAAgBAQAAPwBVf\/\/ZCmVuZHN0cmVhbQplbmRvYmoKMTIgMCBvYmoKMTYwCmVuZG9iagoxMyAwIG9iago8PAo+PgplbmRvYmoKMTQgMCBvYmoKMTYwCmVuZG9iagoxNSAwIG9iago8PAo+PgplbmRvYmoKMTYgMCBvYmoKMTYwCmVuZG9iagoxNyAwIG9iago8PAovVGl0bGUgPEZFRkYwMDYxMDAwMD4KL0NyZWF0aW9uRGF0ZSAoRDoyMDE5MDkxMTA2MjMxMykKL01vZERhdGUgKEQ6MjAxOTA5MTEwNjIzMTMpCi9Qcm9kdWNlciAoaHR0cHM6Ly9pbWFnZW1hZ2ljay5vcmcpCj4+CmVuZG9iagp4cmVmCjAgMTgKMDAwMDAwMDAwMCA2NTUzNSBmIAowMDAwMDAwMDEwIDAwMDAwIG4gCjAwMDAwMDAwNTkgMDAwMDAgbiAKMDAwMDAwMDExOCAwMDAwMCBuIAowMDAwMDAwMjkyIDAwMDAwIG4gCjAwMDAwMDAzNzIgMDAwMDAgbiAKMDAwMDAwMDM5MCAwMDAwMCBuIAowMDAwMDAwNDI4IDAwMDAwIG4gCjAwMDAwMDA0NDkgMDAwMDAgbiAKMDAwMDAwMDc4NSAwMDAwMCBuIAowMDAwMDAwODA0IDAwMDAwIG4gCjAwMDAwMDA4MzIgMDAwMDAgbiAKMDAwMDAwMTEyOCAwMDAwMCBuIAowMDAwMDAxMTQ4IDAwMDAwIG4gCjAwMDAwMDExNzAgMDAwMDAgbiAKMDAwMDAwMTE5MCAwMDAwMCBuIAowMDAwMDAxMjEyIDAwMDAwIG4gCjAwMDAwMDEyMzIgMDAwMDAgbiAKdHJhaWxlcgo8PAovU2l6ZSAxOAovSW5mbyAxNyAwIFIKL1Jvb3QgMSAwIFIKL0lEIFs8ZTAwZTVlYjk0NDQxODJmMzUyMzIzMzc0ZWY0ZTA4ZWJjYjc4NDcyNWZkZDRmZDYxMmQ3NzMwNTQwYjNlMGM4Yz4gPGUwMGU1ZWI5NDQ0MTgyZjM1MjMyMzM3NGVmNGUwOGViY2I3ODQ3MjVmZGQ0ZmQ2MTJkNzczMDU0MGIzZTBjOGM+XQo+PgpzdGFydHhyZWYKMTM3MwolJUVPRgo"
}
}
Example response (302):
null
HTTP Request
GET v3/waybill_documents/{waybill_id}/{type}
Query Parameters
Parameter | Status | Description |
---|---|---|
waybill_id | optional | int required The waybill you are requesting documents for. |
type | optional | string required The type of document, 'waybill' or 'quote' . |
8. Proofs of Delivery
Index
List your waybill proofs of delivery
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->get("https://api.collivery.co.za/v3/proofs_of_delivery", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
'query' => [
'per_page' => "3",
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/proofs_of_delivery");
let params = {
"per_page": "3",
};
Object.keys(params).forEach(key => url.searchParams.append(key, params[key]));
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X GET -G "https://api.collivery.co.za/v3/proofs_of_delivery?per_page=3" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"data": [
{
"id": 170452,
"type": "POD",
"file_name": "342118.pdf",
"pages": 1,
"mime": "application\/pdf",
"size": 48971,
"created_at": "2010-09-27 11:15:03",
"image_url": "https:\/\/api.collivery.co.za\/v3\/proofs_of_delivery\/170452"
},
{
"id": 182535,
"type": "POD",
"file_name": "356551.pdf",
"pages": 1,
"mime": "application\/pdf",
"size": 112152,
"created_at": "2010-10-20 14:16:18",
"image_url": "https:\/\/api.collivery.co.za\/v3\/proofs_of_delivery\/182535"
},
{
"id": 211515,
"type": "POD",
"file_name": "390109.pdf",
"pages": 1,
"mime": "application\/pdf",
"size": 57001,
"created_at": "2010-12-08 10:23:25",
"image_url": "https:\/\/api.collivery.co.za\/v3\/proofs_of_delivery\/211515"
}
],
"links": {
"first": "https:\/\/api.collivery.co.za\/v3\/proofs_of_delivery?page=1",
"last": "https:\/\/api.collivery.co.za\/v3\/proofs_of_delivery?page=6",
"prev": null,
"next": "https:\/\/api.collivery.co.za\/v3\/proofs_of_delivery?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 6,
"path": "https:\/\/api.collivery.co.za\/v3\/proofs_of_delivery",
"per_page": "3",
"to": 3,
"total": 18
}
}
HTTP Request
GET v3/proofs_of_delivery
Query Parameters
Parameter | Status | Description |
---|---|---|
per_page | optional | The limit per page. If this option is provided, links and meta will exist in the response with further information about the full list of addresses. 0 is the same as not limiting. Default is 100. |
waybill_id | optional | Limit to results with this waybill. |
Show
Get the details and base64 encoded image of the waybill proof of delivery
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->get("https://api.collivery.co.za/v3/proofs_of_delivery/211515", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/proofs_of_delivery/211515");
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X GET -G "https://api.collivery.co.za/v3/proofs_of_delivery/211515" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"data": {
"id": 211515,
"type": "POD",
"file_name": "390109.pdf",
"pages": 1,
"mime": "application\/pdf",
"size": 57001,
"created_at": "2010-12-08 10:23:25",
"image_url": "https:\/\/api.collivery.co.za\/v3\/proofs_of_delivery\/211515",
"image": "JVBERi0xLjIgCiXi48\/TCjEgMCBvYmoKPDwgCi9UeXBlIC9DYXRhbG9nIAovUGFnZXMgMyAwIFIgCj4+CmVuZG9iagoyIDAgb2JqCjw8IAovQ3JlYXRpb25EYXRlIChEOjIwMTAxMjA4MTAyMzI1KQovTW9kRGF0ZSAoRDoyMDEwMTIwODEwMjMyNSkKL1Byb2R1Y2VyIChsaWJ0aWZmIC8gdGlmZjJwZGYgLSAyMDA4MDUxOCkKL0tleXdvcmRzICgzOTAyNjgpCj4+IAplbmRvYmoKMyAwIG9iago8PCAKL1R5cGUgL1BhZ2VzIAovS2lkcyBbIDQgMCBSIF0gCi9Db3VudCAxIAo+PiAKZW5kb2JqCjQgMCBvYmoKPDwKL1R5cGUgL1BhZ2UgCi9QYXJlbnQgMyAwIFIgCi9NZWRpYUJveCBbMC4wMDAwIDAuMDAwMCA1OTQuMDAwMCA4NDAuMDAwMF0gCi9Db250ZW50cyA1IDAgUiAKL1Jlc291cmNlcyA8PCAKL1hPYmplY3QgPDwKL0ltMSA3IDAgUiA+PgovUHJvY1NldCBbIC9JbWFnZUIgXQo+Pgo+PgplbmRvYmoKNSAwIG9iago8PCAKL0xlbmd0aCA2IDAgUiAKID4+CnN0cmVhbQpxICA1OTQuMDAwMCAwLjAwMDAgMC4wMDAwIDg0MC4wMDAwIDAuMDAwMCAwLjAwMDAgY20gL0ltMSBEbyBRCgplbmRzdHJlYW0KZW5kb2JqCjYgMCBvYmoKNjIKZW5kb2JqCjcgMCBvYmoKPDwgCi9MZW5ndGggOCAwIFIgCi9UeXBlIC9YT2JqZWN0IAovU3VidHlwZSAvSW1hZ2UgCi9OYW1lIC9JbTEKL1dpZHRoIDI0NzUKL0hlaWdodCAzNTAwCi9CaXRzUGVyQ29tcG9uZW50IDEKL0NvbG9yU3BhY2UgL0RldmljZUdyYXkgCi9GaWx0ZXIgL0NDSVRURmF4RGVjb2RlIC9EZWNvZGVQYXJtcyA8PCAvSyAtMSAvQ29sdW1ucyAyNDc1IC9Sb3dzIDM1MDA+PgogPj4Kc3RyZWFtCv\/\/\/ICSwXsIuqD9hYfoKw\/Wwvh19hUH7\/0CI\/Y\/W\/oIurD\/r7196+\/9O1638rrUR8qInzCMRdEnEfI+RbI+R4rWT3YwmGGDBhBCGWBBCJciNEZlDOwQi6M4jx0iPkliDMnyHp\/\/\/\/\/\/\/+G0oRINAgcI6eGmEGEGGxtggsEwVqEiPu4NhdPwwxhdMMMIPr\/\/\/\/\/\/4YSoJKHs4NDhWGH4Q0HeFhBHHDbBvGES\/h91h3\/\/\/\/\/\/+MHh0uGkOEEG1GE+srre6C7hh7IrkfuGVj2GSFpbZQGDIpX\/\/\/\/\/\/\/8PCuHkYGiJIQzEIOaEeInihBmOTgvC0GV8KSM8igjShmCOtekyUy9ihlkrAZCXDhIOkFBhwgkDNSEE7CoECFw38KGnSw4XgwYIJ9w0w1wcL\/\/\/\/\/\/\/\/\/\/\/\/\/4\/th2DhqEFChwgwx7oX+U\/CtuODbDSC4Xwoh5XW9sQqQTBg\/DDhh4eT4Sh4YYhsJOggwuGaKFwrDqHDb\/\/\/\/\/\/\/\/\/\/\/\/\/\/maDthoPCCCvCwtBX4U0Xw8cP7w6CthaX4w8IJIKDcPfhd+Yxw4S\/Crjw4Vh0rt\/\/\/\/\/\/\/\/\/\/\/\/\/yut4cJBht7DD6WGHv4+Ooeguf\/2tw0Ej8cjqjkU6LpIieR5f+FShYXbwggw8UoTZ7YcK8p0Dt\/w0wuF0mwkyVD+YDZAkIMxAYX\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/7QQdvDCLoPrwwggwze3D0F+oSXGHChUHXQL1DSC1CWgg8WMIJJTNQ7h18PH4YxxCV4ZhQofe4bMC4YYQXhhuoYb\/\/\/\/\/\/\/\/\/\/\/\/\/\/5XW+cdBht0MIunDvh4Vl14cwgwThBYf4UOgthUUkCh4UKv4Xh9IIIkcMMPXCChsedFwcP\/CUPhWHSoYcK84gwn\/D\/\/\/\/\/\/\/\/\/\/\/\/\/\/94VsErhW3Cwwwwg0GDCUJhMINexwqh1uHhQ6xFLvhaGwQZ6HBQYZDw42FCDhMGXcOH+sKGggwrCCUKUihh\/bCCfCD\/\/\/\/\/\/\/\/\/\/\/\/\/xESPiJeI+EcVMOcczhM2FEAi6QWM44dhhfBgioDDDD4QfDfIPGFjSw\/DxEREREREREREREHGFCBmHPrCOP7DqHszVuHX\/\/\/\/\/\/\/8RERERFILCCDBwQIdIK+FllAs7K98IOEI7YesP\/\/\/\/iKhw+UIMNXX5ZTCOy3cKFhhYM3NX4QX\/\/\/\/5ZQaCSC1Bsug3IYIIg2+EoYcIZ2KiqINCGRuRAU44YMwhEfC\/\/\/\/4ZWywJxE0hEREYiof9ylofDNX\/rjey6Pf\/qOXSCuIj639b+t\/W\/9P2q+9fevvX3\/rf1v639O1639BF1Yf9fevvX3r7196+9ff+t\/W\/rf1v639b+t\/W\/9fevvX3r7196+9fevvX3r7evWW5fIPPIiEezyM0Sjf\/\/\/BAoMj5HMjxeDNZxzjmct0YhI8zjnHl4j5Hi8RyLxHJSPFyMIui6LxHi8R4vEfI8XZdl4j5Hi6LxHzCMZHi8bi6MZhF4wi6LoxHIwjGR8j5hGMj5hGMwjGeRdGaPZ\/PIzRT5hFCPZPmEUI9nkcR7NWtBIrAoKggRHgYIMJIHcIEYg6CQVBAgTSc\/goNQg57xYJAhBgkEDOcEIcYWEgQVNoEEkECUIJBLDhBBUEgrYShAwSBBFyCDI5keREHkekh5cFwpcgpeyOLhS4hHOIYQyOGC5Eci4y6Loxv\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4IE0R8JXiDOOCBJyPhUEggQIj4SCQSBArptBFxqCCBApIc48JEeUJEeLtBBBggi5Agi6LwUFQSC1BAgkCCBIIEFQShBhB6QSCpAkEFPHoIzhQkU8ODKhpBH4EEeCqJAgjwFQQIE54CQSQRxzwFBIqDxDKyGVhWBmEioQR4BBIJAgi8tggwrFBF0XgwgQIjyCQVDgwgwkEGCBArQIJBHtQkCCsEgkVGKCCWgjjoIMMJAgVhQwgoZHnSCBAsHQQSI3DCCRThIpwkggQJpBAgTBMuwSCBAmkEgQIEHCBApIcECtlyBBAgUjeEgQQJJ0sOEglCBgqcGR6Ikh3DBBIGC2EEXn\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/QQJUbmnCUIRERERERERERERERERERERERERERFBCIiIiIiIMIaP6CEGFUIKz8CCoECDMJIJBHtBBLTcEXSbcQwgQJmMI4+gjOEspynNASQXlPhIGCDI9cW0EXVAgi6TBAhEREREREj4iIiIiIMJCggwqQR+aQJpBBJBBkcwsGR7ggWGEEgQIMwggtL\/\/\/\/\/\/\/\/\/\/\/\/y30VNBggkEc2UzRgkVCbLtrnHUJAgQaBAmXSQRsQQSCUMJAgkECBAoYYYYbxQQIFhLGkEggSTp1CBIJQkFwgkCBBhAgTLkChhhQgwTBIIIEU8IJf\/\/\/\/\/\/\/\/\/\/\/+GIZUNBF1BhW2gQIMEEEgYQIE0ggkggwTSCM4SFl4Nl0FhhBbwZUahk2W4ECLpMEaA6CNDS6CCQIEwXoLNawjjqHBIqIYYdf\/\/\/\/\/\/\/\/\/\/\/wtBlRBFRDDacIECaBAjjrCBIJIIECYSCBAmk2oQJBKECBMEgQQIpwgrw6CLwSQWoQIjyggVoEEDThIGEEgkgTSCFBCDCaQQSBAgwg6X\/\/\/\/\/\/\/\/\/\/8eFeVyRMJBJfUMHaCQR4CSC2YsMrM8FRnHWDwoIEy6btA0R8pEYzCPZ5GMwj2eR7P5PnkUI655GMwjGeRQi6MZhHs6o64IEJIyHk\/QShAgSCwgRHqBArQQSCBIEEcdJBAiPQwgSCBIEEglCBGFQSBBJBJL\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/sEEIJIIEjDLwSQQSI55HmZwi4y7LwYJnHM4JnHBBmgMdSPZeI80CBWJeDKcw5xwTOOcczghI\/mIui9keLwIEGU5hwQZTmHM5TmHNx4Kg\/FOVB\/PxUHThAlC7pQ0EgQShA08NBAgTBWwlCQQKvUJXhhhhggRHwrbUJQqCRUNAgRx+e4IIER5oEEGGCBWZoEU4QQIwQhhwg9hwggk2DBXTahJAgkECQSBBAkEEgYQJQgaCBBhgggkpHuGGW4RiYQSCCCgkCOPTbhIJIIKcdUFCCQSVAjj1CQVqEglCQQX\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+4QQIEgkCLrQQJQgwwkgQSBBJBIjhQQSqGHCQVEcocGCNcjlCBBhUCLwQemkRypNIIINAgkECQVBAkCCLkECBIjkgYQSQIGgQIcUEHDhoJIEggQJpBHHpBILCoEEgYJgtBcIECaQQJBIECBXDhIJAjGsQwwaCWgQSEKECuDVtG4JII46wgRHoahgggRHqtZx0EGYSDCCQIEKCQQSMOIiy4QEGEEgQIMIJBkeQiccSnEWXYIc0YSKeGEMJFQ1hLxERHCVCItYiINYQJBIIG3\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/wiXgYQVhGDDoIutoI5oEIiDCEQkNAysKwEECRXHDNi6CXynwzCMaKhBGg9qCBBkfMIFhAin0FwkCQVBkeGFyoOOeCoPAZHMj0w5xzOGR6Yc45nQQiEmXkvRHoYdAi6ggQLGDLwiIiIiIiIiFDhBUIiIiIiIiIiIiIiI0EccJAhERERERERERERBnjQTf\/\/\/\/\/\/\/\/2eoJAgggrqEgkRyEQgQKGGJ2FBBF4QYJYjDDoEXWDCwwRjBBIIIFKgEGGR7f\/\/\/\/\/\/LdUwYLaQIx6CBIQYMugqwkCCrDKdaCBIECHYRdAj2hDtMGXTf\/\/\/\/\/hKECQShQYWhDKeR8IGDQSShqEggkiogwiFIJBRnidqqQSCf\/\/\/\/\/waYQIEwQZTgiKIxF0CRHi5Eci4y8IYSCBIj7QVZbqmII9oEECUMpECQI49ggWgjjggWeAyPkfhF0drNDCQQSC9\/\/\/\/\/\/\/\/\/\/8MEGCEYQQUNBUCBBhIJBYYQIEgsJBJAggQ0EkFRHy1STMJODCCBGEXgkgRdEJBAuwk9sEEscq8wi6Lo4iV5hQZdEozyMZiMJBLqIISHGEwMrcyZzPLiHUT\/\/\/\/\/\/\/\/\/\/\/\/\/\/8JAgQahIIEglCQReCQI8U0CLrQRetNMpzDQSCIoqCgyOZHgjjoKQkRwtgheERRzgihFTRjCVhhQikENAp8QkHaESCTZTkSDIZ0EuFYSCBBhBIYVoJBUgkEEkEeNAjPCCQSNBGBngJAgWEkR+OgQSKcqAkCCP6CBAp5Ijg4tCkrFBBFwhdGDui1TKhokOGiQ9FvQUOQjm\/L4NAi7RCTB\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4wggsMMI8BIECgwlTSCBAmkECBMJYwgw80QIIEggSCpsMJBFJhJAgQYIIuVoIvBTNrkXSMOEgyPGBDFQUm6kmzpB4INwQcJAwzYWZwphxYMOg+wwicQicOzwGHBFRULDI+FBwcGFUJBabhA3CBEeLwSDgwgtoECBQwwglCDsEgQSCBIEYyPQRi8ECiFsEqNFIj6hhFuJBlmgZpGAQEGSnI+YRjPIxqEROCM4L7cITRxDCE45nQcLCCXCdBP\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/CCQSQQQJAgYQYYSI+EGEkECWLSCFBBgggSCLoqMKCQI49AgkR9giPBIEEFBUDEMFB0EGGHCQIJBHigRdW0ECI8024SLcoBciAzkCDqhEREigyGziCoJEEchzkRyNynMOYXKcqD1HbmiRb4fvpbD5nEXYcYQbUMOocMEwQhgsNGECBQwgSCQRmgSCBBIj5HsJFXQwkCCBAmiP9BAgTqDEECDQ0gQKDsEIOggfI+EoaCQQJBIKgRetAi6TSI8tuDBMFkEDORUOdQVSBhoMIGIiKYiRW606BhwuFwYWQoYUz+RB9SMvqvhf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/7CLwSCginCBIJBAkDCIUcK0EtIJBUPUMMJBIJBUoRx1boIEgkCBMFgkEiPKECQRdcIEgrdBIIIXrhwkC5EHhwmDwQMhisGDBCawXKoBDheGMNWOTgHDhke4q2Quu\/ww9BAkFTQQJbBhT8FSBAg4WEgpdIIwYcIECBQwg+3DCLqlCQOEDQQMKggQKGglHCh6CURhAgSKFUEGGRB7H9BoNEGHknsmOgyQ6XI4sKE6NdQeFC9kx3RIEfvwv\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+OKCLoEEgggQYYSQReCSCBIIFDDCEWaMJBAgQuGEF0ECQSvyPQkVnCr3wYaI+Fgg7CLpggSI58Ex4QSDbCClvBg4hRM+y7rnHw4eFBthcNdJCcfmolqvD8ECaHQReEMEMKDCBIIugggUu0lCQShggi6OuFQIEcdY9QgwTQIE0IMIQZQEVgVAgi8FQIFHCBAmY+8P8hR9Rhw8QmgtwhGEHXXuE8bFYO932F\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/C5TwS4RccMJIrmMMT2YQhAkFhAkCEMECsEGECRHkEggkR8ECEukECQIIuiIQJGGCRiCRHhsIKgkFHDoJBIEXuW4dYMQ94ckP\/cMOGFw77UPDokOwps1h1hahRFBAwgSZ7UK2ZwQQIwy8HJODBMFYSMMEoYahB2cuDQTOOt6CW4Rx0EECKAgReQIEeKCQVEeEJBJoIIMNjwiKO9VeOTH+tlyhGcHCQUEgwwWFDhMTj0EG694V\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/k2HgkCUIulQQIPQIJEc7B4QIw6wgaSwRIMj4QQIpwgoJAgQhHHQVBIIEgQSCQUO0FQUvDCCSCCQSCSCQIxiIIEGC14w2EFhvDHzj6YhQ9jBjiFDQWhFSIPDkcWGrDWDBtw8IMwqCHCkUdBBJging1hAiPQcEgkCCQVAgQahhDDhBhhIwggQNAgqcg6GHQSEGEJIlcN20Ei3Dkh9SN\/hEUfEUIM4OGWQSIOOcdBhO7JjmgzgjUKxBBiCDFf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/k2npYQUERzBBIqAQKGHPboI46FtQgQJoFRhIIJBIEEGHCCCCRHOEFCBYhmHCQIulBBAwgjwGEaAkU5UHHRHi6DvJO\/9iDQTH1HNDEREREREMUIiVCOuzOFVwgQLQIJFYgqCUIJBF4MMPlQkoSCqHCCDCDDChhAgWkFCCoEXSB2ECQIEGFhIEYwRx4YSBF6gkFQSCSCDMIKsYfCTYcKsO+Jx7iIj\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+KCDhgggwgQYYQJAgkECBFOEEEO264QMFDCBUU4SCBGgGFSQIEGFYS2wkggwUECGgYcJBIKgkFbMWgQLCDwwl8Ov5FHwlTwwgQIFDPIvBBIIEDQMKgReCoECOOrw0ChQYYWGR8IEYw7bCQIvUEeIYdQoJFBAi6wggSCQVNUHwcMLD9BB3QXJDhSQ+Zx0Fa\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/wYQJQi5BBIECDCOOeIMLiEHg1rhBhIEXggSBAoMJAi9hUkCCUIOEggSCCQIIECZi6BBBhghwyPPCWiPwkCLq7Xkhwwy3YVknxDCHHE49YJQgkDCoJQrBAoYSQII8Bs8ReEEgQJqEISCQIFDhYMER8JAggQKGECQVsJAgkCBIKiPwoJAkCL1BHi0ECBMuoYSZFH8IKxbEOkMIIPwQIb\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+ISQRjYIMIJIEEoQYIRhEmxQQSBBAkoUMIEgYLEEFhggkDCBIj9AjjoJAgqI\/qIoIECBAuFYQd0EiPhAljCXXr1yKPsu1gggkggQQSBBAkggoJEeLwUHLthDCBFOEgRdBKEYMLoIJKR4YQoJBBhB8RdggkEgkgRegkCBAr4hBkh8ijgwkuGwgvqZx0Ff\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/pQqBF4NQgSBAgV6CCoEgcOXgkEmhwkCPAQcukCFBBAkCMYSI94UECFSDlDKdoHCQ1pNFZiGh8IMNh08K44nHk2M9OgggSBBKECKcIJQkCCQIEGFQIFbggQhIGFoIugwlwQLFmcoDCBAmCDCQIEgkCOOgkR5sO5GsRPYUGCCCQQI0WcfJD5cVCT2glBIKGoIEKgzDa\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/2CDBMEGCaYQIEOgkEEkEgqKhYSI9YJLDBIQowwRx0EkCCDtwcMJBUgQVQQIMpOccEGCLwVAgkECCSCpi+4XYOF0CDQTsux14SQQSQRdIEEiPQ4YaCQILtAqbbFyOYYYQJBIJBBUVEMMMMjOECQVBAlULZwahIECDBBIHhVwkH14dZGB7kn0Fd\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/8NKEgkFQSBBAiPhBBAkEkR+GHwzDpIj6hwgSCLzQWtBBAgRUQ1CBoIJBBIj4ZThCEGEFQR4C6CBEfkx\/hYQcNoKRuDI+R8jgRx2XZNhxDwcwRoIflM0sMp4QIFugkEGHDDg4SCCCBIJBAlhDuGggSCwQINQw0ggRUcEFUGgglBh4NQqCDCQQYh8OgsONiIjC1QSCctxYRJ3DcIN\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/YJBKHQWD4QJFRCDI+IMIQgQIFhAiPrCDKJrCBEfwgQIFhVCDjaCWECMZGYQSKhBBIECj+r9O0iCOU5UAwyQ8Mt3Fovrgy+hgmHCWEuDcJBJVCCDSCDCEl2CBM6dCCBB4QQYSIOu7w0FJGCQQSKcKcSeGGGUIBBIEEGGEiNfvCtBIKwwqESQDAQwhyY6a0nhjw8X\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/wbQQeEEEGGECBBhAyn2gkCCLwQIjxdGaUIEChhIIui6oI46KhJJYQUGXgQSKcKgkEHhHHl1wgpdF4j5HgSBBIEXggSCDQSsL\/vJDyoDAf7Q7WEaSChOtAgg8KgReCBIGioSCLtBJBAiPdD8GYGw7UEsIER6FQI8KEgQIMKgkFCEEFQh0CBBwkEkEFDCCQMIECHOPoOFChhyTpjBsIij5FH2XpblPp4YIMjnq3\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/7NDhIECDhIGYRgwVggoMJIMJggUMII\/BhhF0lChBAkFUMOECBAoYhhhUCDpgwwgRHoYQUOEsoXhww+HVPFqDhjjQuhG1hTcFDdKKWMIJBHuFRThBhUgRgwZQEEggkCCLwQIECxhAkwgSQQQQQJBAkECMEECSEJVCQSBBBUCNEPBAowgRThavpmMwjNJ\/BhINMmPbd4ahhoJX\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/xhhIEFggQYIJM48QkiuOUBVCDBCLBEfGECBYMEGCGFgwkECKBHCHZx0CCQIECuGEmgrwrWIiOtw2ETHdl6GRyVYThXczuTYXOEgqBArBJBF0gqERERFBIIRERESPiI1DEMJAgkgqEUEHsLwgiThyTuRvwsaQTDFU8OPUIJf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/wcJBJQwT7q43CEREQoIF9BwtESDxTHDDWxQMoqMHaDvDCQQMFggX0DK2qmHRhVg0Eg6w9W7XCcij0ShiIiKf\/\/\/\/\/\/\/\/\/\/hIJGIJQw4SBBF4JPYoIJAghjivmfI3hkh4eZxsU1G4SCCBEfhBgoSoIOEgQVGFCeFxUYQwiKPjRIdr\/\/\/\/\/\/\/\/\/4dpBIIJEeZx1CZx40R4NEf5FHCCyTh3hhRyKPbLz2CDTBBpBIIJEfBBZ2qpBCCBIJqOgx04QYeKJXJBMlSX\/\/\/\/\/\/\/\/\/xhF0uEgkCCXoj8MjxdBAiOciPDryTtYQRFHzO4TFQ27XCQS0ECMI7BbQSCCBJBJBIqIY624qSHCknhjjholDCCS\/\/\/\/\/\/\/\/\/\/\/8QgRHMJQkEggSI+YRIzCIoiCcKnMZ2VFCQReBIJAgoUkPCC7iHGFwgmK3ietoHCRHi6LsKYMjxeI+R4vEfCRiMIxkfN5hGIujEoSBAgzDpBF4j5hHsnyMzyM0QOBGiEgsGR8EVDQIunYhYYdaVTjkx0qJDtItwcRLIqNf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/BoEEY4QYIJH8QwhBhCI2DBMEGECBeDSBQg8K2CQQJEeQReI8pHIuNBF4JEcUjhm0ECI9CQVMEpHyPF4jkXZeMRiI8YMxEfI8XRiLovEfI8XgqBBIJVpSQ+Z3hBBuIuutbBG4kCk7NxiHEHhhIMw4ISOYSMIvBIwi8R4GceggQJhcGoSI\/DhBLTYJAgkECShIrjdhIJFYEGVhWFUBL0EgqqECQSBBAkVCCPGEECI\/CQIEaIQJBVg04YIIEGGgkFhwsXEw+Ycz0giT0gXwXUECOtC9L\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/wcIEgi7hIIvBhIGEEmwkiOVBIKkChHHUKMIIFQOmgThh4QSCRHMMGgQSCUMJEfCDCRH8xIIECQQYVOECQQSYQJIINQw4SCoEgkECBCggpeDKeEgQReCCBBh63QqIyDB4psL4QTkvuEE8PF4iJ78KNNAjjqEioS4eEisCUJAjRBniZovWCtwgSBBIIHggkCCUIEglBw4VAgQYQIEiPhU0wSBNIIER6SHeEEgkgkRxQiKOCBBkcwgkEkFhwnBNEQcGERHBhM6gRBokOGUgQLZAgilxmYkM2HSszGUDhKez1ZoZq\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/8RERERERERERERERERERERLrCSCEQ0DKfCDjCDKwKgjxahA1CQSBAspwkoVBX54CRUAkggSKcJAgkEEinCRRsL8EDIqBcjYNwQkHAyQ8EJDuYczmH8hRzwVBxzwSHsMjizDuFJjhwjNl4OETHDCJjg4boHoMEDPCGI\/HUQ0EOoczHEREREREREREREREREREREREREREREeES1GMjyMOZynMOTHDBGHOOZyGdIQw5Aw5QkJDkCIjNAeIiIikEZwQQMOHnoKCN0INBBtBA4YWwrYSLiEScLVBokOGGYcMImOH\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4hxERERERERERBGcpynKcqDjojyMOZynMOcc0GctyNzDmcw6REHzj8Lh0F3+GFQPUMINd1cGw0N1N0I02IYSBB4iIiIiIiIiIiIiIiIi4eN4T\/hccPCdd0lt8KDKgN6Fv\/\/\/\/\/\/\/\/\/9QqJDmf64QXhQvDV4qOvhDBYQQLcOwhH3oPCoOH4T9hEoOOvC9w0ieS\/\/\/\/\/\/\/\/\/\/UL8NKwoQaCzRfrhmHQaEeHCh8IKp64cMM3LhcMGoWwWwu6xeFD8IzoegVJf\/\/\/\/\/\/\/\/\/5ZQ0XRSGVROFjeMODnpisuOGrDabMGHijSDDw6nsL3BDLyBEeJfCRURDyHnWI+YjVF0Y0gwmZwWiQ5nChiIZhwgYmHUJ0FxhX44pZB4hL\/\/\/\/\/\/\/\/\/\/\/\/\/\/COOeNnXCCQa+qCBCISQQs6mfMRERYQiDK2NQZiMLBl6FOC4Ujd1EWlEzWsLCzJJ8+FyOCLvWI4iIiIj\/\/\/\/\/\/8IYQQcIIIF\/CCDh0lJNqsKFDCC76QXhBQgTQuEv\/\/\/\/\/S\/pJwgQYRjoKDaisK9dK+mEJE0ZdF2XUQmx\/\/\/\/\/1sLeCrBSKOcdRFCjD0vVJYYT6MrNO9P\/\/\/\/\/k8msKEEHYSCCDhb7aThBBBhBwo4YUHVf\/\/\/\/zGECI\/glCQSUFCVN3hg0EIZIcFIfUiOVpQSBl4j9NJJ\/\/\/\/\/+IiIiIiDBBAgXhe1ERERFff+t\/Ttf196+\/9b+tv0r+WhaiPmEXRjMIzRdGM\/oKEIiIiIiQyCgjcm5hzOYczm87XJg\/\/\/\/kMgOOIiIiIkMgMDkO5bmHOOcczmHOOZzQU5oKwrCmoaqGQwOZyB84iIiIiIiIiIkMgIzVn\/+ESIRDzCMZHyPkfI+eRdGMjxeI+RzCJjmctzDngw5xzjmcpzDmcpynMOZzDmcw5nLcw5nMOW\/hxERERERERERERERERERERERERERKjPIui6LovEeLxHi8R4vEeLxHi8R4vEeLsvEcyPF2XZdl4jxdF0XReI8XGXDJDr\/\/\/\/\/\/\/\/\/\/\/\/4URERERERERERERERERERERESsoujGR8wjGR4vEeLoxF4jxdF4jxeI8XiPF4jxeI8XiPF4jxeI8XiOZHEfiIiIiIiIiIiIiIiIiIiIiJ4l\/ww94QWv\/wn5nHWJQjNGR1D\/\/\/++GFKXFJHWJCNA5CBzqIR8h526LrWHh4X\/CSLwMIgRQQaZ0iWByhHp3\/\/\/\/\/\/\/C+H\/rBAiRTEBzIfgiXA4eQvVf\/\/fUPD7w+CB8bhP\/\/\/\/\/\/\/\/wRHskIIIP\/hBB++HesP4aw4UMPPhTQSGFLjJApHzRGCD+gv3w8w\/oP+\/\/\/\/\/\/\/\/\/\/\/4UP6NbluOJTg0LCEGFM4P\/fDwvDwghyniXSwv7fmkECNKj8EamT\/hBBf3w\/Cw\/5uCIlCD3LqGv\/\/\/\/\/\/\/\/\/\/\/\/h8MPCC+HCDDoPhh6UYVfCw0tv\/BE+ByfMOO8L\/6QfxCh\/CCkxzjkx4\/h4\/\/4TwnfX\/\/\/\/\/\/\/\/\/\/\/\/\/b8uQVwgvPg4QXHCEQc\/6+GUh4Yf+l+u\/ww\/EVDD8ET8L5OA\/V3woUGHt5qL+zGg13hL\/\/\/\/\/\/\/\/\/\/\/\/\/lv0XQcIJj2wgvhfhhdcLXhd4Yeg813xEJ\/hty3cENDPM7OHO8Z4woYczw5I+H6X4Vu6+v6\/GH\/MM\/pf\/\/\/\/\/\/\/\/\/\/\/\/\/\/hERww7DKlSBAGYD9QgxChrwoYQX8LD94Yfr+xh8L6\/vmhfBQ5cYNw9hBsPBBBhr7YIPCD4fhKwQQcJYXD2EEH3JCfShL\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/qINhRhZQTCELhhQmIKIYYqRI4f\/3ChCFggvdL7C1tw30ww8OnQd4iDBFPERBoHDwhcPWGIKorcMjeF4MEk9YS\/\/\/\/\/\/\/\/\/\/\/\/4TDCCnmaCGhmBgjO7zQYTNConMOIiIiIiKgwRAkGQmkMJiCDCwYhNbDhtw0Ow0HEpw4h\/Bow4YIg\/EugiHkMwhEREqmIhmE+l\/\/\/\/\/\/\/+EEHQU3OTHWDOOCw2CJRYgpOMIJyY4eIiOWYo28MLhewbjwsJhgwkEDfSCB+EWYcgTNDIKZGGkfM1GSL\/\/\/\/\/\/\/\/\/\/hB3hPBV0HoOgx8Pjw\/w+2grvDCoNEQcOHcKwlYTwVwmw62EHwgoSsOskghIEIZHRFxkgzUf\/\/\/\/\/\/\/\/\/\/\/4fYTCRThB+HhsIbCNAdB1IWQhhYYQaChi6Cg6CBhMEDBCGCBggcKQzDqkIha8JSTmHBINErcLmcGHDC5nuHVh9zdm4OTjJDmfolD\/\/\/\/\/\/\/\/\/\/\/\/\/\/8NoIKw2F2HrDQiwoQa8WcdhYeupoIZxIgphkirvJEodIOgmHBCKLxwT3w6Chn4PhBWgrWgn2Ifw3XgiKODgwsSJ4bfJj8EQo0rCd\/hJhhYf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/8UFcOkFqHhc8bDsO4aPXmYZyFRTxk6C19QQdhYZblO9UFw6BMQkGug3h\/Dwy3MOEHSj74piEuYFULBhLCJOvOzIKZFKDCvsKGFUNBBRB92Hhu5Pw4QTwtZhhfCf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/gxCQIK2yThQqDBwVMGxfx4YIfOxOBEsBmQ2HJmobD3xsN9aqsJ+EGwWq7iDw+GoiIiIiwhBnqCk\/ThwZG4Vf6BEiO1VIvA4YWEF4R0CeHYbuwocOlpGHhsJ\/JDh4XCf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4iIiIiIbCD\/rChAgeEGEGHC1NCMHVBV6h4cJ9jBsfUpHwwYJQoYRCIwKTiZiycynjRFP4QX7YwwhxpA2wYUO8JNePw4ZcbsQnhuJx3\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/hBxM4OTHB4REnBAz4cwFNBDSI4iB4mgpPmI8jBnVkD9Lw4Zh7CXhBUFDdhbJj+sQ0GsPhIkKCLrh5qUCB7M1o3uT4T9CNwOJ7bBKjQDQwhBgiH8iYQ\/AzwVsTQQ0jEXiQjiKCIZmqCzD4pL+\/WHCDFPZUH3YS\/GH\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/QRAifEMOoeEEGHCYWkDcEH8II0pdCfsI1NBE7bSLh6JDg48LDCBgiHmQ5WFFSn2FDGHCq6w7hhI\/hvOVYc3BIPh9hmL8L3\/\/\/9fwvtF0CB4VGlImpkZP36N7RqBzdhvEJjoIU6vtRCQPCVhXBYfaCPGEF\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+EF5oXvqF+\/\/tQw39LcfCCwZCnw4X4QX4QTYUMJ5Lsp4ZhwoTULDYeExCYhRBBgwQTDCQYNeGH4IL\/YZHE9whv71pYYeGHmsf5Vifh0vEIJw4hhCIi4iKYhhUDKcrVBggwQdio4r\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/CC8IyP8IfSDMn\/mu\/\/8oEI9wyOYUjVlw\/D\/hnkmERQsNBNCIiIiIM44IGZwgZhwocMP\/0v9v\/\/\/C4XBF08IRDDUoXhBfEYMhSm6iIiI\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/hIIL6C\/5I\/S\/4YQThBWsLDrX5Arcd\/wykjDCLN4fsMP7\/9BdPk94cP30+4QT\/5RYXKF3XlCCg8OCb\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/CIaOC5DvgyOWGGYQL2m2CXhWDBL+H3+ocMOE3CwuGPwoYZPm8OEEKXDMP3BmcFwQITjrYig9NBiE7wcQgwZcuKDDBJWwUIOwsNYf+GH62FDDf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/xEREREREREQZhOQhMMj7zQCYgmolQGG2KDEEDFcLimDI5Bg110IiIioiIM6dAzAQIMEHahAwQYgooIJ\/\/\/\/\/8NuIiIiIiIhhpwuFa\/\/UMJe4Qb\/\/iGEuGRxSPF4jg1EcGguELkRyLkR4vEeMZHyPkfI8XRjI+R8j5HzCMZvCDf\/\/\/\/\/\/\/\/\/+ccTOIiZyQ4kxxERERERERERERESB4NQ5MchruQRzDmg0HHPBUHgqDjngqS0EuIiJDQOJMck4iIiIiIiIiQyAUOYczkhzOYczht\/\/\/\/4ZTlQcc0HgpynKcpzDmcpynKgJGHM7LwRnKg8GHM5hzOU5hzOSHIjmHEREREJKIiIiIiIiIiIiIiIiIiIiIlURhF0YyPkeLxHi6Loui6Loui6LxHyPkfI+R8jxeI8XiOReI8XReI8XiPF2XIjmRwyCI4HgrP\/\/\/\/\/\/\/\/\/\/\/\/\/iIiIiIiIiIiIiIiIiIiIiIiIkSRjMIui8R8jxciPF0XRiLovEeLxHi8R4ui8R4vEc5MczmHM5hzOW5G5Ick4SxERERERERERERERERERERERF\/W\/9fbpe9ff+tvy3gRKCBkljsKDBdESJ\/\/9EuDWPXBN8nQGgTwocii99f\/\/8ThHzPhQiF4hKE4I8JEEShrNrDRIYV8J9EhwaBBAi7iIMJhBFxh7CIXgZx\/\/\/\/\/\/+qCDwQOfkXPJcSyi8DigoVFu\/W7DC2K7DD74OGYcFaQSBwZqX\/\/\/\/\/\/\/1QQfcJYSroJhOIWw7FbsMLIREP4b7wwX4Vv\/\/\/\/\/\/hwg7B4XDYSwhwYZuKcNDDpckNBhSGK\/hKw4ZG5TggkFF2TgLf\/\/\/\/\/\/\/D7CDg6hv6ChE07w+NLgwkgwp6DfwsPhsJQgnhN\/\/\/\/\/\/\/yOFcEZ4TCXqHCfnjDcOs\/B+DEEGIwYhMi2KCdbEIJYbDZcYUzaf\/\/\/\/\/5b9kfZxz8FOOZ1CBmcpwoIOHDQcOFig+1EREREREREREREkbTS\/+Ii9fbpe9fffpX9b+na9b+WglBuXiPFxCOZHi8YiPkfI+R8j5hHEcSeIiIiIiIiIiQyA0DkRy3MOZynKcpynKcqD8U1ia\/\/\/\/\/ZJyNxERERERESGQhyTkhzOSHJjnHOOcc45oPBUHgqDtOvSJ8kI9m8wi6LoujGR4vEci4hHDaLxHyPmEXiPF4jxciORciOBoI\/\/\/\/\/\/\/\/\/\/4iIiIiIiIiIiIiIiIkpRpmEYyPkfI8XiOZHIuB5kcOXZciOGuXDIDWTuIiIiIiIiIidc8i6LovEeLjLiEcDw0F4jmR4uRNxoCC+XiOKR4vEcyPkfI8XReI8XjER4ui8T5hGNr\/\/\/\/\/\/\/\/\/\/\/\/URERERERG5JxEREREREREREREgeChyGByFHJjkxyFHJjmcw5xzOVBxzjnHNhUH2Ve4YluQyAyhyY5EckOTHEkOZxJOIiTHERERERERIHg2DkO5EHJjkxzjmcw5nKcqD0KNgX\/\/\/\/\/\/\/\/+EShBHHPBUFOU5UHgqDjnHPBTlQcc45xzjmcw5nMOZyIOZyDK4iTHEREREgeCsORRyTmHIo5McRLcRERERESB85CORuYczlOU5hzjn4rCoOuWdUIiIiIiIiIiIiIiIiImtIqD+ez8U5TlOVB4KcpynKg8FOYc454Kg8FOU5UHHOOcc8GHJjkGByDA5nLc0AgQmcRERM5IcijmcSB4KByKOTHJjkxxEw4iIiIiIkGhfX\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+92IiIiIiIiIiIiIiIiIiIiIiIiJ0Rpn8I8BIw7BBkfI+R8wi6MZHyPF4j5Hi8Rw5dF2XiPkfI+R4ui5EcGojkXA8MVPx1vEREQaERERERERERERERESrzCRWBkfN55F0XRdF0Yi8R4vEeLxHi8R4ui9\/\/\/\/\/\/\/\/\/\/DyURyKXFJHWKM+DkGZHi66cRERERERERERERi73r\/qmhElQgvQmGYtIQg2Gkpw2oP\/\/\/\/\/\/\/r7\/8IImQHMQ5cw\/CJ8S\/0FcJdAi9\/\/wrbYbg3egQPiQuukw3\/\/\/\/\/\/\/\/\/u3mgpILzDNcQe\/6ukHSeHhBX\/Z7MIujCMbQX\/oGEZxsQZoHNIuNTRPhah3d80P2sL6ERGao7+I5kfUNf\/\/\/\/\/\/\/\/\/\/\/\/+GHhGnzNouYc0w4Z6wSXrDu7SX6jns0ENIjir5IeEIkpWTVnKCkhiuE7\/pNpVtpaC+FmEYwv6Wn1D61CcWwdBoNDMitwww0yJdf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/67f8K6xd28LERoIL\/ELD\/6NQOXMMMFYTCeDDgiP4wiTmiorDfSDD\/Cv4JpelLcpzDnH4fvluW+2\/\/6\/w0dUYynZ1yP1wrodcQl\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/t\/H75mH+OhEQ+F2txBgw\/\/hBOF\/wmELMQIEXYIJM0i7vNxiPBTSI4pIGUI5GEFzWr3hBu6t81VJcES78w7\/DhVVJwoYea0XX+mH+qDUn+gYaR+iC+ObGEJx2CBhDClFhhggeei5HhmcbMjiGaPRpAinZ7TOEEGF\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/1fXD38E3+eXhL\/4e3hCD\/iv7sLCwgsILgqCCk6IGGGEZ01IZc4VLCN2GbFN3E8Qg9KMuroEW5HzPRmIT5gg18MeSFDavCCS\/h\/8K64X4tnW+YR\/r9J8MPgyPmBwggusIKGEocL0g8IMIMPDBAww4YeDQxEEaQaSCNMqYM2YT\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4STTYXT0oe2u\/7fQQXDwx\/\/\/V\/4r8RBfhesP4QTe\/+EFhBYQUKZyQ69tKHCDCqw2w2GGR8Emy6BYYUObESfv0FDS14W8NJcOSPwgrnHhv9r5i\/cO94QXX\/tf4YbaUPv0vqGG\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/WmmIggxEp0wRHFie77\/4bBYqy6LouXhwr8NfDD4oJe6\/+n3DI4cMNtfCC9PheEEGIXTXthBN+EuIiIieQMpwhxEGcSC2IKCiIhYdkUcF7Bggv+\/1\/\/cILhIqDwCCC9CGGH9cPww\/vNh9L9w3\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4iIiIUiCEGVBxzjSBiFwoggguDr\/2\/\/SDDXERDD+YczlPCCpfw+EF+mjDmgPb+EoX0IiIiInRCMFdfTZpeH\/wtYQQYYQWInoMO3fhBcMOH7EIYWl1D6\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/hCI9h1vSwggvh8P5RQ\/CC\/0+H4QQRo\/Jjr773Ddh1QV8MMEEGGl\/DCCCwgwwgg8V+qVP\/pXC4\/aDD9Ql\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/rdh6DxBMQqoO2CQZG+DBIIJ8MNsK3rC\/CCDDh\/wl0oT3+hEREREMGXQROBBHWLoPCShBicek8KGHww6f4MwJD+FDUNf\/\/\/\/\/\/\/\/\/\/\/9WIhhCIjiIiIiOMJBWwdIvAZ5W4Mw6hOE\/dBB4iIiLBiIiIiNf\/\/1hhUkG8I0Ai7CDKoThL\/\/9hotynKcw8hcU90LBKG6tCIj52KVWLhL\/\/\/197pb+TBnWU4te2w1\/\/\/\/wsgwcEQ\/wQPMwhnEcU2KSBnUwn0kE8Pk+YRuwzZ4RMcOJx2jDsEGfB4dJvX\/\/\/\/\/\/\/9l0XRj3SB1BvQI0oQMQgeb3J8wwVtYbwmIiDhbpsL96DWEEGHCfW1CX\/\/\/\/\/\/\/8NF4VAXi+H++EH\/9qnv0I+UQLhBqEF8MLX\/dqGv\/\/\/\/\/\/\/4X4IUkHeP4aBkcwv602E8P8EY7b8M3FQvDCiIX7S1X\/\/\/\/\/\/\/\/\/6hBYQQjwgrOM7ptqG8L\/ScOoYfD7oOrSThL\/\/\/\/\/\/\/h2cR7X7wr5peGHlCsL2632It\/I4dAy5bBkfC+EEGGF\/St5x1\/\/\/\/\/\/\/\/8IREGalnszhUDEQTiHYrDsG2ksXhiIiIiIiIhhU71\/\/4prfhNNpf\/8O0nvpOs46\/\/4TabxeGk0tf\/7q34Sulf\/8PV5x13+L\/\/hK61h2r\/\/+1p+Ertf\/8PVeFfJyIeYRrRdEIGCSoleYT\/\/\/\/\/4YSuCBoSOYg5rPDhkVDOTS7w9Zvc1Rph4sMlNsxAetf\/\/\/\/\/hBPpBhhBbeH9IOHb4Yav4dL8kIuvdsKl\/\/\/\/\/\/+EFrCwo\/CNA5nEcHCmg1U0FIZGtU6y3xBh+PmDSwqN4cTcEHBFwD3RoBgiY5FoRB2r\/\/\/\/\/\/\/\/\/5bmociRnmd\/EeLoui6CCdwgogwgswi6Sw8FhBUaJtIII00EZwRp34IH5CziIiDDDVamnJA4iLGE1hhhBQ1CCq2tLX\/\/\/\/\/\/\/\/\/\/k6YVB5IdBBcILTZ1OY+GuEFWxri3u60Ew4dhYIQw9hggQhw3hgzQL4Yd6Lg45x+HX03\/\/\/\/\/\/\/\/\/\/\/yfI95Qyn+wgnUEChvucIj5i8KhtCJ6wgzwfpqFoQQkX+CBlAcEQ+kp44zMZRGyPGHUhg5E4zsIEFML1lI+GEzAXw4ItysfaoP\/\/\/\/\/\/\/\/\/\/\/\/\/\/wqJRhVLcOU8NVFAgcRBhB6IZwIMJ9GqhQ\/cL+EH\/hBULQWnfwgbh2EgbCDPNgrkx4RKA5HBEdhhbJ8Hho7ocJW\/9L3w9f4QSYYVqv\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/hwlXwuF8hxzTdA20GgcLqTnCHYYRBfgYJMGCWeQKGGFXCCDN5PXbeGHUNXeFDsH6uo8YSQQdBQsO72SNhhtQzDmcoeDEIMjcKIgpCO+DDDsu+tLBNvVAiP\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/hwsL2GR9flwZ1w9h+FXDmYRBHjNmTxoKaI9Agyc4QiIiIiDKAwUIGIIunbBhSJcMiD22OF4aCpCP8R4Wgvh68OHdoNODUJgiHXCgxEREREkYgypapf\/\/\/\/\/\/\/\/\/\/\/DZIP2Hcuiw+Hp+G4YW+ESfCoPCCDjpcRd\/wkC\/FwuFtXhKFddIG+\/RK3gwgifBuq\/\/\/\/\/\/\/\/\/\/\/\/sNBBg76YZ\/UzLqEw9Bv6sKHC4dYShB5IuttXYUMeYwlCvMDYcLuHhKEg6DndlChwvhWw\/4WofVB\/\/\/\/\/\/\/\/\/\/\/\/\/yHDEQkHhiCDFBg\/gwV4VhTQQ6DKgMEVjkdrGYRdQ148NfDI4mMLhO8t+wZxzjpgqZMdAwQTw4MQSD+Gi4BgiQ4aLQGroRIhczcbv8MJ8KJn\/UPQUREREREREGccEwTTQYQQIoUEDdNuMxD9BcusKg2oRKv26cP\/\/\/\/\/\/\/\/\/\/xERELwwgsIKGlsPdhhLh34fJf9BNMLr4YahzyOR87JfKdYfVSPmBGGebCpimGeuDYYWGqRH\/\/\/\/\/\/\/\/\/\/\/\/w9fvxCBBAkejwIaBTSI4hOKTieaPhMRBRSDDfH9pZ\/OkRdERG52OFb\/SuCRqPCJdRuYTOMESdow5xw\/CGw0QROFCCUIMILImCFrhBhBaoL\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/0veusNBhhBAww0DDggYYQQg3hBI31EREQZiEGgaheHHdh\/Ct+lhBXhcQgvS8PgoQQfERFh\/C1QX\/\/\/\/\/\/\/\/\/\/4cMWl9\/WH4YXxShxX6+EHuw4VksTfv94QWfBw\/2FluW7\/heei4zAgcjimlmgqaC\/\/\/\/\/\/\/\/\/\/\/\/\/x\/tL2sMPREHC\/joT18KG\/DMDMZHMITjsILRrBtMP\/Cf9PhYRqBhBezgf+HrUI0hDhgjRQ8IIOgi6QX\/\/\/\/\/\/\/\/\/\/\/\/4c9wsLhfrCD8MIMP14fvC71+GGF7bDhwthQ\/DhYYfhheEGEFuT7ZQsP6sP98LhB6WrC\/\/\/\/\/\/\/\/\/\/\/\/\/\/hmCg0gbXwnhB\/hh9rhcKH9f0sPhheHdYcGJThMQogtisMKFDI4UL4IIMGCWHhheF+3hBNhB+EHsP\/\/\/\/\/\/\/\/\/\/\/\/woiJA4Tqh2fxP8MKEGKYgvY4UN+knDDSDC4QYSrxEREREREQZ25WHp1bahBYQfDCvC\/\/\/\/\/\/xWE66WGHwt9WH9hhgzZbeFhfe6C\/\/\/\/\/8PrFUlhjDDwwwSWHCwoRrQiJPkfhB2SblVhf\/\/\/8OGIiIiqD\/tv\/\/vCSQUOsN4f\/4UzBCFI7qRdQoSsLzUJFIZ3QHOxrhw3Qf\/\/\/+Dh5qAypJeErC1twgSDw\/hug\/\/\/\/8NwoYQcJv4WsKFCDDm4ojebg5HIkBSGSVEPC8OE2w\/\/\/\/\/\/\/8ML+MJlxpmYJiaBDOI4iZ7MR4J8M8DkEkCQXCD\/k6I0U1IRKYeETsOJobSGEScPhc0wewbD\/\/\/\/\/\/\/\/\/\/wwv4Ij4WGEEEGGvhA7BOHgoIH4cLBh9IKHCD\/sPiGF+lahh8JJv4eG9Yf\/\/\/\/\/\/\/\/\/hQwvw4QWCDCC\/2sLQpcKFvuwuEH+Fh58HDD\/I5gq4fNWE+HD85E8ciOeXGUBDTMEqD\/\/\/\/\/\/\/\/\/\/\/\/\/DCCC+gwmwROn8p1ZdmL\/Jwf\/\/jhkfI5hE4DiU4NuU\/QQf9hBpQggvwtCPhdF0fChcP5dAhBuEadH5KIX\/\/\/\/\/\/\/\/\/\/\/\/hsOlhaD\/D9v8KH6+HDwwva+rhbsOFCmEXHrYUL4QXDSyew\/6\/Cwg\/XxX1QX\/\/\/\/\/\/\/\/\/\/\/\/+GImHQYhUGRuChmBAw8GwQTaX\/\/ChwoX6hhmiBL3h9nVmcrIZVDQIQYlc4UIMUGIWFvswJw4UP\/fNiF36sL\/\/\/\/\/\/\/\/\/\/\/\/xEREREREGYYTDjDdifr8P\/\/mounQfEREREeFr\/hBJX2sER\/\/\/\/\/\/+oUPpvdfVduEsNw4WCC1V\/p9KIX\/\/\/\/\/heHFQwXg0sJ4d2H4WyY5eolQnQ5CRoKqC\/\/\/\/\/+HCERESMwZjnuLsP8MREVQX\/9QoTw9w4asL\/\/M0XiPQoToPQQiRCszIShhBrKcL\/\/+5iA8MIMJuIfwb4YQaBML\/\/+vwoYTBoPfDNxpHsw8wRIEKEYIMIKlC\/\/\/\/\/\/w+GHFROOGgYQgwgww3gi9w\/hBTUBA2EamT+GFCWIX\/\/\/\/\/0F8MPhBh14YeEG\/v8IL8cMLCDDCWCL3\/\/\/\/\/1\/D\/J8FC4YW3ELeFwwq88IR74YVKH\/\/\/\/\/\/wsIO\/CNT4QQYbwv\/C\/S\/DDhLBF7\/\/\/\/\/\/Dgl\/D2\/wggrxC0EGR4uPQfhBJfh4a\/\/\/\/\/\/9xEwYhUGNiHhQgwwm\/iDJ9wjQTILcrIcMKEFS\/\/\/\/\/+hERERERDDDv7CCC\/\/\/hw6+goV\/\/+ww9P0EEHaC\/\/3hVD\/3\/\/5A8M1yGwck5Ic0HgpyoOOfzwUbpIdeiDOOIiIiIiIkDw45CjknJDkKOZzDmcw5xzOU5TlQc511WFb\/\/\/\/\/\/\/9iTHM5bluSHIEOIiIiIiIiIiQPCDkKOSckOTHJjmcw5nMOcc454Kg9CthOlxE9k+GVx7QR7OOcc45xzORuYcgeCgcziIiIiIiIiIkDwcck8O\/\/\/\/\/\/\/\/iIiIiIiIiIM5BUHgqDjnHPBTmHM5hyY5JyDOOSckOIwqhYiIiIiIiIiIkZmEYzCMZHyPkeLxHi7LkRw0EcDwbdw\/\/\/\/\/\/4iIiIiIiInajMIui6LwZBsHJjknJDkxyY5nMOZzDmcw5xzjngqDjnHO3G4QIuoiIiEQyxyKOIiIiIiIiIiIiQPFchnchHMOScw5JzDmcpynKcqZUHOfapDH\/\/\/\/\/\/+GYczmHJjiZxIdy3II4iSHEREREREREhrDkMOQwOTHJjknLcw5nKcpynIcc45nMOeCnKcqDyVcRERlaWpVEEeCoPBUHgrCnKcqDjmcpzDkM0ciOSHM5TmHM5hyKOZzDkxxESIOIiIiIiJG4iIiIiQPQ5EckOScw5nMOZynKcqDwUS\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/ERERERERERERERERERERIeYRjN5hGM3mEYzER8j5HyPF0XiPkfI8XGXjCLoui8R4ujGR4ui6LkYIjmR8jkXDJBTI9ERERERERERERERERERERERET+dUcI3n8wi6MZhF0XiORciPF4jxeMIxmEXiPkcyPF4jxdl2XA8Nhcf\/\/\/\/\/\/\/\/\/+ItiIiIiIiIiIiIiIiInsp0YzCORHIuRHi8R4ujiMZHyORdy3NTI8kIiIiIiIiIiP+CEGZWKR4unovCnDKqRU3EQZXG5f\/\/8XD4ZblPK6QHbhINhKgkJ40DS\/\/\/hOaGR4ojZkfQIjxQy6OsE8OESn+KEHEcQYQhgiF4GHCmgh+OM8IdBkjPnQNllMwr\/\/\/\/\/\/\/4RPskOcd0i3Kdp4UNhYYVAwgcQfmkXRIz+TmfM6shECBmVhha7DhCHYIJC8vgwZhkJIvAYYoIn1FuYcORYoIUJLmXIwC6BggZoZHEknMOySEVI4Mrkrf\/\/\/\/\/\/\/\/\/\/\/\/\/3QQfYYcMLCXYbUK4RKgTDCQ3CbwiTuIUYQaGkIf2Tgp2CIJQlZPYIdc01oJ0ggmK44QlOEGuoY4eg\/BA8EY5LiVuTtslgcKGwtBCDhOFkwRNA0FQTf\/\/\/\/\/\/\/\/\/\/\/\/\/\/7DsNWww0Th+oYTBHHhuREYeF62hhYdQ0k2Fc0EJ4wKCBmgp1a+iXB4Pws80qCOj7qEEwRJynBF6FYZhgiwkGQ\/BPhrEFQXC4VvVCEDiDQYIGCIewfmghnGzPDOopDzZhBA+NSQuEFf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/2H0ErQYaoXh4WTqgwbDWFeSYJ\/xreiQ9EblPYUnEL+CDtBAgYIGCEHXmaM0Zuzog0ww6w2EmD6cJwkU4WaVWGw5LlwofDIeERY\/+9YQRm2hcNIIHk+YMEw+SfEOXgaI3+OEHEMEDPBzSMCBSDyPIIKSCIRN\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/7ELQVoINQ4hhsLYao+YUngf8JOmi5+H1LrhvrW4TQTQXqFSBuRzTwQNhlzf4TDSoehBw0DBAzQGEoZhzOgxBF1sODDkfCM4UQsLBgguGFsJQg3hf4UO9wl8N6YYrjxULgrELDCWgvDJdYQRLA2SgMOEH6B2\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/sUEEzQhpBXEUEGDJDpg9isMQgY4YUMjdYS+FsM9LerraCNAf4UMF5EOngiPcP4XVA3g4RBji+wgZqFzyXViIiIg0DKLhDhwZnCDCoMFhqIJi3\/jYQayGbq9Q0RwwvLED5BO8ewvCUP9IN+G2HYS8O3\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/iIiIiImrEQYUixX8MKGEw2uwkFwoLD7y651C+GtB+G4QbQUNhBKSg44WFQQXh1pREGCFoWhBgkEGocLVhhuHQazS0H5Ll4TpyGvCTDCUOFD6EQhww+97\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+IiIixQYMFUJMKwmwwXhQzzyiw2s46vQPDhtBXw1DYeScpzDphBfDWsPFPaBxxXsVhOsIKLw2EsKFh0woThIKHERQYfwm7f\/\/\/\/\/\/\/\/\/\/\/\/sijggYKEGmHhhQeHwxsUGuGCC8NQrh1hv4QS0FSpREREMI0wZtbskhMFCC0xT9uHDBgsIJeeOGGw3hvf\/\/\/\/\/\/\/\/\/\/xERERE1YgypEJfQYQOISDvY4XFBKliIMpyqkGFTCBoGmEGg4YJhwbCu3\/\/\/\/\/\/xEREREREGVqCaJER8NOsREREW\/Sv639O1638rrBF4jxeKSWGIiwmVNnY3HSb\/\/yuaM4g0FQMJk0NKwxChpw+digzoMp46xdGtF0\/\/\/\/\/8Ip4NkjuH4QMIGgwQgwQgzqRQISBnUzUi6KTToMEQvgigQ0ZgUJGBkgQkZ5nU8LycBovA4SJDhhBqCYIGCBoQe1\/\/\/\/\/\/\/\/\/\/sJFvDBhEnBsWGIaBoQYIh6y3Yc8Z8jjLjODzBEMjojkgn3PBIQOi+8vA5eUSHYINSbFgbCoZVNfR+CUEDolwcvmET7IRw5MewyOfh4iU4cWCBgoL2EC4dBuhChJwkw4QMOXzHhoGdgZkhv\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+oWiPh1twfD7DkvoIGGuFwslauSwOTHDjChxyQxCQVGj2HwlhLIhAyoJCQXBwyZGnYfHfoIKEgkgrhdB2EGw\/UIMIHptBGbklJcJ+y7C4PQ\/\/jSD+FnZmzUZGbX\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/8KIIj4Sy4Rw2Gw3h3woVBvqG\/C4f\/okDwQUQcJx0F34Ss12T8LYcIEDNA6ZICk4hQCHUzRl4jx0jUZSJayY5n4eJh0vX6wgxbwwrCC+H\/CwrvQayThquCWGth9AiEmECIXyY5EoGRxSQITxwjq7QUMIOwqoMKChCMKCBhTWIaAuZjJEXZeJES6Nc3\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/74iIWYZCX\/wwkguoYa\/hcb1gw4TDzxVggV4T18IOGmGINCwgcQYIGGHDNmaM4zApsswRDIiFJ8wifhnhAiWAwiUOTHPC5MdaLd0EwgwiD8IsEQmoYIhEEJOXGaC1hB7UN\/hJ+TMBhi1CfhYbhEnMOl6fB6DhcFBh9cJBWiV2FLyERYslgaLg4+RR2EGESdwr4nHEOLQMzgVBcLlO6hUHhCKMPhCfChI+ei8DDKcqDjhSY+W5boIPCDhxoH\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+8M\/hczsJBMJYbXDqzPf3DWocRw3YbcN\/w0E+G9h9Qg2gwkw4QOlhRDcIzcnz+HXCkUc47kRwwg2Ib4whBpBMOE\/3+PuIiGkEZtxFEunwqJWwid2Scp0ESh1DBgodhgrDQQaDbDCXCzRMKKUNa3hfCVG4KpQv0LCBXhLQX\/C8NQ96h1oLp4Qb2g4h5P2i5tAl1sVVB4QVKVBoJBYcIIJUlBXM4UIOgg2kIoEH\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/YcYWISGFChiFw4MjkgwbYQJ1\/5nOGwsMPhB4fZFHoEdT\/\/whw0MK7+\/\/w3CVIKF4f2bYdhhahbyHRDcMjmHhmLCVqHvvFh0\/9Q4lOgcGTHUuCY6Dhqn2NhKGO8LEExqwahsEuwlYUQwQXrW8Jcij4T+gvUPx4bW7YcPhf+oJBP9A6CUQYWIP8JDyH9eK8O22F\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+IiLiIiIiDM4LGR4Cqg1JjoMLiFHhjiuQYuoYMIIOCXhhC6JJ6sNdwv\/DrQULh4Q14QbDQJas04QWzc+SgGEvhBKDDcMOEuFIYT6iIiIiIiIgwQMtwTsIGF4YhMUx\/oNhBWErC0F8sCsQvh\/9Nbmo7BBbjqHEOHhGh\/qggifwsIL7Dwv\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/QiIidcQyoPBThAwQYQYJBeZ0KGfrWFD2H+F\/hPwsMut64SCXsOguF4WH8EhsNMOECCCrJc0tiIiIiPsGC4YMFgwWGobBBe5nWHsLrw\/es3YbRetBLEGw\/hoIL0EEHCaChpBqE+EC\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/9\/DELioreK+On1f7CWZyUHrhKkHnt5G9BB3+woUECw1UIECthpwwQURFmcE0DLcIM0AoLBhYSDC8Maw+Njtwkw0EGwV9NBCwjBYVfDVcF3cMIFoJp0C\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/EREQoiIiIMpwQcNMiwuFUmOEGCaDHGEpBeYqGEqDhLYaCCV6CQZDOvD\/qgglxERERERERggaDw9jDseGK4hOFI4thNhgkEEgmGEgnoL\/\/\/\/\/\/\/\/\/xESMzCBmHBAwQWCDCZMcLB1iwxBRChhECOB4cLILm+uIiIiIg9KzOCoMpzDmdA0DQfDEKK\/\/\/\/\/\/8OIiIiIiIiIgynTIo4KYczmHxLKNoRQIRER\/F5aFQELiEci5EeLxHCkfI5keLsxmEXRdGNP\/\/\/\/\/+RuIiIiScREREREgeBgchRyGdy3KcpyoPBUGg\/FNcdYiSHERERERESB4OOScw5nMOZzDmcw5nMOcc8GgpynKcpynMOfisKwpqEf\/\/\/\/\/\/\/\/5KCnKg8FQeCoOOcczmHM4SLcw5MchRzOQVRzjmctyEchxxEREREREREREREREhrjkGByKORRyDjknJDknJDkxyY5nMOdmmfCERERERERERERET2fwjwVgSKcqD2cc45TlQcc8GHERERERERGn\/\/\/\/\/\/wxERERERERETtTRjMIui8R4vEeLsvEeLxHBqI4ZANjWEIiIiIiIiJ3rmEXRjI+R8j5HzCLovEeLxHMjmR4uBcm41F4jxdl4jxHyPGIxmEaZ5L\/\/\/\/\/\/\/\/\/\/\/DERERERERERElzQiIiIiIiJDXHJjkxzOW5DA5nMOcck5EHM5hzwU5UHgpysKXI9ZA8NQcRERKckOIiIiIiIiIkCwch3JDknI3MOZzDmcty3MOZynKcpyplQeCqHSP\/\/\/\/\/\/\/\/\/hOyTkhyY5hzOW5G5DLHIUcmOZxJOIkMocmOQPDNcSKOIiIiIiIiIiIiIkG7luYcmOQo5Mck5hzOU5TlOVB4KNgcNUhERERJ8MJAgjjngEEbjwVBxzwU5TmHOOcczlOU5TiJxzOYcmOTHJjmcw5BQOSckOTHM4iSckOScgeCoORHMOZxERM4iccRERERIHhruVBoPBS4H\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/dhCIiIiIiIiIiIiIiIiIiJ5HsMJAgVngpBUII8BIw6CNBxzjnHOOcc45nKcw5nKcw5nMORRyY5EchxzOW4iIiJBnciDkFA5Ahy3LcRESHXGaoMRERERERERERERERERERERBns\/ErOOaDwVMpyoOOcc45xzjnHM5TlQcc457PBTlOYcg45nMOJTlOJxzOaDDiZzDmcRH\/\/\/\/\/\/\/\/\/\/\/\/\/+EE+IuIiIiIiIiIiIiIiIiJ\/lYCCBEfCBIrAQLCSCOOcc45xzwYc45nKcpzDkx8MNXURERERERERERERERB\/\/\/VvhBPpX\/+GGrvBfVOH\/\/v0uEu7\/\/w914QTq\/\/+W8RdhhrqsEIMlpE8EFu2\/\/\/4ImOZzDg20GdlREfIOLoMPVLxQQhow\/OzUghghDC+6\/\/\/\/+i3CKBsVC5McJBHiDCfV4Qbpww8QdEf4ZgNhuV2\/\/\/\/\/\/5nChmqagiPhUSHsxEKDMOSgLOxpHegfVJBUMMp5IDpxkMUlxw4QYaDwwhBoROw0CIQuQpyIMIjke9DlhB1y8hhsJWRpbsP\/\/\/\/\/\/\/\/\/\/Zx0IgiQ7ahAiGNCGPJODCDhAiCOU8vE4UqIINQoRphouKLgOYgMmIlQQoCSI5HscpyqytpWDhwZ2Jhs16HZdFxpw0U8Iij4wwmGERRxEaBmhAoYWdhB+ECBsIEDeGw81hzQGGUQGCEGCITU2hE2jDDw5AwVkSWt1\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/CJjoaZx0womsOEjDuRHhKwxJOEFjh5DjkRxTxEhl1pP\/h3ChBA4QQNhBg2EaYYRu4RJ3yL5nYWFDSYSvgiP2DBoWgwjOEDaQwwaFPBggZhwRdIkOeHCCCfYngSoYQhlXdnL\/Cwz8XlOkkmrUL28MMFQIGHwhhwhkhzjnHOOwmg21\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/46CtcdBBBw3XMOmMcQYctzDoj4Ya6CBgtG9\/t4YeGHh0IODPBd6HhmhHVF0lpYLW4YYPDbETw5FkMmw2GJJgiP4Ij6hlPThIFYeU8LCDx18QhEIL+gwwgg4f6S0vwjTbBTY\/8OCBhCD\/bJF6hBWSBA5WkXknDCwynKctyhwUI70zUZMZBAR0P\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+4UbUNhhwojhBw+wgtw\/tfwwsLH3\/30gYf5u+bmjWGP\/\/4IGEEaEeIkECEGTmedqdCCDIzxFxEVBAyXEIYstzDgzuvIJEcyPpvhsNtPQh\/C+t0gvr\/8PfX8fCC\/wQOHhBA4QQP\/QQTcKG6Dh\/DCdgtOCIJQGThzpHmUCQvRvYRuBgiY4Ij1CDBkCiViHwYCESQIininSBEf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/wQSMOmoUw5n9VfcXhh\/\/DI8C\/r\/hfDv4QnsOF8PtL79hwl4XDhIMMdqEGoIHBhBhA2HnZcXDDw8IQw8HwRfMMjcp3MQGpDCk4hT51ZdR5TzUKDDYtOHFBGg45xwoIug2gZHyP7+2EFr+hDI8H\/C\/58PhTiT+CD\/WohQgv9Qw3CIvsMP6CItwrQSt4YQhJrkiPIwR4yGKjDwgtLS+H0GGI1g26N7ReBqCMOgg3\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/9sMJUmthCIjGFiI15nNBTlOYdJBh7v7MK\/bDthBcIERY8RXh28Kh0CBBh9fhBcLCCw6cIG5EJiEiXwZJBHmGERRzQH\/E45EcGi3Yh\/PW3t4c0GFJBfCD6YQUMIE2FxBtBYYVhacJB5QWETHIYcP4hCIjhBev19YQX+jH8wFwv8tynKgLBBBe9L+g8PuvquHhIGwyMgIV\/hAwRpBAgYbj\/\/CwQNFODBAiOYQWEgsM0I6lWGF5mIEEHYf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4MER8FgwgmqI+wi6NDDD4IurMZhGMK8EXQYfv\/2UL1\/w6\/\/h\/hUIi6Nr\/vh6YQcLcIJLhQYQQcPCcKk3C8Jek2uPwuHzfGCCNP\/hwjOR0M4+HQYZIqhrQknLcw60YegRHrDGnChRqIiDaxwihuHVfwwwu3h0vChLXDDNE6X6tpmmEF1QYdcLjh+HgyPoPkcHHOP8IP6w7D8P\/4QXhB\/hAgw\/Bla219I0kj4o6f3sL\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/BoIWGIpiochHBMhR8Nr+DCDUK4vwmKDhiEZuMMGXKILC+EHe2lDCBZpOqWt\/C1cMLwsRh6ET4sg4\/4YfCr+H\/wS8ML7H6h9BBfCwgg8JretB2JnMMJjknCThAxwQIUGDQXhg2IWHERE6IQZTgmgZhwQMMj4YTIkQw2IIMQoZHFjDDX9vp4TD6RGgqgeGGlIZ3CCt8XCUOFjhfCC8egvCDqE0C6+nXhX7Cpwlvf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/wZxxgxBAg2CYcw4IGIWEHDwgwwWFERERERBnTsGZIZ0DEwQh6hBBiFILzEK4MjkoYfj\/yQOlyLBhyY6h4QUKQXcOH8P5hWCBeHuGp8Px7S\/p9AlUPShIKIlIhEQZh0GYc46BlOEGVEMp7BEfBme74iIiIgzpzFynKcpynBMzgg4YgsIIK8Lb3h3whEYTwww5LYj\/+4QLrwuCJTD5oKcpynCDp+Fy4fdBftw2H\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/iIiIiIiIiIMEDPAIQ4iIiIiIjwzQJmhQ+IScKv8MIL6\/+T6pd6QcLBfiIiFoIIPCx1BGIe\/oKIiF4qGsLpzQu0EGGaMPhfYT\/7rhBOl\/Cwgtww\/C\/uEE4QS1CYf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/h4QYQYoPhlvDDBdjwgwg4ah2zMaDr\/gwRT+GU9e3CwS4b2aXCS0g5I8E0v7hrCsMJMILxxWlBggoQbBIIKHXjCD0GIbyDHQxCDBgoQhYKsNLC+EFDUPQQX4cIKCI\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/rIMKF+wuRBwmK2IQYcg4+EIiIiGVx4ChMzgmIIMw5xyYZEzYMQgawxWCCh+Hrh8fxZJwgcGmccEGCDxIUdBhdBQbhiIiIiIiRmIMMGcweAoQRnKcpynCBkh0yI+QY4kP8EcdML\/\/\/\/\/\/\/\/\/\/\/\/\/8PiIiIgzDoSLozQgwQcGFCoj+IiIiIiIiIM\/wysKcrQJAhBxQcLiIizlhnBCDjKeKiIiIsL\/\/\/ww8REYhNoOEFChpML\/\/h7oOGHwlYX\/4QXDbX8JKH\/+HhQ3YULDhKg\/\/\/htwv6TD\/\/+E6C8KGsP\/8PDhXCheG0w\/\/4ZHyPeqCxEgbjkM0cg45MczmHPBhzjngqD2c3KcJth\/\/\/\/\/\/hiIiIiIiIkDxHLcw5MczluYc0HgqDwVMpuJ4aSChCIiIiIiIkDwLuQ45nLcw5xzjmcpyoP55VYXD\/\/\/\/\/8s4hGMj5hGMwjGbyPmEXRdF0Yi6Loui8RxC8RwPZHAzBy4bCPF4jxdF0YzCCChtwURERERERERERERILmiPaKg9nc8FOU5UHgpzDkMOIiIiIiGFSg\/\/\/\/\/\/8RERERERERO1aOI4i6LoxmEYzCMReI8XiOB4GCOB4NgYTvERERERERESoR7MIxF0XiPkfI+R4uGrBl0XiPmEbyPmEcSaC\/\/\/\/\/\/\/8RERERERiIiIiJA8FccijnHOOcc457OOeClxVQ5aFIUjhqF4j5HIvEeLoxm8IREREREgeDA5EcgjmHIo5JzDkxzjnHOOeCoPZzRsL\/\/\/\/\/\/\/\/\/iIiIiIkNMchRyTkQcgWDmcw5oOzfOOcczkHctyGq5hyY5MczkQcmOZxEtxERERERERlwVSOZHi6Loui6Lo9m9B5DTHIZo4iIiIiQVxyB4QczkbmHM5hzsxZKg8FOVBxzjmcgsDknLcjcw5Mck5EHESBcck5biIiIiIkNpyDS5Tmgw5nMOcc45y4X\/\/\/\/\/\/\/\/\/\/\/\/+GWkhlQeDDmcw4SMOQy3JDmcjcw5MciOSHM5DUHEREREhqOQjkDwy3MOcc454Kg\/FMxB6FaFYVB4Kg8FQcc45xzOYch3IarkMsciOYczmHJjiIiQwORHERERERDhRERERERERERBnIKwqDjngpwkVB4KgpynMOSchquYcREREREg2M00uHhIqGYzCMZHzCMZHyPkfI8XiPF4jxdFwXLjLsuy4Quy4Hh\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/xERERERERERJQjGR8j5Hi6LxHi8R4vEcQuGSGvQiIiIiIiIiIiIiIiez+EcdBG49nHOOcczmHM5TmHIZo4ehERERERETsaRQjGYRjI+R8wy4IXiPkcyOB7cREREREREREf\/\/\/\/+xERERERESZETcbDBHi8R4jmR4vEfI+R8j5hF0YyPmEXiPF4jxeI8XiPF4j5hF0Y04cMMIRERERERERERERERERESGo5hzjnHOOcc454KcpynKcpynKcpynKcqDjngpzDnHM5hzwU5UH88g1\/\/\/\/\/\/\/\/\/\/\/4XDI3IHhqDiIiIiIiIiIiIiIiIiIiIkFhzDmcpynKcpyoPBUHgrjwU5UHgrjjnHPz4QQSIpmEXRdF0XRdF4jxeI+R8j5HzCLoui8R5GHOOZxEREREREREREREgeG7mHM5TmHPBTlQfioOOZzDmcpym5J\/\/\/\/\/\/\/\/\/\/\/\/\/\/DDDCEREREREREREREREmaMZhF0YyPmEYyPkfI+R4vEeLxHi6Louy5EcGguELiEcyOC2KXiOReI+R4vEeLxHi8R78MREREREREREREREREp0cRdmMj5HyPFyI5keLiEci5EcQwDkcyPFyI8XZeI8XDIDS\/\/\/\/\/\/\/\/\/yBRHi6LoxkfMIIKEItCIiIiIiDQiIiIgz8VhVDwVBxzOaDDnHOOcc45DDmHM5hzOYcmOQccgQ4WjVkcyPiIiIszLYYQaaiIiIiIiIiIiIiIk+bwjQcc8FP\/\/\/\/\/+0EI0FDCpxEREYfNMbDCybDwTThf\/\/9CgQQYQZbjIvQg01w2aYJBhBhEpjGdi6QIEJEGjjAlYf\/\/\/\/4UQgQQYVIEEJ2sQiO6C5LUgg4YYQSBFxnYmhIIlWH\/\/\/\/+EhCCCCSEzRUYSO1ON4nFBF03ClcyLEMPCCFeEIwytSX\/\/\/\/ldaDB28SuJREiomiCCDDBQglhm8qiClIioCv5eMLhO7IojWi6GGEFOOsKEEJBcQ5vI+CDngp2n\/\/\/\/\/\/\/\/\/4SJzD9eQKEEhO\/RCIugwgw0+EGGbyOKgi6MYVCS0BgovXD4Xg+gRScFDCWEGEECKdINIqEEEJ5F0dZpBIJngGXQQQxw\/\/\/\/\/\/\/\/\/\/\/wghNBlCPESDDk+R8l1kPnHfYIEKK2LFEHNzAUPhAwggZDOR6n1MpIRBEKRhuIsn5khxzj4WDCDCENDQkplvz4WKzQQ0yPmGZxqqCQSOxEIZRurhhBIJBUEXQd0ECBEfsk4\/YQShxKEhH\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/hg0XgMMlbCJPCJPjhSTg5nB6LcNCIkdCH2ps1pBKduoRQhzoC52eCqORCISmHEjwIHCUJBUEEcZdQkqCmiwZTvshSEwRH4QdI+aBMOSiKBPDMWEm2ScpyN64JCECILjDCQeDsmcRYihhwgRH\/KFxPYIuRHMMOwSCDQSB0EowuISI+EJTr\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/yuaBMOEthB6DcIaHugwgehoGHL4PBAsiqsiIj8JBBZEHhfhhUEgsKIVghBiEDKRBlOFB0EEgoIj4eFYMZB3LfCCBkcyPh3ULYS7hPYruwgl0EEohg8cJEu+WQGPDhB4dEfon4IjyZTmISBAmiPtQkhsILSI+jDw\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/7hhIJbWg4QNPkIXDh5QE+H9hhkeMCke4J8MwZoX\/wwqBIJBLhoJEfQQZWo1aEJe3GPDhIRrsIIMEEe1QMh6oYo+KRy4XHiIjZA6GuyLBRuUfNBCQM6DKGciQiiJdYbhdu6CsEaG51hNMPC0CI90R9Ai6wv\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/ldYOw2E\/DDxGykFhMzuCB+GslB44MGa0HEIEzgzm42HqEwQMEDChMEGbDmbBB58OFhnxDSOEeZ1Pqtn4rqQYeHM0ITh2CBAmXRQtBIKHYfhKg07hayNuHGgl9hBoRpojmOIjChwkSsOXgcuIcPw4xQcOEgcZHDmYcOE08RwgoXiGCCChggQYYQdEfaI+CKcIGv\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/DaCs4WsNbPHlOYSw1WgoSDC2Ibh8UEFhIHCgw9hwkXzkdZfZOHDCJ9kUcSY\/ChpoMqhnKpOVQ4eZ0GDOYggRH2DQQcOCQ\/ZCjpiCC8iOEwa4b4V2FYcNw2ePqF3V41hesPWNsNhQuEDBBhhE+eEiOr6CQYxBlJ4wbQIKScqAhDCLwQKEU9BkfBAiPv\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4MJQwg7gwyOYYgqg0FDaYr0FDBBUEEzMgVl0x8YfC5jCwoYa0GMOoXsPDh2c8p0EHYMJMMMGIMugkEEsGUQgxEIUwsRERDKCFaQYgoQeTHPDQUJhsVdCXQXD14UN8R7IdOw8IoCcN9Q8GEiPighBknNQGaQKDDhEoxEMNowi8EELQf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/ERERJCERDCBmcKjqiTY\/Dk6smn8KSHPAIusMOozwMeqGFDIa+sSWqEDJQCFsugkR8RiLULERGxgg\/CD588LrCERykE3k\/C4UKSHJOFhkGscinBiLEMRDnZfcP\/\/\/\/\/\/\/\/\/\/\/6kVxC8Oz0G8OaIOx+Rt+qrDYbiNEaRdGM3mEIi2KhbREkP8Gg8EFBggwlUM2eU5hcPC3hLhsRERFw\/\/\/\/\/\/\/\/\/\/9j8JiFHEIN7Hhg63YYXh+eYVMJUtoGGDJ6ggYIKGCDC4\/jXhBitoN\/\/\/\/\/\/\/+2HEREREGUVAg\/IsBsKCI+w\/X0FERERERgiHU4X\/\/7xENqGtYVsJ\/\/36VUvcN\/\/uHDqFphQrwRdf\/7XShjp9thf\/2vSqoenDf\/7hbULXDvX\/7eElDdKrbCX\/7hvSuoWnDX\/74bUJ1wr1\/+\/qG61R2pbhL\/\/7sEEnd6pBtBr\/\/W7CM4ShP9AkEiBzwRdf\/\/\/2gQKJV0Gsd6wmSaSCCcNf\/\/63QImkEJFPJRlXF0oT\/agkNEVQoECDev\/\/\/36BAgRG4QUgaBAhKjCQQJMN1qwQQIw4aCBIQwlaCX\/\/\/\/3zDoECBCccE5UYQIjXDW\/0CYIECEaVlJqEE4a\/\/\/\/9yU\/YItwQIJGHMQCBAlCCQJQnUiepHOsJBQRh8aCSBFOEgQINw1\/\/\/\/\/\/+Inq6BRCCSmHQSBAglDCBKE7gymWe5nCBIIECCQSCBBF0CBBgkERdF09f\/\/\/\/\/\/oJmZcVAgwRnCEKISI+EhQQIER4QQIcgTTvDD3aLcIECBBow6EQQRUGEEgQSBIEaWiDX\/\/\/\/\/\/8OqBBpBBBMkZH0CBHjDBOEECMJQn3uwiThAgkCRh0ghCoGihUijxBA3gi6\/\/\/\/\/\/\/hekkEggQKIQSCEECCOOECQIzlOwRKSfDsNabBAgUUgkkEiQqQoIECOOgsEjDo1G4b\/\/\/\/\/\/\/\/V06ggTCCQQQQhIEECCQQJpCCCEMJQl0E6YKIJCkKMOgjOhBGdBBAjDzXBXv\/\/\/\/\/\/8rmVhaaCCQQIFYJBBAkEEgQJsUoaldaDncRLUQS0CtQSBGHQQIjwJIECaKcUIRxzlynBOE\/\/\/\/\/\/\/\/8IzlODhhSVJEQ5OSqEFVtFuEEEgkwgRGCESFQ4ykiJydYZpQsLB53Q2GgTSQSCQIEIQIukEiQqYeCLLngpwiowgi6QbX\/\/\/\/\/\/\/\/\/\/6CuHpE5jagluCikkEgkaqCI+CCRQqCLo64wwQSQShF0t3EoInyPmCIdCJEQiD4bDWCBJpoEEEE0CBIIJBAjDxSCRPib4RTyBRsN6\/\/\/\/\/\/\/\/\/\/\/\/9BggcRKcGCEMEQvk4hTQLYnooIwi6M0cI6sE4RKMIE1QRnCBHHSMLBAjOKEpCSImSCEwrEoGOgRH17BzdmcEFREHCRKHGHToj8MEIhhCDBEPYMwZozjMGfFhqKZIDB2idBoJBAqRHwQlChToIERrRUITNDQIw504MIEr\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4MhT7hmjmoHBMMMlUT+xZdctynCkUc47CJOw18aB4QI+DBH2pDRvgyZRLSOqUILGU4QIpwhPJG4MEIQlIlgy6FSPmIIJWxYNeDB7RH4QSthBcIKEIYkj6EHhD0DsF8jeETtuCCJNF5ZJ\/giCUD0CBILhBhKEECBFQCCi0JmoShMIEGDF7\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/Ld0XeYSHDDhLD8FBgynBwguGg4uG\/aHDoKhBlOUyErokMcIPO6G\/CoTNBhGbBAhQReCGCOOkFDiEjCwNYKMNCIKEE+GEMMMMiCTh7hNwUJegkFwxEUg36JewwlUFJEIKILBBIRBHgw6KRYhBwmggQMG8P\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/9hM0wjHDDQeFJwVAQVkON\/QdKZgn\/Bhc7pthLNBCQKQyJEeykXCxfCNCqCJ+CxNEQiVxEQwjjERKlryuSuGgxGEEwsPEcpBP4QfCIsQ2H3iHil6DQNEP4cGaM8FPmYeaCYNGiJBkHkfOqXUTRIJRCDEKCBCMGEDoX\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/3hMKGGg6CD5GjIc\/uF0XOEgusskCewoRKGETthEn9hU4xQOGIQZ4FzwMHw4TOM0M9G4zG4QYSEECJ5AhCRhA846CBL4awZyhBbwgjSyMoQYNcOv7\/7sNYqgdQ6BA39S+DkUdBE+sHheHDh4QwgaosVCLpAggikwQIRQRcIYgwhe\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/8MUGOGG2DBQwYKHhw4IvBLsL7qHwlqrcJBIOEPqHwlwhxkHPk6ZOjRfMMFCw6LjhSRpCCBa4IIuhZnQI66fUGYc44IGYcKCCUSnsTjoKGIQxrGHdQUJ2CbsM2WlJ0Dj4hvoK1qyNgn+FEO7DwiVIMPBAhCCxCOOkEaSBCIi\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4iIMEIODOOgcMECiHZnMOmRCAmRYhVYwwwxOPWKhe8LhbD48MhzH\/DkgVUFh63QJIKoszlPFViIiIiIiIiODtBl8tmcKcdODBQ3D3Lry0\/qScw4W2Rt6\/ngw8PCxqEiPhBAjgeggyPu\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/7iIiIiIiMJQtMPNLX6EcpBDqoe74VErSwg4f0ENAgnERXlkeWH4bz+w1dwx+Ro4N\/XDwvwoWTC8MEEIv\/\/\/\/\/\/\/\/\/\/\/\/yN1CfC4J4WGbJYVnjynfDQUL8LXCh4fcIFRpKuIUNfDFRUU+HLjDsNcLDDYLCDhPhsJQkHWEgoTv\/\/\/\/\/\/\/\/\/\/\/+WSahYcNMIGEGErTFBYhMVxwwoddBhQ2EzhamMQQIV4w3EQZxh05gOGCwYIMLZEf8W2xhQxC4IEFv\/\/\/\/\/\/\/\/\/wlEREREpIMIGfoYQaZLFDkKOEGmChBAzHquHiI0IiIiIlOmHQIEIu\/\/\/\/Ccrqp2KhhCvhqGKxf\/\/wguFrww8rpc7r\/\/wsVV4Qb7\/\/4YS6CLpAiP\/dhsf\/8PQSrCCeG7\/\/h114Xd0CI\/\/\/h9VY4XhOv\/4d4asKFV3h\/\/+usPChKwv\/wsOG8P+q\/\/h9hOwoV0GqD\/\/13eH9UCI\/\/\/hYUJ44eGw1f\/8Lq6C\/CVh\/\/h4UN0FCsPVh\/\/0sJ0FDew0\/\/8Lq0w\/ChKgv\/+HDdh69UCI\/\/\/huFCeOFhw1YX\/\/wm0HqFDQKCI\/\/\/3D2DY4fhGQxF0kgv\/\/C8MIbcOV1UCDx1wjvoGkmF\/\/\/okOZzDh52QRJhC6vh0dzSlcDToOV1qCCRThQSByQ4kho8jP4IIIQiv2RmEDUlnC\/\/\/\/\/\/\/BoREI2KEjD06hQqI\/SC4IuiETaCYe9vE8WG4fiGxsEMUgqC\/\/\/\/\/\/JBmzMDOESB60wjosLw0EXVAzjpzSQIzUPShgyOBAQMMPuGfDhELxEkVQgoTQQQcmNMIIume7C\/\/\/\/\/\/\/\/+3CCBk+DReBxXyThwQQOgwyQi6MZHzEeUNQwwggyqIMMEFoPUINbuDwWG0CcMJF9DeEIiLCDOyCKQyPF0EFCyuD8Vw\/KcL\/\/\/\/\/\/\/\/\/\/\/7hhQ8JLlO6CTQd8OFC1oGhEkutBhQgjvSLo6R2B4q8I6IJAzipW1sQ9IIOFhhMKCGcdhxCrQTwwiIYhE7DgyYOETBh6rc8gykiTwQdhlCQZH4X\/\/\/\/\/\/\/\/\/\/\/\/\/hNhhfDFhE71hSeXCZdVw\/5aKhBkaQSvEEEXhCq0FhUJF1DhpBfCCJOW6hBjoOCDI9xF0EFkgzzLjOEQxfYbuGEK5JEIeww4S7VjKcL\/\/\/\/\/\/\/\/\/\/\/\/\/\/7YeHhhoRWFYVF8G4ZblOYdWQJBh\/EQaYbhKGzMICBnxYb0VLwSgi6hBJ6Woh6QQcL+\/CCWoSERDhKF8lBCPCDjhcPQMIJSJBFJcgwTOOTEowwqCT+4X\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/hNhhfs9POP14WGwoZTKBB\/sE2iXNqHhE7cIIijww4RrgjwU4eCMOwohkaQER8aI+EiPtIJ6J54aQWH2GCwYIYUEYeHhvnjoKQTI8XQYXhBB+FoFC4QcGoKwgiogkR8VCUpwsZxw+U4I6KyhWgkERLWGCIk4oP\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/9w4QUKKDEmODDFhDViFeIs0lZRscPw+GvCBm5h4+gg4fxOsIxwi6DBIMWcM4aI+z7Lh4q+YgRFHl02UKFERERKuLoHluWnJ3ZF4t1QIM9B4cKvwnGiQ\/QWSBPwugi6hUEglsJBIIukxgoYMw5+cGCE4+GHCw\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/8REREREbBGcIIEYuEHv8PJDwgQbWHmYIsQww0CI+0EGECDwkGzhwdOEO0DCRThIIQgZdcLmuGhcKZesIPwuEoQ8cIKCIkXhBBWggwgyhIIWF0CTQQYqIiDkQJ\/\/\/\/\/\/\/\/\/\/\/\/\/hqEXXY4UxHsj8Lw4UN+11Ln5a6LkjZ9QWF8U+xOqcJFX8JgkOHIuoaiGEXQf8OFYZ65nsP9XCqgj0CCaQLoj8E2aeREaDWx\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/cKIIEJ3PI8YwggkOEHWF+MMRqRw+FYUM9YQQUPSCCRH8p8NlFBwyPggqI8XoRcI4w+GVBnkoiOKI4YcJnbrITYYQaoNBgpDwDiCY4OMOGfEFsKGFhlCgMugRThNBiKI+GCBRZnMOiPqRlC\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/6GM6oTRCR7DiFERERKRCzjngpORYUMGEFCUp2CSBBwqBF0EqCEagyoiIgwQi4+wYWJeD4Ul8OIiIiIhwZWgIj8MLkgyPQ7PZHFGZPERUjL\/\/\/\/\/\/\/\/\/6JeDDFtnCocQoVIECBMQ8GXGXcIuqI4cuhtxCD28IGfdYQeH8GRxECOsEgYhwwynJDoRTDC\/\/\/\/\/\/\/6QQUoQZtkSNe2SMOHYSMPEQzJCnKJhCItewocJCUkl4ZIc44QUKwQJl0S84jDX\/\/\/\/\/\/\/+gg0ESWwghyMkC8RERtwg\/dggQh9IicEEI4crEKhhf\/\/\/\/1Bl0OIIIvEcyPiGGHCi\/sqMJFIgQIFE9EeCCChysS\/\/\/\/\/+K5EqCEQZxThRf52IoXQiPp\/\/\/\/RNEXVCzMhr2guxFBfqH\/\/+jvRAgQgzshrDuFyDA5BxyFHOOZy3MOaDQcc9oj4hQqYf\/\/\/\/\/9CJJxERERERIHg2Dmcw5xysKNgXtdkMtxIZY4iIiQPBqHNBnKgzlQeClwvr\/\/\/\/\/ohHEtxIHguOTHIMDkKOTHEREREgtOYcmOZynMOZzDnHOOcc8FQeCqH2Fw7hYiZoujGR8j5HyPkeMReI5kcyOKRw0EfI5FyI5kcGCOB4MxHMjmRwyQzSODQXGXiPF1hUw\/\/\/\/\/\/\/\/\/\/\/4iIiIiIiIiIiJTokZ5GMj5HyPmEXRHi4aReI5FxCOHLhkiEcMojhmkcNraCxERERERERETrmEYyPkfI8XiPF2XDMLsvEeLxHi8RwyQ3pQ\/\/\/\/\/\/\/4iIiIiIiIiIlIihF0XReI4NpHIuy7LghcIXAkDbYWWgFzebxEREREREgSMZHi8R4vBEDwccg45McmOcc45xzjngrCm4mg\/\/\/\/\/\/\/\/xEgUDkUck5hzOaDDnHOOcczmHM5UHgqDwVB2kGIiIiIiJA8GBzjmctzDmg8FOU5UHkVQtCIiIiIiIiIiIkVpeQo5BVHM5bluQjkOOQPBcciORuW4iIiIiIkM0cgpDkxyTluU5TlQezqkP\/\/\/\/\/\/\/\/uGYcJGHM5hyY5TmHM5hzjmcRETDiJA83ETDiJDjknILuJDKHJjmcRERERIF3IFxyGxyIOZzDmc0FQeQFojg45xzOYc45xzOYciOYcmOZzDnHM5BVHiIiIiIiIkIkVBxzwVBxzjmcpynKcpynMOTHIZo5nEkOScSKOTHM4iJBu5BdzDmcw4iJhzOSHM5bmHESFHEw4iIiJA8VzDm4+5r\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/2hERERERERESFIxkfI8XGXiOKIiIiIiIiIiIifzqoJIIzlOU5TlOVB4Kcw5nMOSdBGcpynKdBCghOOZzDiJTiIiTHM5hyGmOZzDkxwkW5hxM5IcgyOYchoHJjiIkGRyNzDmcw7qIiIiDiIiIiIiIiIiIiIiIjCOiCNBxzwU5TlOEkEEjDngpyoOOcc8FOU4iy5EcyODBHELjLxHMjhllw5Hi8R4uHI8XZcGwuMuGr\/\/\/\/\/\/\/\/\/\/\/\/\/\/oIREREREREREREREQxMgKe0EaPCRoKcpynMOZ0EeCoCQigiY5nERINY4iQ2Dq8MtL4vEfI+bze0IiIiIiIiIiIiIM9ngqDwVB4KcpynKcqAkYc45nMOZynMOZynE45nf\/\/\/\/\/\/\/\/\/\/+vERESB4Ucijmcw5xzwaCoO3JxERERERERERERETNBHgFbYIj8RERERIbG84iP\/6SHruEGXoVBxzjlOU5TmHM5hzOYczmHM5hzjmcpynMOccmOTHJjkx7f\/\/\/\/\/\/\/\/\/+0wwkIiIiIiIiIiIiIiIiJToujAiVVsRB3\/\/\/pbwRH8Nv\/\/qx4VPoKtr\/94Ybpawgtv\/\/sPpPCXtr\/9hwRH6pBVju2D\/\/4Ij9aXOwJR3T\/\/5XVY6RNE52EQwu1wdklDmtnRqMOqf\/\/\/6CSBgrmbOxsPnZeYVhtcGGwidER+YdIMKgZJKEkg6Cv\/\/\/\/\/\/M+kEDwkFCDUvtsN4V0tCwmaChQmEG4TCQMPVYfbf\/\/\/\/\/7NENIGGg6ITSpdGYzSOEeZ1L\/eFXWGGHYRMc48Ly3WEMIHEQYIHiaBDNmBQgbrk3WI690gv\/\/\/\/\/\/\/\/\/QXSCEGD2G8LBgkSjJQRRzjhokOHYWLQawocGgZ2hnU+2DsOwnwRH9BBhuGoJhhwbB4I0YYNEoDkcBsnAUKHBQ4QQefqpL\/\/\/\/\/\/\/\/\/\/\/\/hOGgkHhMMIJQmFwkH7GQxQJ6Bw2MN4P4WgzIQZ2nrt6hiw2ECI9DQQYPD2XS2Eg8MjQeg3C\/WFcNL9a0\/\/\/\/\/\/\/\/\/\/\/\/9hzDoJRXhLCURYaDYVkKBhhAyOI\/sJwg+ESDhbhhaZ3NU1hNl4Ng4eg73J+f2EsMGRoo16QahhQ8EDImIEDwUkMiI0Q7hB3\/\/\/\/\/\/\/\/\/\/\/\/\/+GOgW7CCLpQ+NBsOQxDrB5Kv3vyY\/QMEGgw6BggZmwTBAygQjI4zMjVECT0tLh7BoEfsJBh4SDhwoUp3DCQa4T6hB4bwiWbYQVwg4iGEDhhQgYIhfJ0InFoLmR6F5TYVv\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/oJuwUMGyKOEEE4bs4QWs2f9mdw1dwwv6bRcwwwWGCk7yUEI+ThxqC4TYeEGCG0GHp3ggxCCQYkx0GDULEINhvDYQIugwawwX9f2HqHCuw9hIIN7BNoIGpKEET5zjmh64STpMUmv\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/xBnIKcEXQODLeIQLDBg0EgkHYhxCYhfwsLh+F1oLQfhBB\/EOPDQoMPl8HfLwMIlzdtYiIiIiLOPZtIcIIMkOCBkQdBlunhMHDw\/HD\/h\/GHw7IoP8ER8cJYfCT1pU\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/iIiIiIiDDoP\/7wv4XCwuFkHqSHfBgnoL1Dtnc0msREYSCC\/Dw3\/Dl1+gb4XxsPjhUkCTT\/\/\/\/\/\/\/\/\/\/+w2dL4dwv+wvw2dS2T1RH+ST+SgKHeDK39aiEoTwYJHnDBBPoPM7wpyDh4TZpYaDhKCF9sECFt\/\/\/\/\/\/\/\/\/\/\/\/hHYTDcPDELYpYWxhQtXQWGfoaoKzNRCDDwqQUuq8MQocNAwWGFw2DDCDh7Y8MVGw4ZHF7OF04ftf\/\/\/\/\/\/\/\/\/\/w0IiJJoHDChMmOqoNQvBrYhcQgxa4pN4QTERERERJCEGCgoQYJprcJEfdL\/\/\/\/\/h4iIiIM1ZfJQwlfCDiIuFdf\/+GElDDV+G8IER91\/\/+EFw6vh7wi6df\/\/hB0woq+GEqDDdf\/+EG3CBEeOSvCDCqGgW\/\/\/wwvCCBFOU4TS4YacGhFX\/\/wggmounDD9Wv\/wgg16wwwm7v\/\/C1XhEKOZzDmcpyoPxTlQfZUvT\/\/\/\/\/DERERERINbkCByGxyIORRzOYdwnahEDxjiRuW4iIiKYaoL\/\/wzDmciDiIkMschlDtdg4iJE8j5Hi8R83mEYyPF2XjCLovEfI8XEI8XGXD7pf\/\/\/\/\/\/\/iIiIiIiIiIiIiMJXw4S\/+w3uq\/6IHtyEcw5nLckOcc454KFL5DSHIKBzOIiIiIiIS\/\/siOJFHJOIkOOG8poxnkYzeXzCLpFRlOU5oKcqAkYczmHM5hzjmff\/\/\/\/\/\/\/+IiIiIiIiIiIiIiJU0lF\/W\/p2vQRdSuFhlsP9knKcw5nZlqi6IRF4j5H1oRESnghDCERIm1Upym2sf\/\/BlQcczmgYQUOIZJRl2XiOaxEMYwReknKd8RFnY03\/\/\/+CI\/Q4mgoQWFXGViKjTSDhhyUFOYc44Iut\/\/\/\/\/+EdSJApszAc6hCJBZh7eavxERHXDhwSEw8IGCBghB8ER8nByczzKAhEEEF7f\/\/\/\/\/\/8EHtiDRG6I\/JjmdyQ4fGgdgoQYIgiAyrsiwpC4Olg+pMc\/hVKcaFBExw5TiZwqeSHh9MEGEEg4RAiBAzwyQKCIc86hTVniIgn\/\/\/\/\/\/\/\/\/\/\/\/+EwkFGGGEELYRJEZh42oQRmMIYRJynDkbww+HG8IE8EwTBAwQNcODhotwm6Dzjh2xShdnHyIREG6PlCwtw+HoHFggb\/\/\/\/\/\/\/\/\/\/\/+EZ\/CY9BF1UQnTcxFwk8Y5nSThBYQeGQboIndQiI\/CIj5DuHrDELCpbGE0px7URiPH1hw8pwocJw9QRoXBGgqInuS4N\/\/\/\/\/\/\/\/\/\/\/\/8KGGHb0Ych3DbDpwRCCBgseGEEIhah\/1qHcHUOsMNhBJKcfEQkgg6RhzQcczo6hnCYQSlwwGGGSgpyuBBQwmwgkr6v63\/\/\/\/\/\/\/\/\/\/\/\/\/5ThIOE3GyYrhNsYiIRDwuHGFCiIhwg\/tfdBatrCEN0GjD6QIj7YdJUR0eHZKDjmcpwgwgwuF8Q8Krw3MIFb\/\/\/\/\/\/\/\/\/\/\/\/8MIMGR5jTYugsER5qC8IJRERCDhwuHXh35nCQjS4XQcFRIdoEXTFJw6wwycnDhYeHWRl\/8Q6f\/\/\/\/\/\/\/\/\/\/8IEXQZT9meEHBglDhptQk\/8kYQQfDDeFXrwpG11jDHEJJCIIMGEZ4YMjiNXB0HbSwTDDKhhBBQgo2\/pd3\/\/\/\/\/\/\/\/\/\/\/CsMj7Jjkx2zjiGxS+XBAsMjhQwYKEFDDIg5nISf8zH3v6xxQIFBiZwQZbhF0DJOFaTEkPoMQmKDD4iH8k6hhdwsGuaRH3\/\/\/\/\/\/\/\/\/\/\/\/2MGhBhiGggTOYBEegu6hBcIhoHCw4YwxXEKGCVhDXpiIiIiRtF0IkuZHwYIMFCDGEEFhQWDIo6jBiE3\/\/\/\/\/\/\/tCIiIiQuDh3Bw8QpJwVIFVRERBlOULkh1sJhMH\/\/\/5bpxHERFRBnHO11JaVxF\/\/DBEfdViIu\/6rdv+CSi\/rf07XlcER7WEJBtHIZQ5DDluYczlQZynKg454Kwpg1\/\/\/\/\/4eRRyY5McSI4iIiIiIiQPxyY5Ecw5nMOTHJjkxzOYczmgqDwVB0wVuEZyoOOcczmHOOZynMOccz5nxEmOZxLciDknIHzkbmHM4iIiIiIiIiIkDwzByGHLckOZynMOcc8FNoCX\/\/\/\/\/\/\/\/\/\/\/4YxERERERhAwRGdBHs46CPwSMOgjwU5TmHM5hzOQzHMOcfMOIiU5EHM5A\/HEijiIiIiJA4HIKByHctynMOcc8FYVB4Kg8FNhPhIRERERERERERERxBlUPAZ5JBHgqDwU5TlOU5TlOVBxzjnHOOcc45xzOFIa7kbkhyGHLcw5JxIHocRERERERESB4EDmcw5nKg8FQeCmsN\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/w2IiIiIiIiIiIiIiIiJK83hHgJFQfgQIMjkjDiVBxzOYczmHM5hzOYcziQIchHIEDkKOQPNyCsOIiIiIkDwYHIdynKcpzDngqDtQpcJCIiIiIiIiIiIiIlPnkU+CyoOOgjOU5hzjhIw5nEzmHM5hzOIiIiIiJA9jkMty3MOZynKcqD2eCmkKr\/\/\/\/\/\/\/\/\/\/8NiIiIiIiIiIiIiQPMI4jGYy8R4vEeLkR4vEeLxHMjxcDMGw+FI8XiPmIj5HyPmEY1hIRERERERERESLoxkfI8XReI+R4ui6MZHyPkeLoui6Loui6Loui6LxHi8RwyQ10IiIiIiQPNyIOZy3MOZynKwqDtBI\/\/\/\/\/\/\/\/\/\/\/\/\/8NiIiIiIiIiIiIiIiIiJUIxmEciPkeLovEfI8XRdF0XRjI+R4ui8R4vEfI8XReI4HgyyB4aByDjkUcREREREgeMciOSgkOTHOOcc8FQeCmRZUJCIiIiIiIiIiIiIiIiStGMjxeI8XRdF0YyPkfI+R8wi6Loui6MCy3KcSY4iIiIiIiJA+chgcmOZynKcqDjnHOOU5Ru\/\/\/\/\/\/\/\/\/\/\/\/\/DYiIiIiIiIiIiIYTDIIjGR8wjGR8wjGR8j4Jl0XReI+R4vEeLoui8R4uy4HhlEcD2RwyA1i7LkR4ui6LxHyPmEezeYTeoaiIiIiIiIiIiIiIiJJoxkfMIxmEXRjN5hF0XRdF0XRdF0XpnMOcczmHOOZ2XBkI4HgoI4pHIuy4HgUEcMFyI8XiPkeLxHyPmEXRjPJL\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/wn4iIiIiIiIiIiIiIiIkURjZ7PZ4Kg8FOVBxzwU7Loui6Loui8R4uELhS4ZhcFYuB4ZRHMjhSOB4LJHFI4pHzER8wi8R8wjGR\/hrxERERERERERERERKTCPxWFQcc45xzjnHPBTlQGYRdF0XiPF4jg2kcHI4aCOIXA8FBHDlxlwII4HgpFwheI8XRdF0XRdF0e\/\/\/\/\/\/\/\/\/\/\/\/\/\/wn4iIiIiIiIiIiIkrRQkUQeAkYc44ZhGMj5iI+R4vEcyOReI5F4jmRxC8RwpHCkcCC4HxcZdlxlxCOReI4pHA8NIjmRzI+R8j5HzeYUNQsREREREREREREREQZSCuBAmYjGYQISoOOeDDmcw5nMOZy3IEDiIiW4iIkxyI5G5hyDUOTHJOYcmOScRERERINK6T\/\/\/\/\/\/\/\/\/\/+FhuIiIiIiIiIiIieI8jGbyPhH4pynKcpynKcp2XReCJjiEjDnHM5IczmHERERIR8NwlxEREREREREREREaBlaFYVx4Kg454QRnKcpynKcpzDkNA5nMP\/\/\/\/\/\/\/\/wlD3EREREREREREQYIEKhsLCUQ3\/+EceHhthfXpf\/\/FhBeHhoMPcJf\/hBF1wlDcMYQUNwv\/4R4hh61gwvhv\/+wwoThKGCCw1Df\/4QMMPbCWggoSV\/\/hsMOG4eEggtQv\/9h4TwRdQ0EHDUMf\/4UMLLOnThKGwuWcPFO\/\/8JEMUiqLo9Q4QtBrYIhgbHDKWyaRdF0XQYUNQn\/\/\/\/4aRcHHD8hb4iJJWSMzFhJoWw9w1CeIN1CdqRRwdYIg9C2grChFnjI+oT\/\/\/\/\/\/8NBINXDUZkQfXO0YWGgheoThNmgvmgzrQ4bY4RKYN0D8tA6LxHzC0w3\/\/\/\/\/\/\/\/4ahiiCT4QYIh8Zxnoui4yQRiw51unGEHwkIiYwk0EoTQQRP\/zQ5Jw2Gw4iGCEMOwzZgpgjBmjMxDSNnCKB\/DCDwQRjEECFQ3\/\/\/\/\/\/\/\/\/\/\/\/hgi6fh1CUGGgThmoFJc5OCnhVjq4YQOIUMIg9TE8zMQjmeZgUkCBT0T5qyQoQU\/GOhIzQThYQaSCu4dBwkGFBww0HQQvvJQg2HhSccUXkOwwhsQYIGgdoGbJM8FwwkJEAyWEjQo3VCnCEj4SWv\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/8Nt0GvChQ4sJhBfD+HEJdIIG5YiDyHICk+aI8y+gwt40+HD3CBkzDBSWIoK7hJB3dcWFVesLChBK2GF\/xYPQTVPXBfUvOFl0YcMLgwmTOJSFJzBLaDX\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/sI6X3CDLgzrdhh7CQeHD64QUuEdgyNh2HhthY\/oKSomHh8MMKIhEoOO4LBPhEXgkZDyhOG4d1VQwkIh0GgguGwodQ4cPhilkONtBYSQeThWHsOvDhBBXNB56PRQiQZGYcTxDyfAwwjtDBIUFCLz1\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4SDYSbC3h80oX9QgrCChbwiVcGDB3w2wg54MILw3GFDDD4QMOg0GEDBAz5gmcjxEcQ0ELsK5\/Nx71Bx4RK8JBIIJQ38ukFD6hWerCv\/cOEv6hrIGR1PXCSDChEuw9BBKScL8NovAwrvSBxQTjQw+CGCZgjNmYQzjBZ8LCcl8j8MJHkXQZSdoIGcYwl\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4bYjkKOFcOGCw0ErwqYMFhgkH2Ks06JdB\/h4bYXQeFsO6HC4XcNKG8Il2SjyXBhEu\/OP\/CDuFCQNhieIEJCYQXoQ+M4zSPRyNGggkIoEFVK9AzOaqNIIGJ9QZHmRYDh3E44UYX4YLYQPsJMJhgkg\/CvrUIOGF4Swm\/141C6wobiaiD6JXoKMvt0iN1DWHoOGFCIUF5hkbUMd6\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/8KIiIg7CQKEwgwsGZwock5GRDwmPDDI4oZCPWOF6rwuGfgsP4vXQX0G91DQcKHDbD4Qbug8g53BA2yfZfBgy5+NOkEIwjI1tMN4QiIiIiOIhhBBBoGCdiExCw3DwxwbEMNhsulwvVB3fjwv99BHHhLCX0ExBg6C0r1+wpKhPqwz\/nb8JtoJf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/BwhEREk0RsnBm5MIPIg9hwgkxFBwwvkzwksOvp1f+O\/jsMiGH02+P6DrYYQIIIewlqVuDejIWaDEREKIiIYIMpypw4YILDC4bG3+TqhtXXC84\/4UkPpkOBh\/rk4X3\/uiQoddPQS\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/9kRwRXD8RERHCh0EEg6CwoeEEvYVB+KoNrCGwwwf9hBzwYfQUJDQKwQISBJySovAn2mSaW+GISI84YWChs4QVhhiEFh3rDCdIIN3\/RAyNXh70GFlzrsOHI3Ch0OghENExIIO0EoRBOv\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+EXQgxCDwwhBRC1wwZgut77wjjw1122geFpXwoXpBbQwkEUIWYzaQQYVSXShSVEG4YbIrQEhQwQNU7sQu9QxhBkcLFBNjhmyojDD6CsN0vX2w+EEoYkDgw6tFOEGG2EoVETyPCEv\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/CCHDCEGUoBTpwQYQap2RHhiFBEerYqwwYJAwYLUXC4UL0FwzRBlcCEGUlsI8WjCMcJJYaCWrw8IMRERERGpTlOVB9UG4IGCqIUVtMPkUcNhwyOFw2YIKJTohEElQQQYiGU4biECEgThDX\/\/\/\/\/\/\/\/\/\/\/\/\/4fD2IiIiIiDBAyQ4LDMOe2gg4Y0DY+MMPZ1Blg48QwhYSnWspMj4IqEIbhQ4QRkLGEhEREUhhAzcEDCkuChME5hCXQwi8GiXoZLqDvQJBCCQIIJf\/\/\/\/\/\/\/\/\/\/hQw43EREREcKZpmrKAgmxhCDRHmggTOqAhvCwggYRXQ1EGZwQjsxJKegyn8S6XQRG0ECMINf\/\/\/\/\/\/\/weHDMOdfUYiEgwcEXqrxxyoxUSnwngsKIsEZC0IMMJBBIKx8kIKMIpyLqv\/\/\/\/\/+DoMMXJRNhgjGLmtbhIOJ0SKn9WEEghDBhIECEh9CglEECwSCQ3\/\/\/\/\/6BEf\/IvAyQryPoK4bZmmiBoIEM46seHxBg4QiCQYYpCoIEJUYIEMf\/\/\/\/8FhcisVEUhwzFCyeISc\/joIbyTUE+FQJQZJQFCCD0C1E\/kfCjX\/\/\/\/\/+jNQXQcOEmgaqDgnCDbc\/iNdg7ChBiqditoKlQRRHVL\/\/\/\/\/\/\/hhEbhCSR8wgtwytXiL\/w4QYQIrZF1h60gqWezEgv\/\/\/\/\/\/+goYSCRh0LsYYYQQdwkIkha8N8MJAinaCH9RPI4gkFf\/\/\/\/\/\/C7BoIiiGCFsutzcEmegQwv4bOuFE9m8j5HhDDFQYQZXIhyD\/\/\/\/\/\/8OwZmlEMEIiLgjjoJEfQSBP8KDRHMJBBCvjhJns8lf\/\/\/\/\/6xDCQQuOIoIXoER+8RUQpxIL\/\/9j9w4sPCLo9+oVf\/\/4iQ1hyDA5FHIo5FHM5hzjmgzlQeCnKg7SGu+9GHJOQzuYczlvmc0CJnEziIjQiIiQVByGgciOU5IcijknKg8FOVBxzwVB2Ykh1DoER\/\/\/\/\/\/\/\/\/\/\/\/bLwRnKgzmHERHESnMOZzDiYcTDmcpynyCqOScw5nZeI8XRcORwILgeGaRxSOFI5keLsvEfI8XiPkfMIujGf8K4xxEHQIFhIqDwVB4KcKcc9oIJIIJFOU7LovRHQRxzjmcpzDnHM5bmHM4nHEREREpzDiTHEkOQPNyEcREREREREREgUDkFQcmOcc45xzjnHPBWFMifq\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/iIiIiIiIiIiIiIiIiIgwqP6BBH4JFQeCoPBUHgp0EEjDnHBAmXRjMRHkYczlOYczkNtxJDiQIHEijkUcijmckOIiIiIiQPAgchRzOU5hzjngo2Gu53roER+IiIiIiIiIiIiIiIiIiJL5vMI4jGEcc454zOYc8FOU4SMOeDDmcw5nI3I3IHhRxEREgeGccRERESB4aByY5JzDmg45xzjngqD8Uuo0omrj\/\/\/\/\/\/\/\/\/\/\/\/\/\/xEREREREREREREREjaKfNEcRjRTlOU5TlOVBxzjnHOOcczluYc45xyKOQYHEk5BccmOQ7iIiIiIiJA8KORHLcw5xzjngpynK4+wJW53ohYURERERERERERERESnRmjGYRxGMwjEXReCM5Q5xzjhITjmcTDknEMjgeCkXiOV5QjGug\/\/\/\/\/\/\/\/\/\/8RERERERERERESRmEXReI+R4vEeLoui6LoxkfI+R4vEeLoui8R4uRHIuC2cRIHgg5McmOcc0HgqDs4PlChRERERERERERERERETrmEYzCLsuGcuy8YiPF4jxeI8XiPF2XEI5kcDwaSOIXDMDIHhhyEcRERESB4xyY5Jy3MOcc9mcrjwUymIhJh\/\/\/\/\/\/\/\/\/\/\/\/\/iIiIiIiIiIiIhhGmYRjI+R8j5Hi8R4uGCPF4j5HyPF4jxdF0XGXCFw2BEDwQcS3EgeGmOIiIiIiJBTHIZbluaC3K48FcfijcanZGCCQURERERERERERERESnyPhmHIdzDmckOZzDmcw5nMOZzDiTHEhgcgeCDiQ1h8g45JxEREREgzOSHPBIczlOU5TlOU3W+YSUP\/\/\/\/\/\/\/\/\/\/\/\/xERERERERERJdGaMReI8XiPFwQuy8R4vEeLjLsuGCOZHA8HLlJOIkDwwOTHIjmHJjiIiIiIkCRynI3Lcw5McmOZzQU5hzOYc8FOUua7xhRERERERERETWkVQ9CnKcw5nMOZyIOZzDnHOOcc44lPDEpy3JDmchHILA4iTHEROOTHERERERERERILLkMDkMoc8FOU5TlOVB4KM2gQw\/\/\/\/\/\/\/\/\/\/\/\/\/\/xERERERERERERERJGSEYyPkfMIvEeLxHMj5HkdzDmcTjmcpwkJxzOYczlOSHIK45McgWOQPDdxKckOJxyY5nMOZxEREREZcZdF4j5HyPmEYzCFhRERERERERERERERBo0RQj2YRjI+R8wjGCZdl0XRdF0XRdF4j5HyPkeLxHi8R4uIRzI4ahcZeI4pHAguGuRwILgXI4YLkRzI4Hg2EcUjmR4ujGR8nzeg\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/xERERERERERERERERERPIkZHyPGMj5vCM6CCRhwkaCoOOCBCU5hzjmcw5Mc45nKcTjmctxE45nERJjmcw5A\/cgu4iIiIiQzRyDjmctzDmfEREREREREREREREREaP5Lo4gQoI0HgpynKcpynEMEy6Loui6LxHi8RwVCOZHDBdlwPIuGZ\/\/\/\/\/\/\/\/\/iIiIiIiIwQiIiIiQNHEcSKcJGHOOZ0EgjQcc45nLchHI3JDkxyI4kCBw7CERERERERERE0wWCBM9hGcrCoPBTsui6Lr\/\/\/\/\/gxERERERERGl7196+9fevvX3\/rf1v\/Xy15xdHt6ESSQmMJ6lkE2aP\/\/5Dj9ffLK7C9f\/8m4YhgQwIYCmBnGXRIzeaskIhF8P25N08jDgi6njOOFDiDMEXUGmcEMBDAhgQ4zGYjeYEPRHzcXZyI8eMj5pH8wshAkETiQsOQ9L\/\/\/\/\/\/\/\/\/\/\/\/\/\/xERERE0wZTgpzEogZh9QRdULdthC4hhCGhZeCZcIYCkcKYEMBDAhgQ9mIwjoi8bjGbyPkfPJwWDWHhTQIZsxGYjxERERERERGc5xwR0QZThMzoGYdM1ApMf0sNDkSBaFhiwiFHISCJhHhWFTLwkOezwVx7PxWFLiiMI9hEuB8tAUYQcQwmv\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+IiIiIiIiIk+IjMc44Ij5pM0XmcEGpnQSwQKGCMOHFoQaFghmApHIujwpgQwIYCGBTRnFEQdB94eiVuEi+DeIiIiIiIiIiOLwhqmTHhhUz2F72Y3CBkgzAQuIbi7MCGBDkRzMIwchxwuH0MkOZ8IPLRtf\/\/\/\/\/\/\/\/\/\/\/\/\/\/xERERERGVgQiGU8MqEaIul264cEY48Ny674LCE9YXoO8RERERERGgyoBBoEFNAQ07BILye4eXU46cIZ0IjxgyPmAhgQxF0XRpp\/\/\/\/\/\/\/\/\/\/\/4iIiIj5H2H64fERSDIcdRoXw4iGRwpgIXENiGIuRgQwIYEMMvNVEUEHD+FoJhEzBnTOOmaEGU5ThBw9fGF7izEUCEcQwFMCGAhgU2IYIujiLouj2v\/\/\/\/\/\/\/\/\/\/\/\/\/\/+S8YECBW\/2ZwcRERERERETRTwCDKcEGYcJnHCZxwTiYgjwFDD3pw4hhCIaIsELBEgjwqCcEJBEgiQRMMObDDnbkfEFBsiP9jCkuYiIiIiIiIiIs5zwCZxzjpmdTOEGEH4QRnClOHFvwww4hxJOQkESCFgiQRLIkESCJhhzceVX\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/8QwXvQeEHOgcRERERERERERE\/z2gynQZUBTDhdPwRH4VqsMIQ0QjkJBEgiYR8ZzWRIImFQahxz2eCtHERERJCLpqRshUEaZHzRM45x0zjnHhlOU4QZhwqa5nDh0DKgmPDDCEMwEwgZgFBhHEeFMER\/\/\/\/\/\/\/\/\/\/\/\/\/\/xEREREREREREREREGEUIREQjwU4RnSsWKxhgiPMXERERERKcmeI1M6\/\/3EREa++\/Sv639b+t\/W\/rf1v6CsH5XKSLkR4vEcyOZHi8R8j5vI+R80VQxERERERERIaTkhzOW5bmHM5hzOU5hzOaCnKg8FJpIF\/\/\/\/\/\/hGcw5nLctzDmckOQo5McgXcw5nMOLBCIiIiIiIiJA8GtyEcw5xzQfikwoBwxCoI8BggwTBBkfBMui6LqEjDnHM5bmHERE45McS3IHhluSHIZbkCBxERESDW21hf\/\/\/\/\/\/\/\/4QIuhERERERERERhTkFRgkU5XBkfMIujGR8wi6MZhF0XiPF2XiPF4jhSPF4jkXEI5F2XBC5EcDwXYUPiIiIiIiIiIiIiIiIkhQgaCOOeAkYdBAgQZHyPkfI5keRhzjmcpzQYc45noP\/\/\/\/\/\/\/\/\/CQURERERERERERERERIlmkR94aGNf8J7w1oL\/CCLqEwcMNhoF\/hBF0rDhjOxpa\/+ECLo7BgkJ4YYREcM7FSYa\/\/4QRdIw5xxB5FSV4Y4s9F3+v\/\/9BEw4fhPCaYYcFsNf\/\/Bp5TyMiTQ6vBNGHiJ8gRC6kOnIgkW5WqhIL\/\/\/\/DBMUR+LCYIgvQi0Ekdw2DhAwwkDmcw5nDRblOGEcczmHwggfCQL\/\/\/\/\/\/w1EERyiEgRoUM+UYMPRH2mGwcIIumEgRcc44aBF0EFoESC6D2qX\/\/\/\/\/\/hjGJThrCY6Dw0g4wuE8IEzjiU4ReYw9wwghCwReShr\/\/\/\/\/4YMQYjRh4QalxCOYYea4IbcJ4SOxdF2xQZThM44jCCygCOGv\/\/\/\/4biCLqwhDTLoui6LxHvBFQRHpQnhHHndZsOceGU4TDEREPBF0EJnBQm2Gv\/\/\/\/\/+Gu4oIaCLoIOOhYdK+w3OOoRenHsYYIj5oPmcJbhIIuv\/\/\/\/\/\/wgRdAw4\/QqceaFHUEXUcJYbDhhyNy3BJBAiOZHEDBgrhY4YQbUJf\/\/\/\/\/8IKU4ggQhMWXIjmzjiccEGJnCw5HB04bwwxlOCBBkfRh7GGW4qHxvr\/\/\/\/\/4TEYQsUaIqMq4uhBkv1CeGCLobERERGGv\/4QaMPlOE8NxUQ1\/8IE3Cbhg0oaX\/hHHTCLrYWLEYSB\/4a2oUINf8NhhPCBQ1\/4Mk0XUJ8EXUQ4a\/\/w5ThHc87KihP4hqdqC4a\/\/+HCgggw4UJ4UMp7DCM4TDhr\/\/\/8Qio0FGIQT+GfM2KU4QEU4ZhHWIUgww6\/\/\/\/\/hGcKDkOgGEJTjOEgzZEjI8SA4KR8\/lOMjahvsMQ+eIRJyoDDDI+YV8ONIjwRJxaBgiGCCUEOGQ4GEv\/\/\/\/\/\/\/\/9QpnCEGHQhhAxi0EZ4YWCI3KcYYlOCwiI4OMEDDDfChxhGeoMMHQoQg5x9CDDBxYSJcFIg5nck4cJf\/\/\/\/\/\/\/\/hynCUMQnEFgpnCjhOFQYQRIJhCw0CKCCDfhCGwRdMOQqe8Q8IPDD\/S4YOGEv\/\/\/\/\/\/\/4YSDQUgwQEoYQeEIRnCdfDCsYb+G3DBnHBw8IEXgsEXUatBh4QbIUTCX\/\/\/\/\/\/\/8IzhJQhuE8QqjDD0wvyBAEG\/DEN2GS5Q1D3hBQmg7hhAwwgl\/\/\/\/\/\/\/haCbfC4YfDTCM9BBBg4d6hAi8sM8U49AiPvDnHhTQgw3eITDDCIgJr\/\/\/\/\/\/\/\/7hiE8p8KO1DBEfQwwmwgl9QgyDIK\/CDTjg6h4Q5h8NIPC\/hGbww1\/\/\/\/\/\/\/\/QIj4YTUJjkJkNlwRsEEEGwwwaBF1hhhB0EE9ja4YYTvHFQa5cPCChtMOv\/\/\/\/\/\/qIiQ8j5hAzjpWQtgi6BhBvBiChwoggr3ERERJdCIZbgiXyPgwmE4YYOHX\/\/\/\/8REREREhxdBW6CEdAv9h7B4QdL\/QYVhXMIutA\/\/0IkNocijkUck5hzOYczmHOOcc64rasz4mcREREREgzuW5hyTkhzOYc8FceCthVf\/\/\/\/\/oI45xzjnHM5hyTmHM5TmHzOYcRETjiIiIiQaxyTmHM5bmHJjmcpzDmcw57PBRF4iIiIiINAyp4U8FQezwU5TlOU5UHHOOZzQSHJOQMOYcREREREREREUv\/\/\/\/\/\/\/4iIiIiIiIiIiIkIggSNBhzjnHOOeDDmcpynKcp23ERERERERESpoxkfI+R8jxeI8XiPF2XiOFI4KCPJf\/\/\/\/+IiIiIiIiIi9fevvT9qVyzI+v+CEG9EhwZJUdqqMZhL\/\/4QINhBghEGRRt0EDDwgYQaX\/\/QORJYZjqCfYmzNGeDggZ8QoR4z8a3YbQS\/\/\/\/\/hAg3zOVAc44SBxIjkSgMzZcgkwyeLoIG8MMJUohsYIIn2StBGeEHGG0ECEGg1\/\/\/\/\/\/8KHtxhoJhwg23NNyQ4QS0SiDMOCbhwvB+G+CLoOvCENlyCQQJh2l\/\/\/\/\/\/\/hBB6kKf\/H\/hCMOHd4YM6ILYYIjnCreglHhluU8JmMKq\/\/\/\/\/\/\/\/QQYeiH3DvWw34SE8cRe3tBBbGuqqgsyeGw3Io60v\/\/\/\/\/\/YeG84g3CsJ3YatwkFmEfBkcUKCwfDYdVBF0E3UOGgw3f\/\/\/\/\/\/8MpxCDIg9gwgXEK4YahmywnYTPSpxlOVCBlOEioUUR+DBkUddhOK6w5ce1\/\/\/\/\/\/\/+IiIiIiQ8kIWoINAwUEH2K1iIiIiIgzjgmv\/xEW5YMZDz0R8j55HtL\/\/9cIRYQgzEeDmwpDjiOIzRyI+R9\/eGFC08Lw4iDIcYDnI9GIhhTwQ5H8j5H0\/\/\/\/\/\/\/\/96mdBYeyY\/wu\/DhbyTsIPQiSgxBD4aDeezhkUeXRdF0e63FhmH8w9CvDD0SH8KHrBAhhmHM\/rh\/3ERENT+bDkiOBDkfyXX\/\/\/\/\/\/\/\/\/\/\/\/\/\/1JjoIcKJnt4cILjwzD4XxURC2Z3hmHC\/5JyEf38OEpDgiHwhMM3A3uy7kx8Njkx1hQ+zjmfhDh\/JjsIk4ehKdUEy73ugwyOFI4vUijw8w4UN\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/1qMMTj9Eh8fhYSEQsMt8LeJx4YhbHdBYS1YQSJDhI0X4oLE44evy3DhfmdBCHxojd+Hhy3Dwhw9Ywg9Eh3hjh61EpxEQluTHYeEsJ6mcp8Qof\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/3FyY4XMPYrDhdiU\/DMPhfM5h4ZhzPhMVhEUf7phiRBw+ooLEp8NbiOSHwr1JPDEOFGnhQ+h0EOHvEUEIhQ0RvqEg\/VoImOZx6yTvmHEKE9TOghw\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/yuLZHzCVOMIiOFDkb2THXhB8w5n3+thkhw+gthiF73ESNzDhbcVxDhrYYlOwzD4VCJIaJ+ZuYIZnEmqS2pFHhiHsaF+GFxHhlvCC+THhCFsXhEx\/CWpMcRDepMdh5blP3oIcTj4f\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4RJwekdoDBFrXuMIk4UJWRR+HC74Qww\/igw4SXHw3TDEzkhzOEqoTjoLEQoS3UQ4UNE57YQMEG7nZSRqCkWMrIYLp6kx4Y4cjehWFDD0W5T\/90RuwiY5nw5b+TH\/tBCIh7szi+W4cN+Z2EScKH\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+FDcIQy5tApxzwYczlOU6qECBkDBDWEiSZqruKCD42THdYQXEeH9WMMRC4lO+Jx\/6ck5COU\/uMPELWolPDEPh8kZH4YUHhCIMMREIORR4QYIHM4MlDKWRWgY6uTHC3Qq8PCkb8ImPhbzOYeEScPYrDEP1aiIhdIjdBZbhwu45bhf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/7ghefz0TxoKT55BrfQSwdhYkh8MEDNAUSChoVQlRIeGMIJEh7Jj\/Cw5hx8YQesRhiFow5n0EScLd1mcPVi+JT4b8zmHhDhQgoaLgOFdw01BQnlAzMZdGhHRHsnwgiVkURBxGwwESpRHmRR3JEPBAwwck7OwYhLkUlDdigiTw8aF\/8QqDhhfJPCIo4cKI7j1V4lORBzOU+E3QePXiMMw4cOGHCrhrwphzjhxDDVBA2MEDCDU8EDDNRHiBAwRCakKkCw4SYaBGh4MPwgohggYIgheU4TW44e14fmHBF6wiY8L8YYhQ5Id0GYfC3WJTiIhQ6mcER4LMOFvQaiccKF\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+FhhQbhO6hBCG5blOEEzGCokPRhwRdIlAcXDC8QwoIHD80RdQg\/\/yXBhluYc8ZIhhAwg0wQOE6JDqTHhBSN6+F4j4ww4UKgg9irCHDhK8mOJG4fxFcTjhwlsImO4+HhQlhrD0HTDEMRCggYYOMIG5J0ET5hhKGIakai6S4h\/sMOHJAICBkgRIOIjSg8k5T0wlw1YsMYeYcbJjvw8KW+sIKHDRbsMw4UJEb6kn8N1iPVPiFD6iceETHDh\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/heHD3DhJhWgggwsJwlDoYWEG4REmRLyXOIY\/4XCtgg7CB7cJ4ZDIk0kINyXygOERbD3knhQsaFYcLDiU+wy3h\/YlOghOPhzDjuP15DY4XsmOg8kOHvcYYnHChQ+hC0ggg6FYZiHw12FChuGEtQgbCCcML\/hethQTC4Wg4Ig+pDg7hYYKgg3qhUmPD\/QX2OghhfQuPjSDMP93mcw4IEIe6FhYha1M5h4Q\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/8KrMnCsMGEFJDnHCLpwnx\/DhoIui4gQbhhUuGGEGEFpN\/uERegwRdfpJ6YQOFwg\/TwnZMdhjCyN7JPv9FuFeH4TJj5MfsmPbCE48LqsRHqyTrhwnuIoMkPhw\/oN2thCIpUw5ODDharxEp8JIIPa+ErBNr+sJw0KI5hwvfCqH\/ZMf8NUKC8aH4fiH4XhoUGIehpRh9+ZyHHM4W8Xy3ChrVhCHC\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/wgglDYSSapWHXEaYT8uEDCDDbhaeFhhIVf9w19fhBJXIthyIOx1xD\/7eH\/wvJD6kx4f2THYQULbmf6vEw4iHqiN1xDhPczmHhmHC4YMu0EHPOHbFMGeWFYQe4aChOIhBKH3QhBhAtJfqP\/+3SCDhEqVf\/3RG6kx4WW9\/+IScYX0OTHw5b6iYeF9YkMP3Yvkhwoa1EYTMX\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4QiopXmfkfCDoNgoU\/UH4cMMNoIPSYYVAm7\/dfb9Jbq\/0rwsOErFxh4hIkP\/5hw2pMeH4TM5h4Y9jTjDwn5nII4hQlS4h\/yY6DHDhlYUXJjhMJIMQgxHYQoMdwYJebIIJOF2iOZUBYIkOEtfqUAvhSPkfBfhdbrDCV14eHokOpFHhYcfh4UTP4oLw0IwsJEh7UzmHwoa8SQ4hw9kx3hYWnFhYX\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+IkmhEHZnBNQmtiFhit4e04iHCbT\/0C4YiPwrXrMPFBVfCC7sXM4w8t\/WFhxCW\/2pFHhY1iMIP+JJzD90Kwy3Ch7XJPCxERETWoIMtwUJggw1DC08INEhZqGGgvCIncL+nhDigStrhwoSpRhYhS338KYcN5J\/C0SHYYww98P7yY4iFqyY\/jhPyToMYf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/8REREIJoK7WaFCC+FYdBUC8MkJh6X9ggqT4UOHsmP+HH+EHEz1jDw4TFBQgph6zOU+FC1iZyNw\/Q+W4cNbiwsOHT1TDDXyoKGFDoK0FX4ddwoZIuYdAgV1hhwt0Lmf8jf+GFG9BYUNEb5nMPDxM94jCDhwuTHES3C\/whChdSToMw+F\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+EHX1FB0W5Aj4dBYXNAv8LoKlC4sIE\/heErUTDw8KOvCwlkx3w+LiMLGoZh4YXD4kO4h+yY7ww4esWEJx\/hN+4MILEt4YTFMhR1EKwS4MzLwwrBdzQWC\/D8PRIfGFluHMPvw8kOHx\/Ca+Ycz8ITj4cL5McQoWhXLcKFt1H\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4iUJguC4hBBwgxVMXBsdmBArl4jg+aFwlwv\/scz+IUdYeHEJ5FH8KGi3yKPDxG8YQUOFxOORHMOHD3whw4SVzOYfxERE1o9mEXQMIGmFBSDj7DCY9CIJgwUMNQpdF0Y4cL0oWsYeHI33hQgpbhrM4w8OFEp8zjC64YcKHxEQvRIfhlv4byY6iKC\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4iIiRCJOIpkeLoMLdgg0sKIUVERJTBguwYWHyQ+THhZIcKP8PHxhYUNjiU\/mHM\/mcw8IKH8ijkR\/2XsIQ4UJY5Mdh4iIiIiDM4IGCYJknI3BA0DC2K4hexxOPwhD68KERHv8PRIdxh4j4hL\/xEw4cLY8MtwocN5MdhjC\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/iIiIiGCgsMFh4TrHh5IffhwxCWSeHhQorC7x8KFCkCHEKG64Q4WsUESdB4kHiwgYQMiMhqGrM\/5bhR\/hZbh8YWHDmHyY65G9ZnXDhw5Mczj1mHM\/DJD4fokPiwv\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4iJUcLQ5MdcQ5b68OEJT+Z1wuJnxfG8Snf\/ESNzDhwuI6CHChOx4eMP4v4hXhwoYhPF4QcJjkx4fWPCChQkSHEQof2GYfDhqi3czmHhf\/\/\/\/\/\/\/\/\/\/\/\/\/\/+FCZMf4QUOsKHCJOGvhhaJD4nHhZhzPesMOHDY\/ZMfhDhexURh8OGhyY6ww9PwoYhcij8KEHHHxEJZnKd8L0SHM5G+FofJOHD9Eb5nQX\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4XxfJDhSN7X4RJw+Zx4cMKW+TH8kOHxHhYWxESnw+RvwxChQnY4lO\/7Jj\/CEOYcf+GIXHhQscYePkx+Hh6Ig44WwQIdBEnw4arGH\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4ehyY6wwo18OESe9eHZMfJOgst\/FYX2ZxIo8Lod0FhQtmfJjoLLKZIujiPcLkh8XhYT+FDGsmO8OFQhRfG8mO\/4SESY8MPkb6DGFh8Snxf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4QiJDqCTVFQ9jkUfhluHDX8Iij+KwvDDLfy3CWPDwochnccLY7CJjw8J0OZzD6h4Z2KBnhQljwhC3XwxD0\/Dy3hD4h8k6wsPZnMOMLrxOP4avEVf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4WFBhYckPkn4eRvV8OEFsk\/DhYlPkUfyQ\/i8PwkIkR4fmHM+owsLRIffLRYheI8HhmSUIRVhh8ceEHHrhQzDnH8VhQ8cYePRIfheGyTiYeF4juZ4eHxzPD\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/g4iMjcw7sIMqhEWKFvWGFCd6whHp+FmHM+RR4WFsVh4WhMOScYeFC4lOgvvEp0F1Qny\/hnZIwsJFvvCw17w+yY6w\/EcfLcPRG7wsPmHEfDmHDoMWHhQkW+L\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+zWzhG4ujoMhBlJ8ML8Ii5BQ8OIUk6oMkOH6XhEUcPi8LyN8mOuOEx\/wokNA8Lx2FCw4cSnyY6+EGFjBEMagyQQJ3mqOhQw7hh5Wh52LilVyNBy8R\/5bhoXYQhSN+3WGIWlWHji+RvhyTr4UNkxyHcYeFLcKpMeHhbHF1\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/BF0GIWEwQPWg5sUFNAwSCMBDWEIRojeEEIheGCIYIIEaEOrESW0EpFuFG1zPiE6V4RMfsmO7wsw4X0F0Lw8OEhOOMLDiGnFBYesk6vHIg\/RHgYRCj48IL0DiGCDJyBS4yQVOS5QyniHhhZ0UHDBODK1Q+HyTvjCDVusMTj+K\/iccP49kx1hYUNiRHMP+Ye1YeFy3hi\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/8Ik4Q9A8kgORHBcMMcjfcGhTr2CB54gRCYQhBqGmRFUNxRIfw5nMPg4QfZMehVBw+leEPRG78PHJjrCC0L+HCRG4jDwonHC5nMPCw4TEp4RMdegw8LfzOh0EERIQSPiyL8Iixbh0FwhxENBxZoKbFJyBAz0R82ZOIpG4j4QRoLJjnHM4QRKbjJAnhYSG3YUIL\/9ivCzD4vDDhMmOv4cSEcw8LDiHfGHhQ0IUWH\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/vwwhSuOKDQoIPsNBA6IRHhQ0RBwvh4bW4wUEQY4hiyRAgyGZsLh1ERV4T+HhyN8k65MeGSHD\/5Mfp18dYRJwoaH8KFIccR8KYfUYWHsOTHOOgvCCwu1CkOPC1cIPTbXCw8IzEkcyJz5Cx8JB40\/QOLS3r81fhYUaF0GMIQv8MTj9q\/kb08MQ+SH+EHDmHM4knh4cTPX4UJEh8Rdf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+GH\/ewQIQRHwwt\/+FhUumFUJ+CB4QMOEDJUCCIv2RHCwnD9QYWHDk4OSI8wUOdYuuHJD2Z1YUMPesIev8bJPoIijhbH4YUKIigsKITyY64cOOTHV0gv9aEIQg\/717+wsO\/4XDdKFIyAsOPJUyJxnjwhwoQSBhMFRDFhghJSEYUaF+EFqvJOtkx3WH0KsMQ4SJDvoKFluW5G74cw4axYeFy3Cjr\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/2wwg\/2HklYX9R74V4UKn\/uFEIIOh2tYdBjhQZcqhqFjeEmFh7VYYft4YvQq8LLcJvCChxXYcMNiIrhR8mOgoWFEOSffCDC\/QXDDCqthV0v4ev9eH9PoPCwsQZLiRUlNyFHhkdIXhS3CW5nhEUcL0sL9fEOTHWGSHD2Sd+FCCRBu74cLi8PzD0Ov\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/8rieRzI8RXSDCwwzQu\/CCDu9BkbmHOOcdP+R4uH\/fhfhoLkGH8L+tggpDY+nghfkphh4cQ2TH8TDwxD9vkx8Jkx9\/LcJC8IQoSFVhw8tzDggQ+FJDh8zr4cTj2Sd3QiRQNnjbCD\/0qgiPw9fCQiIqGHoR4YWvD78PmoCGvvwSkvD4xqZ9aTYWFJD0L4wgvrDE4+GhpfENkx+Hhy33hQsRHhYhPF4WFEKKr\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/2ab4Ij53SRh4YXYVgwtxhhdLh34WHCD3\/rwgsEQcenwn8EFKcIOw5LjwDTiFf1hY6w4ZIcPdaCFckPbw+hWEScPYlP8OHluYciOYdYYckOGsmOqDw5IcP+SDxGGxhB0waCDBggvCDbCsMLk5pRhENjsIOFr\/4Th8id+Gq4QIRsiB4nxSGGNfvDDhMz6ChCE6t3JO4THWFkb26iFCQ+goViIi+FELi7CwpTjRbgiP3\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/69IEkGFYYqK+FBlwlmAjYK21JJ4dB9f8OGH0C64VPpbDw2Zhn37LggeFLcNDvDrpcVDVfoLJjqwy3w5hzP79EOOSfQWSHDeTHXw4hMR1cOaCWaZ5FRF0wYiGCZxyY4IjA9cMGKQoMa\/3ChN8L4SJRCChV+GHq4QT4fBEPC1whheORvqZzDwvvyY75b3+NDwhDhRH4cPJDiJh9h41i6DwpIcNf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+5btwUIM0YIQz5mIEyghERBnHOShBgoTJOFBYYSw4hw14f4QVw4fTf7qiQrOIug4WpHNh3oMjciDrCyQ4TGnEYYfrUcKNfkb2Sd4YUNkx\/hQsSHcVhZhzP5nMPsLDiEzPuuEoawRH8LM7wmoIGIiJVygyx0DCamH0HBhb\/+oMMPtppdhfPxdBSMJqIYQXdOFSuhHDhCGrWERRwve5nMPhzD36iEhWETHwkNf5bmHFhw8RC4jw8KYcNCU+v\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/96QQPXh6U9BicdA0CI4YtCIjGDClPZF7CSr\/CXITMchOsGXCLKfGuuGHhLS2\/DhQwph6yT4\/XiKhRM9ewg26j5G96w8ROOScw8KFCDeSdUF4nHCY+t13dwqhhAhYUEDDuhEREREYJgiPh4K\/2Hhinj5AvwYLggsuy8ChbpLwoeW4cTPeMMkOH74bhxv4Zb0Rurknw4+w4WYcRFYcMtwli7Dw4hokPv\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/37CfRH3wuHQfq4iIiJIyPiDIvBhhUwX\/EEDFREQg4LbdNmY8KEIUa4QhetBEnULWsISnseGOEyY9cLxOO8LEN5MdUFhSnMPY69SEdVfhsul2FW0CiIiIlPEfEGEHmHCYUKCiuDuGRwuHDLcOYfzOYeH\/uLhsz3vDMOISJDugiKP0N\/DxM5G5h\/hEnCWLv4iEiQ+\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/9ILNahXRH9IIMIzwgkGFDpgghEQcROhAyNwQZhyDjpkO74eGIIOFiFEz3iMImP9+Z8JCEvQQhxVxhZhzPqsLMOIiqDhj5nWHCw46th7EeOHzCA2EHt1CiIiIgyY6NEDQZbw0wgocIijhzDjWZ4Y91qJToLJDh\/YZbhMmPqZzDw8R3YcPE45nI3dhQiTh8SndBQ8kOEyT\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/wWqBw4QQYYVQmEkqxERERKewoYhRvEw8LCV7oJhhwlfwkEGh3EcOYcz\/ChYiJT\/DEp\/FXhYhod0IJgzZ2CChdnrcPCFmcJIQ4cIPWPh68cKNfDEz5h9BlvhRGl\/JDmcECFeEIXJjug4cIiPZnCS\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/9mcpzQFELhxxwkG6iIQXgzjnHCZxzjhPQZIf\/VBZG96wiY4hROPsIYWYcz2\/4IEIi6DhluHxOOrC4ZTiEhDfQiJrRdQUEDQMFDbjERERERESQhF8Mpynh2CBCEt0GIbF+HiNKg4eJJyQ5nVhQhC4usLEp8w5n\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4iIiIiGGDIqYBCoPASMOZwVBlOU6CsmOE3YULERdYZb4Uk6sOHCEOI1iJkZhsEREREREREREPKg8FORuYdWHCHDQugoUMJkx7\/\/\/\/\/\/\/yGVsIWLlOUnO2fQiIiIMrAQiHmHOPQhcMkOwgwhDBAyqmScUJRERETov\/\/\/8LPBUBwRH4QdNAwiLtyCOU1jsRzOEIg4Y8K\/CiRmhJqmq\/\/\/\/4w4QIj8MOlUOGpZiqzQyc1+dRkIi9cIIJsYUjd8O8gplORsz8U83\/\/\/\/\/\/\/\/ggYISPUiRDhhkukg4SIYtegoTh0GgyckoeECBggwQdEfChT5GApsSzhBSnyPh+3hsOGIThXlUDlAzqFIn\/\/\/\/\/\/\/\/\/\/\/hYcjcOSHPDiP4tA3BBlBQyQHChsqafRb0EUXUPpQiY5F9nAXMxCQJhggggRQQUXRHgLDCjQh8IEDDueIkEeIFSNilOEJOD\/giH4uhO5HEM3bCmHDuXwaCB5OFQQMIH\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4YrwwXROLhByL5EwOQR3fYX+GFtEEIBlBAiEZwp1hIIk\/44dIOLDROIEsKG0FcusldFzwgkmxhhBItwvhU7JI1hEXoYX8caDiH\/oEDegpLgfwpbwmCBiHrCT1Cwt\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/zOYcP0FDYh8Lw6w\/QTDCD9eQ48Iiw7wt47D62EG2G7DqT8MKG8OuEg3XiEdB+UAvCgsMPhe\/0H+G4ZGgEaFCNCCIXr7wgX8OgwkglD6C0EEnC8h\/eG3\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/wXg8KoYe\/\/YfhYShXWGC4cJVKAQOEvhf2G+wSDaD3usJLDv4REn4LhOF0vwrhfX8VCvG+ERR1fCeH+4SCh2DhggtQifB9BuH\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/hf4IL3\/CC3+HX94W51wofmfFIEG+FDWF9RhoJA7HuL9wwQX31D9Bhw8MMO1+FcML1DDrNAYC4YrhV\/+9hlvCYbsMlHUNh8GP\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/Dh7SoL2EFCULp\/h0gg13C3gn\/1bH8MOvGHCQaHDtYWpeYULhW8MNTSDDVqF0v7f6wq0RPh\/DCsLShKEFen8qzCdBU8N2P\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/zj4YYhKC2EkDgwlYYYVg\/9IMKvh2sFhBfx7H62HYanrDR6ChvMQSwlWPpjYvYhKEEHUIL2wp8ggwQUPDC\/ww8WmSxBhSY4J\/+IIJhyPgsHC6h\/nr\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/xDKcI6ikfDIeAwyHHvIOPeHxXwZcJx4SCDetILiI4iIi0wRHwZJwg1EQmNjDEJiFBgsRESMxZKiwYgkgwgrJj\/DH1FwkDBe4XQiIiJUIGZwQbBgg0xBf\/\/\/\/\/\/\/\/\/+IiDRFUIjCBkUMER\/YLgg8OIUGRw4YeFERJcxE63ERERNbLoODM5hzOUXIWMKmMLgqj\/\/\/\/\/+oi0IiIMzhCLOOewgyEiGFhhPCCsRERKfERFf\/SoW4gqX8E8V96+3S96+9P2q+Woqx8yPkfeDK1r\/hBi3LUW0W5IZ+S\/8tQFoOFvsaPWv\/7RDxEXoIuhLcLk\/\/HLw1LUKUOW6XkeLPSLskZH7\/\/\/9sNAzjpBdQoYYiJuEMpJ\/\/DBjWtwzUt\/+JeCBaUtQbzCcT8P\/+CCCQZTUAyphnk3ESPjmKFnJKWoTxI+IiFhf\/4hlNRSOofLOkBTLkRzI+R4ui6MZHzCMjKyQmv\/\/\/\/8tQCglIjkGgcREREREgeCgczmHOOfagMEEKfFFwgjOVB4Kg454KfM5TkbmHJOQPDQOTHIjiIiQLHLcw5nKjBmk1\/\/\/\/\/\/\/\/\/5aitAzs4sGGCCSCBAtBXwqCTPwU8T2YRxGMxEfI8XReI+YRjI+YiPkeLxHyPCJEIvEeLxHi8RyLsuy8R4uB4aheBS6LouElqVwJEfEj5H4QiIiIiIiIiIiIZThIIRG2C7hYcGEkIiIiIiIkryPF4jiF0XiPFxlxl4jgeCguRHi6MZhf\/\/\/\/\/\/\/\/\/\/+WojEREUGIiIiIiItiIn8REREpBnEXRjI+R8jxeI5kcyOReCCSCEQezGTzCpWhERERERERId\/\/+GL1TO1nKda1f2hI8OSVN3\/\/\/lqZA+6a4VKoM9IdBkVENEXmnKFggRdAnf\/\/\/\/+GUgzOCBcWmSQOHC6BAgwRUKvBsOCI+FaBFw8EcdYQiLv\/\/\/\/\/ZzhIKPTonMpIQwj1h6hmZ1jMPkx9BBB8g8ECEPklZcJf\/\/\/\/\/7oOLjMw5+OE3wsQp7CXg9S1HzEGWzqYIj8kPRIeFiDrE0ChAwQIMLer\/\/\/\/\/\/\/xwfGEsJZPnIj0wwaNwMMIT0PtnBlCOL4wf1wXJ+2mRNAgeiBqoUNIIzg4h1\/\/\/\/\/\/\/\/iwW+FHw6gyFL8QQRmoaCtI\/BElRy0zTMIzSB8MKHNA\/5SxAuP7QQQYYa\/\/\/\/\/\/\/\/0EEocL\/Bfc7ePg+CBcIEU9CsLxUj71hiFol+FqVL0R5xGGFeCI8CKdhhV\/\/\/\/\/\/\/\/+WmqcJBDB+F1h+nhGRyU3XERUPgrRHzCgoeHgv92\/+ECCwRBE9P\/\/\/\/\/\/\/\/4IPwcLCwYWwl6X4hQ\/Ig+E1QQiwvDsceGDC4WES1Bhmi9iiQof\/\/\/\/\/\/\/+u1Uij0FxCDJD4MQggg+HOOCI5wwwliZjL1EfERJCFk+BZWIvWccOGgXCDZeI+CCCDf\/\/\/\/\/\/\/8tMKUqEEETdL7GEOIiIhhBAjSCW7EQQdYUEhDDBBUg8INBYZWiBnHUJv\/\/\/\/\/wZxwXB2+GEMILYiKURwRpmbmqXCDE0wwdP\/\/\/+CKcJAvI+YRjMIuihQRH3hHSBQYesFGDeIiIiQVnMOcczhZhF0YzCPZhHtQwwgSCE32\/\/\/\/\/\/\/\/4R4hIWQIcgrOIiIiIiIiJBHJDmcw54Kg\/FQfYkEIjSwQQSQI3n8j4kLyeLxHi4LReI4HhmEcyOZHi8R4ujGR4ujGpmrf\/\/\/\/\/\/\/\/\/DoIIJBF5BIIREREl4jgyFyI8XA8NQvEcQvZjMIxmEe1iKQ8MRESnzCMZhF4jxdFyI4MEcMojg5HA8KXZdF4j\/\/\/\/\/\/\/\/sGIiIiIieiQi8eREDMZHyPkcNYjhm4QwgkEEEqEREf\/9maE9BCXQvEohCiXk\/\/LaJIwZ8yP0CtRDorAi0GqEG1\/\/xBIS8Lv8On\/74SqMLf\/LbhYrEJH9v\/LbiI5KWielw0FMQv\/+Ioqlf3\/gltfX\/FBNwSP6X+Py2wdbf\/SSUQQI\/F5\/\/hQyPJwkCBDX\/wniCPxTQQ\/\/Zmg64MzR3\/FI\/ty2xaEEEl\/18ab\/QRN1ElCRPBAn\/\/G0+Twtf+CBGaJuOSxSCQNN\/+W2qDybGkGY55GFLbWIMo2M4\/\/+IUuQmbBBN8zRNlPBikv\/y20sIIsJ8pyooEv\/4jkIgp6b8HQczRdJf\/\/hHiISh\/WGTYrgQLhP\/\/+IQISPimCBCe1oIMxsS0E3\/+CDybFcgQpYIj2HCRPN\/\/+CKcKiP4oIECS4jwgg0C\/\/8tlagokcxOIYZ5Nw4cMKGTYtUKGl\/\/+CBCIgijZYQQTcJQ4Spf\/8IJQTdBBIQSPyX\/4Uuj2YSCFIj5hdWaISZzYzKmEghf\/\/\/glETIahK4OEKKcEnhaRoq\/\/8ILESPwgSeOCeJH0\/\/6nHDxN7USQkEJH8ui6zev\/\/+W0+FLoUEXhfFumJdE2BUOJnCl\/\/hAsW4Tw5jybChGcIJFQ0\/\/\/wo6BF1CJHCCl1XChH89CoOvUn\/\/\/xQQw7K9ISPpw5pZQhEEcgrZNf\/+InIQls+wk7EqW09ZeJtpKR9O\/\/\/\/8QRRsECiDI+EezUtjCRPhhgi5hGMYel\/\/\/oLBlQCESvDBun6CCQI48cukEXSf\/\/\/iCBZmi6H8RFq0CQSI+PSZ2N3\/\/6CxHFoYSwZlwMyDbrnYHf\/+goQM65hH4SPHJsYigugZxwSR2B3\/\/ltK0ZodBKLh4s5zspXCCLpR\/\/0ECBCW4KdY2dialtE6Gt4YbQ\/\/+MIIIty1F0aeECWInIj8MjwZl1sJztIf\/\/5bRSrBwZlyVJhhQSgqbCtCYv\/\/hAgQt8EoxZ6GbiZzYJ\/8EEJbl0XhI+nphJtf+giihtLZ6BBhF0LnYl\/\/4hI9G8RMaZ2gwyjY6hBCW9ECCaEwgQIf\/\/dI0megahIJRhOGahjYJExX\/\/4qfhbTbrgjjy3di0I\/\/ltLcCCimk5bRJi0gRhFclgyzYwv\/\/QRoWLbS+ggQYYt\/\/iGEIM0FGwkpbSwgkT5XWGDDb\/\/xLwnoT\/BF1BJQZU4IEIiXQv\/+PBs5sTPq\/BGiLoriSDMbAwdf\/\/jteEcZigglCE\/J\/\/jB5NlCDtS2CCI+V7j0D5NhkIl0n\/\/\/hHHCQRjMlhJZXToupKFi1HEMuSqScIECPYiI0v\/\/44ONWV9WCCLje4ggQ5X+BxEuk\/\/\/LYPh+hZjYwc9qOgrK\/MGc2VhCv\/\/lsHwoiChlGyiCKdxMISuiK84RGv\/CBhAhLpuJCIuMulK\/LX\/\/y2BUORw4grJmykShS2OUQyPg4YUqHf\/\/4JGIEW5VcREKNHrhMJBTGYQMiMwoTeR\/\/\/\/8IEIKIi4kfBIEUbleTnCI2QIEGVDZ6GNzH\/\/9UUQTUFERENCNwkR6yhCG\/\/\/0EI0J7ht4Z\/QQJmaBhJf\/\/4SJ+ceMHdsFhF0KGXUNr\/\/8QweLGDrYNT2CJOGaIK3\/\/+ISGCBXEOlDkP2ccI9hP\/\/\/Cn8cYYh24cQWzToj6X\/\/4eCLoxiE3hQgaEMQ0n\/+HBHHM6CC2uMROOGE1\/\/z+YSI3CRh2ew1ctgcXFnHBMEinjtf\/\/4PaGIsMKstg1Qc35dTDqFt\/\/\/\/DhLDiz2qpRhi4QIWHC\/\/8tg1QhsPZjgi6fBl4xbRPzjoMNP\/\/\/2ggnYMTeIiEccJqIYYgwxil\/91KdFAjy11ghBsWCT\/9hF1mM8ihAjwFUROTDETiEMN\/\/wRCKAYhGZiw5bH6oNr\/xckIIJZa6zhsab\/8EDI+5dIJKDiYR7QZvMJ\/\/\/8ORwdsRBW8IziPhwwRdJf\/\/iOZoKP3Hf\/9B6fBzxV\/8jK2wi6fRH\/FP\/8RI+R\/2oYWq\/+MPvCBFRa\/8tdYRioKqwgwyEFcMjzf\/+NBlPpKWxCiy6b\/8tcyQtClLXJLT\/\/rOJpuIUJKl\/4MFbtxHS\/V5a4LEf0\/\/CZdGMjz1RuBiXSv\/+7QV04qHhNf+WuVYhRT5+Dtf\/YhJPIdpOvwZnRITxEjmR4U\/+IbUtdKk\/xar92vW36V\/T170\/ar7dL3r7dL3p+1X7tetv0r+tv0r+nr3r7dL26XvT9qn7VfuWqQjG1\/sIuCL5UHHTf\/4iIpS1Q5\/xT15aocXR6bhhoEl\/iL0\/ar5avxdmbb57FL\/wy2oJ9BJP\/GE10\/y1f6qNv+Wr1S2DBNv\/ET2lLVGaCLr\/8RFul70\/q\/p2vWWqHkfMJv\/wQiDSztQt\/itv0pap4un\/4kI1APG\/ar7y1dUn+WrQiOTUT+v93DtfhJYv5apw6eZzDqv\/ERevty1ekvwpHMjivsuIn\/iLVfblq8jMkv+GwXzELf\/uf0r4v\/lpJcYRdF0qn9OExYNgxr\/w9C8QdP8tJb9qNr\/R2lIxmEXTctJLgQIMra2GLSX\/\/Fji3EUv5avTf5aS1EOdKCKcIuqQRcO\/\/\/w2fgQiei6TiGZrEq\/g1wRl6b\/y0iVOZPhAy7ShJRPz\/+ImQ6FOWkqxnbX\/hiDI+R8U7M5TglE7JTr\/\/EREEccheKagtiIr5apCbiZEMvGiS\/8IEE4bxEunT\/y1bDmXIVaoqDwCLr1\/\/\/EREumzBk5ty04woSSDop6X\/\/5aS0sj4c64kcXEJCR98MR0EZEWeltP\/\/\/hHs\/wyPm4RI\/jaTXVBA9GWQZWT\/RHrX\/\/\/\/\/Z26I6CcRf45dGds\/U\/\/\/8QRTcmIWgs0TUTOOyXEWepJ\/\/iJhGMjxdCT6CalqGSFBJBKxX\/\/LSNEIiGU1Cly0lqCDMWl\/\/h8K+FiKf+MIyDmpaS1M8pgk\/\/dRrEiNYL\/lpmunFr1v5aRojGnLSWkItfhViZeDDf5aS0gQSUQymoS\/y0lpBIjJ8Mj5Hi6skQp\/\/+E0gkR8RMTUMEIidkuK\/4iR8\/F0Y25aSxhmgEIpf+GU1jPCp\/yDDWC1hHazmEe1\/\/FNhF03aEUvx5aS0jK9v\/LSVcS6MZhClERE7WAw\/5ao+RxFiLflpLGRyLpKGUgraydqLH\/xCnan23oRS\/t5aSxin\/Zm60R8I487WIjxef\/\/8REbBCDWIMpwm\/8tRKxFKgm\/y0lINApS0lgU7S4un\/8QxI3KagI4IpqGS\/Z2ot5aSWkFf+Ehaidmmv5aSxBmaiy4cIIuj2l\/+WkqIIMRF4QYcjkn\/4iLVPy1ErMJqggpyX\/8RbicSX4vXy1Eoi7bopwyPJf+IiZUD+aCnbf\/whFKWoqoSif\/ExmEXgZWFuU0kOIgynKko0FMbX\/\/iLPERWgsnzceze\/\/\/lrhodaBAhFOJrW+GUzVhf\/4iIit\/Ttet\/Ttetv0r+t\/W\/rf1t+lf1v639b\/19ul70F7B0vevvX3r7\/1v639b+t\/W\/rf1v639b+t\/W\/rf1v6dr+TcZr+TcMHeTfyLoujGRzI8v\/\/gjQgsWXSRH3pAhQRoDCCTIJmEXSf\/\/\/hAgTMaBF2XSQRxwyJhQsG1WIMI46CwkEgRHMpEjQU+GYa\/\/\/\/\/+EEjQU4SHEcQi6BIIQwTLkRzKiI+8GDCyohlRZxxhBIw5xwkgjOy7CCRETAX\/\/\/\/\/\/8mxky6LpIJAgQigRcZckggkwQiGRwsMjxciDm7EMIJBCINBGdhBJBIIzlOU7Loui5QkJUUQ6YIBf\/\/\/\/\/\/4I45xwQIUErBBkeSCEJBhaCESnxKcGEZzDsl4u2DoJCy6QTEJQgkaEEcgJFwIReDQRnBhiy6IgNlf\/\/\/\/\/\/\/KgMJTjhkc4ZHJBCxOOMIUEZ0EZ0EGCMOZynKcw5Ctsa+DLsugwQIQSBAmXIGEjDhTOwQughCCFBCISLcER4iEY3\/\/\/\/\/\/\/\/8JBAgQZHwkEEgfQRxwqCEHEECEpw4nHDRbicc44iIYQkQbKbRhwwQIQlxNMIJDoMw5xzj4IEIIEJTw2XReCQRnETjmcpynBhykDtf\/\/\/\/\/\/\/\/\/hIJBBIIQxKcbERRH4ZHMj1hDhIpxDI8XDBHyPBGcpzDogyMZHDoIuvCSCQQIEGR5FOU5TtBIECFBIMw4hxKcJII45xzjmcRBhiI0U4iccg7aID\/\/\/\/\/\/\/\/\/\/\/jhghTEMjmxZdlyCE44TDI5CI0ETHM8Ik4QQZHyOSMOcczhF0QkuwQZHi6QIFgiPBggQhTOIIEJT5nGCCRh0IYiCLoNBBopxE44hIUEMIhhslH\/\/\/\/\/\/\/\/\/\/oIJIK2glCZdF5BkfI+EIRdBiU8NBNmcQwmXReBCU5TicdBCDBmcw9axCQJIIQRdBoIQmEhhmHDCQUITj4ZHIMRCZxxEpxE45nMOCLwIRRHyXZdF0\/\/\/\/\/\/\/\/\/\/\/\/BAhBwkYdBIIJGHDiU+y7svBlOMMTjhhExzjhghOOccSnEREIugzDmcbEQyHn9b0EZwRdBCEhhiy6QhMQ6CYQZiiFCQhItxE4+VMpzQOIlPRIdoSI2BZ\/\/\/\/\/\/\/\/\/\/\/aQQYYIEGYQRnQQbM4czgiPwkYeGDI5yoOODiU4cSnCQIRiU6I\/MOccWxOOpbkhwRcEKEloJl0XQSCEPiEgyPBiOIoIYiGCoIIImOGR8WghYTRhzj0W4wkEZxEw5nEMnn\/\/\/\/\/\/\/\/\/\/\/\/ggQhhmgpwgxKgOU45h2i3KdhlOU5TkIKjQSBAhhicc48MQkIbEpwgxDI5kcOXiOZHpEHOOTa4LhoIzhF0UmYURhAi5EfiVGJx7EMj0RDI4dFuU+IhMeEZ0ETikEHMOEhOOaBCQhzDiJDuYc8FNcx\/\/\/\/\/\/\/\/\/\/\/\/\/\/4oIaBkc5UHHDiU7iGDENFuKZnZdF0XEYiphzjqZxDiIuCBCEEwQZhoTjhkfI+R5CScpy3ERI2uDwbMUECFxwi6ggQZHMIzmHCCJxYlPDDI4cuHRhzwwhZeiU4QZTlOU5TlOiPxOOHQQggQluIiKI+zDnHEMjkXiPF4jmv\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4Iw4hhBIw5x1CSCpBCEGISDDFoECEJicc44IEGR4uIxHM4hF0RLMQQiIi4hBsvEflOgjOU5h2khOOJxxCQhIER54M0FQ4hIbQQSVl0XghKcKYcEXUQwxEREpwi8iN1DI+RzEZMcnBThhGcw4YSCGIg0ECRUHHsROOJxxKdBCl\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/wgRHCkeBGgMjyYIMjnBAgwgi6DKdBYoINnHOPBmHM5TlOGRxZhxaaBWXcMjkGISBWXRdCIiKJuIiJx28MpynKcJIjwIEXZcmISBEfCxDCEJQYgiPoWXQNBCGR5FuRoZcbEHOOKiceECBCDDQQhsMjxjN5Hi7LkR5f\/\/\/\/\/\/\/\/\/\/\/\/\/\/8LEMIJIjkkECBCU7DQQSpBGcp4aCwQIcp0EGMziIIEKYlOkYc45lkTjwYhhiCCEzhIw4xGggQRnFPBngJIIJGHxQRxwyP\/cUEIQQnHxxEIGZynEpynaMOIRdMRBmsZdl0xhExwgjOU7mccSniIntf\/\/\/\/\/\/\/\/\/\/\/\/\/\/gwgkCBBgsMwlhIKEkEDBFuJx4ZTimZxKcpwxZ4EQ4nHDRbmHsRIRBbwxBxHDI5Ri3BsEGEEsERxEgkwkVBx5eP4QIEJTsIMj5HoZHgQhmI0QzDnHOOEEZxsRSJDmciDhxKfzjmdWXRdTDmHpf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/QQSQQIE0aAQIMEwxoUEEXaEMjmRzhIUGKCM4hBEHBi0GGJTlPRbtigjOU+EzjjZnxQTQIEIy6CEU8aCCXgwgkCaCM4SEECEpynCQSBRKdhHHCQZHFknCDQRnhIIQoZHi6RhwkIikJnwyOcJJhkeBCQRynKCGdr\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4jCSCM7HiGR8j4QIEIiggkYcMjwYZHkYcINBBxEIMQ2KCxEtzDuIQY4tCIiQhAnHvYKgjlJxwkIoIzlOU4qy5AxQQShCccER8IzlOGETHOOEi3FM45nBAhCRh0zOHMO5xzOmZynKcw5nMOTHJOgzDjX\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/ERGgjOU4oIQyPsMjxdBGcRRHwwQIRcQyPRENhkchEWItCU+NMEGR5CIighBAhOOLCEw5DDma4vjQQZHkYcJBQkGGJTlOU7sui7mcQwzDmfE44czlRmHEJnHOOG0EKkhzOJxxEzqZxEhhrq\/\/\/\/\/\/\/\/\/\/\/\/\/\/iGEgQINAhBBkeLqghDI\/QQgi4ygQjxdBYhTjiFEUEy5REKJnwQIQyPFxl4jiQyOi6Loui6LxHDDxERBhJBWJxwkwZhxIEDmfHCRhwwzDnHBgiTgiPBoIzhBmHBwQIcTjhIEEZwQIQkYcMMREcWXRdF4jmv\/\/\/\/\/\/\/\/\/\/\/\/\/+CBAtl1EVZdF0XiPF0XCIw6iOInHhjwhEONCFKfDET0ioCCM53MOGR4EIiIIj7xwYczlOCI8xEQkIlOYcXOOZwUtxRHgRbhJBmHM4UpzD5hw4hIIRGKCEQyPF4jyr\/\/\/\/\/\/\/\/\/\/\/\/iNBBghhlOYcSnKdBCccEXUUEDYZHlCDI5kfCCQ2Oy7hkc4mwpwQIREQniM46hghOOIiccUEkJxwgxEhJkbiEoYlOGGYcMjkXo5xzDhiDKg8FQccNf\/\/\/\/\/\/\/\/\/xEYIEJxzOU7LouhZxwkpTmHOOZxKcSnGEJThRZgUIzmHCiy8IiIvEMJIIMjioUE2IoImOCBCU6CM5T5nBAhy3EIMQkGjDiEv\/\/\/\/\/\/\/+IwQJl0xOPDKcpxE44oIRDI\/EYMTDmcMISnCYnHDbiIoqASTEpzDieBPxTjmcp4QSQRnCmdBBpkeS\/\/\/\/\/\/\/8REGggkYcSnYQlPQhkeBiIhxEJpBvXsvEcgwyPszikW5UBTOU8xoJBIIuv\/\/\/\/\/\/waCBAhCRh0ECBOJTuInHDiGRwILxH2JQ4bDiDOOgghhJEfRhxTM4IEIUzsvEcUjgoRhxCX\/\/\/\/\/\/xERhbZdF3EVDI5Iw4SLcty3Cice8RHoMpyoaE44hIQyODEpxDI8XS\/\/\/\/\/iMROPZnZeCJjnHCRhzOYcKJTlDiJBdynKcprq8swpSSEECEJBIUEIhIMIWXReI4heI4Vf\/\/\/\/8RZx0EccMjiItynEEGU5TiISLcROOZwbxET0YQIQQIQyPFyCEShwQIQyPkeLkECX\/\/\/\/8RE90EccEGkJTggQigjOMj7xERYIEyPkcMojmK\/\/4iJojGYiORdvERB4L\/xhrF6+9fevvX3r718soYhHngi3KcURyX\/8suGRzCM4nHDI+8EZ2XIIzsuRVmeS\/\/\/9BAgQZHkggQIMjiIERxSPvQiEkEIhIw5x0R+JxwkyX1\/\/\/\/wjOYcRM5hxCQjYSHIjlNs+kEEjDmhBBIw4lOU7QmHBF0i4GURHE\/\/\/\/\/\/8IJIIUCBCIMw4hkc5oFBWKsvEfKRLiEjDghBmhl5gyPIOcc8NiIOSbSf\/\/\/\/\/ow4hJgwQIWhQQSEUjQU4KQw2p9l4IFEpwwjOU4nHBs45x2xFynMOEVEXT\/\/\/\/\/\/\/QQSgxKcIMRKcTj0OCRblPYSMODiRGyK4QSQSCOOccQ5hxKcQ2Eg2Igi6SCFIw5J7\/\/\/\/\/\/\/8Iug2XResvBGcpwkJT0YdBQZblOwgkYcNcQlEJBCwhFBCDaCxBAhURDiIIjz\/\/\/\/\/op0EGDEzoMpynKcJUCBCFKcQRH2ZynCnHOOy6XEJGHCRhxYQiNmdEfswcSnCWIZHNCy8En\/\/\/\/\/\/\/ggQiiPxPCmcp1EJYhUEMMECEIugjOISCXEqAkExYYiw0FmHOOGEIVl4LEp0En\/\/\/\/\/\/4IuQVFOU5ToIzlQouIwzDnHDYiiPow+1hIIzimGEEXURbM6I+EZzDhBCIU45xxxEEXT\/\/\/\/\/\/\/hhkckIc45x1FhiFDDKcw4cWXRdBExwQINPBAmY2Z3Fl3M4YQgghCQQMRBxQQTX\/\/\/\/\/wkINIIzqCBBkfDEp4ZhwcQ0SHOOkYca4lOU4UUE4hJxYTLueCnKexFxOOcdP\/\/\/\/\/\/7HRHwjOy6QIEKZnhoLERCDMOceECBC1hoJwyOKwyOUMjmEy9JPjiJx7\/\/\/\/\/+EEgwwkYcJAgTLwbL1BOCBCCL0JFuU5TilwyPkeLoEISDiggogwxOPhkcmGRwpHi6f\/\/\/\/\/\/hIUFlOGR5hIHMOccIIzjQnH8zggQoV0ECBDCDI8kkEZ0xHQRnTM4oMUELf\/\/\/\/\/\/DCRhwaBAhQTYiFJjhxQVbggTLoui8tiMEy40W4YYhIQRHmGR8j3ERCb\/\/\/\/\/RTlOU5TkEg45nQRnVBGcKYcMj5HlQSFNl4j5H0rQQ5ToEKCFBOKCDhIECERTFxCQ3\/\/\/\/\/8aCDI+YGXZdFylOITE45xzj0W5h844lPWGy4QvBIIMjnEqA5nCQsvcUs44b\/\/\/\/\/\/7QRnKdBCCBCEgQQhUEJToLQRnbEQawwQIRCRhwkYcQi6DKcqAw0EEgoiCnHOOccJ\/\/\/\/\/\/\/GU6CFBMuhCEQUpxDI5zDnHDQiKWwkYcTjjDLcGzOU4hBCy4cjxeMJngp2\/\/\/\/\/\/+IgwkUBggQZH6CEpwwzDiYcJCJHWIZHliIYhJxQRnCCZdFyI5F0XiPFymHCV\/\/\/\/\/\/xEGEhDDQQlOJxxEJYIj7xBF0ugjOU4QQnHDI8jDnH0EEqzjhv\/\/\/\/\/\/hhhBhggTLkEIoIRCiy7WIiEEkEZxOOccJGHM6I\/KgQRdP\/\/\/\/+LhhkeQoIJBgnE441iInuGYSUECE46f\/\/8REQgkEqwZ7Cb\/xBnbKWCiwfpX9b+t\/W\/rf1v639b+t\/6+9fevvX3r7196+9BewdAvYOl7CoP3r719hUD8r1bUE0F+DR2B5D2Dp6CMlRlETmjDr\/\/+vChdj5BxQvB8OVxrX\/\/\/7qGghOxGocc7BxUT3TC5I1rQSoM8RoS\/\/\/\/\/pGyCqT5sjr\/3+wgfMrZVN9mcDg4IHOODBMJZPnoj58z5kPMMKdURXI+Rn+47CCkKQZaUYM5zNIJ\/\/\/\/\/\/\/\/\/\/\/\/dtIIIMIQYYNaCUHDhsEEDB4l2SaGDJ+3CkPHCww+DDBTQkGdikVCelTYdoOOIQQXegYYc0nChsEEDMhBzQjwzQzRl4kRhnCNIpEXinR3pww8Jwtg+4UjCJal\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/7tIINbQR0VB9JcLCDDSfh3u0GEEf2EDI5wsEgZjgmTBmcpyoNoUXwgsNdwrwVg5KAp1R7KdGMgae18LfCS\/fh\/6SD\/h9QwwwoTDcIFaBA3QjBnoTEpsjxFET5hHXQYeF6h4QhgtMKGYhCR46ByQj0dc3r\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+tN+oj+4W8KYwoQQ9uFD3v46CXChh9JcIOD4IJmoz5uRxCRBciKt+GOQp03CD4UGciJH39pB9yXyH\/pB3C4j7qHCCcJLdB8IJpKxQV\/XCUMOg+eIFDwz5ggZsQojcSIwREu6W4WRXYa4WGEcGrCCtf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/rCvigv2wglD+EF1w\/Cm+C\/x8JNBhi374bhYNg\/wZsQ4wggwwQgyIYIiInCJ4wKOdCNUEoePhhr66QYbC9uHVSXx+ElDf+H2Fww0EGEI9hJd4QhSf4YSr9BahYUIMEw\/DLoHBnB4Iw8FToEVwM0gZMjkhYcL1YhYfoH\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+oQfSCOi+G4fCC8P4cP4Xff1+H47i7uHhhp\/\/aB3EGw5oYQQSDYQIGwsI0IzInjTI5EiMGbI0yHnVYQUL3M1h+2vXC\/H9MIJIMMPhd8LY\/ioQUMJFOtBBw+Fz\/w8LCCrj0G4Wvh6BBUuHhh\/QRm0PszIEgUYdhcIHC\/LLMRMhES+Vf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/9uHeFkjvhUGHhQsMPpcJzHD4ZhYYcKECBCH8EVDQRrQcMP4Sh8O8L\/Yf1aCxww+E70Fdk7hw7ggQchS\/QchSNhXBExwYSMIIM6oTfkiIwiX9pJhUwpRBLcLD7hBhBh+lYWH4fDi\/pBQgvHwQIfQXDcLDCrDIf9f9\/hbCw8P\/CFwkH3Mw2BB\/uDB+G1E8wRMfDBBdoIII1gmfz+ai\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/6ty6DB9BAiPCgoe3b4QeaRpBtvw4cMH8HDvCpQ9sx4he9YWHhB3wQIfv36cUoWHhLaCzGg\/woQXYJh6hKSBv+WW0w4StgwwoYfDKgtBBlEExwcREWnMQjR\/wZLMixDhIOyKOCCbBnLhUFCC7NPf9BYcJQ8MMj6W4vqFwqwgQX\/CX8kdw8LDf1EeHh\/E1lYWGwinNfxD7C4SWOQ8HQXDRU\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/4pCI4hBBlOELOOeAoMNhoMiEBjfDaYYILyGYbdIn6ChBYbj\/I+quH\/h\/1w\/teoVB4SuEqw6CC+DbD+H+9Flj1g\/8h4dBeFbFh8iSCQYYiIiIiDKcIGYc4fXignCuDLv0wpIQeH7C8Mb0oWGHcOl\/wq6xuHYWG8P+\/\/Bg11DvQYOxC0lDh7eFHHw\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/iOIiIiIkvTjw4aBiCDDCBeC3jXhdYTh4QVQgv\/79p+g8LDjfWHXcWEHYWtsMj4SD7woQXw9kiS4XCCERxEGWnSBEeLkR9hhs4npgwR4cJh6hfeH\/mi9\/WGHwsPzCfbEK\/qFX6EcILQUP9BBar4f\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/wgwwkIiIiI4jdOHBAh9B69hcIIIPSUPf+HhLH8Mj4fzMM\/W7b8KgrD4cKHwv4YQVn2QFiIqDMMV\/7Ijg4NLhwsLhBHRhs0+EFhu14bCw8Ih3D8OqX\/rChQ4XD0EFx\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/xDoIyvEREREQyqBQRHyPDCsxhLXS2Q9AYUPCXhmi\/8RSCC68KqC+HwkGEg8LDhzrRERERERERERERERERERERERERERERERERERH\/\/\/\/ABABACmVuZHN0cmVhbQplbmRvYmoKOCAwIG9iago1NTgxNAplbmRvYmoKeHJlZgowIDkgCjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDAwMDAxNiAwMDAwMCBuIAowMDAwMDAwMDY4IDAwMDAwIG4gCjAwMDAwMDAyMTMgMDAwMDAgbiAKMDAwMDAwMDI3NyAwMDAwMCBuIAowMDAwMDAwNDUzIDAwMDAwIG4gCjAwMDAwMDA1NzEgMDAwMDAgbiAKMDAwMDAwMDU4OSAwMDAwMCBuIAowMDAwMDU2NjQ2IDAwMDAwIG4gCnRyYWlsZXIKPDwKL1NpemUgOQovUm9vdCAxIDAgUiAKL0luZm8gMiAwIFIgCi9JRFs8NkQ0NTAwMDAwRTdFMDAwMEZGMDYwMDAwNkMwQTAwMDA+PDZENDUwMDAwMEU3RTAwMDBGRjA2MDAwMDZDMEEwMDAwPl0KPj4Kc3RhcnR4cmVmCjU2NjY3CiUlRU9GCg=="
}
}
HTTP Request
GET v3/proofs_of_delivery/{proofs_of_delivery}
9. Parcel Images
Index
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->get("https://api.collivery.co.za/v3/parcel_images", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
'query' => [
'per_page' => "3",
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/parcel_images");
let params = {
"per_page": "3",
};
Object.keys(params).forEach(key => url.searchParams.append(key, params[key]));
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X GET -G "https://api.collivery.co.za/v3/parcel_images?per_page=3" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"data": [],
"links": {
"first": "https:\/\/api.collivery.co.za\/v3\/parcel_images?page=1",
"last": "https:\/\/api.collivery.co.za\/v3\/parcel_images?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": null,
"last_page": 1,
"path": "https:\/\/api.collivery.co.za\/v3\/parcel_images",
"per_page": "3",
"to": null,
"total": 0
}
}
HTTP Request
GET v3/parcel_images
Query Parameters
Parameter | Status | Description |
---|---|---|
per_page | optional | The limit per page. If this option is provided, links and meta will exist in the response with further information about the full list of addresses. 0 is the same as not limiting. Default is 100. |
waybill_id | optional | A waybill id that you would like to limit the parcel images to. |
Show
Get the base64 encoded image
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->get("https://api.collivery.co.za/v3/parcel_images/3041631", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/parcel_images/3041631");
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X GET -G "https://api.collivery.co.za/v3/parcel_images/3041631" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"data": {
"file_name": "3041631-1.jpeg",
"mime_type": "image\/jpeg",
"image": "\/9j\/4AAQSkZJRgABAQAAAQABAAD\/2wCEAAUFBQUFBQUGBgUICAcICAsKCQkKCxEMDQwNDBEaEBMQEBMQGhcbFhUWGxcpIBwcICkvJyUnLzkzMzlHREddXX0BBQUFBQUFBQYGBQgIBwgICwoJCQoLEQwNDA0MERoQExAQExAaFxsWFRYbFykgHBwgKS8nJScvOTMzOUdER11dff\/CABEIAAEAAQMBIgACEQEDEQH\/xAAUAAEAAAAAAAAAAAAAAAAAAAAI\/9oACAEBAAAAAGX\/AP\/EABQBAQAAAAAAAAAAAAAAAAAAAAD\/2gAIAQIQAAAAf\/\/EABQBAQAAAAAAAAAAAAAAAAAAAAD\/2gAIAQMQAAAAf\/\/EABQQAQAAAAAAAAAAAAAAAAAAAAD\/2gAIAQEAAT8Af\/\/EABQRAQAAAAAAAAAAAAAAAAAAAAD\/2gAIAQIBAT8Af\/\/EABQRAQAAAAAAAAAAAAAAAAAAAAD\/2gAIAQMBAT8Af\/\/Z"
}
}
Example response (403):
{
"error": {
"http_code_text": "Forbidden",
"http_code": 403,
"message": "You are not allowed to access that parcel image."
}
}
HTTP Request
GET v3/parcel_images/{parcel_image}
10. Towns
Show and search for Towns
Index
Show all towns for a country or search towns.
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->get("https://api.collivery.co.za/v3/towns", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
'query' => [
'per_page' => "3",
'search' => "Joh",
'province' => "Gauteng",
'country' => "ZAF",
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/towns");
let params = {
"per_page": "3",
"search": "Joh",
"province": "Gauteng",
"country": "ZAF",
};
Object.keys(params).forEach(key => url.searchParams.append(key, params[key]));
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X GET -G "https://api.collivery.co.za/v3/towns?per_page=3&search=Joh&province=Gauteng&country=ZAF" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"data": [
{
"id": 147,
"name": "Johannesburg",
"province": "Gauteng",
"latitude": "-26.204103",
"longitude": "28.047305"
}
],
"links": {
"first": "https:\/\/api.collivery.co.za\/v3\/towns?page=1",
"last": "https:\/\/api.collivery.co.za\/v3\/towns?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"path": "https:\/\/api.collivery.co.za\/v3\/towns",
"per_page": "3",
"to": 1,
"total": 1
}
}
HTTP Request
GET v3/towns
Query Parameters
Parameter | Status | Description |
---|---|---|
per_page | optional | The limit per page. If this option is provided, links and meta will exist in the response with further information about the full list of addresses.0 is the same as not limiting. Default is 300. |
search | optional | Search by town name. |
province | optional | Filter by province name. |
country | optional | The three letter abbreviation (ISO 3166) for the country. Defaults to ZAF. |
11. Suburbs
Show and filter suburbs
Index
Show all suburbs for a town or country or search suburbs.
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->get("https://api.collivery.co.za/v3/suburbs", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
'query' => [
'per_page' => "3",
'latitude' => "-26.212500",
'longitude' => "28.037500",
'town_id' => "147",
'country' => "ZAF",
'postal_code' => "2000",
'postal_code_range' => "100",
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/suburbs");
let params = {
"per_page": "3",
"latitude": "-26.212500",
"longitude": "28.037500",
"town_id": "147",
"country": "ZAF",
"postal_code": "2000",
"postal_code_range": "100",
};
Object.keys(params).forEach(key => url.searchParams.append(key, params[key]));
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X GET -G "https://api.collivery.co.za/v3/suburbs?per_page=3&latitude=-26.212500&longitude=28.037500&town_id=147&country=ZAF&postal_code=2000&postal_code_range=100" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"data": [
{
"id": 1936,
"name": "Selby",
"latitude": -26.2125,
"longitude": 28.0375,
"town": {
"id": 147,
"name": "Johannesburg",
"province": "Gauteng",
"latitude": "-26.204103",
"longitude": "28.047305"
},
"postal_code": "2001"
},
{
"id": 1458,
"name": "New Centre",
"latitude": -26.2125,
"longitude": 28.045799,
"town": {
"id": 147,
"name": "Johannesburg",
"province": "Gauteng",
"latitude": "-26.204103",
"longitude": "28.047305"
},
"postal_code": "2001"
},
{
"id": 683,
"name": "Ferreiras Dorp",
"latitude": -26.204201,
"longitude": 28.0375,
"town": {
"id": 147,
"name": "Johannesburg",
"province": "Gauteng",
"latitude": "-26.204103",
"longitude": "28.047305"
},
"postal_code": "2048"
}
],
"links": {
"first": "https:\/\/api.collivery.co.za\/v3\/suburbs?page=1",
"last": null,
"prev": null,
"next": "https:\/\/api.collivery.co.za\/v3\/suburbs?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"path": "https:\/\/api.collivery.co.za\/v3\/suburbs",
"per_page": "3",
"to": 3
}
}
HTTP Request
GET v3/suburbs
Query Parameters
Parameter | Status | Description |
---|---|---|
per_page | optional | The limit per page. If this option is provided, links and meta will exist in the response with further information about the full list of addresses. 0 is the same as not limiting. Defaults is 2000. |
search | optional | Search by suburb name. |
latitude | optional | A latitude to match a closest suburb against. Required if longitude is provided. |
longitude | optional | A longitude to match a closest suburb against. Required if latitude is provided. |
town_id | optional | Required without country . Can be obtained from /towns/ endpoint. |
country | optional | Required without town_id . The three letter abbreviation (ISO 3166) for the country. Defaults to ZAF. |
postal_code | optional | A postal code to limit the result set to. |
postal_code_range | optional | The range within which to match the postal codes. For example the 2000 with a range of 100 matches postal codes 1900 to 2100. Defaults to 0 (ie. exact postal code match) |
Show
Show details of one particular suburb. Loaded with Town details included
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->get("https://api.collivery.co.za/v3/suburbs/1936", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/suburbs/1936");
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X GET -G "https://api.collivery.co.za/v3/suburbs/1936" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"data": {
"id": 1936,
"name": "Selby",
"latitude": -26.2125,
"longitude": 28.0375,
"town": {
"id": 147,
"name": "Johannesburg",
"province": "Gauteng",
"latitude": "-26.204103",
"longitude": "28.047305"
},
"postal_code": "2001"
}
}
HTTP Request
GET v3/suburbs/{suburb}
12. Service Types
Show all service types or searched
Index
Get available service types with delivery days
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->get("https://api.collivery.co.za/v3/service_types", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/service_types");
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X GET -G "https://api.collivery.co.za/v3/service_types" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"data": [
{
"id": 1,
"code": "SDX",
"text": "Same Day",
"description": "Will be delivered same day at times specified",
"delivery_days": 0
},
{
"id": 2,
"code": "ONX",
"text": "Next Day",
"description": "Will be delivered next day at times specified",
"delivery_days": 1
},
{
"id": 5,
"code": "ECO",
"text": "Road Freight Express",
"description": "Will be delivered within 2 working days",
"delivery_days": 2
},
{
"id": 3,
"code": "FRT",
"text": "Road Freight",
"description": "For heavy cargo. Delivery within 3 working days",
"delivery_days": 3
}
]
}
HTTP Request
GET v3/service_types
Show
Get specific service type by id
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->get("https://api.collivery.co.za/v3/service_type/1", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/service_type/1");
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X GET -G "https://api.collivery.co.za/v3/service_type/1" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"data": {
"id": 1,
"code": "SDX",
"text": "Same Day",
"description": "Will be delivered same day at times specified",
"delivery_days": 0
}
}
HTTP Request
GET v3/service_type/{id}
13. Location Types
Index
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->get("https://api.collivery.co.za/v3/location_types", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
'query' => [
'search' => "business",
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/location_types");
let params = {
"search": "business",
};
Object.keys(params).forEach(key => url.searchParams.append(key, params[key]));
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X GET -G "https://api.collivery.co.za/v3/location_types?search=business" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"data": [
{
"id": 1,
"name": "Business Premises",
"surcharge": false,
"surcharge_amount": 0
}
]
}
HTTP Request
GET v3/location_types
Query Parameters
Parameter | Status | Description |
---|---|---|
search | optional | An optional search string matched against the location types names. |
surcharge_only | optional | {include, exclude} include will return only surchargeable location types, exclude will return only non-surchargeable location types. |
14. Terms and Conditions
Index
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->get("https://api.collivery.co.za/v3/terms_and_conditions", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/terms_and_conditions");
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X GET -G "https://api.collivery.co.za/v3/terms_and_conditions" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"data": {
"Definitions": [
{
"key": 1,
"value": "“MDS” shall mean MDS Collivery (Pty) Ltd, its staff, agents or sub-contractors."
},
{
"key": 2,
"value": "“Goods” shall mean any documents, parcels or freight accepted for carriage by MDS."
},
{
"key": 3,
"value": "“Carriage” shall mean the transport of goods from one point to another by MDS (the “Carrier”) using means it deems suitable."
},
{
"key": 4,
"value": "“Client” shall mean the party responsible for the payment for the carriage of the goods."
},
{
"key": 5,
"value": "“Owner” shall mean the party who has a financial interest in the goods."
},
{
"key": 6,
"value": "“Parties” shall mean the Client, the Owner, the sender, the receiver or the Carrier, as the context may require."
},
{
"key": 7,
"value": "“Waybill” is the accompanying document which identifies the Client, the number and weight of packages involved and instructions regarding the time and place of both the collection and delivery, copies of which are signed by the parties and serve as proof of handover of the goods from one party to the other."
}
],
"Terms and Conditions": [
{
"key": 1,
"value": "MDS is not a public\/common carrier and may refuse to accept any goods for carriage without providing reason for such refusal."
},
{
"key": 2,
"value": "By using our collection and delivery service you agree to be bound by our terms and conditions, as set out in this document, and you acknowledge that our terms and conditions will constitute a valid, binding and enforceable agreement."
},
{
"key": 3,
"value": "These terms & conditions shall apply to all transactions concluded by or on the Client's behalf on our website. (www.collivery.co.za or collivery.net)."
},
{
"key": 4,
"value": "A certificate issued by an administrator of our website shall constitute prima facie proof of any fact related to our website, including (but not limited to) which version of the terms and conditions that govern a particular dispute and the content that was published or functionality was available on our website at a specific point in time."
},
{
"key": 5,
"value": "For purposes of Section 22(2) of the Electronic Communications and Transactions Act, 25 of 2002 you accept that the agreement will be regarded as concluded at Randburg, Gauteng Province."
},
{
"key": 6,
"value": "All matters arising from this agreement, its validity, existence or termination shall be determined in accordance with the laws of the time of the Republic of South Africa, and you hereby submit to the jurisdiction of the Magistrates' Court of Johannesburg\/Randburg."
},
{
"key": 7,
"value": "MDS' prices are set out in its price list or are as negotiated or quoted to the Client and are subject to review from time to time."
},
{
"key": 8,
"value": "Prices quoted are based on the information provided by the Client. Should this information be found to be incorrect, MDS has the right to adjust the prices based on the correct information while continuing with the carriage."
},
{
"key": 9,
"value": "Any credit limit, invoice frequency, or payment terms set by MDS shall be at its sole and absolute discretion and may be changed by MDS depending on circumstances that MDS believes justifies such changes."
},
{
"key": "The Customer Acknowledges That",
"value": [
{
"key": 1,
"value": "In terms of the Disaster Management Act 57 of 2002 (\"the Act\") and the current Alert Level Regulations thereof (\"the Regulations\"), MDS Collivery can only deliver the goods to the Customer in relation to goods and services as defined in the Regulations (\"the allowed purpose\")"
},
{
"key": 2,
"value": "MDS Collivery is delivering the goods to the Customer on the strict understanding the goods are purchased and will be used and\/or on-sold by the Customer for the allowed purpose. The Customer indemnifies and holds(MDS Collivery, its affiliates and their respective personnel harmless from and against any liability and losses arising from or in connection with the Customer's failure to purchase the goods in accordance with the provisions of the Act and the Regulations."
}
]
}
],
"Liability": [
{
"key": "MDS' liability to the Client in respect of goods in its care:",
"value": [
{
"key": 1,
"value": "Will terminate once proof of delivery has been obtained from the receiving party at the address stated on the waybill."
},
{
"key": 2,
"value": "Shall be limited to an amount of R1 000.00 (One Thousand Rand)."
},
{
"key": 3,
"value": "Shall exclude indirect and consequential damages."
},
{
"key": 4,
"value": "Where MDS has agreed to accept the additional risk of carriage, such risk shall not exceed an amount of R10 000.00 (Ten thousand Rand) relating to any one waybill. This risk relates to the loss of goods, and does not cover damage resulting from inadequate packaging of the items by you or your agents. This acceptance of risk relates exclusively to the direct cost of replacement of goods, and shall in no way cover any indirect or consequential losses."
}
]
},
{
"key": 2,
"value": "Any claim for loss or damage should be lodged within 7 days of loss by completing the on-line claim form on the customer interface. Any claim lodged after such date will not be considered."
},
{
"key": 3,
"value": "Failure to supply necessary documents requested to support the claim will result in the claim not being considered."
},
{
"key": 4,
"value": "Valid Claims will only be paid by MDS in respect of any consignment after the Client has paid all outstanding Freight Charges in respect of that consignment and where the Client’s account with MDS has been paid in accordance with the credit terms extended."
},
{
"key": 5,
"value": "Freight charges relating to the consignment covered by the Risk Cover shall not be included in the calculation of any amount payable under the risk cover offered by MDS."
},
{
"key": 6,
"value": "Where a claim has been paid in full for goods damaged, MDS reserves the right to take possession of the goods as salvage and to dispose of such goods as it sees fit."
},
{
"key": 7,
"value": "MDS shall not be liable for failure to fulfil its obligations if such failure is due to war, civil disobedience, industrial dispute, acts of God, or any event beyond MDS' reasonable control."
},
{
"key": 8,
"value": "If MDS is unable for any reason to effect delivery of the goods, all reasonable steps will be taken to return the goods to the Client. The Client will, however, be responsible for the costs of carriage, attempted delivery and return of the goods. Any failure to deliver or any late deliveries may not be used as motivation for non-payment for that delivery."
},
{
"key": 9,
"value": "MDS will not be responsible for any fulfilment of Customs formalities or payments. However, MDS will assist the Client as far as possible, on condition that such assistance will be rendered at the sole risk and responsibility of the Client and the Client undertakes to indemnify MDS against any claims in this respect."
},
{
"key": "The Client warrants that:",
"value": [
{
"key": 1,
"value": "The goods are accurately described on the waybill."
},
{
"key": 2,
"value": "The waybill is printed and affixed to the parcel."
},
{
"key": 3,
"value": "The goods are adequately packed and accurately addressed on the system generated waybill to enable delivery to take place with ordinary care and handling."
},
{
"key": 4,
"value": "The Client has to the best of its knowledge and belief, complied with all laws, rules and regulations regarding, the carriage and that the goods are not prohibited by Government regulation."
}
]
},
{
"key": 10,
"value": "The Client agrees to MDS' terms of payment and agrees that MDS shall be entitled to suspend, delay and\/or cancel collection and\/or delivery of any consignment(s) in the event of non payment, or to hold the consignments until such time as the account has been settled in full or to MDS' satisfaction."
},
{
"key": 11,
"value": "Failure to pay your account within 30 (thirty) days from the date of delivery of a tax invoice will attract interest in terms of the National Credit Act."
},
{
"key": 12,
"value": "Disputes and account queries must be made in writing to the accounts department within 7 (seven) days after receipt of invoice with specific details of the dispute or query."
},
{
"key": 13,
"value": "You will be liable for all legal costs incurred by MDS on a scale as between attorney and Client, (including, but not limited to Sheriffs fees, collection commission and tracing agent's fees) in the event of MDS having to institute legal action in order to secure payment of any outstanding account."
}
],
"Risk Cover Exclusions": [
{
"key": "MDS will not be liable for any claims made by Client in any of the following circumstances:",
"value": [
{
"key": 1,
"value": "Where the Client fails to submit the Claim to MDS within the relevant time limits."
},
{
"key": 2,
"value": "Where MDS is in possession of an unendorsed proof of delivery form for the consignment."
},
{
"key": 3,
"value": "Where the Goods consigned are Excluded Goods, where “Excluded Goods” means each of the following items:- \n Money, bullion, credit cards, pre-paid cards, jewelry, watches, precious stones, furs, treasury notes, securities; stamps, patterns or manuscripts, plans, designs, explosives and all livestock or plants, guns, ammunition, hazardous goods and dangerous goods \/ materials, negotiable instruments, gemstones, works of art, securities, drugs, all framed pictures; artwork, solar panels or parts, mirrors and negotiable instruments, including collectible coins, cellphones, furniture and antiques, including fossils or fossil pieces, motor vehicle panels and body parts including windscreens are carried entirely at your risk. Second - hand goods that have not been declared as such to MDS, who reserves the right to inspect second hand goods before acceptance and to delay the transit time by one day to effect such inspection."
},
{
"key": 4,
"value": "Where MDS in its reasonable opinion considers the Packaging of the Goods to be inadequate for rail, air or road transportation. In the event of a claim for damage, the receiver must retain all inner and outer packaging materials as well as the damaged goods. Failure by the receiver to retain the original goods and packaging at the original delivery location or the failure to make the delivered goods available for inspection will invalidate the claim."
},
{
"key": 5,
"value": "Where the Goods are determined by MDS to have been defective prior to the Carriage."
},
{
"key": 6,
"value": "Where damage, mechanical failure or other operational defect in the Goods could not, in the reasonable opinion of MDS, have been caused by the Carriage."
},
{
"key": 7,
"value": "Where MDS fails, delays or is unable to carry out its obligations under this contract due to strikes and \/ or lockouts (whether of MDS' own employees or those of others and whether or not MDS could have avoided the same by acceding to the demands of the employees responsible for such action), acts of God, war, terrorism, fire, flood, embargo, litigation, acts of government or any agency instrumentality or any political subdivision thereof or any other cause beyond the control MDS."
},
{
"key": 8,
"value": "Where the goods have been lost or damaged as a result of derailments, collisions, overturning or any similar incident."
},
{
"key": 9,
"value": "Where the Goods have not been packed in the original manufacturer's packaging or the equivalent."
},
{
"key": 10,
"value": "Where the Delivery Address is a post office box, a roadside drop or postal mail box."
}
]
}
],
"Amendments to Terms and Conditions of Contract ": [
{
"key": 1,
"value": "MDS reserves the right to amend these terms and conditions of contract from time to time, without prior notice to the Customer."
}
]
},
"last_updated": 1605175290
}
HTTP Request
GET v3/terms_and_conditions
15. Battery Types
Index
Get all battery types, to be used when booking a waybill. Should be aggressively cached, or even statically defined.
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->get("https://api.collivery.co.za/v3/battery_types", [
'headers' => [
'X-App-Name' => 'My Custom App',
'X-App-Version' => '0.2.1',
'X-App-Host' => '.NET Framework 4.8',
'X-App-Lang' => 'C#',
],
]);
$body = $response->getBody();
print_r(json_decode((string) $body));
const url = new URL("https://api.collivery.co.za/v3/battery_types");
let headers = {
"X-App-Name": "My Custom App",
"X-App-Version": "0.2.1",
"X-App-Host": ".NET Framework 4.8",
"X-App-Lang": "C#",
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
curl -X GET -G "https://api.collivery.co.za/v3/battery_types" \
-H "X-App-Name: My Custom App" \
-H "X-App-Version: 0.2.1" \
-H "X-App-Host: .NET Framework 4.8" \
-H "X-App-Lang: C#"
Example response (200):
{
"data": [
{
"id": "pi_965",
"name": "PI 965",
"description": "Lithium Ion batteries packaged \/ sent on their own."
},
{
"id": "pi_966",
"name": "PI 966",
"description": "Lithium Ion batteries WITH equipment. (Same box, but NOT inside the item)"
},
{
"id": "pi_967",
"name": "PI 967",
"description": "Lithium Ion batteries contained IN equipment. (Not removed from the item)"
}
]
}
HTTP Request
GET v3/battery_types
16. Errors
The API uses the following error codes:
Error Code | Meaning |
---|---|
400 | Bad Request -- There is something wrong with the data you provided |
401 | Unauthorized -- Your API key is wrong. |
404 | Not Found -- The url does not exist or the specified resource could not be found |
405 | Method Not Allowed -- You tried to access an endpoint with an invalid method |
412 | Precondition Failed -- The data you provided fails validation. Please see error messages |
429 | Too Many Requests -- You're requesting too many times within a minute |
500 | Internal Server Error -- We had a problem with our server. Try again later. |