ZONES API
Manage resources and operations related to Zones.
GET Zone Meta & Zone Order
GET https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/meta
Required Scopes:
vani.spaces.read
Retrieves proto data for a specific Zone, typically used to access the Zone's structure and metadata.
Parameters
Name | Type | In | Required | Description |
---|---|---|---|---|
edition_id | string | path | Required | The unique ID of the edition. |
space_id | string | path | Required | The unique ID of the Space. |
Responses
200
success
200
using filter fields
401
unauthorized
success - Response
{
"data": {
"zones_info": {
"zone_meta": {
"598356E6-5F86-45FA-A7D5-ED8BB6D40DAE": {
"created_time": "Tue, 04 Feb 2025, 11:34:28",
"last_modified_time": "Tue, 04 Feb 2025, 11:34:39",
"zone_name": "Zone 3",
"space_id": "1505000000022005",
"author_zuid": "96384499",
"last_author_zuid": "96384499",
"status": "ACTIVE"
},
"0e1e3a8a-a115-463e-bdb6-f540ab37eeb6": {
"created_time": "Tue, 28 Jan 2025, 11:59:50",
"last_modified_time": "Tue, 28 Jan 2025, 19:34:28",
"zone_name": "Zone 1",
"space_id": "1505000000022005",
"author_zuid": "96384499",
"last_author_zuid": "96384499",
"status": "ACTIVE"
},
"6F961124-4598-47D6-9BDA-1705DFBA07D7": {
"created_time": "Tue, 04 Feb 2025, 11:34:26",
"last_modified_time": "Tue, 04 Feb 2025, 11:34:35",
"zone_name": "Zone 2",
"space_id": "1505000000022005",
"author_zuid": "96384499",
"last_author_zuid": "96384499",
"status": "ACTIVE"
}
},
"zone_order": [
"0e1e3a8a-a115-463e-bdb6-f540ab37eeb6",
"6F961124-4598-47D6-9BDA-1705DFBA07D7",
"598356E6-5F86-45FA-A7D5-ED8BB6D40DAE"
]
}
},
"message": "Zone metadata fetched successfully.",
"request_uri": "/vani/api/v1/editions/97375109/spaces/1505000000022005/zones/meta",
"status": "success"
}
using filter fields - Response
{
"data": {
"zones_info": {
"zone_meta": {
"2C2F0B19-AB4B-4E20-A90B-25D3D04FDC76": {
"created_time": "Tue, 28 Jan 2025, 11:26:29",
"zone_name": "Zone 2"
},
"5e312183-cdee-4fa8-a9a6-d73cbc5e16eb": {
"created_time": "Mon, 27 Jan 2025, 22:17:53",
"zone_name": "Zone 1"
},
"AFF83589-F98F-4120-9431-FDC96555FE13": {
"created_time": "Tue, 04 Feb 2025, 13:09:55",
"zone_name": "Zone 2"
},
"AFF83589-A98F-4120-9431-FDC96555FE13": {
"created_time": "Sun, 02 Feb 2025, 08:30:59",
"zone_name": "serialized zone"
}
},
"zone_order": [
"5e312183-cdee-4fa8-a9a6-d73cbc5e16eb",
"2C2F0B19-AB4B-4E20-A90B-25D3D04FDC76",
"AFF83589-A98F-4120-9431-FDC96555FE13",
"AFF83589-F98F-4120-9431-FDC96555FE13"
]
}
},
"message": "Zone metadata fetched successfully.",
"request_uri": "/vani/api/v1/editions/96499735/spaces/3009000000095397/zones/meta",
"status": "success"
}
unauthorized - Response
{
"error": {
"details": {
"current_user_id": "96384499",
"error_code": "A1003",
"edition_id": "97375109",
"message": "The user doesn't have permission to perform this action",
"space_id": "1505000000022005"
}
},
"request_uri": "/vani/api/v1/editions/97375109/spaces/1505000000022005/zones/meta",
"status": "error"
}
Code Examples
cURL
Command line HTTP client
JavaScript
Fetch API example
Python
Requests library example
cURL
curl -X GET "https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/meta" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json"
JavaScript
const response = await fetch('https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/meta', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
}
});
const data = await response.json();
// Process the response data
return data;
Node.js
const https = require('https');
const url = require('url');
const options = {
...url.parse('https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/meta'),
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
}
};
const req = https.request(options, (res) => {
let data = '';
res.on('data', (chunk) => data += chunk);
res.on('end', () => {
const result = JSON.parse(data);
// Process the response data
});
});
req.end();
Python
import requests
url = "https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/meta"
headers = {
"Authorization": "Bearer YOUR_ACCESS_TOKEN",
"Content-Type": "application/json"
}
response = requests.get(url, headers=headers)
data = response.json()
print(data)
Java
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.net.URI;
import java.time.Duration;
public class ApiClient {
public static void main(String[] args) throws Exception {
HttpClient client = HttpClient.newBuilder()
.connectTimeout(Duration.ofSeconds(10))
.build();
HttpRequest.Builder requestBuilder = HttpRequest.newBuilder()
.uri(URI.create("https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/meta"))
.header("Authorization", "Bearer YOUR_ACCESS_TOKEN")
.header("Content-Type", "application/json")
.timeout(Duration.ofSeconds(30));
HttpRequest request = requestBuilder
.GET(HttpRequest.BodyPublishers.noBody())
.build();
HttpResponse<String> response = client.send(request,
HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
}
}
Deluge
info "Making API request to: https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/meta";
headers = Map();
headers.put("Authorization", "Bearer YOUR_ACCESS_TOKEN");
headers.put("Content-Type", "application/json");
response = invokeurl
[
url: "https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/meta"
type: GET
headers: headers
];
if (response.get("status_code") == 200) {
info "Request successful";
responseData = response.get("response");
info responseData;
} else {
info "Request failed with status: " + response.get("status_code");
info response.get("response");
}
POST Create Zone
POST https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones
Required Scopes:
vani.spaces.create
Creates a new Zone within a specific Space in an edition.
Parameters
Name | Type | In | Required | Description |
---|---|---|---|---|
edition_id | string | path | Required | The unique ID of the edition. |
space_id | string | path | Required | The unique ID of the Space. |
create_zone | string | body | Based on Request | A JSON object containing the zone_name parameter to define the new Zone's name. |
zone_name | string | body | Based on Request | The name of the Zone to be created |
Request Body
JSON
{
"create_zone": {
"zone_name": "Zone 2"
}
}
Responses
200
success - json response
200
success - serialized response
200
success with template - json response
200
success with template - serialized response
409
zone limit reached
401
unauthorized
success - json response - Response
{
"data": "{\"space_data\":{\n \"id\": \"1303000000628003\",\n \"docDatas\": [{\n \"document\": {\n \"id\": \"c69d84b5-cc58-4117-86f3-2ce4fb124e7f\",\n \"meta\": {\n \"name\": \"Zone 2\"\n }\n },\n \"baseMeta\": {\n \"createdTime\": {\n \"seconds\": \"1747220128310\"\n },\n \"author\": \"60029267674\",\n \"collaborationId\": \"1248078836284880107\",\n \"current\": {\n \"version\": 0,\n \"time\": {\n \"seconds\": \"1747220128310\"\n },\n \"modifiedBy\": \"60029267674\"\n }\n }\n }]\n}}",
"message": "Zone created successfully.",
"request_uri": "/vani/api/v1/editions/60029715808/spaces/1303000000628003/zones",
"status": "success"
}
success - serialized response - Response
{
"success": true,
"message": "success - serialized response",
"data": {
"id": "example_123",
"name": "Sample Item",
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T10:30:00Z"
},
"timestamp": "2025-06-23T12:44:04.929Z"
}
success with template - json response - Response
{
"data": "{\"space_data\":{\n \"id\": \"1303000000628003\",\n \"docDatas\": [{\n \"document\": {\n \"id\": \"b8a6e4f6-de36-498f-8295-ffa9818cfec0\",\n \"meta\": {\n \"name\": \"Zone with template\"\n },\n \"elements\": [{\n \"type\": \"FRAME\",\n \"frameId\": \"EB077FC3-BD5F-4DE8-B5C0-1C018793AC44\"\n }, {\n \"type\": \"FRAME\",\n \"frameId\": \"7F62CCDF-CEB9-422B-883C-192F1C7648C3\"\n }, {\n \"type\": \"FRAME\",\n \"frameId\": \"83C5BBF4-24E1-408B-9369-1161998273B1\"\n }, {\n \"type\": \"FRAME\",\n \"frameId\": \"56E0A2FC-1254-43C1-9F05-DD797627A222\"\n }, {\n \"type\": \"FRAME\",\n \"frameId\": \"1B2BBCD8-2312-43FA-935B-0F6DBBC07FE6\"\n }, {\n \"type\": \"OBJECT\",\n \"shapeObject\": {\n \"type\": \"GROUPSHAPE\",\n \"groupshape\": {\n \"shapes\": [{\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"ABBBCA72-8EE4-4BB6-8B13-80E24187C2FC\"\n },\n \"nvODProps\": {\n \"locks\": {\n \"noTextInput\": true\n }\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 720.0,\n \"height\": 1184.249\n },\n \"pos\": {\n \"left\": -2096.788,\n \"top\": -104.633,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"ROUND_RECT\",\n \"modifiers\": [0.021768214]\n }\n },\n \"effects\": {\n \"shadows\": [{\n \"type\": \"OUTER\",\n \"color\": {\n \"type\": \"CUSTOM\",\n \"tweaks\": {\n \"alpha\": 0.94\n },\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.25,\n \"brightness\": 0.0\n }\n },\n \"distance\": {\n \"radius\": 10.0,\n \"angle\": 90.0\n },\n \"blur\": {\n \"radius\": 16.0\n }\n }]\n },\n \"fills\": [{\n \"type\": \"PATTERN\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.99\n }\n }\n },\n \"pattern\": {\n \"foreground\": [{\n \"dim\": {\n \"width\": 39.0,\n \"height\": 17.0\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [41, 41, 41],\n \"colorModelRep\": \"RGB\"\n }\n }\n },\n \"geom\": {\n \"type\": \"CUSTOM\",\n \"custom\": {\n \"pathList\": [{\n \"width\": 0.024566928,\n \"height\": 0.010708662,\n \"path\": [{\n \"type\": \"M\",\n \"m\": {\n \"x\": 0.009238845,\n \"y\": 0.0\n }\n }, {\n \"type\": \"L\",\n \"l\": {\n \"x\": 0.0,\n \"y\": 0.009133859\n }\n }, {\n \"type\": \"L\",\n \"l\": {\n \"x\": 0.0,\n \"y\": 0.006089239\n }\n }, {\n \"type\": \"L\",\n \"l\": {\n \"x\": 0.0061942255,\n \"y\": 0.0\n }\n }, {\n \"type\": \"L\",\n \"l\": {\n \"x\": 0.009238845,\n \"y\": 0.0\n }\n }, {\n \"type\": \"C\",\n \"c\": true\n }, {\n \"type\": \"M\",\n \"m\": {\n \"x\": 0.01847769,\n \"y\": 0.0\n }\n }, {\n \"type\": \"L\",\n \"l\": {\n \"x\": 0.015328084,\n \"y\": 0.0\n }\n }, {\n \"type\": \"L\",\n \"l\": {\n \"x\": 0.024566928,\n \"y\": 0.009133859\n }\n }, {\n \"type\": \"L\",\n \"l\": {\n \"x\": 0.024566928,\n \"y\": 0.006089239\n }\n }, {\n \"type\": \"L\",\n \"l\": {\n \"x\": 0.01847769,\n \"y\": 0.0\n }\n }, {\n \"type\": \"C\",\n \"c\": true\n }, {\n \"type\": \"M\",\n \"m\": {\n \"x\": 0.0061942255,\n \"y\": 0.010708662\n }\n }, {\n \"type\": \"L\",\n \"l\": {\n \"x\": 0.009238845,\n \"y\": 0.010708662\n }\n }, {\n \"type\": \"L\",\n \"l\": {\n \"x\": 0.012283464,\n \"y\": 0.007664042\n }\n }, {\n \"type\": \"L\",\n \"l\": {\n \"x\": 0.015328084,\n \"y\": 0.010708662\n }\n }, {\n \"type\": \"L\",\n \"l\": {\n \"x\": 0.01847769,\n \"y\": 0.010708662\n }\n }, {\n \"type\": \"L\",\n \"l\": {\n \"x\": 0.012283464,\n \"y\": 0.0046194224\n }\n }, {\n \"type\": \"L\",\n \"l\": {\n \"x\": 0.0061942255,\n \"y\": 0.010708662\n }\n }, {\n \"type\": \"C\",\n \"c\": true\n }]\n }]\n }\n }\n }],\n \"background\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [25, 27, 34],\n \"colorModelRep\": \"RGB\"\n }\n }\n },\n \"distance\": {\n \"left\": 39.0,\n \"top\": 17.0\n },\n \"preset\": \"PRESET8\",\n \"rotate\": 0\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"NONE\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"MIDDLE\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"NORMAL\",\n \"normal\": {\n \"fontScale\": 1.0,\n \"lineSpaceScale\": 1.0\n }\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.94\n }\n }\n }\n },\n \"size\": 18.0\n }\n }],\n \"style\": {\n \"halign\": \"CENTER\",\n \"level\": 1,\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.0\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n },\n \"id\": \"772B4CD3-FB1C-44BA-8992-E4A1675216F9\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"565ECE5E-A55C-4CEF-A012-F31BEB90399B\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 719.167,\n \"height\": 8.0\n },\n \"pos\": {\n \"left\": -2096.371,\n \"top\": 652.901,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.37\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 1.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"NONE\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.57222,\n \"saturation\": 0.93,\n \"brightness\": 0.96\n }\n }\n }\n },\n \"captype\": \"FLAT\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"MIDDLE\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"NORMAL\",\n \"normal\": {\n \"fontScale\": 0.25,\n \"lineSpaceScale\": 0.8\n }\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.94\n }\n }\n }\n },\n \"size\": 18.0\n }\n }],\n \"style\": {\n \"halign\": \"CENTER\",\n \"level\": 1,\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.0\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n },\n \"id\": \"8819519F-8957-41FC-B808-05CF88FE8FC0\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"1F2EA8B8-42C5-4271-BCBA-83504EEAD6C6\"\n },\n \"nvODProps\": {\n \"textbox\": true\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 633.265,\n \"height\": 105.016\n },\n \"pos\": {\n \"left\": -2055.5813,\n \"top\": 518.377,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\",\n \"modifiers\": [0.0]\n }\n },\n \"fills\": [{\n \"type\": \"NONE\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"fill\": {\n \"type\": \"NONE\"\n }\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"TOP\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"autoFit\": {\n \"type\": \"SHAPE\"\n },\n \"textStyle\": {\n \"props\": {\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n },\n \"hidden\": false\n }\n }\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"t\": \"Got an upcoming release? Here\\u0027s an easier way to plan and execute your marketing goals, so that you get everything covered. \",\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"NONE\"\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.1\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"750B903F-5E32-44E4-8EA5-0CE526AA8A61\"\n }]\n },\n \"edit\": {\n \"htmlbox\": true\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"EB35ED71-DD31-4909-882C-3037E7DC2785\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 414.853,\n \"height\": 68.148\n },\n \"pos\": {\n \"left\": -2049.021,\n \"top\": 704.377,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"ROUND_RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.69167,\n \"saturation\": 0.2,\n \"brightness\": 0.96\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 1.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"NONE\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.57222,\n \"saturation\": 0.93,\n \"brightness\": 0.96\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"MIDDLE\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"NORMAL\",\n \"normal\": {\n \"fontScale\": 1.0,\n \"lineSpaceScale\": 1.0\n }\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"t\": \"How to use the template\",\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 24.0,\n \"fontweight\": \"BOLD\"\n }\n }],\n \"style\": {\n \"halign\": \"CENTER\",\n \"level\": 1,\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.0\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n },\n \"id\": \"0F3E958C-81AD-4145-9846-5152D85821B6\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"395886AD-E055-491E-859E-9E00BA91AC23\"\n },\n \"nvODProps\": {\n \"textbox\": true\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 630.0,\n \"height\": 230.76\n },\n \"pos\": {\n \"left\": -2051.788,\n \"top\": 809.75,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"NONE\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.57222,\n \"saturation\": 0.93,\n \"brightness\": 0.96\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"NONE\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.57222,\n \"saturation\": 0.93,\n \"brightness\": 0.96\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"TOP\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"SHAPE\"\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"t\": \"Edit the content in the existing list to match your current goals\",\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0,\n \"underline\": \"NONE\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"CHARACTER\",\n \"character\": {\n \"ch\": \"8226\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 24.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 30.0\n },\n \"indent\": -26.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"857D421A-62FB-42BF-ABE0-00D90859C1F0\"\n }, {\n \"portions\": [{\n \"t\": \"Add new goals and extend the list as needed\",\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0,\n \"underline\": \"NONE\"\n }\n }, {\n \"t\": \" \",\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0,\n \"underline\": \"NONE\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"CHARACTER\",\n \"character\": {\n \"ch\": \"8226\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 24.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 30.0\n },\n \"indent\": -26.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"52EA1607-DF40-44B9-BD3C-8663EE82D0EB\"\n }, {\n \"portions\": [{\n \"t\": \"@mention specific teammates for assigning tasks and milestones\",\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0,\n \"underline\": \"NONE\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"CHARACTER\",\n \"character\": {\n \"ch\": \"8226\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 24.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 30.0\n },\n \"indent\": -26.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"4DAB8BD2-292F-42A1-907F-DFD2AD93CCA8\"\n }]\n },\n \"edit\": {\n \"htmlbox\": true\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"A9163F82-1CBD-4C2B-A5AB-B9155C392DDC\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 660.514,\n \"height\": 169.34006\n },\n \"pos\": {\n \"left\": -2063.708,\n \"top\": -66.8235,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"ROUND_RECT\",\n \"modifiers\": [0.060250677]\n }\n },\n \"fills\": [{\n \"type\": \"NONE\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.68889,\n \"saturation\": 0.03,\n \"brightness\": 1.0\n }\n }\n },\n \"gradient\": {\n \"type\": \"LINEAR\",\n \"rotate\": 0,\n \"stops\": [{\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [18, 18, 18]\n },\n \"position\": 0.0\n }, {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [255, 255, 255]\n },\n \"position\": 1.0\n }]\n },\n \"pattern\": {\n \"foreground\": [{\n \"dim\": {\n \"width\": 0.0,\n \"height\": 100.0\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [18, 18, 18],\n \"colorModelRep\": \"RGB\"\n }\n }\n },\n \"stroke\": {\n \"type\": \"SOLID\",\n \"width\": 4.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"LINE\"\n }\n }\n }],\n \"background\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [255, 255, 255],\n \"colorModelRep\": \"RGB\"\n }\n }\n },\n \"distance\": {\n \"left\": 6.0,\n \"top\": 100.0\n },\n \"preset\": \"wdDnDiag\",\n \"rotate\": 315\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 1.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"NONE\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.57222,\n \"saturation\": 0.93,\n \"brightness\": 0.96\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"MIDDLE\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"SHAPE\"\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"t\": \"Marketing Release Checklist\",\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 48.0,\n \"italic\": false,\n \"underline\": \"NONE\",\n \"fontweight\": \"BOLD\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.0\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n },\n \"id\": \"EE262FE6-482A-4511-AADD-65B99D4AA473\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"72CF2DD7-96E4-4D80-88ED-6B52D373CD0F\"\n },\n \"nvODProps\": {\n \"locks\": {\n \"noTextInput\": true\n }\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 630.0,\n \"height\": 340.0\n },\n \"pos\": {\n \"left\": -2051.7888,\n \"top\": 140.3268,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"ROUND_RECT\",\n \"modifiers\": [0.056994356]\n }\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.66667,\n \"saturation\": 0.0,\n \"brightness\": 0.96\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 1.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"NONE\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.57222,\n \"saturation\": 0.93,\n \"brightness\": 0.96\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"MIDDLE\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"NORMAL\",\n \"normal\": {\n \"fontScale\": 1.0,\n \"lineSpaceScale\": 1.0\n }\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.94\n }\n }\n }\n },\n \"size\": 18.0\n }\n }],\n \"style\": {\n \"halign\": \"CENTER\",\n \"level\": 1,\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.0\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n },\n \"id\": \"76571495-63C9-474D-93FA-91DDED7EDBB0\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"54E1F591-43DE-43E4-ABE8-78EF261A8A15\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 150.0,\n \"height\": 205.428\n },\n \"pos\": {\n \"left\": -2014.076,\n \"top\": 184.71,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.33333,\n \"saturation\": 0.05,\n \"brightness\": 0.95\n }\n }\n }\n },\n \"captype\": \"FLAT\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"MIDDLE\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"NORMAL\",\n \"normal\": {\n \"fontScale\": 1.0,\n \"lineSpaceScale\": 1.0\n }\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n }],\n \"style\": {\n \"halign\": \"CENTER\",\n \"level\": 1,\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.0\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n },\n \"id\": \"71B312C5-9AF5-428D-8DD6-BAE477F3DB44\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"39283126-0C95-4584-9B2F-A6AC60A3CF89\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 150.0,\n \"height\": 235.993\n },\n \"pos\": {\n \"left\": -1811.788,\n \"top\": 183.588,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.1,\n \"saturation\": 0.11,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"captype\": \"FLAT\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"MIDDLE\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"NORMAL\",\n \"normal\": {\n \"fontScale\": 1.0,\n \"lineSpaceScale\": 1.0\n }\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n }],\n \"style\": {\n \"halign\": \"CENTER\",\n \"level\": 1,\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.0\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n },\n \"id\": \"71B312C5-9AF5-428D-8DD6-BAE477F3DB44\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"49E3626E-FDA0-4949-B418-B22680F2D761\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 150.0,\n \"height\": 195.417\n },\n \"pos\": {\n \"left\": -1609.5,\n \"top\": 184.71,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.53056,\n \"saturation\": 0.18,\n \"brightness\": 0.95\n }\n }\n }\n },\n \"captype\": \"FLAT\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"MIDDLE\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"NORMAL\",\n \"normal\": {\n \"fontScale\": 1.0,\n \"lineSpaceScale\": 1.0\n }\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n }],\n \"style\": {\n \"halign\": \"CENTER\",\n \"level\": 1,\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.0\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n },\n \"id\": \"71B312C5-9AF5-428D-8DD6-BAE477F3DB44\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"2FD6F416-4088-4204-8170-979EA7564BC3\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 14.978,\n \"height\": 15.768\n },\n \"pos\": {\n \"left\": -2000.9501,\n \"top\": 283.023,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"NONE\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.52222,\n \"saturation\": 1.0,\n \"brightness\": 0.84\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"captype\": \"FLAT\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"MIDDLE\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"NORMAL\",\n \"normal\": {\n \"fontScale\": 1.0,\n \"lineSpaceScale\": 1.0\n }\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n }],\n \"style\": {\n \"halign\": \"CENTER\",\n \"level\": 1,\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.0\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n },\n \"id\": \"C45DDE60-AAA7-42AB-B552-ED21065AF6BE\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"2FB6CF9A-8172-4E8D-B161-BF83937E0D5D\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 81.14733,\n \"height\": 7.981704\n },\n \"pos\": {\n \"left\": -1970.7406,\n \"top\": 287.7006,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"CUSTOM\",\n \"custom\": {\n \"pathList\": [{\n \"width\": 81.14733,\n \"height\": 7.981704,\n \"path\": [{\n \"type\": \"M\",\n \"m\": {\n \"x\": 0.0,\n \"y\": 2.6605682\n }\n }, {\n \"type\": \"CC\",\n \"l\": {\n \"x\": 1.0,\n \"y\": 1.0\n },\n \"cc\": [{\n \"x\": 3.6952336,\n \"y\": 2.6605682\n }, {\n \"x\": 7.390467,\n \"y\": 2.6605682\n }, {\n \"x\": 11.085701,\n \"y\": 2.6605682\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 12.809439,\n \"y\": 2.6605682\n }, {\n \"x\": 16.29086,\n \"y\": -1.5417584\n }, {\n \"x\": 15.51998,\n \"y\": 0.0\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 13.421014,\n \"y\": 4.197934\n }, {\n \"x\": 41.616596,\n \"y\": 0.31020463\n }, {\n \"x\": 43.01252,\n \"y\": 0.0\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 44.022545,\n \"y\": -0.22445044\n }, {\n \"x\": 45.09593,\n \"y\": -0.17009795\n }, {\n \"x\": 46.116516,\n \"y\": 0.0\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 48.935196,\n \"y\": 0.46978027\n }, {\n \"x\": 50.646095,\n \"y\": 3.5791914\n }, {\n \"x\": 53.21136,\n \"y\": 4.4342804\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 62.007942,\n \"y\": 7.3664737\n }, {\n \"x\": 69.42057,\n \"y\": 3.2418413\n }, {\n \"x\": 77.59991,\n \"y\": 4.8777084\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 77.71504,\n \"y\": 4.9007363\n }, {\n \"x\": 81.14733,\n \"y\": 6.207992\n }, {\n \"x\": 81.14733,\n \"y\": 6.207992\n }]\n }]\n }],\n \"type\": \"SKETCH\"\n }\n },\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"jointype\": \"ROUND\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [255, 0, 0],\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"B3FB4E0D-7201-4143-8E21-D5D687E60D1C\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 14.978,\n \"height\": 15.768\n },\n \"pos\": {\n \"left\": -2000.954,\n \"top\": 319.0389,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"NONE\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.52222,\n \"saturation\": 1.0,\n \"brightness\": 0.84\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"captype\": \"FLAT\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"MIDDLE\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"NORMAL\",\n \"normal\": {\n \"fontScale\": 1.0,\n \"lineSpaceScale\": 1.0\n }\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n }],\n \"style\": {\n \"halign\": \"CENTER\",\n \"level\": 1,\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.0\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n },\n \"id\": \"C45DDE60-AAA7-42AB-B552-ED21065AF6BE\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"B1EB1340-A3D4-422B-9318-44986320B1A2\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 81.14733,\n \"height\": 7.981704\n },\n \"pos\": {\n \"left\": -1970.7444,\n \"top\": 323.7164,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"CUSTOM\",\n \"custom\": {\n \"pathList\": [{\n \"width\": 81.14733,\n \"height\": 7.981704,\n \"path\": [{\n \"type\": \"M\",\n \"m\": {\n \"x\": 0.0,\n \"y\": 2.6605682\n }\n }, {\n \"type\": \"CC\",\n \"l\": {\n \"x\": 1.0,\n \"y\": 1.0\n },\n \"cc\": [{\n \"x\": 3.6952336,\n \"y\": 2.6605682\n }, {\n \"x\": 7.390467,\n \"y\": 2.6605682\n }, {\n \"x\": 11.085701,\n \"y\": 2.6605682\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 12.809439,\n \"y\": 2.6605682\n }, {\n \"x\": 16.29086,\n \"y\": -1.5417584\n }, {\n \"x\": 15.51998,\n \"y\": 0.0\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 13.421014,\n \"y\": 4.197934\n }, {\n \"x\": 41.616596,\n \"y\": 0.31020463\n }, {\n \"x\": 43.01252,\n \"y\": 0.0\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 44.022545,\n \"y\": -0.22445044\n }, {\n \"x\": 45.09593,\n \"y\": -0.17009795\n }, {\n \"x\": 46.116516,\n \"y\": 0.0\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 48.935196,\n \"y\": 0.46978027\n }, {\n \"x\": 50.646095,\n \"y\": 3.5791914\n }, {\n \"x\": 53.21136,\n \"y\": 4.4342804\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 62.007942,\n \"y\": 7.3664737\n }, {\n \"x\": 69.42057,\n \"y\": 3.2418413\n }, {\n \"x\": 77.59991,\n \"y\": 4.8777084\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 77.71504,\n \"y\": 4.9007363\n }, {\n \"x\": 81.14733,\n \"y\": 6.207992\n }, {\n \"x\": 81.14733,\n \"y\": 6.207992\n }]\n }]\n }],\n \"type\": \"SKETCH\"\n }\n },\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"jointype\": \"ROUND\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [255, 0, 0],\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"F8DC7838-E2BC-44E4-A1E5-7510A20061E6\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 14.978,\n \"height\": 15.768\n },\n \"pos\": {\n \"left\": -1792.2281,\n \"top\": 283.2882,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"NONE\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.52222,\n \"saturation\": 1.0,\n \"brightness\": 0.84\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"captype\": \"FLAT\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"MIDDLE\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"NORMAL\",\n \"normal\": {\n \"fontScale\": 1.0,\n \"lineSpaceScale\": 1.0\n }\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n }],\n \"style\": {\n \"halign\": \"CENTER\",\n \"level\": 1,\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.0\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n },\n \"id\": \"C45DDE60-AAA7-42AB-B552-ED21065AF6BE\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"23ABA223-55BE-4471-8E8D-D91A6D125788\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 81.14733,\n \"height\": 7.981704\n },\n \"pos\": {\n \"left\": -1762.0187,\n \"top\": 287.9657,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"CUSTOM\",\n \"custom\": {\n \"pathList\": [{\n \"width\": 81.14733,\n \"height\": 7.981704,\n \"path\": [{\n \"type\": \"M\",\n \"m\": {\n \"x\": 0.0,\n \"y\": 2.6605682\n }\n }, {\n \"type\": \"CC\",\n \"l\": {\n \"x\": 1.0,\n \"y\": 1.0\n },\n \"cc\": [{\n \"x\": 3.6952336,\n \"y\": 2.6605682\n }, {\n \"x\": 7.390467,\n \"y\": 2.6605682\n }, {\n \"x\": 11.085701,\n \"y\": 2.6605682\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 12.809439,\n \"y\": 2.6605682\n }, {\n \"x\": 16.29086,\n \"y\": -1.5417584\n }, {\n \"x\": 15.51998,\n \"y\": 0.0\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 13.421014,\n \"y\": 4.197934\n }, {\n \"x\": 41.616596,\n \"y\": 0.31020463\n }, {\n \"x\": 43.01252,\n \"y\": 0.0\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 44.022545,\n \"y\": -0.22445044\n }, {\n \"x\": 45.09593,\n \"y\": -0.17009795\n }, {\n \"x\": 46.116516,\n \"y\": 0.0\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 48.935196,\n \"y\": 0.46978027\n }, {\n \"x\": 50.646095,\n \"y\": 3.5791914\n }, {\n \"x\": 53.21136,\n \"y\": 4.4342804\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 62.007942,\n \"y\": 7.3664737\n }, {\n \"x\": 69.42057,\n \"y\": 3.2418413\n }, {\n \"x\": 77.59991,\n \"y\": 4.8777084\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 77.71504,\n \"y\": 4.9007363\n }, {\n \"x\": 81.14733,\n \"y\": 6.207992\n }, {\n \"x\": 81.14733,\n \"y\": 6.207992\n }]\n }]\n }],\n \"type\": \"SKETCH\"\n }\n },\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"jointype\": \"ROUND\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [255, 0, 0],\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"6318A6FA-70C2-41E1-BA09-722807ECB195\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 14.978,\n \"height\": 15.768\n },\n \"pos\": {\n \"left\": -1792.232,\n \"top\": 321.1495,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"NONE\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.52222,\n \"saturation\": 1.0,\n \"brightness\": 0.84\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"captype\": \"FLAT\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"MIDDLE\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"NORMAL\",\n \"normal\": {\n \"fontScale\": 1.0,\n \"lineSpaceScale\": 1.0\n }\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n }],\n \"style\": {\n \"halign\": \"CENTER\",\n \"level\": 1,\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.0\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n },\n \"id\": \"C45DDE60-AAA7-42AB-B552-ED21065AF6BE\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"319E572A-956B-42B2-B564-F7EA4DAD3061\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 81.14733,\n \"height\": 7.981704\n },\n \"pos\": {\n \"left\": -1762.0227,\n \"top\": 325.827,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"CUSTOM\",\n \"custom\": {\n \"pathList\": [{\n \"width\": 81.14733,\n \"height\": 7.981704,\n \"path\": [{\n \"type\": \"M\",\n \"m\": {\n \"x\": 0.0,\n \"y\": 2.6605682\n }\n }, {\n \"type\": \"CC\",\n \"l\": {\n \"x\": 1.0,\n \"y\": 1.0\n },\n \"cc\": [{\n \"x\": 3.6952336,\n \"y\": 2.6605682\n }, {\n \"x\": 7.390467,\n \"y\": 2.6605682\n }, {\n \"x\": 11.085701,\n \"y\": 2.6605682\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 12.809439,\n \"y\": 2.6605682\n }, {\n \"x\": 16.29086,\n \"y\": -1.5417584\n }, {\n \"x\": 15.51998,\n \"y\": 0.0\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 13.421014,\n \"y\": 4.197934\n }, {\n \"x\": 41.616596,\n \"y\": 0.31020463\n }, {\n \"x\": 43.01252,\n \"y\": 0.0\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 44.022545,\n \"y\": -0.22445044\n }, {\n \"x\": 45.09593,\n \"y\": -0.17009795\n }, {\n \"x\": 46.116516,\n \"y\": 0.0\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 48.935196,\n \"y\": 0.46978027\n }, {\n \"x\": 50.646095,\n \"y\": 3.5791914\n }, {\n \"x\": 53.21136,\n \"y\": 4.4342804\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 62.007942,\n \"y\": 7.3664737\n }, {\n \"x\": 69.42057,\n \"y\": 3.2418413\n }, {\n \"x\": 77.59991,\n \"y\": 4.8777084\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 77.71504,\n \"y\": 4.9007363\n }, {\n \"x\": 81.14733,\n \"y\": 6.207992\n }, {\n \"x\": 81.14733,\n \"y\": 6.207992\n }]\n }]\n }],\n \"type\": \"SKETCH\"\n }\n },\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"jointype\": \"ROUND\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [255, 0, 0],\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"4A830BB3-1082-46AF-8751-FFDAFACF57CB\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 14.978,\n \"height\": 15.768\n },\n \"pos\": {\n \"left\": -1587.4757,\n \"top\": 284.6895,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"NONE\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.52222,\n \"saturation\": 1.0,\n \"brightness\": 0.84\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"captype\": \"FLAT\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"MIDDLE\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"NORMAL\",\n \"normal\": {\n \"fontScale\": 1.0,\n \"lineSpaceScale\": 1.0\n }\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n }],\n \"style\": {\n \"halign\": \"CENTER\",\n \"level\": 1,\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.0\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n },\n \"id\": \"C45DDE60-AAA7-42AB-B552-ED21065AF6BE\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"827C8BBB-7B71-4AF4-BA74-7E3C9C47683F\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 81.14733,\n \"height\": 7.981704\n },\n \"pos\": {\n \"left\": -1557.2662,\n \"top\": 289.367,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"CUSTOM\",\n \"custom\": {\n \"pathList\": [{\n \"width\": 81.14733,\n \"height\": 7.981704,\n \"path\": [{\n \"type\": \"M\",\n \"m\": {\n \"x\": 0.0,\n \"y\": 2.6605682\n }\n }, {\n \"type\": \"CC\",\n \"l\": {\n \"x\": 1.0,\n \"y\": 1.0\n },\n \"cc\": [{\n \"x\": 3.6952336,\n \"y\": 2.6605682\n }, {\n \"x\": 7.390467,\n \"y\": 2.6605682\n }, {\n \"x\": 11.085701,\n \"y\": 2.6605682\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 12.809439,\n \"y\": 2.6605682\n }, {\n \"x\": 16.29086,\n \"y\": -1.5417584\n }, {\n \"x\": 15.51998,\n \"y\": 0.0\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 13.421014,\n \"y\": 4.197934\n }, {\n \"x\": 41.616596,\n \"y\": 0.31020463\n }, {\n \"x\": 43.01252,\n \"y\": 0.0\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 44.022545,\n \"y\": -0.22445044\n }, {\n \"x\": 45.09593,\n \"y\": -0.17009795\n }, {\n \"x\": 46.116516,\n \"y\": 0.0\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 48.935196,\n \"y\": 0.46978027\n }, {\n \"x\": 50.646095,\n \"y\": 3.5791914\n }, {\n \"x\": 53.21136,\n \"y\": 4.4342804\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 62.007942,\n \"y\": 7.3664737\n }, {\n \"x\": 69.42057,\n \"y\": 3.2418413\n }, {\n \"x\": 77.59991,\n \"y\": 4.8777084\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 77.71504,\n \"y\": 4.9007363\n }, {\n \"x\": 81.14733,\n \"y\": 6.207992\n }, {\n \"x\": 81.14733,\n \"y\": 6.207992\n }]\n }]\n }],\n \"type\": \"SKETCH\"\n }\n },\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"jointype\": \"ROUND\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [255, 0, 0],\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"E5795F76-8904-4F8D-98D0-ABDAA6411C22\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 14.978,\n \"height\": 15.768\n },\n \"pos\": {\n \"left\": -1587.4796,\n \"top\": 320.7054,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"NONE\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.52222,\n \"saturation\": 1.0,\n \"brightness\": 0.84\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"captype\": \"FLAT\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"MIDDLE\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"NORMAL\",\n \"normal\": {\n \"fontScale\": 1.0,\n \"lineSpaceScale\": 1.0\n }\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n }],\n \"style\": {\n \"halign\": \"CENTER\",\n \"level\": 1,\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.0\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n },\n \"id\": \"C45DDE60-AAA7-42AB-B552-ED21065AF6BE\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"E456C97E-E5B4-407E-A733-02EFCFC88ED3\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 81.14733,\n \"height\": 7.981704\n },\n \"pos\": {\n \"left\": -1557.2701,\n \"top\": 325.3829,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"CUSTOM\",\n \"custom\": {\n \"pathList\": [{\n \"width\": 81.14733,\n \"height\": 7.981704,\n \"path\": [{\n \"type\": \"M\",\n \"m\": {\n \"x\": 0.0,\n \"y\": 2.6605682\n }\n }, {\n \"type\": \"CC\",\n \"l\": {\n \"x\": 1.0,\n \"y\": 1.0\n },\n \"cc\": [{\n \"x\": 3.6952336,\n \"y\": 2.6605682\n }, {\n \"x\": 7.390467,\n \"y\": 2.6605682\n }, {\n \"x\": 11.085701,\n \"y\": 2.6605682\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 12.809439,\n \"y\": 2.6605682\n }, {\n \"x\": 16.29086,\n \"y\": -1.5417584\n }, {\n \"x\": 15.51998,\n \"y\": 0.0\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 13.421014,\n \"y\": 4.197934\n }, {\n \"x\": 41.616596,\n \"y\": 0.31020463\n }, {\n \"x\": 43.01252,\n \"y\": 0.0\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 44.022545,\n \"y\": -0.22445044\n }, {\n \"x\": 45.09593,\n \"y\": -0.17009795\n }, {\n \"x\": 46.116516,\n \"y\": 0.0\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 48.935196,\n \"y\": 0.46978027\n }, {\n \"x\": 50.646095,\n \"y\": 3.5791914\n }, {\n \"x\": 53.21136,\n \"y\": 4.4342804\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 62.007942,\n \"y\": 7.3664737\n }, {\n \"x\": 69.42057,\n \"y\": 3.2418413\n }, {\n \"x\": 77.59991,\n \"y\": 4.8777084\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 77.71504,\n \"y\": 4.9007363\n }, {\n \"x\": 81.14733,\n \"y\": 6.207992\n }, {\n \"x\": 81.14733,\n \"y\": 6.207992\n }]\n }]\n }],\n \"type\": \"SKETCH\"\n }\n },\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"jointype\": \"ROUND\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [255, 0, 0],\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"7FF9D00F-8C58-4F71-B6E8-6D44F1B857B2\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 18.911,\n \"height\": 17.252\n },\n \"pos\": {\n \"left\": -1790.676,\n \"top\": 277.971,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"CUSTOM\",\n \"custom\": {\n \"pathList\": [{\n \"width\": 30.580652,\n \"height\": 25.483877,\n \"path\": [{\n \"type\": \"M\",\n \"m\": {\n \"x\": 0.0,\n \"y\": 18.997072\n }\n }, {\n \"type\": \"CC\",\n \"l\": {\n \"x\": 1.0,\n \"y\": 1.0\n },\n \"cc\": [{\n \"x\": 0.0,\n \"y\": 18.997072\n }, {\n \"x\": 10.193551,\n \"y\": 29.511381\n }, {\n \"x\": 10.193551,\n \"y\": 25.483877\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 10.193551,\n \"y\": 22.033861\n }, {\n \"x\": 28.45923,\n \"y\": 0.0\n }, {\n \"x\": 30.580652,\n \"y\": 0.0\n }]\n }]\n }],\n \"type\": \"SKETCH\"\n }\n },\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 4.0,\n \"jointype\": \"ROUND\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [255, 0, 0],\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"8B028C49-DCB3-4F78-BB5B-69733060E191\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 18.911,\n \"height\": 17.252\n },\n \"pos\": {\n \"left\": -1998.355,\n \"top\": 313.542,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"CUSTOM\",\n \"custom\": {\n \"pathList\": [{\n \"width\": 30.580652,\n \"height\": 25.483877,\n \"path\": [{\n \"type\": \"M\",\n \"m\": {\n \"x\": 0.0,\n \"y\": 18.997072\n }\n }, {\n \"type\": \"CC\",\n \"l\": {\n \"x\": 1.0,\n \"y\": 1.0\n },\n \"cc\": [{\n \"x\": 0.0,\n \"y\": 18.997072\n }, {\n \"x\": 10.193551,\n \"y\": 29.511381\n }, {\n \"x\": 10.193551,\n \"y\": 25.483877\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 10.193551,\n \"y\": 22.033861\n }, {\n \"x\": 28.45923,\n \"y\": 0.0\n }, {\n \"x\": 30.580652,\n \"y\": 0.0\n }]\n }]\n }],\n \"type\": \"SKETCH\"\n }\n },\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 4.0,\n \"jointype\": \"ROUND\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [255, 0, 0],\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"BFB65086-64A9-4C50-BA8B-7A4E144A8930\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 18.911,\n \"height\": 17.252\n },\n \"pos\": {\n \"left\": -1584.326,\n \"top\": 314.126,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"CUSTOM\",\n \"custom\": {\n \"pathList\": [{\n \"width\": 30.580652,\n \"height\": 25.483877,\n \"path\": [{\n \"type\": \"M\",\n \"m\": {\n \"x\": 0.0,\n \"y\": 18.997072\n }\n }, {\n \"type\": \"CC\",\n \"l\": {\n \"x\": 1.0,\n \"y\": 1.0\n },\n \"cc\": [{\n \"x\": 0.0,\n \"y\": 18.997072\n }, {\n \"x\": 10.193551,\n \"y\": 29.511381\n }, {\n \"x\": 10.193551,\n \"y\": 25.483877\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 10.193551,\n \"y\": 22.033861\n }, {\n \"x\": 28.45923,\n \"y\": 0.0\n }, {\n \"x\": 30.580652,\n \"y\": 0.0\n }]\n }]\n }],\n \"type\": \"SKETCH\"\n }\n },\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 4.0,\n \"jointype\": \"ROUND\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [255, 0, 0],\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"4AA177F4-48CB-480D-A710-A01C9B02F7E7\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 14.978,\n \"height\": 15.768\n },\n \"pos\": {\n \"left\": -1791.5369,\n \"top\": 364.3589,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"NONE\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.52222,\n \"saturation\": 1.0,\n \"brightness\": 0.84\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"captype\": \"FLAT\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"MIDDLE\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"NORMAL\",\n \"normal\": {\n \"fontScale\": 1.0,\n \"lineSpaceScale\": 1.0\n }\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n }],\n \"style\": {\n \"halign\": \"CENTER\",\n \"level\": 1,\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.0\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n },\n \"id\": \"C45DDE60-AAA7-42AB-B552-ED21065AF6BE\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"4F4B5224-C5FC-4A48-B837-FCF80B938575\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 81.14733,\n \"height\": 7.981704\n },\n \"pos\": {\n \"left\": -1761.3275,\n \"top\": 369.0364,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"CUSTOM\",\n \"custom\": {\n \"pathList\": [{\n \"width\": 81.14733,\n \"height\": 7.981704,\n \"path\": [{\n \"type\": \"M\",\n \"m\": {\n \"x\": 0.0,\n \"y\": 2.6605682\n }\n }, {\n \"type\": \"CC\",\n \"l\": {\n \"x\": 1.0,\n \"y\": 1.0\n },\n \"cc\": [{\n \"x\": 3.6952336,\n \"y\": 2.6605682\n }, {\n \"x\": 7.390467,\n \"y\": 2.6605682\n }, {\n \"x\": 11.085701,\n \"y\": 2.6605682\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 12.809439,\n \"y\": 2.6605682\n }, {\n \"x\": 16.29086,\n \"y\": -1.5417584\n }, {\n \"x\": 15.51998,\n \"y\": 0.0\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 13.421014,\n \"y\": 4.197934\n }, {\n \"x\": 41.616596,\n \"y\": 0.31020463\n }, {\n \"x\": 43.01252,\n \"y\": 0.0\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 44.022545,\n \"y\": -0.22445044\n }, {\n \"x\": 45.09593,\n \"y\": -0.17009795\n }, {\n \"x\": 46.116516,\n \"y\": 0.0\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 48.935196,\n \"y\": 0.46978027\n }, {\n \"x\": 50.646095,\n \"y\": 3.5791914\n }, {\n \"x\": 53.21136,\n \"y\": 4.4342804\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 62.007942,\n \"y\": 7.3664737\n }, {\n \"x\": 69.42057,\n \"y\": 3.2418413\n }, {\n \"x\": 77.59991,\n \"y\": 4.8777084\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 77.71504,\n \"y\": 4.9007363\n }, {\n \"x\": 81.14733,\n \"y\": 6.207992\n }, {\n \"x\": 81.14733,\n \"y\": 6.207992\n }]\n }]\n }],\n \"type\": \"SKETCH\"\n }\n },\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"jointype\": \"ROUND\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [255, 0, 0],\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"DD4441F6-EC45-4469-B3EF-5A3278A50ABB\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 18.911,\n \"height\": 17.252\n },\n \"pos\": {\n \"left\": -1789.9847,\n \"top\": 359.0417,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"CUSTOM\",\n \"custom\": {\n \"pathList\": [{\n \"width\": 30.580652,\n \"height\": 25.483877,\n \"path\": [{\n \"type\": \"M\",\n \"m\": {\n \"x\": 0.0,\n \"y\": 18.997072\n }\n }, {\n \"type\": \"CC\",\n \"l\": {\n \"x\": 1.0,\n \"y\": 1.0\n },\n \"cc\": [{\n \"x\": 0.0,\n \"y\": 18.997072\n }, {\n \"x\": 10.193551,\n \"y\": 29.511381\n }, {\n \"x\": 10.193551,\n \"y\": 25.483877\n }]\n }, {\n \"type\": \"CC\",\n \"cc\": [{\n \"x\": 10.193551,\n \"y\": 22.033861\n }, {\n \"x\": 28.45923,\n \"y\": 0.0\n }, {\n \"x\": 30.580652,\n \"y\": 0.0\n }]\n }]\n }],\n \"type\": \"SKETCH\"\n }\n },\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 4.0,\n \"jointype\": \"ROUND\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [255, 0, 0],\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"C0227643-A455-4CF7-8D82-7C63596BA93F\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 133.731,\n \"height\": 39.64\n },\n \"pos\": {\n \"left\": -2006.789,\n \"top\": 199.0,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"ROUND_RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.33333,\n \"saturation\": 0.05,\n \"brightness\": 0.95\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 1.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"NONE\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.57222,\n \"saturation\": 0.93,\n \"brightness\": 0.96\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"MIDDLE\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"NONE\",\n \"normal\": {\n \"fontScale\": 1.0,\n \"lineSpaceScale\": 1.0\n }\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"t\": \"\",\n \"type\": \"FIELD\",\n \"field\": {\n \"type\": \"EMOJI\",\n \"emoji\": {\n \"unicode\": \"📝\"\n }\n },\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 16.0,\n \"fontweight\": \"BOLD\"\n }\n }, {\n \"t\": \"Product\",\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0,\n \"fontweight\": \"BOLD\"\n }\n }],\n \"style\": {\n \"halign\": \"CENTER\",\n \"level\": 1,\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.0\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n },\n \"id\": \"CE292B24-8137-41C0-B231-74E864A68F60\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"FCB0FE74-09F1-4FA1-9FC1-9F3CCC4A276B\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 133.456,\n \"height\": 45.162\n },\n \"pos\": {\n \"left\": -1803.516,\n \"top\": 195.0,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"ROUND_RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.1,\n \"saturation\": 0.11,\n \"brightness\": 1.0\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 1.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"NONE\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.57222,\n \"saturation\": 0.93,\n \"brightness\": 0.96\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"MIDDLE\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"NONE\",\n \"normal\": {\n \"fontScale\": 1.0,\n \"lineSpaceScale\": 1.0\n }\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"t\": \"\",\n \"type\": \"FIELD\",\n \"field\": {\n \"type\": \"EMOJI\",\n \"emoji\": {\n \"unicode\": \"🖥️\"\n }\n },\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 16.0,\n \"fontweight\": \"BOLD\"\n }\n }, {\n \"t\": \"Website\",\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0,\n \"fontweight\": \"BOLD\"\n }\n }],\n \"style\": {\n \"halign\": \"CENTER\",\n \"level\": 1,\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.0\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n },\n \"id\": \"CE292B24-8137-41C0-B231-74E864A68F60\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"A7684869-449A-4058-BFBB-BE2E337844D3\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 135.423,\n \"height\": 40.323\n },\n \"pos\": {\n \"left\": -1602.211,\n \"top\": 198.0,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"ROUND_RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.53056,\n \"saturation\": 0.18,\n \"brightness\": 0.95\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 1.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"NONE\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.57222,\n \"saturation\": 0.93,\n \"brightness\": 0.96\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"MIDDLE\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"NONE\",\n \"normal\": {\n \"fontScale\": 1.0,\n \"lineSpaceScale\": 1.0\n }\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"t\": \"📧\",\n \"type\": \"FIELD\",\n \"field\": {\n \"type\": \"EMOJI\",\n \"emoji\": {\n \"unicode\": \"📧\"\n }\n },\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 16.0,\n \"fontweight\": \"BOLD\"\n }\n }, {\n \"t\": \"Emails\",\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0,\n \"fontweight\": \"BOLD\"\n }\n }],\n \"style\": {\n \"halign\": \"CENTER\",\n \"level\": 1,\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.0\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n },\n \"id\": \"CE292B24-8137-41C0-B231-74E864A68F60\"\n }]\n }\n }\n }],\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"4FEEA757-D62E-4124-BAAA-573AC8FE7932\"\n },\n \"nvODProps\": {\n \"locks\": {\n \"noAspectChange\": true\n }\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 720.0,\n \"height\": 1184.249\n },\n \"pos\": {\n \"left\": -2027.467,\n \"top\": -104.633\n },\n \"chDim\": {\n \"width\": 720.0,\n \"height\": 1184.249\n },\n \"chPos\": {\n \"left\": -2096.788,\n \"top\": -104.633\n },\n \"rotAngle\": 0.0\n }\n }\n }\n }\n }]\n },\n \"frames\": [{\n \"id\": \"EB077FC3-BD5F-4DE8-B5C0-1C018793AC44\",\n \"meta\": {\n \"name\": \"Social Media and Blogs\"\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"dim\": {\n \"width\": 669.052,\n \"height\": 850.0\n },\n \"pos\": {\n \"left\": 870.385,\n \"top\": -104.63302\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n },\n \"effects\": {\n \"shadows\": [{\n \"type\": \"OUTER\",\n \"color\": {\n \"type\": \"CUSTOM\",\n \"tweaks\": {\n \"alpha\": 0.0\n },\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.93\n }\n },\n \"distance\": {\n \"radius\": 1.0,\n \"angle\": 90.0\n },\n \"blur\": {\n \"radius\": 20.0\n }\n }]\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n },\n \"gradient\": {\n \"type\": \"LINEAR\",\n \"rotate\": 0,\n \"stops\": [{\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [250, 250, 250]\n },\n \"position\": 0.0\n }, {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [255, 255, 255]\n },\n \"position\": 1.0\n }]\n },\n \"pattern\": {\n \"foreground\": [{\n \"dim\": {\n \"width\": 2.0,\n \"height\": 2.0\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [79, 38, 117],\n \"colorModelRep\": \"RGB\"\n }\n }\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n }\n }],\n \"background\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [255, 255, 255],\n \"colorModelRep\": \"RGB\"\n }\n }\n },\n \"distance\": {\n \"left\": 12.0,\n \"top\": 12.0\n },\n \"preset\": \"pct5\",\n \"rotate\": 45\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"width\": 1.0,\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"tweaks\": {\n \"alpha\": 0.0\n },\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.84\n }\n }\n }\n },\n \"captype\": \"FLAT\"\n }]\n },\n \"shapes\": [{\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"3965E187-C8A1-497C-A056-C80B3C6949A5\"\n },\n \"nvODProps\": {\n \"textbox\": true\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 594.88,\n \"height\": 602.624\n },\n \"pos\": {\n \"left\": 41.025,\n \"top\": 158.182,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.13056,\n \"saturation\": 0.39,\n \"brightness\": 0.96\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"TOP\",\n \"inset\": {\n \"left\": 32.0,\n \"top\": 32.0,\n \"right\": 32.0,\n \"bottom\": 32.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"SHAPE\"\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"t\": \"Draft blog announcement and share with stakeholders for feedback\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 24.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"4DD96749-A5F3-4E03-AF19-011838862A67\"\n }, {\n \"portions\": [{\n \"t\": \"Plan social media activity for each channel and create neccesary content and copies including appropriately sized and styled images\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"A9AE307F-63CD-4945-97A9-84711EC942E0\"\n }, {\n \"portions\": [{\n \"t\": \"Review and test social media messaging\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"2410CBD0-4AEC-4A91-9539-C1811B2C227B\"\n }, {\n \"portions\": [{\n \"t\": \"Create and test teaser and/launch video\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"E7477E27-783B-4ACA-A6A5-185F03FC57F1\"\n }, {\n \"portions\": [{\n \"t\": \"Schedule social media posts to go out as per plan\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"C522A90D-4BCB-4DA3-9AAF-FA17A1816B88\"\n }, {\n \"portions\": [{\n \"t\": \"Create short links for better readability and tracking\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"F31634D9-AC5B-40AB-958D-EA165ADA3A6B\"\n }]\n },\n \"edit\": {\n \"htmlbox\": true\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"F7E799E8-ABA9-4A26-B072-3BFEF4EB8FBC\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 443.644,\n \"height\": 100.0\n },\n \"pos\": {\n \"left\": 37.9,\n \"top\": 32.517,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"ROUND_RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.13056,\n \"saturation\": 0.39,\n \"brightness\": 0.96\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 1.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"NONE\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.57222,\n \"saturation\": 0.93,\n \"brightness\": 0.96\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"MIDDLE\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"NONE\",\n \"normal\": {\n \"fontScale\": 1.0,\n \"lineSpaceScale\": 1.0\n }\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"t\": \" \",\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 24.0,\n \"fontweight\": \"BOLD\"\n }\n }, {\n \"type\": \"FIELD\",\n \"field\": {\n \"type\": \"EMOJI\",\n \"emoji\": {\n \"unicode\": \"📱\"\n }\n },\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 24.0,\n \"fontweight\": \"BOLD\"\n }\n }, {\n \"t\": \" \",\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 24.0,\n \"fontweight\": \"BOLD\"\n }\n }, {\n \"t\": \"Social Media and Blogs\",\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 24.0,\n \"fontweight\": \"BOLD\"\n }\n }],\n \"style\": {\n \"halign\": \"CENTER\",\n \"level\": 1,\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.0\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n },\n \"id\": \"CE292B24-8137-41C0-B231-74E864A68F60\"\n }]\n }\n }\n }]\n }, {\n \"id\": \"7F62CCDF-CEB9-422B-883C-192F1C7648C3\",\n \"meta\": {\n \"name\": \"Emails\"\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"dim\": {\n \"width\": 669.052,\n \"height\": 850.0\n },\n \"pos\": {\n \"left\": 173.51085,\n \"top\": -101.4921\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n },\n \"effects\": {\n \"shadows\": [{\n \"type\": \"OUTER\",\n \"color\": {\n \"type\": \"CUSTOM\",\n \"tweaks\": {\n \"alpha\": 0.0\n },\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.93\n }\n },\n \"distance\": {\n \"radius\": 1.0,\n \"angle\": 90.0\n },\n \"blur\": {\n \"radius\": 20.0\n }\n }]\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n },\n \"gradient\": {\n \"type\": \"LINEAR\",\n \"rotate\": 0,\n \"stops\": [{\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [250, 250, 250]\n },\n \"position\": 0.0\n }, {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [255, 255, 255]\n },\n \"position\": 1.0\n }]\n },\n \"pattern\": {\n \"foreground\": [{\n \"dim\": {\n \"width\": 2.0,\n \"height\": 2.0\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [17, 146, 245],\n \"colorModelRep\": \"RGB\"\n }\n }\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n }\n }],\n \"background\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [255, 255, 255],\n \"colorModelRep\": \"RGB\"\n }\n }\n },\n \"distance\": {\n \"left\": 12.0,\n \"top\": 12.0\n },\n \"preset\": \"pct5\",\n \"rotate\": 45\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"width\": 1.0,\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"tweaks\": {\n \"alpha\": 0.0\n },\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.84\n }\n }\n }\n },\n \"captype\": \"FLAT\"\n }]\n },\n \"shapes\": [{\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"01A8C077-1A4B-4951-BC0D-4CE78E05C5B2\"\n },\n \"nvODProps\": {\n \"textbox\": true\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 594.88,\n \"height\": 513.52\n },\n \"pos\": {\n \"left\": 37.086,\n \"top\": 151.85,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 1.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.53056,\n \"saturation\": 0.18,\n \"brightness\": 0.95\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"TOP\",\n \"inset\": {\n \"left\": 32.0,\n \"top\": 32.0,\n \"right\": 32.0,\n \"bottom\": 32.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"SHAPE\"\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"t\": \"Write and review all product emails\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 24.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"4DD96749-A5F3-4E03-AF19-011838862A67\"\n }, {\n \"portions\": [{\n \"t\": \"Check flow and triggers for all product emails\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"ADC784CA-9355-4FBC-9BBF-DAF2E885E7F6\"\n }, {\n \"portions\": [{\n \"t\": \"Draft, review, and design marketing emailers announcing release to existing customers\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"0567EDCA-CD72-40BD-AEDB-556552A4BA04\"\n }, {\n \"portions\": [{\n \"t\": \"Test emails across commonly-used email clients and devices\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"ADF7C497-0120-4C07-AAA5-7CA7C48C8DA9\"\n }, {\n \"portions\": [{\n \"t\": \"Sync or import contact lists for sending out marketing emailers to each target audience segment\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"6B0B7C22-D62D-463D-AEC9-49E8FA4E6AB3\"\n }]\n },\n \"edit\": {\n \"htmlbox\": true\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"4F6707A6-C3D8-4E2D-B5D0-BC4E3FC75851\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 200.961,\n \"height\": 80.0\n },\n \"pos\": {\n \"left\": 40.241,\n \"top\": 36.151,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"ROUND_RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.53056,\n \"saturation\": 0.18,\n \"brightness\": 0.95\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 1.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"NONE\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.57222,\n \"saturation\": 0.93,\n \"brightness\": 0.96\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"MIDDLE\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"NONE\",\n \"normal\": {\n \"fontScale\": 1.0,\n \"lineSpaceScale\": 1.0\n }\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"type\": \"FIELD\",\n \"field\": {\n \"type\": \"EMOJI\",\n \"emoji\": {\n \"unicode\": \"📧\"\n }\n },\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 24.0,\n \"fontweight\": \"BOLD\"\n }\n }, {\n \"t\": \" \",\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 24.0,\n \"fontweight\": \"BOLD\"\n }\n }, {\n \"t\": \"Emails\",\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 24.0,\n \"fontweight\": \"BOLD\"\n }\n }],\n \"style\": {\n \"halign\": \"CENTER\",\n \"level\": 1,\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.0\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n },\n \"id\": \"CE292B24-8137-41C0-B231-74E864A68F60\"\n }]\n }\n }\n }]\n }, {\n \"id\": \"83C5BBF4-24E1-408B-9369-1161998273B1\",\n \"meta\": {\n \"name\": \"Website\"\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"dim\": {\n \"width\": 669.0,\n \"height\": 850.0\n },\n \"pos\": {\n \"left\": -521.8901,\n \"top\": -101.4921\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n },\n \"effects\": {\n \"shadows\": [{\n \"type\": \"OUTER\",\n \"color\": {\n \"type\": \"CUSTOM\",\n \"tweaks\": {\n \"alpha\": 0.0\n },\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.93\n }\n },\n \"distance\": {\n \"radius\": 1.0,\n \"angle\": 90.0\n },\n \"blur\": {\n \"radius\": 20.0\n }\n }]\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n },\n \"gradient\": {\n \"type\": \"LINEAR\",\n \"rotate\": 0,\n \"stops\": [{\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [250, 250, 250]\n },\n \"position\": 0.0\n }, {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [255, 255, 255]\n },\n \"position\": 1.0\n }]\n },\n \"pattern\": {\n \"foreground\": [{\n \"dim\": {\n \"width\": 2.0,\n \"height\": 2.0\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [252, 184, 66],\n \"colorModelRep\": \"RGB\"\n }\n }\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n }\n }],\n \"background\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [255, 255, 255],\n \"colorModelRep\": \"RGB\"\n }\n }\n },\n \"distance\": {\n \"left\": 12.0,\n \"top\": 12.0\n },\n \"preset\": \"pct5\",\n \"rotate\": 45\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"width\": 1.0,\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"tweaks\": {\n \"alpha\": 0.0\n },\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.84\n }\n }\n }\n },\n \"captype\": \"FLAT\"\n }]\n },\n \"shapes\": [{\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"C698B45C-8F19-4C1B-80C3-57E23C58ABC2\"\n },\n \"nvODProps\": {\n \"textbox\": true\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 594.88,\n \"height\": 677.176\n },\n \"pos\": {\n \"left\": 32.47,\n \"top\": 134.1102,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.1,\n \"saturation\": 0.11,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"TOP\",\n \"inset\": {\n \"left\": 32.0,\n \"top\": 32.0,\n \"right\": 32.0,\n \"bottom\": 32.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"SHAPE\"\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"t\": \"Finalize website messaging and copy\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 24.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"4DD96749-A5F3-4E03-AF19-011838862A67\"\n }, {\n \"portions\": [{\n \"t\": \"Make sure all website messaging is reviewed\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"D21A1493-3C4B-4E7C-B091-A8D3A55CADB0\"\n }, {\n \"portions\": [{\n \"t\": \"Work with designer/design team for website design\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"DE2D9AC9-2A2A-488C-A899-AEAE9CF64C23\"\n }, {\n \"portions\": [{\n \"t\": \"Share final website with all stakeholders for feedback\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"B43AEC5F-CE80-4166-868E-BD077308EDA9\"\n }, {\n \"portions\": [{\n \"t\": \"Check sign-up flow\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"555CC104-2681-45C5-BD01-AE5EB9005F7D\"\n }, {\n \"portions\": [{\n \"t\": \"Review mobile responsiveness for website\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"EB150B2A-395C-4BB9-9E24-9F42D5F24B76\"\n }, {\n \"portions\": [{\n \"t\": \"Ensure website is localized and translated for respective regions\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"435CFF42-D824-473C-B0CF-0D78BCC15DFD\"\n }, {\n \"portions\": [{\n \"t\": \"Review website with digital marketing analyst for SEO-friendliness\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"CB7A0B9A-98B2-4668-9EA5-0B4975589069\"\n }]\n },\n \"edit\": {\n \"htmlbox\": true\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"6C9E99ED-3D2F-45DD-B703-5D6F1074A316\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 198.993,\n \"height\": 80.0\n },\n \"pos\": {\n \"left\": 32.471,\n \"top\": 31.352,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"ROUND_RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.1,\n \"saturation\": 0.11,\n \"brightness\": 1.0\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 12.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"NONE\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.57222,\n \"saturation\": 0.93,\n \"brightness\": 0.96\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"MIDDLE\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"NONE\",\n \"normal\": {\n \"fontScale\": 1.0,\n \"lineSpaceScale\": 1.0\n }\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"type\": \"FIELD\",\n \"field\": {\n \"type\": \"EMOJI\",\n \"emoji\": {\n \"unicode\": \"🖥️\"\n }\n },\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 24.0,\n \"fontweight\": \"BOLD\"\n }\n }, {\n \"t\": \" Website\",\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 24.0,\n \"fontweight\": \"BOLD\"\n }\n }],\n \"style\": {\n \"halign\": \"CENTER\",\n \"level\": 1,\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.0\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n },\n \"id\": \"CE292B24-8137-41C0-B231-74E864A68F60\"\n }]\n }\n }\n }]\n }, {\n \"id\": \"56E0A2FC-1254-43C1-9F05-DD797627A222\",\n \"meta\": {\n \"name\": \"Customer Testimonials\"\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"dim\": {\n \"width\": 669.052,\n \"height\": 850.0\n },\n \"pos\": {\n \"left\": 1567.26,\n \"top\": -104.63302\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n },\n \"effects\": {\n \"shadows\": [{\n \"type\": \"OUTER\",\n \"color\": {\n \"type\": \"CUSTOM\",\n \"tweaks\": {\n \"alpha\": 0.0\n },\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.93\n }\n },\n \"distance\": {\n \"radius\": 1.0,\n \"angle\": 90.0\n },\n \"blur\": {\n \"radius\": 20.0\n }\n }]\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n },\n \"gradient\": {\n \"type\": \"LINEAR\",\n \"rotate\": 0,\n \"stops\": [{\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [250, 250, 250]\n },\n \"position\": 0.0\n }, {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [255, 255, 255]\n },\n \"position\": 1.0\n }]\n },\n \"pattern\": {\n \"foreground\": [{\n \"dim\": {\n \"width\": 2.0,\n \"height\": 2.0\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [166, 0, 127],\n \"colorModelRep\": \"RGB\"\n }\n }\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n }\n }],\n \"background\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [255, 255, 255],\n \"colorModelRep\": \"RGB\"\n }\n }\n },\n \"distance\": {\n \"left\": 12.0,\n \"top\": 12.0\n },\n \"preset\": \"pct5\",\n \"rotate\": 45\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"width\": 1.0,\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"tweaks\": {\n \"alpha\": 0.0\n },\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.84\n }\n }\n }\n },\n \"captype\": \"FLAT\"\n }]\n },\n \"shapes\": [{\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"062048DD-FDB8-4EE8-BC7A-5591186FA673\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 442.682,\n \"height\": 100.0\n },\n \"pos\": {\n \"left\": 34.03,\n \"top\": 34.413,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"ROUND_RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.79167,\n \"saturation\": 0.08,\n \"brightness\": 1.0\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 1.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"NONE\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.57222,\n \"saturation\": 0.93,\n \"brightness\": 0.96\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"MIDDLE\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"NONE\",\n \"normal\": {\n \"fontScale\": 1.0,\n \"lineSpaceScale\": 1.0\n }\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"type\": \"FIELD\",\n \"field\": {\n \"type\": \"EMOJI\",\n \"emoji\": {\n \"unicode\": \"📜\"\n }\n },\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 24.0,\n \"fontweight\": \"BOLD\"\n }\n }, {\n \"t\": \" Customer Testimonials\",\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 24.0,\n \"fontweight\": \"BOLD\"\n }\n }],\n \"style\": {\n \"halign\": \"CENTER\",\n \"level\": 1,\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.0\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n },\n \"id\": \"CE292B24-8137-41C0-B231-74E864A68F60\"\n }]\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"99B05BAD-099B-45C9-A43C-0DFA1C3A7E54\"\n },\n \"nvODProps\": {\n \"textbox\": true\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 594.88,\n \"height\": 528.072\n },\n \"pos\": {\n \"left\": 37.086,\n \"top\": 166.385,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.79167,\n \"saturation\": 0.08,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"TOP\",\n \"inset\": {\n \"left\": 32.0,\n \"top\": 32.0,\n \"right\": 32.0,\n \"bottom\": 32.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"SHAPE\"\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"t\": \"Speak with early customers and gather testimonials and case-studies\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 24.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"4DD96749-A5F3-4E03-AF19-011838862A67\"\n }, {\n \"portions\": [{\n \"t\": \"Have customer quotes, photographs, and other information for testimonials ready and validated for featuring in marketing material\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"7DB8861C-38DC-4839-AE0A-9FEE5A634057\"\n }, {\n \"portions\": [{\n \"t\": \"Seek written permission from customers for any quotes or information about them that’s likely to be featured\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"665D76F3-6212-4F88-8F39-0CF390C22FD1\"\n }, {\n \"portions\": [{\n \"t\": \"If neccesary and possible, have case-studies or customer quotes available for different geographies\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"2924D204-6CD0-47D8-9EDB-6AC04AA82FD1\"\n }]\n },\n \"edit\": {\n \"htmlbox\": true\n }\n }\n }]\n }, {\n \"id\": \"1B2BBCD8-2312-43FA-935B-0F6DBBC07FE6\",\n \"meta\": {\n \"name\": \"Product Positioning\"\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"dim\": {\n \"width\": 669.052,\n \"height\": 850.0\n },\n \"pos\": {\n \"left\": -1220.312,\n \"top\": -99.36698\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n },\n \"effects\": {\n \"shadows\": [{\n \"type\": \"OUTER\",\n \"color\": {\n \"type\": \"CUSTOM\",\n \"tweaks\": {\n \"alpha\": 0.0\n },\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.93\n }\n },\n \"distance\": {\n \"radius\": 1.0,\n \"angle\": 90.0\n },\n \"blur\": {\n \"radius\": 20.0\n }\n }]\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n },\n \"gradient\": {\n \"type\": \"LINEAR\",\n \"rotate\": 0,\n \"stops\": [{\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [250, 250, 250]\n },\n \"position\": 0.0\n }, {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [255, 255, 255]\n },\n \"position\": 1.0\n }]\n },\n \"pattern\": {\n \"foreground\": [{\n \"dim\": {\n \"width\": 2.0,\n \"height\": 2.0\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [57, 135, 35],\n \"colorModelRep\": \"RGB\"\n }\n }\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n }\n }],\n \"background\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"rgb\": [255, 255, 255],\n \"colorModelRep\": \"RGB\"\n }\n }\n },\n \"distance\": {\n \"left\": 12.0,\n \"top\": 12.0\n },\n \"preset\": \"pct5\",\n \"rotate\": 45\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"width\": 1.0,\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"tweaks\": {\n \"alpha\": 0.0\n },\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.84\n }\n }\n }\n },\n \"captype\": \"FLAT\"\n }]\n },\n \"shapes\": [{\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"578FC323-1901-4AF6-BA60-77ACA2523604\"\n },\n \"nvODProps\": {\n \"textbox\": true\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 594.88,\n \"height\": 664.072\n },\n \"pos\": {\n \"left\": 38.013,\n \"top\": 141.437,\n \"zindex\": 2\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 2.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.33333,\n \"saturation\": 0.05,\n \"brightness\": 0.95\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"TOP\",\n \"inset\": {\n \"left\": 32.0,\n \"top\": 32.0,\n \"right\": 32.0,\n \"bottom\": 32.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"SHAPE\"\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"t\": \"Narrow down on the exact problem we are solving with Product X\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 24.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"4DD96749-A5F3-4E03-AF19-011838862A67\"\n }, {\n \"portions\": [{\n \"t\": \"Identify the market category for\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }, {\n \"t\": \" Product X\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 24.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"7A3FD4E9-08A4-4D5C-BB44-84C1641FEA2A\"\n }, {\n \"portions\": [{\n \"t\": \"Research primary \",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }, {\n \"t\": \"competitors currently solving this problem\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 24.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"F4641ACD-87FA-4032-9A41-2DE432C5BA7B\"\n }, {\n \"portions\": [{\n \"t\": \"Research secondary competitors currently solving this problem\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 24.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"714AD77A-E499-4490-9228-CF5BC876587E\"\n }, {\n \"portions\": [{\n \"t\": \"List unique attributes and differentiators for Product X\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 24.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"1EF02109-F9D1-4178-9EE2-94CBC222CD16\"\n }, {\n \"portions\": [{\n \"t\": \"Research relevant market trends that may impact usage and growth of Product \",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }, {\n \"t\": \"X\",\n \"props\": {\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 18.0,\n \"fontweight\": \"NORMAL\"\n }\n }],\n \"style\": {\n \"halign\": \"LEFT\",\n \"level\": 1,\n \"listStyle\": {\n \"bullet\": {\n \"type\": \"SELECTABLE\",\n \"character\": {\n \"ch\": \"8226\"\n },\n \"selectable\": {\n \"type\": \"SQUARE_SELECT\",\n \"isSelected\": false,\n \"selectedStyle\": \"TICK_STYLE\"\n }\n },\n \"font\": {\n \"fontFamily\": {\n \"name\": \"Arial\"\n }\n }\n },\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.2\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 20.0\n },\n \"after\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 24.0\n }\n },\n \"margin\": {\n \"left\": 24.0\n },\n \"indent\": -24.0,\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 14.0\n }\n },\n \"id\": \"72395B95-25DF-4AB9-A321-47BBEB5B2C87\"\n }]\n },\n \"edit\": {\n \"htmlbox\": true\n }\n }\n }, {\n \"type\": \"SHAPE\",\n \"shape\": {\n \"nvOProps\": {\n \"nvDProps\": {\n \"id\": \"525FF20A-7674-40D0-AE0E-4545039485B3\"\n },\n \"nvProps\": {\n }\n },\n \"props\": {\n \"transform\": {\n \"rotate\": 0,\n \"fliph\": false,\n \"flipv\": false,\n \"dim\": {\n \"width\": 379.552,\n \"height\": 79.88\n },\n \"pos\": {\n \"left\": 38.157,\n \"top\": 29.143\n },\n \"rotAngle\": 0.0\n },\n \"geom\": {\n \"type\": \"PRESET\",\n \"preset\": {\n \"type\": \"ROUND_RECT\"\n }\n },\n \"fills\": [{\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.33333,\n \"saturation\": 0.05,\n \"brightness\": 0.95\n }\n }\n },\n \"rule\": \"EVEN_ODD\"\n }],\n \"strokes\": [{\n \"type\": \"SOLID\",\n \"width\": 1.0,\n \"jointype\": \"MITER\",\n \"fill\": {\n \"type\": \"NONE\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.57222,\n \"saturation\": 0.93,\n \"brightness\": 0.96\n }\n }\n }\n },\n \"captype\": \"FLAT\",\n \"position\": \"CENTER\"\n }]\n },\n \"textBody\": {\n \"props\": {\n \"valign\": \"MIDDLE\",\n \"inset\": {\n \"left\": 10.0,\n \"top\": 5.0,\n \"right\": 10.0,\n \"bottom\": 5.0\n },\n \"column\": {\n \"num\": 1,\n \"gap\": 0\n },\n \"autoFit\": {\n \"type\": \"NONE\",\n \"normal\": {\n \"fontScale\": 1.0,\n \"lineSpaceScale\": 1.0\n }\n }\n },\n \"paras\": [{\n \"portions\": [{\n \"type\": \"FIELD\",\n \"field\": {\n \"type\": \"EMOJI\",\n \"emoji\": {\n \"unicode\": \"📝\"\n }\n },\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 24.0,\n \"fontweight\": \"BOLD\"\n }\n }, {\n \"t\": \" Product Positioning\",\n \"props\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Inter\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 0.0\n }\n }\n }\n },\n \"size\": 24.0,\n \"fontweight\": \"BOLD\"\n }\n }],\n \"style\": {\n \"halign\": \"CENTER\",\n \"level\": 1,\n \"spacing\": {\n \"line\": {\n \"type\": \"PERCENT\",\n \"percent\": 1.0\n },\n \"before\": {\n \"type\": \"ABSOLUTE\",\n \"absolute\": 0.0\n }\n },\n \"margin\": {\n \"left\": 0.0\n },\n \"dir\": \"LTR\",\n \"defPrProps\": {\n \"font\": {\n \"ref\": \"MINOR\",\n \"fontFamily\": {\n \"name\": \"Open Sans\"\n }\n },\n \"fill\": {\n \"type\": \"SOLID\",\n \"solid\": {\n \"color\": {\n \"type\": \"CUSTOM\",\n \"colorModelRep\": \"HSB\",\n \"hsb\": {\n \"hue\": 0.0,\n \"saturation\": 0.0,\n \"brightness\": 1.0\n }\n }\n }\n },\n \"size\": 18.0\n }\n },\n \"id\": \"CE292B24-8137-41C0-B231-74E864A68F60\"\n }]\n }\n }\n }]\n }],\n \"baseMeta\": {\n \"createdTime\": {\n \"seconds\": \"1747219962406\"\n },\n \"author\": \"60029267674\",\n \"collaborationId\": \"1248078836284880107\",\n \"current\": {\n \"version\": 0,\n \"time\": {\n \"seconds\": \"1747219962406\"\n },\n \"modifiedBy\": \"60029267674\"\n }\n }\n }]\n}}",
"message": "Zone created successfully.",
"request_uri": "/vani/api/v1/editions/60029715808/spaces/1303000000628003/zones",
"status": "success"
}
success with template - serialized response - Response
{
"success": true,
"message": "success with template - serialized response",
"data": {
"id": "example_123",
"name": "Sample Item",
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T10:30:00Z"
},
"timestamp": "2025-06-23T12:44:04.930Z"
}
zone limit reached - Response
{
"error": {
"details": {
"current_user_id": "96384499",
"error_code": "Z1010",
"edition_id": "85572652",
"message": "Zone creation limit reached",
"space_id": "1600000000657005"
}
},
"request_uri": "/vani/api/v1/editions/85572652/spaces/1600000000657005/zones",
"status": "error"
}
unauthorized - Response
{
"error": {
"details": {
"current_user_id": "96384499",
"error_code": "A1003",
"edition_id": "96499735",
"message": "The user doesn't have permission to perform this action",
"space_id": "300900000005397"
}
},
"request_uri": "/vani/api/v1/editions/96499735/spaces/300900000005397/zones",
"status": "error"
}
Code Examples
cURL
Command line HTTP client
JavaScript
Fetch API example
Python
Requests library example
cURL
curl -X POST "https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"create_zone": {
"zone_name": "Zone 6"
}
}'
JavaScript
const response = await fetch('https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"create_zone": {
"zone_name": "Zone 6"
}
})
});
const data = await response.json();
// Process the response data
return data;
Node.js
const https = require('https');
const url = require('url');
const options = {
...url.parse('https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones'),
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
}
};
const req = https.request(options, (res) => {
let data = '';
res.on('data', (chunk) => data += chunk);
res.on('end', () => {
const result = JSON.parse(data);
// Process the response data
});
});
req.write(JSON.stringify({
"create_zone": {
"zone_name": "Zone 6"
}
}));
req.end();
Python
import requests
url = "https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones"
headers = {
"Authorization": "Bearer YOUR_ACCESS_TOKEN",
"Content-Type": "application/json"
}
data = {
"create_zone": {
"zone_name": "Zone 6"
}
}
response = requests.post(url, headers=headers, json=data)
data = response.json()
print(data)
Java
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.net.URI;
import java.time.Duration;
public class ApiClient {
public static void main(String[] args) throws Exception {
HttpClient client = HttpClient.newBuilder()
.connectTimeout(Duration.ofSeconds(10))
.build();
HttpRequest.Builder requestBuilder = HttpRequest.newBuilder()
.uri(URI.create("https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones"))
.header("Authorization", "Bearer YOUR_ACCESS_TOKEN")
.header("Content-Type", "application/json")
.timeout(Duration.ofSeconds(30));
String requestBody = "{\"create_zone\":{\"zone_name\":\"Zone 6\"}}";
HttpRequest request = requestBuilder
.POST(HttpRequest.BodyPublishers.ofString(requestBody))
.build();
HttpResponse<String> response = client.send(request,
HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
}
}
Deluge
info "Making API request to: https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones";
headers = Map();
headers.put("Authorization", "Bearer YOUR_ACCESS_TOKEN");
headers.put("Content-Type", "application/json");
requestData = {"create_zone": {"zone_name": "Zone 6"}};
response = invokeurl
[
url: "https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones"
type: POST
headers: headers
parameters: requestData
];
if (response.get("status_code") == 200) {
info "Request successful";
responseData = response.get("response");
info responseData;
} else {
info "Request failed with status: " + response.get("status_code");
info response.get("response");
}
POST Duplicate
POST https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/duplicate
Required Scopes:
vani.spaces.create
Duplicate a specific Zone into an existing Space.
Parameters
Name | Type | In | Required | Description |
---|---|---|---|---|
edition_id | string | path | Required | The unique ID of the edition. |
space_id | string | path | Required | The unique ID of the Space. |
zone_id | string | path | Required | The unique ID of the Zone to duplicate. |
destination_type | string | body | Based on Request |
The type of destination for the duplicate Zone. Allowed values: EXISTING_SPACE or NEW_SPACE .
|
destination_space_id | string | body | Based on Request |
The ID of the destination Space where the Zone will be duplicated (required when destination_type is EXISTING_SPACE ).
|
zone_name | string | body | Based on Request | The name for the duplicated Zone. |
version_id | string | body | Based on Request | The ID of the version to duplicate. |
Request Body
JSON
{
"duplicate_zone": {
"destination_type": "SAME_SPACE"
}
}
Responses
200
SAME SPACE DUPLICATE - SUCCESS
404
SAME SPACE DUPLICATE - zone not found
401
SAME SPACE DUPLICATE - UNAUTHORIZED
200
DUPLICATE IN EXISTING SPACE - success
200
DUPLICATE IN EXISTING SPACE WITH NEW DOC NAME - success
200
DUPLICATE IN EXISTING SPACE WITH VERSION ID - success
404
DUPLICATE IN EXISTING SPACE - ZONE NOT FOUND
401
DUPLICATE IN EXISTING SPACE - UNAUTHORIZED
200
NEW SPACE - SUCCESS
200
NEW SPACE - SUCCESS WITH SPACE NAME
404
NEW SPACE - ZONE NOT FOUND
200
NEW SPACE - WITH VERSION ID
401
NEW SPACE - UNAUTHORIZED
SAME SPACE DUPLICATE - SUCCESS - Response
{
"data": {
"zone_id": "f721081a-6208-4058-95a5-fe4d787db67d",
"space_id": 693000000562161
},
"message": "Zone duplicated successfully",
"request_uri": "/vani/api/v1/editions/75918186/spaces/693000000562161/zones/8915a5e7-ba1a-4ef9-8f25-75a873ff7f10/duplicate",
"status": "success"
}
SAME SPACE DUPLICATE - zone not found - Response
{
"error": {
"details": {
"current_user_id": "96384499",
"error_code": "Z1008",
"edition_id": "75918186",
"message": "Zone not found",
"space_id": "693000000562161"
}
},
"request_uri": "/vani/api/v1/editions/75918186/spaces/693000000562161/zones/8915a5e7-ba1b-4ef9-8f25-75a873ff7f10/duplicate",
"status": "error"
}
SAME SPACE DUPLICATE - UNAUTHORIZED - Response
{
"error": {
"details": {
"current_user_id": "96384499",
"error_code": "A1003",
"edition_id": "75918186",
"message": "The user doesn't have permission to perform this action",
"space_id": "693000000481013"
}
},
"request_uri": "/vani/api/v1/editions/75918186/spaces/693000000481013/zones/61fae7ca-ebcc-4ab9-881c-07b1aa9c814b/duplicate",
"status": "error"
}
DUPLICATE IN EXISTING SPACE - success - Response
{
"data": {
"zone_id": "64d56703-7071-4670-8153-33819171239f",
"space_id": 693000000562297
},
"message": "Zone duplicated successfully",
"request_uri": "/vani/api/v1/editions/75918186/spaces/693000000562248/zones/91c26965-0165-4b48-b976-16c924498a8c/duplicate",
"status": "success"
}
DUPLICATE IN EXISTING SPACE WITH NEW DOC NAME - success - Response
{
"data": {
"zone_id": "9a853213-9f1a-488d-bbcf-9efcb3e2d419",
"space_id": 693000000562297
},
"message": "Zone duplicated successfully",
"request_uri": "/vani/api/v1/editions/75918186/spaces/693000000562248/zones/91c26965-0165-4b48-b976-16c924498a8c/duplicate",
"status": "success"
}
DUPLICATE IN EXISTING SPACE WITH VERSION ID - success - Response
{
"data": {
"zone_id": "ea5e020b-4e3b-4e5d-8229-b38c5f8a3084",
"space_id": 693000000562297
},
"message": "Zone duplicated successfully",
"request_uri": "/vani/api/v1/editions/75918186/spaces/693000000562248/zones/91c26965-0165-4b48-b976-16c924498a8c/duplicate",
"status": "success"
}
DUPLICATE IN EXISTING SPACE - ZONE NOT FOUND - Response
{
"error": {
"details": {
"current_user_id": "96384499",
"error_code": "Z1008",
"edition_id": "75918186",
"message": "Zone not found",
"space_id": "693000000562248"
}
},
"request_uri": "/vani/api/v1/editions/75918186/spaces/693000000562248/zones/11c26965-0165-4b48-b976-16c924498a8c/duplicate",
"status": "error"
}
DUPLICATE IN EXISTING SPACE - UNAUTHORIZED - Response
{
"error": {
"details": {
"current_user_id": "96384499",
"error_code": "A1003",
"edition_id": "75918186",
"message": "The user doesn't have permission to perform this action",
"space_id": "69300000562248"
}
},
"request_uri": "/vani/api/v1/editions/75918186/spaces/69300000562248/zones/91c26965-0165-4b48-b976-16c924498a8c/duplicate",
"status": "error"
}
NEW SPACE - SUCCESS - Response
{
"data": {
"space_id": "693000000598369",
"uri": "/vani/api/v1/editions/75918186/spaces/693000000598369/zones/meta"
},
"message": "Zone duplicated successfully",
"request_uri": "/vani/api/v1/editions/75918186/spaces/693000000562161/zones/8915a5e7-ba1a-4ef9-8f25-75a873ff7f10/duplicate",
"status": "success"
}
NEW SPACE - SUCCESS WITH SPACE NAME - Response
{
"data": {
"space_id": "693000000598439",
"uri": "/vani/api/v1/editions/75918186/spaces/693000000598439/zones/meta"
},
"message": "Zone duplicated successfully",
"request_uri": "/vani/api/v1/editions/75918186/spaces/693000000562161/zones/8915a5e7-ba1a-4ef9-8f25-75a873ff7f10/duplicate",
"status": "success"
}
NEW SPACE - ZONE NOT FOUND - Response
{
"error": {
"details": {
"current_user_id": "96384499",
"error_code": "Z1008",
"edition_id": "75918186",
"message": "Zone not found",
"space_id": "693000000599045"
}
},
"request_uri": "/vani/api/v1/editions/75918186/spaces/693000000599045/zones/2da6aa5e-8a20-4d6a-9551-e97fc4b2bd9f/duplicate",
"status": "error"
}
NEW SPACE - WITH VERSION ID - Response
{
"data": {
"space_id": "693000000603451",
"uri": "/vani/api/v1/editions/75918186/spaces/693000000603451/zones/meta"
},
"message": "Zone duplicated successfully",
"request_uri": "/vani/api/v1/editions/75918186/spaces/693000000562248/zones/91c26965-0165-4b48-b976-16c924498a8c/duplicate",
"status": "success"
}
NEW SPACE - UNAUTHORIZED - Response
{
"error": {
"details": {
"current_user_id": "96384499",
"error_code": "A1003",
"edition_id": "75918186",
"message": "The user doesn't have permission to perform this action",
"space_id": "69300000562248"
}
},
"request_uri": "/vani/api/v1/editions/75918186/spaces/69300000562248/zones/91c26165-0165-4b48-b976-16c924498a8c/duplicate",
"status": "error"
}
Code Examples
cURL
Command line HTTP client
JavaScript
Fetch API example
Python
Requests library example
cURL
curl -X POST "https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/duplicate" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"duplicate_zone": {
"destination_type": "SAME_SPACE"
}
}'
JavaScript
const response = await fetch('https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/duplicate', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"duplicate_zone": {
"destination_type": "SAME_SPACE"
}
})
});
const data = await response.json();
// Process the response data
return data;
Node.js
const https = require('https');
const url = require('url');
const options = {
...url.parse('https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/duplicate'),
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
}
};
const req = https.request(options, (res) => {
let data = '';
res.on('data', (chunk) => data += chunk);
res.on('end', () => {
const result = JSON.parse(data);
// Process the response data
});
});
req.write(JSON.stringify({
"duplicate_zone": {
"destination_type": "SAME_SPACE"
}
}));
req.end();
Python
import requests
url = "https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/duplicate"
headers = {
"Authorization": "Bearer YOUR_ACCESS_TOKEN",
"Content-Type": "application/json"
}
data = {
"duplicate_zone": {
"destination_type": "SAME_SPACE"
}
}
response = requests.post(url, headers=headers, json=data)
data = response.json()
print(data)
Java
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.net.URI;
import java.time.Duration;
public class ApiClient {
public static void main(String[] args) throws Exception {
HttpClient client = HttpClient.newBuilder()
.connectTimeout(Duration.ofSeconds(10))
.build();
HttpRequest.Builder requestBuilder = HttpRequest.newBuilder()
.uri(URI.create("https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/duplicate"))
.header("Authorization", "Bearer YOUR_ACCESS_TOKEN")
.header("Content-Type", "application/json")
.timeout(Duration.ofSeconds(30));
String requestBody = "{\"duplicate_zone\":{\"destination_type\":\"SAME_SPACE\"}}";
HttpRequest request = requestBuilder
.POST(HttpRequest.BodyPublishers.ofString(requestBody))
.build();
HttpResponse<String> response = client.send(request,
HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
}
}
Deluge
info "Making API request to: https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/duplicate";
headers = Map();
headers.put("Authorization", "Bearer YOUR_ACCESS_TOKEN");
headers.put("Content-Type", "application/json");
requestData = {"duplicate_zone": {"destination_type": "SAME_SPACE"}};
response = invokeurl
[
url: "https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/duplicate"
type: POST
headers: headers
parameters: requestData
];
if (response.get("status_code") == 200) {
info "Request successful";
responseData = response.get("response");
info responseData;
} else {
info "Request failed with status: " + response.get("status_code");
info response.get("response");
}
POST Move
POST https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/move
Required Scopes:
vani.spaces.create
Move a specific Zone from one Space to another.
Parameters
Name | Type | In | Required | Description |
---|---|---|---|---|
edition_id | string | path | Required | The unique ID of the edition. |
space_id | string | path | Required | The unique ID of the Space. |
zone_id | string | path | Required | The unique ID of the Zone to move. |
destination_type | string | body | Based on Request |
The type of destination for the duplicate Zone. Allowed values: EXISTING_SPACE |
move_zone | string | body | Based on Request |
A JSON object that includes details to move the Zone. Allowed values: destination_type (EXISTING_SPACE or NEW_SPACE ), space_name, team_id, destination_space_id.
|
Request Body
JSON
{
"move_zone":{
"destination_type":"NEW_SPACE",
"team_id":{{team_id}},
"space_name":"testing move zone with params"
}
}
Responses
200
SUCCESS - NEWSPACE
404
ZONE NOT FOUND - NEWSPACE
401
UNAUTHORIZED - NEWSPACE
200
SUCCESS - EXISTING SPACE
404
ZONE NOT FOUND - EXISTING SPACE
404
SPACE NOT FOUND - EXISTING SPACE
401
UNAUTHORIZED - EXISTING SPACE
SUCCESS - NEWSPACE - Response
{
"data": {
"space_info": {
"created_time": "Mon, 10 Mar 2025, 10:42:20",
"last_modified_time": "Mon, 10 Mar 2025, 10:42:20",
"is_favorite": "false",
"space_name": "testing move zone with params",
"publish": "false",
"owner_zuid": "96384499",
"can_edit": "true",
"allow_embed": "false",
"team_id": "693000000435005",
"space_id": "693000000569361",
"last_author_zuid": "96384499",
"status": "ACTIVE"
}
},
"message": "Zone moved successfully",
"request_uri": "/vani/api/v1/editions/75918186/spaces/693000000569005/zones/4a971774-9ea7-4f1b-94c8-7199a254d6ba/move",
"status": "success"
}
ZONE NOT FOUND - NEWSPACE - Response
{
"error": {
"details": {
"current_user_id": "96384499",
"error_code": "Z1008",
"edition_id": "75918186",
"message": "Zone not found",
"space_id": "693000000562766"
}
},
"request_uri": "/vani/api/v1/editions/75918186/spaces/693000000562766/zones/0c77700c-35ef-4614-aad1-b4532d8e0bd3/move",
"status": "error"
}
UNAUTHORIZED - NEWSPACE - Response
{
"error": {
"details": {
"current_user_id": "96384499",
"error_code": "A1003",
"edition_id": "75918186",
"message": "The user doesn't have permission to perform this action",
"space_id": "69300000569005"
}
},
"request_uri": "/vani/api/v1/editions/75918186/spaces/69300000569005/zones/4a971774-9ea7-4f1b-94c8-7199a254d6ba/move",
"status": "error"
}
SUCCESS - EXISTING SPACE - Response
{
"data": {
"space_info": {
"created_time": "Mon, 10 Mar 2025, 10:30:38",
"last_modified_time": "Mon, 10 Mar 2025, 10:32:00",
"space_name": "MOVE",
"publish": "false",
"owner_zuid": "96384499",
"team_id": "693000000435005",
"allow_embed": "false",
"space_id": "693000000569219",
"last_author_zuid": "96384499",
"status": "ACTIVE"
}
},
"message": "Zone moved successfully",
"request_uri": "/vani/api/v1/editions/75918186/spaces/693000000569005/zones/b313272b-fa45-4111-b61d-de64a0044260/move",
"status": "success"
}
ZONE NOT FOUND - EXISTING SPACE - Response
{
"error": {
"details": {
"current_user_id": "96384499",
"error_code": "Z1008",
"edition_id": "75918186",
"message": "Zone not found",
"space_id": "693000000569005"
}
},
"request_uri": "/vani/api/v1/editions/75918186/spaces/693000000569005/zones/F2897959-A91F-4EB8-BE6B-E69411DC83F6/move",
"status": "error"
}
SPACE NOT FOUND - EXISTING SPACE - Response
{
"error": {
"details": {
"current_user_id": "96384499",
"error_code": "S1009",
"edition_id": "75918186",
"message": "Space not found",
"space_id": "69300000569005"
}
},
"request_uri": "/vani/api/v1/editions/75918186/spaces/69300000569005/zones/b313272b-fa45-4111-b61d-de64a0044260/move",
"status": "error"
}
UNAUTHORIZED - EXISTING SPACE - Response
{
"error": {
"details": {
"current_user_id": "96384499",
"error_code": "A1003",
"edition_id": "75918186",
"message": "The user doesn't have permission to perform this action",
"space_id": "693000000481013"
}
},
"request_uri": "/vani/api/v1/editions/75918186/spaces/693000000481013/zones/61fae7ca-ebcc-4ab9-881c-07b1aa9c814b/move",
"status": "error"
}
Code Examples
cURL
Command line HTTP client
JavaScript
Fetch API example
Python
Requests library example
cURL
curl -X POST "https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/move" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"move_zone": {
"destination_type": "NEW_SPACE",
"team_id": "{{team_id}}",
"space_name": "testing move zone"
}
}'
JavaScript
const response = await fetch('https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/move', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"move_zone": {
"destination_type": "NEW_SPACE",
"team_id": "{{team_id}}",
"space_name": "testing move zone"
}
})
});
const data = await response.json();
// Process the response data
return data;
Node.js
const https = require('https');
const url = require('url');
const options = {
...url.parse('https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/move'),
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
}
};
const req = https.request(options, (res) => {
let data = '';
res.on('data', (chunk) => data += chunk);
res.on('end', () => {
const result = JSON.parse(data);
// Process the response data
});
});
req.write(JSON.stringify({
"move_zone": {
"destination_type": "NEW_SPACE",
"team_id": "{{team_id}}",
"space_name": "testing move zone"
}
}));
req.end();
Python
import requests
url = "https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/move"
headers = {
"Authorization": "Bearer YOUR_ACCESS_TOKEN",
"Content-Type": "application/json"
}
data = {
"move_zone": {
"destination_type": "NEW_SPACE",
"team_id": "{{team_id}}",
"space_name": "testing move zone"
}
}
response = requests.post(url, headers=headers, json=data)
data = response.json()
print(data)
Java
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.net.URI;
import java.time.Duration;
public class ApiClient {
public static void main(String[] args) throws Exception {
HttpClient client = HttpClient.newBuilder()
.connectTimeout(Duration.ofSeconds(10))
.build();
HttpRequest.Builder requestBuilder = HttpRequest.newBuilder()
.uri(URI.create("https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/move"))
.header("Authorization", "Bearer YOUR_ACCESS_TOKEN")
.header("Content-Type", "application/json")
.timeout(Duration.ofSeconds(30));
String requestBody = "{\"move_zone\":{\"destination_type\":\"NEW_SPACE\",\"team_id\":\"{{team_id}}\",\"space_name\":\"testing move zone\"}}";
HttpRequest request = requestBuilder
.POST(HttpRequest.BodyPublishers.ofString(requestBody))
.build();
HttpResponse<String> response = client.send(request,
HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
}
}
Deluge
info "Making API request to: https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/move";
headers = Map();
headers.put("Authorization", "Bearer YOUR_ACCESS_TOKEN");
headers.put("Content-Type", "application/json");
requestData = {"move_zone": {"destination_type": "NEW_SPACE", "team_id": "{{team_id}}", "space_name": "testing move zone"}};
response = invokeurl
[
url: "https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/move"
type: POST
headers: headers
parameters: requestData
];
if (response.get("status_code") == 200) {
info "Request successful";
responseData = response.get("response");
info responseData;
} else {
info "Request failed with status: " + response.get("status_code");
info response.get("response");
}
PUT Zone Restore
PUT https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/state
Required Scopes:
vani.spaces.update
Restore a specific Zone within a Space by updating its state.
Parameters
Name | Type | In | Required | Description |
---|---|---|---|---|
edition_id | string | path | Required | The unique ID of the edition. |
space_id | string | path | Required | The unique ID of the Space. |
zone_id | string | path | Required | The unique ID of the Zone to restore. |
zone_state | string | body | Based on Request |
The value must be set to RESTORE to restore the Zone. Note: Only trashed Zones can be restored. Trying to restore any other type will result in an error.
|
Request Body
JSON
{
"zone_state": "RESTORE"
}
Responses
200
success
400
already restored or deleted
401
unauthorized
success - Response
{
"data": {
"current_user_id": "96384499",
"zone_id": "598356E6-5F86-45FA-A7D5-ED8BB6D40DAE",
"edition_id": "97375109",
"space_state": "RESTORE",
"space_id": "1505000000022005"
},
"message": "Zone state updated successfully.",
"request_uri": "/vani/api/v1/editions/97375109/spaces/1505000000022005/zones/598356E6-5F86-45FA-A7D5-ED8BB6D40DAE/state",
"status": "success"
}
already restored or deleted - Response
{
"error": {
"details": {
"current_user_id": "96384499",
"zone_id": "598356E6-5F86-45FA-A7D5-ED8BB6D40DAE",
"error_code": "Z1006",
"edition_id": "97375109",
"message": "Zone is deleted or already restored",
"space_id": "1505000000022005"
}
},
"request_uri": "/vani/api/v1/editions/97375109/spaces/1505000000022005/zones/598356E6-5F86-45FA-A7D5-ED8BB6D40DAE/state",
"status": "error"
}
unauthorized - Response
{
"error": {
"details": {
"current_user_id": "96384499",
"zone_id": "05A61516-A352-44C6-94C3-BE44F728C9D9",
"error_code": "A1003",
"edition_id": "96499735",
"message": "The user doesn't have permission to perform this action",
"space_id": "300900000005397"
}
},
"request_uri": "/vani/api/v1/editions/96499735/spaces/300900000005397/zones/05A61516-A352-44C6-94C3-BE44F728C9D9/state",
"status": "error"
}
Code Examples
cURL
Command line HTTP client
JavaScript
Fetch API example
Python
Requests library example
cURL
curl -X PUT "https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/state" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"zone_state": "RESTORE"
}'
JavaScript
const response = await fetch('https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/state', {
method: 'PUT',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"zone_state": "RESTORE"
})
});
const data = await response.json();
// Process the response data
return data;
Node.js
const https = require('https');
const url = require('url');
const options = {
...url.parse('https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/state'),
method: 'PUT',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
}
};
const req = https.request(options, (res) => {
let data = '';
res.on('data', (chunk) => data += chunk);
res.on('end', () => {
const result = JSON.parse(data);
// Process the response data
});
});
req.write(JSON.stringify({
"zone_state": "RESTORE"
}));
req.end();
Python
import requests
url = "https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/state"
headers = {
"Authorization": "Bearer YOUR_ACCESS_TOKEN",
"Content-Type": "application/json"
}
data = {
"zone_state": "RESTORE"
}
response = requests.put(url, headers=headers, json=data)
data = response.json()
print(data)
Java
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.net.URI;
import java.time.Duration;
public class ApiClient {
public static void main(String[] args) throws Exception {
HttpClient client = HttpClient.newBuilder()
.connectTimeout(Duration.ofSeconds(10))
.build();
HttpRequest.Builder requestBuilder = HttpRequest.newBuilder()
.uri(URI.create("https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/state"))
.header("Authorization", "Bearer YOUR_ACCESS_TOKEN")
.header("Content-Type", "application/json")
.timeout(Duration.ofSeconds(30));
String requestBody = "{\"zone_state\":\"RESTORE\"}";
HttpRequest request = requestBuilder
.PUT(HttpRequest.BodyPublishers.ofString(requestBody))
.build();
HttpResponse<String> response = client.send(request,
HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
}
}
Deluge
info "Making API request to: https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/state";
headers = Map();
headers.put("Authorization", "Bearer YOUR_ACCESS_TOKEN");
headers.put("Content-Type", "application/json");
requestData = {"zone_state": "RESTORE"};
response = invokeurl
[
url: "https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/state"
type: PUT
headers: headers
parameters: requestData
];
if (response.get("status_code") == 200) {
info "Request successful";
responseData = response.get("response");
info responseData;
} else {
info "Request failed with status: " + response.get("status_code");
info response.get("response");
}
PUT Zone Trash
PUT https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/state
Required Scopes:
vani.spaces.update
Move a specific Zone to the "trash" state within a Space.
Parameters
Name | Type | In | Required | Description |
---|---|---|---|---|
edition_id | string | path | Required | The unique ID of the edition. |
space_id | string | path | Required | The unique ID of the Space. |
zone_id | string | path | Required | The unique ID of the Zone to trash. |
zone_state | string | body | Based on Request |
The value must be set to , TRASH to consider the Zone as trashed. Note: Only active Zones can be trashed. Trying to trash any other type will result in an error.
|
Request Body
JSON
{
"zone_state": "TRASH"
}
Responses
200
success
400
zone threshold violation
400
zone is already trashed or deleted
401
unauthorized
success - Response
{
"data": {
"current_user_id": "96384499",
"zone_id": "598356E6-5F86-45FA-A7D5-ED8BB6D40DAE",
"edition_id": "97375109",
"space_state": "TRASH",
"space_id": "1505000000022005"
},
"message": "Zone state updated successfully.",
"request_uri": "/vani/api/v1/editions/97375109/spaces/1505000000022005/zones/598356E6-5F86-45FA-A7D5-ED8BB6D40DAE/state",
"status": "success"
}
zone threshold violation - Response
{
"error": {
"details": {
"current_user_id": "96384499",
"zone_id": "6F961124-4598-47D6-9BDA-1705DFBA07D7",
"error_code": "Z1009",
"edition_id": "97375109",
"message": "Zone threshold violation",
"space_id": "1505000000022005"
}
},
"request_uri": "/vani/api/v1/editions/97375109/spaces/1505000000022005/zones/6F961124-4598-47D6-9BDA-1705DFBA07D7/state",
"status": "error"
}
zone is already trashed or deleted - Response
{
"error": {
"details": {
"current_user_id": "96384499",
"zone_id": "598356E6-5F86-45FA-A7D5-ED8BB6D40DAE",
"error_code": "Z1005",
"edition_id": "97375109",
"message": "Zone is already trashed or deleted",
"space_id": "1505000000022005"
}
},
"request_uri": "/vani/api/v1/editions/97375109/spaces/1505000000022005/zones/598356E6-5F86-45FA-A7D5-ED8BB6D40DAE/state",
"status": "error"
}
unauthorized - Response
{
"error": {
"details": {
"current_user_id": "96384499",
"zone_id": "05A61516-A352-44C6-94C3-BE44F728C9D9",
"error_code": "A1003",
"edition_id": "96499735",
"message": "The user doesn't have permission to perform this action",
"space_id": "300900000009397"
}
},
"request_uri": "/vani/api/v1/editions/96499735/spaces/300900000009397/zones/05A61516-A352-44C6-94C3-BE44F728C9D9/state",
"status": "error"
}
Code Examples
cURL
Command line HTTP client
JavaScript
Fetch API example
Python
Requests library example
cURL
curl -X PUT "https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/state" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"zone_state": "TRASH"
}'
JavaScript
const response = await fetch('https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/state', {
method: 'PUT',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"zone_state": "TRASH"
})
});
const data = await response.json();
// Process the response data
return data;
Node.js
const https = require('https');
const url = require('url');
const options = {
...url.parse('https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/state'),
method: 'PUT',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
}
};
const req = https.request(options, (res) => {
let data = '';
res.on('data', (chunk) => data += chunk);
res.on('end', () => {
const result = JSON.parse(data);
// Process the response data
});
});
req.write(JSON.stringify({
"zone_state": "TRASH"
}));
req.end();
Python
import requests
url = "https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/state"
headers = {
"Authorization": "Bearer YOUR_ACCESS_TOKEN",
"Content-Type": "application/json"
}
data = {
"zone_state": "TRASH"
}
response = requests.put(url, headers=headers, json=data)
data = response.json()
print(data)
Java
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.net.URI;
import java.time.Duration;
public class ApiClient {
public static void main(String[] args) throws Exception {
HttpClient client = HttpClient.newBuilder()
.connectTimeout(Duration.ofSeconds(10))
.build();
HttpRequest.Builder requestBuilder = HttpRequest.newBuilder()
.uri(URI.create("https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/state"))
.header("Authorization", "Bearer YOUR_ACCESS_TOKEN")
.header("Content-Type", "application/json")
.timeout(Duration.ofSeconds(30));
String requestBody = "{\"zone_state\":\"TRASH\"}";
HttpRequest request = requestBuilder
.PUT(HttpRequest.BodyPublishers.ofString(requestBody))
.build();
HttpResponse<String> response = client.send(request,
HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
}
}
Deluge
info "Making API request to: https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/state";
headers = Map();
headers.put("Authorization", "Bearer YOUR_ACCESS_TOKEN");
headers.put("Content-Type", "application/json");
requestData = {"zone_state": "TRASH"};
response = invokeurl
[
url: "https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/state"
type: PUT
headers: headers
parameters: requestData
];
if (response.get("status_code") == 200) {
info "Request successful";
responseData = response.get("response");
info responseData;
} else {
info "Request failed with status: " + response.get("status_code");
info response.get("response");
}
PUT Zone Meta Update
PUT https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/meta
Required Scopes:
vani.spaces.update
Updates the metadata of a specific Zone.
Parameters
Name | Type | In | Required | Description |
---|---|---|---|---|
edition_id | string | path | Required | The unique ID of the edition. |
space_id | string | path | Required | The unique ID of the Space. |
zone_id | string | path | Required | The unique ID of the Zone to update. |
zone_name | string | body | Based on Request | The name of the Zone. |
Request Body
JSON
{
"zone_name": "test"
}
Responses
200
success
409
same name
404
zone not found
401
unauthorized
success - Response
{
"data": {
"current_user_id": "96384499",
"zone_id": "598356E6-5F86-45FA-A7D5-ED8BB6D40DAE",
"edition_id": "97375109",
"space_id": "1505000000022005",
"new_name": "test"
},
"message": "Zone name updated successfully.",
"request_uri": "/vani/api/v1/editions/97375109/spaces/1505000000022005/zones/598356E6-5F86-45FA-A7D5-ED8BB6D40DAE/meta",
"status": "success"
}
same name - Response
{
"error": {
"details": {
"current_user_id": "96384499",
"zone_id": "598356E6-5F86-45FA-A7D5-ED8BB6D40DAE",
"error_code": "Z1001",
"edition_id": "97375109",
"message": "Zone name is same as the new name",
"space_id": "1505000000022005"
}
},
"request_uri": "/vani/api/v1/editions/97375109/spaces/1505000000022005/zones/598356E6-5F86-45FA-A7D5-ED8BB6D40DAE/meta",
"status": "error"
}
zone not found - Response
{
"error": {
"details": {
"current_user_id": "96384499",
"zone_id": "198356E6-5F86-45FA-A7D5-ED8BB6D40DAE",
"error_code": "Z1008",
"edition_id": "97375109",
"message": "Zone not found",
"space_id": "1505000000022005"
}
},
"request_uri": "/vani/api/v1/editions/97375109/spaces/1505000000022005/zones/198356E6-5F86-45FA-A7D5-ED8BB6D40DAE/meta",
"status": "error"
}
unauthorized - Response
{
"error": {
"details": {
"current_user_id": "96384499",
"zone_id": "a5fcca17-e9dd-414f-850d-0b920645b05d",
"error_code": "A1003",
"edition_id": "98723605",
"message": "The user doesn't have permission to perform this action",
"space_id": "5265000000003011"
}
},
"request_uri": "/vani/api/v1/editions/98723605/spaces/5265000000003011/zones/a5fcca17-e9dd-414f-850d-0b920645b05d/meta",
"status": "error"
}
Code Examples
cURL
Command line HTTP client
JavaScript
Fetch API example
Python
Requests library example
cURL
curl -X PUT "https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/meta" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"zone_name": "rename"
}'
JavaScript
const response = await fetch('https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/meta', {
method: 'PUT',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"zone_name": "rename"
})
});
const data = await response.json();
// Process the response data
return data;
Node.js
const https = require('https');
const url = require('url');
const options = {
...url.parse('https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/meta'),
method: 'PUT',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
}
};
const req = https.request(options, (res) => {
let data = '';
res.on('data', (chunk) => data += chunk);
res.on('end', () => {
const result = JSON.parse(data);
// Process the response data
});
});
req.write(JSON.stringify({
"zone_name": "rename"
}));
req.end();
Python
import requests
url = "https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/meta"
headers = {
"Authorization": "Bearer YOUR_ACCESS_TOKEN",
"Content-Type": "application/json"
}
data = {
"zone_name": "rename"
}
response = requests.put(url, headers=headers, json=data)
data = response.json()
print(data)
Java
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.net.URI;
import java.time.Duration;
public class ApiClient {
public static void main(String[] args) throws Exception {
HttpClient client = HttpClient.newBuilder()
.connectTimeout(Duration.ofSeconds(10))
.build();
HttpRequest.Builder requestBuilder = HttpRequest.newBuilder()
.uri(URI.create("https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/meta"))
.header("Authorization", "Bearer YOUR_ACCESS_TOKEN")
.header("Content-Type", "application/json")
.timeout(Duration.ofSeconds(30));
String requestBody = "{\"zone_name\":\"rename\"}";
HttpRequest request = requestBuilder
.PUT(HttpRequest.BodyPublishers.ofString(requestBody))
.build();
HttpResponse<String> response = client.send(request,
HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
}
}
Deluge
info "Making API request to: https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/meta";
headers = Map();
headers.put("Authorization", "Bearer YOUR_ACCESS_TOKEN");
headers.put("Content-Type", "application/json");
requestData = {"zone_name": "rename"};
response = invokeurl
[
url: "https://api.app.vanihq.com/vani/api/v1/editions/{edition_id}/spaces/{space_id}/zones/{zone_id}/meta"
type: PUT
headers: headers
parameters: requestData
];
if (response.get("status_code") == 200) {
info "Request successful";
responseData = response.get("response");
info responseData;
} else {
info "Request failed with status: " + response.get("status_code");
info response.get("response");
}