openapi: 3.1.0 info: title: Google Sheets API description: The Google Sheets API is a RESTful interface that lets you read and modify a spreadsheet's data.. version: 1.0.0 servers: - url: https://sheets.googleapis.com description: Google Sheets API Server security: - oauth2Auth: [] tags: - name: Append description: Operations related to Append - name: Batch description: Operations related to Batch - name: Clear description: Operations related to Clear - name: Copy description: Operations related to Copy - name: Create description: Operations related to Create - name: Data description: Operations related to Data - name: Developer description: Operations related to Developer - name: Filter description: Operations related to Filter - name: Get description: Operations related to Get - name: Search description: Operations related to Search - name: Sheet description: Operations related to Sheet - name: Update description: Operations related to Update - name: Values description: Operations related to Values paths: /v4/spreadsheets/{spreadsheetId}/values/{range}: get: tags: - Get - Values summary: Google Get Values description: Returns a range of values from a spreadsheet. The caller must specify the spreadsheet ID and a range. security: - oauth2Auth: [] parameters: - name: Accept in: header schema: type: string example: application/json - name: majorDimension in: query schema: type: string example: '{{majorDimension}}' - name: valueRenderOption in: query schema: type: string example: '{{valueRenderOption}}' - name: dateTimeRenderOption in: query schema: type: string example: '{{dateTimeRenderOption}}' - name: access_token in: query schema: type: string description: OAuth access token. example: '{{accessToken}}' - name: alt in: query schema: type: string description: Data format for response. example: '{{alt}}' - name: callback in: query schema: type: string description: JSONP example: '{{callback}}' - name: fields in: query schema: type: string description: Selector specifying which fields to include in a partial response. example: '{{fields}}' - name: key in: query schema: type: string description: API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. example: '{{key}}' - name: oauth_token in: query schema: type: string description: OAuth 2.0 token for the current user. example: '{{oauthToken}}' - name: prettyPrint in: query schema: type: string description: Returns response with indentations and line breaks. example: '{{prettyPrint}}' - name: quotaUser in: query schema: type: string description: Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. example: '{{quotaUser}}' - name: upload_protocol in: query schema: type: string description: Upload protocol for media (e.g. "raw", "multipart"). example: '{{uploadProtocol}}' - name: uploadType in: query schema: type: string description: Legacy upload protocol for media (e.g. "media", "multipart"). example: '{{uploadType}}' - name: $.xgafv in: query schema: type: string description: V1 error format. example: '{{.Xgafv}}' - name: spreadsheetId in: path schema: type: string required: true description: '(Required) ' example: '{{spreadsheetId}}' - name: range in: path schema: type: string required: true description: '(Required) ' example: '{{range}}' responses: '200': description: OK headers: Content-Type: schema: type: string example: application/json content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsValuesGetResponse' examples: SpreadsheetsValuesGetResponseExample: $ref: '#/components/examples/SpreadsheetsValuesGetResponseExample' x-api-evangelist-processing: ChooseTags: true x-microcks-operation: delay: 100 dispatcher: FALLBACK dispatcherRules: SpreadsheetsValuesGetResponseExample put: tags: - Update - Values summary: Google Update Values description: Sets values in a range of a spreadsheet. The caller must specify the spreadsheet ID, range, and a valueInputOption. security: - oauth2Auth: [] parameters: - name: Content-Type in: header schema: type: string example: application/json - name: Accept in: header schema: type: string example: application/json - name: spreadsheetId in: path schema: type: string required: true description: '(Required) ' example: '{{spreadsheetId}}' - name: range in: path schema: type: string required: true description: '(Required) ' example: '{{range}}' requestBody: content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsValuesPutRequest' responses: '200': description: OK headers: Content-Type: schema: type: string example: application/json content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsValuesPutResponse' examples: SpreadsheetsValuesPutResponseExample: $ref: '#/components/examples/SpreadsheetsValuesPutResponseExample' x-api-evangelist-processing: ChooseTags: true x-microcks-operation: delay: 100 dispatcher: FALLBACK dispatcherRules: SpreadsheetsValuesPutResponseExample /v4/spreadsheets/{spreadsheetId}/values/{range}:append: post: tags: - Append - Values summary: Google Append Values description: Appends values to a spreadsheet. The input range is used to search for existing data and find a "table" within that range. Values will be appended to the next row of the table, starting with the first column of the table. See the [guide](/sheets/api/guides/values#appending_values) and [sample code](/sheets/api/samples/writing#append_values) for specific details of how tables are detected and data is appended. The caller must specify the spreadsheet ID, range, and a valueInputOption. The `valueInputOption` only controls how the input data will be added to the sheet (column-wise or row-wise), it does not influence what cell the data starts being written to. security: - oauth2Auth: [] parameters: - name: Content-Type in: header schema: type: string example: application/json - name: Accept in: header schema: type: string example: application/json - name: spreadsheetId in: path schema: type: string required: true description: '(Required) ' example: '{{spreadsheetId}}' - name: range in: path schema: type: string required: true requestBody: content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsValuesPostRequest' responses: '200': description: OK headers: Content-Type: schema: type: string example: application/json content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsValuesPostResponse' examples: SpreadsheetsValuesPostResponseExample: $ref: '#/components/examples/SpreadsheetsValuesPostResponseExample' x-api-evangelist-processing: ChooseTags: true x-microcks-operation: delay: 100 dispatcher: FALLBACK dispatcherRules: SpreadsheetsValuesPostResponseExample /v4/spreadsheets/{spreadsheetId}/values/{range}:clear: post: tags: - Clear - Values summary: Google Clear Values description: Clears values from a spreadsheet. The caller must specify the spreadsheet ID and range. Only values are cleared -- all other properties of the cell (such as formatting, data validation, etc..) are kept. security: - oauth2Auth: [] parameters: - name: Content-Type in: header schema: type: string example: application/json - name: Accept in: header schema: type: string example: application/json - name: spreadsheetId in: path schema: type: string required: true description: '(Required) ' example: '{{spreadsheetId}}' - name: range in: path schema: type: string required: true requestBody: content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsValuesPostRequest1' responses: '200': description: OK headers: Content-Type: schema: type: string example: application/json content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsValuesPostResponse1' examples: SpreadsheetsValuesPostResponse1Example: $ref: '#/components/examples/SpreadsheetsValuesPostResponse1Example' x-api-evangelist-processing: ChooseTags: true x-microcks-operation: delay: 100 dispatcher: FALLBACK dispatcherRules: SpreadsheetsValuesPostResponse1Example /v4/spreadsheets/{spreadsheetId}/values:batchClear: post: tags: - Batch - Clear - Values summary: Google Batch Clear Values description: Clears one or more ranges of values from a spreadsheet. The caller must specify the spreadsheet ID and one or more ranges. Only values are cleared -- all other properties of the cell (such as formatting and data validation) are kept. security: - oauth2Auth: [] parameters: - name: Content-Type in: header schema: type: string example: application/json - name: Accept in: header schema: type: string example: application/json - name: spreadsheetId in: path schema: type: string required: true description: '(Required) ' example: '{{spreadsheetId}}' requestBody: content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsValuesbatchClearPostRequest' responses: '200': description: OK headers: Content-Type: schema: type: string example: application/json content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsValuesbatchClearPostResponse' examples: SpreadsheetsValuesbatchClearPostResponseExample: $ref: '#/components/examples/SpreadsheetsValuesbatchClearPostResponseExample' x-api-evangelist-processing: ChooseTags: true x-microcks-operation: delay: 100 dispatcher: FALLBACK dispatcherRules: SpreadsheetsValuesbatchClearPostResponseExample /v4/spreadsheets/{spreadsheetId}/values:batchClearByDataFilter: post: tags: - Batch - Clear - Data - Filter - Values summary: Google Batch Clear Values by Data Filter description: Clears one or more ranges of values from a spreadsheet. The caller must specify the spreadsheet ID and one or more DataFilters. Ranges matching any of the specified data filters will be cleared. Only values are cleared -- all other properties of the cell (such as formatting, data validation, etc..) are kept. security: - oauth2Auth: [] parameters: - name: Content-Type in: header schema: type: string example: application/json - name: Accept in: header schema: type: string example: application/json - name: spreadsheetId in: path schema: type: string required: true description: '(Required) ' example: '{{spreadsheetId}}' requestBody: content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsValuesbatchClearByDataFilterPostRequest' responses: '200': description: OK headers: Content-Type: schema: type: string example: application/json content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsValuesbatchClearByDataFilterPostResponse' examples: SpreadsheetsValuesbatchClearByDataFilterPostResponseExample: $ref: '#/components/examples/SpreadsheetsValuesbatchClearByDataFilterPostResponseExample' x-api-evangelist-processing: ChooseTags: true x-microcks-operation: delay: 100 dispatcher: FALLBACK dispatcherRules: SpreadsheetsValuesbatchClearByDataFilterPostResponseExample /v4/spreadsheets/{spreadsheetId}/values:batchGet: get: tags: - Batch - Get - Values summary: Google Get Values Batch description: Returns one or more ranges of values from a spreadsheet. The caller must specify the spreadsheet ID and one or more ranges. security: - oauth2Auth: [] parameters: - name: Accept in: header schema: type: string example: application/json - name: spreadsheetId in: path schema: type: string required: true description: '(Required) ' example: '{{spreadsheetId}}' responses: '200': description: OK headers: Content-Type: schema: type: string example: application/json content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsValuesbatchGetGetResponse' examples: SpreadsheetsValuesbatchGetGetResponseExample: $ref: '#/components/examples/SpreadsheetsValuesbatchGetGetResponseExample' x-api-evangelist-processing: ChooseTags: true x-microcks-operation: delay: 100 dispatcher: FALLBACK dispatcherRules: SpreadsheetsValuesbatchGetGetResponseExample /v4/spreadsheets/{spreadsheetId}/values:batchGetByDataFilter: post: tags: - Data - Filter - Get - Values summary: Google Get Values By Data Filter description: Returns one or more ranges of values that match the specified data filters. The caller must specify the spreadsheet ID and one or more DataFilters. Ranges that match any of the data filters in the request will be returned. security: - oauth2Auth: [] parameters: - name: Content-Type in: header schema: type: string example: application/json - name: Accept in: header schema: type: string example: application/json - name: spreadsheetId in: path schema: type: string required: true description: '(Required) ' example: '{{spreadsheetId}}' requestBody: content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsValuesbatchGetByDataFilterPostRequest' responses: '200': description: OK headers: Content-Type: schema: type: string example: application/json content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsValuesbatchGetByDataFilterPostResponse' examples: SpreadsheetsValuesbatchGetByDataFilterPostResponseExample: $ref: '#/components/examples/SpreadsheetsValuesbatchGetByDataFilterPostResponseExample' x-api-evangelist-processing: ChooseTags: true x-microcks-operation: delay: 100 dispatcher: FALLBACK dispatcherRules: SpreadsheetsValuesbatchGetByDataFilterPostResponseExample /v4/spreadsheets/{spreadsheetId}/values:batchUpdate: post: tags: - Batch - Update - Values summary: Google Batch Update Values description: Sets values in one or more ranges of a spreadsheet. The caller must specify the spreadsheet ID, a valueInputOption, and one or more ValueRanges. security: - oauth2Auth: [] parameters: - name: Content-Type in: header schema: type: string example: application/json - name: Accept in: header schema: type: string example: application/json - name: spreadsheetId in: path schema: type: string required: true description: '(Required) ' example: '{{spreadsheetId}}' requestBody: content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsValuesbatchUpdatePostRequest' responses: '200': description: OK headers: Content-Type: schema: type: string example: application/json content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsValuesbatchUpdatePostResponse' examples: SpreadsheetsValuesbatchUpdatePostResponseExample: $ref: '#/components/examples/SpreadsheetsValuesbatchUpdatePostResponseExample' x-api-evangelist-processing: ChooseTags: true x-microcks-operation: delay: 100 dispatcher: FALLBACK dispatcherRules: SpreadsheetsValuesbatchUpdatePostResponseExample /v4/spreadsheets/{spreadsheetId}/values:batchUpdateByDataFilter: post: tags: - Data - Filter - Update summary: Google Update by Data Filter description: Sets values in one or more ranges of a spreadsheet. The caller must specify the spreadsheet ID, a valueInputOption, and one or more DataFilterValueRanges. security: - oauth2Auth: [] parameters: - name: Content-Type in: header schema: type: string example: application/json - name: Accept in: header schema: type: string example: application/json - name: spreadsheetId in: path schema: type: string required: true description: '(Required) ' example: '{{spreadsheetId}}' requestBody: content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsValuesbatchUpdateByDataFilterPostRequest' responses: '200': description: OK headers: Content-Type: schema: type: string example: application/json content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsValuesbatchUpdateByDataFilterPostResponse' examples: SpreadsheetsValuesbatchUpdateByDataFilterPostResponseExample: $ref: '#/components/examples/SpreadsheetsValuesbatchUpdateByDataFilterPostResponseExample' x-api-evangelist-processing: ChooseTags: true x-microcks-operation: delay: 100 dispatcher: FALLBACK dispatcherRules: SpreadsheetsValuesbatchUpdateByDataFilterPostResponseExample /v4/spreadsheets: post: tags: - Create - Sheet summary: Google Create Sheet description: Creates a spreadsheet, returning the newly created spreadsheet. security: - oauth2Auth: [] parameters: - name: Content-Type in: header schema: type: string example: application/json - name: Accept in: header schema: type: string example: application/json requestBody: content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsPostRequest' responses: '200': description: OK headers: Content-Type: schema: type: string example: application/json content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsPostResponse' examples: SpreadsheetsPostResponseExample: $ref: '#/components/examples/SpreadsheetsPostResponseExample' x-api-evangelist-processing: ChooseTags: true x-microcks-operation: delay: 100 dispatcher: FALLBACK dispatcherRules: SpreadsheetsPostResponseExample /v4/spreadsheets/{spreadsheetId}: get: tags: - Get - Sheet summary: Google Get Sheet description: 'Returns the spreadsheet at the given ID. The caller must specify the spreadsheet ID. By default, data within grids is not returned. You can include grid data in one of 2 ways: * Specify a [field mask](https://developers.google.com/sheets/api/guides/field-masks) listing your desired fields using the `fields` URL parameter in HTTP * Set the includeGridData URL parameter to true. If a field mask is set, the `includeGridData` parameter is ignored For large spreadsheets, as a best practice, retrieve only the specific spreadsheet fields that you want. To retrieve only subsets of spreadsheet data, use the ranges URL parameter. Ranges are specified using [A1 notation](/sheets/api/guides/concepts#cell). You can define a single cell (for example, `A1`) or multiple cells (for example, `A1:D5`). You can also get cells from other sheets within the same spreadsheet (for example, `Sheet2!A1:C4`) or retrieve multiple ranges at once (for example, `?ranges=A1:D5&ranges=Sheet2!A1:C4`). Limiting the range returns only the portions of the spreadsheet that intersect the requested ranges.' security: - oauth2Auth: [] parameters: - name: Accept in: header schema: type: string example: application/json - name: spreadsheetId in: path schema: type: string required: true description: '(Required) ' example: '{{spreadsheetId}}' responses: '200': description: OK headers: Content-Type: schema: type: string example: application/json content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsGetResponse' examples: SpreadsheetsGetResponseExample: $ref: '#/components/examples/SpreadsheetsGetResponseExample' x-api-evangelist-processing: ChooseTags: true x-microcks-operation: delay: 100 dispatcher: FALLBACK dispatcherRules: SpreadsheetsGetResponseExample /v4/spreadsheets/{spreadsheetId}/sheets/{sheetId}:copyTo: post: tags: - Copy - Sheet summary: Google Copy To Sheet description: Copies a single sheet from a spreadsheet to another spreadsheet. Returns the properties of the newly created sheet. security: - oauth2Auth: [] parameters: - name: Content-Type in: header schema: type: string example: application/json - name: Accept in: header schema: type: string example: application/json - name: spreadsheetId in: path schema: type: string required: true description: '(Required) ' example: '{{spreadsheetId}}' - name: sheetId in: path schema: type: string required: true requestBody: content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsSheetsPostRequest' responses: '200': description: OK headers: Content-Type: schema: type: string example: application/json content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsSheetsPostResponse' examples: SpreadsheetsSheetsPostResponseExample: $ref: '#/components/examples/SpreadsheetsSheetsPostResponseExample' x-api-evangelist-processing: ChooseTags: true x-microcks-operation: delay: 100 dispatcher: FALLBACK dispatcherRules: SpreadsheetsSheetsPostResponseExample /v4/spreadsheets/{spreadsheetId}:batchUpdate: post: tags: - Batch - Update summary: Google Batch Update Sheets description: Applies one or more updates to the spreadsheet. Each request is validated before being applied. If any request is not valid then the entire request will fail and nothing will be applied. Some requests have replies to give you some information about how they are applied. The replies will mirror the requests. For example, if you applied 4 updates and the 3rd one had a reply, then the response will have 2 empty replies, the actual reply, and another empty reply, in that order. Due to the collaborative nature of spreadsheets, it is not guaranteed that the spreadsheet will reflect exactly your changes after this completes, however it is guaranteed that the updates in the request will be applied together atomically. Your changes may be altered with respect to collaborator changes. If there are no collaborators, the spreadsheet should reflect your changes. security: - oauth2Auth: [] parameters: - name: Content-Type in: header schema: type: string example: application/json - name: Accept in: header schema: type: string example: application/json - name: spreadsheetId in: path schema: type: string required: true requestBody: content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsPostRequest1' responses: '200': description: OK headers: Content-Type: schema: type: string example: application/json content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsPostResponse1' examples: SpreadsheetsPostResponse1Example: $ref: '#/components/examples/SpreadsheetsPostResponse1Example' x-api-evangelist-processing: ChooseTags: true x-microcks-operation: delay: 100 dispatcher: FALLBACK dispatcherRules: SpreadsheetsPostResponse1Example /v4/spreadsheets/{spreadsheetId}:getByDataFilter: post: tags: - Data - Filter - Get - Sheet summary: Google Get Sheet by Data Filter description: 'Returns the spreadsheet at the given ID. The caller must specify the spreadsheet ID. This method differs from GetSpreadsheet in that it allows selecting which subsets of spreadsheet data to return by specifying a dataFilters parameter. Multiple DataFilters can be specified. Specifying one or more data filters returns the portions of the spreadsheet that intersect ranges matched by any of the filters. By default, data within grids is not returned. You can include grid data one of 2 ways: * Specify a [field mask](https://developers.google.com/sheets/api/guides/field-masks) listing your desired fields using the `fields` URL parameter in HTTP * Set the includeGridData parameter to true. If a field mask is set, the `includeGridData` parameter is ignored For large spreadsheets, as a best practice, retrieve only the specific spreadsheet fields that you want.' security: - oauth2Auth: [] parameters: - name: Content-Type in: header schema: type: string example: application/json - name: Accept in: header schema: type: string example: application/json - name: spreadsheetId in: path schema: type: string required: true requestBody: content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsPostRequest2' responses: '200': description: OK headers: Content-Type: schema: type: string example: application/json content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsPostResponse2' examples: SpreadsheetsPostResponse2Example: $ref: '#/components/examples/SpreadsheetsPostResponse2Example' x-api-evangelist-processing: ChooseTags: true x-microcks-operation: delay: 100 dispatcher: FALLBACK dispatcherRules: SpreadsheetsPostResponse2Example /v4/spreadsheets/{spreadsheetId}/developerMetadata/{metadataId}: get: tags: - Developer - Get summary: Google Get Developer Metadata description: Returns the developer metadata with the specified ID. The caller must specify the spreadsheet ID and the developer metadata's unique metadataId. security: - oauth2Auth: [] parameters: - name: Accept in: header schema: type: string example: application/json - name: spreadsheetId in: path schema: type: string required: true description: '(Required) ' example: '{{spreadsheetId}}' - name: metadataId in: path schema: type: string required: true description: '(Required) ' example: '{{metadataId}}' responses: '200': description: OK headers: Content-Type: schema: type: string example: application/json content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsDeveloperMetadataGetResponse' examples: SpreadsheetsDeveloperMetadataGetResponseExample: $ref: '#/components/examples/SpreadsheetsDeveloperMetadataGetResponseExample' x-api-evangelist-processing: ChooseTags: true x-microcks-operation: delay: 100 dispatcher: FALLBACK dispatcherRules: SpreadsheetsDeveloperMetadataGetResponseExample /v4/spreadsheets/{spreadsheetId}/developerMetadata:search: post: tags: - Developer - Search summary: Google Search Developer Metadata description: Returns all developer metadata matching the specified DataFilter. If the provided DataFilter represents a DeveloperMetadataLookup object, this will return all DeveloperMetadata entries selected by it. If the DataFilter represents a location in a spreadsheet, this will return all developer metadata associated with locations intersecting that region. security: - oauth2Auth: [] parameters: - name: Content-Type in: header schema: type: string example: application/json - name: Accept in: header schema: type: string example: application/json - name: spreadsheetId in: path schema: type: string required: true description: '(Required) ' example: '{{spreadsheetId}}' requestBody: content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsDeveloperMetadatasearchPostRequest' responses: '200': description: OK headers: Content-Type: schema: type: string example: application/json content: application/json: schema: $ref: '#/components/schemas/SpreadsheetsDeveloperMetadatasearchPostResponse' examples: SpreadsheetsDeveloperMetadatasearchPostResponseExample: $ref: '#/components/examples/SpreadsheetsDeveloperMetadatasearchPostResponseExample' x-api-evangelist-processing: ChooseTags: true x-microcks-operation: delay: 100 dispatcher: FALLBACK dispatcherRules: SpreadsheetsDeveloperMetadatasearchPostResponseExample components: schemas: SpreadsheetsDeveloperMetadataGetResponse: description: SpreadsheetsDeveloperMetadataGetResponse schema type: object properties: location: $ref: '#/components/schemas/SpreadsheetsDeveloperMetadataGetResponseLocation' metadataId: type: integer metadataKey: type: string metadataValue: type: string visibility: type: string SpreadsheetsDeveloperMetadataGetResponseLocation: description: SpreadsheetsDeveloperMetadataGetResponseLocation schema type: object properties: dimensionRange: $ref: '#/components/schemas/SpreadsheetsDeveloperMetadataGetResponseLocationDimensionRange' locationType: type: string sheetId: type: integer spreadsheet: type: boolean SpreadsheetsDeveloperMetadataGetResponseLocationDimensionRange: description: SpreadsheetsDeveloperMetadataGetResponseLocationDimensionRange schema type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer SpreadsheetsDeveloperMetadatasearchPostRequest: description: SpreadsheetsDeveloperMetadatasearchPostRequest schema type: object example: dataFilters: - a1Range: aute developerMetadataLookup: locationMatchingStrategy: INTERSECTING_LOCATION locationType: DEVELOPER_METADATA_LOCATION_TYPE_UNSPECIFIED metadataId: -761178 metadataKey: consequat Duis metadataLocation: dimensionRange: dimension: COLUMNS endIndex: -22955243 sheetId: 41865153 startIndex: -49712859 locationType: SHEET sheetId: 77477058 spreadsheet: true metadataValue: tempor visibility: DOCUMENT gridRange: endColumnIndex: -69789235 endRowIndex: -98601086 sheetId: 32219017 startColumnIndex: -61197874 startRowIndex: -91350843 - a1Range: Ut cu developerMetadataLookup: locationMatchingStrategy: INTERSECTING_LOCATION locationType: SHEET metadataId: -32999997 metadataKey: commodo sit esse consequat metadataLocation: dimensionRange: dimension: ROWS endIndex: 1730530 sheetId: -56140506 startIndex: 82831554 locationType: SPREADSHEET sheetId: 58086209 spreadsheet: false metadataValue: in pariatur in Ut visibility: DEVELOPER_METADATA_VISIBILITY_UNSPECIFIED gridRange: endColumnIndex: 81731062 endRowIndex: 51216059 sheetId: -87090690 startColumnIndex: -26697783 startRowIndex: -36015480 SpreadsheetsDeveloperMetadatasearchPostResponse: description: SpreadsheetsDeveloperMetadatasearchPostResponse schema type: object properties: matchedDeveloperMetadata: type: array items: type: object properties: dataFilters: type: array items: type: object properties: a1Range: type: string developerMetadataLookup: type: object properties: locationMatchingStrategy: type: string locationType: type: string metadataId: type: integer metadataKey: type: string metadataLocation: type: object properties: dimensionRange: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer locationType: type: string sheetId: type: integer spreadsheet: type: boolean metadataValue: type: string visibility: type: string gridRange: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer developerMetadata: type: object properties: location: type: object properties: dimensionRange: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer locationType: type: string sheetId: type: integer spreadsheet: type: boolean metadataId: type: integer metadataKey: type: string metadataValue: type: string visibility: type: string SpreadsheetsGetResponse: description: SpreadsheetsGetResponse schema type: object properties: dataSourceSchedules: type: array items: type: object properties: dailySchedule: type: object properties: startTime: type: object properties: hours: type: integer minutes: type: integer nanos: type: integer seconds: type: integer enabled: type: boolean monthlySchedule: type: object properties: daysOfMonth: type: array items: type: integer startTime: type: object properties: hours: type: integer minutes: type: integer nanos: type: integer seconds: type: integer nextRun: type: object properties: endTime: type: string startTime: type: string refreshScope: type: string weeklySchedule: type: object properties: daysOfWeek: type: array items: type: string startTime: type: object properties: hours: type: integer minutes: type: integer nanos: type: integer seconds: type: integer dataSources: type: array items: type: object properties: calculatedColumns: type: array items: type: object properties: formula: type: string reference: type: object properties: name: type: string dataSourceId: type: string sheetId: type: integer spec: type: object properties: bigQuery: type: object properties: projectId: type: string querySpec: type: object properties: rawQuery: type: string tableSpec: type: object properties: datasetId: type: string tableId: type: string tableProjectId: type: string parameters: type: array items: type: object properties: name: type: string namedRangeId: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer developerMetadata: type: array items: type: object properties: location: type: object properties: dimensionRange: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer locationType: type: string sheetId: type: integer spreadsheet: type: boolean metadataId: type: integer metadataKey: type: string metadataValue: type: string visibility: type: string namedRanges: type: array items: type: object properties: name: type: string namedRangeId: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer properties: $ref: '#/components/schemas/SpreadsheetsGetResponseProperties' sheets: type: array items: type: object properties: bandedRanges: type: array items: type: object properties: bandedRangeId: type: integer columnProperties: type: object properties: firstBandColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number firstBandColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string footerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number footerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string headerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number headerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string secondBandColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number secondBandColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer rowProperties: type: object properties: firstBandColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number firstBandColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string footerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number footerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string headerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number headerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string secondBandColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number secondBandColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string basicFilter: type: object properties: criteria: type: object properties: doloreb_: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string filterSpecs: type: array items: type: object properties: columnIndex: type: integer dataSourceColumnReference: type: object properties: name: type: string filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer sortSpecs: type: array items: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataSourceColumnReference: type: object properties: name: type: string dimensionIndex: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string sortOrder: type: string charts: type: array items: type: object properties: border: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string chartId: type: integer position: type: object properties: newSheet: type: boolean overlayPosition: type: object properties: anchorCell: type: object properties: columnIndex: type: integer rowIndex: type: integer sheetId: type: integer heightPixels: type: integer offsetXPixels: type: integer offsetYPixels: type: integer widthPixels: type: integer sheetId: type: integer spec: type: object properties: altText: type: string backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string basicChart: type: object properties: axis: type: array items: type: object properties: format: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean position: type: string title: type: string titleTextPosition: type: object properties: horizontalAlignment: type: string viewWindowOptions: type: object properties: viewWindowMax: type: number viewWindowMin: type: number viewWindowMode: type: string chartType: type: string compareMode: type: string domains: type: array items: type: object properties: domain: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer reversed: type: boolean headerCount: type: integer interpolateNulls: type: boolean legendPosition: type: string lineSmoothing: type: boolean series: type: array items: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataLabel: type: object properties: customLabelData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer placement: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean type: type: string lineStyle: type: object properties: type: type: string width: type: integer pointStyle: type: object properties: shape: type: string size: type: number series: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer styleOverrides: type: array items: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string index: type: integer pointStyle: type: object properties: shape: type: string size: type: number targetAxis: type: string type: type: string stackedType: type: string threeDimensional: type: boolean totalDataLabel: type: object properties: customLabelData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer placement: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean type: type: string bubbleChart: type: object properties: bubbleBorderColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number bubbleBorderColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string bubbleLabels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer bubbleMaxRadiusSize: type: integer bubbleMinRadiusSize: type: integer bubbleOpacity: type: number bubbleSizes: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer bubbleTextStyle: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean domain: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer groupIds: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer legendPosition: type: string series: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer candlestickChart: type: object properties: data: type: array items: type: object properties: closeSeries: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer highSeries: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer lowSeries: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer openSeries: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer domain: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer reversed: type: boolean dataSourceChartProperties: type: object properties: dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSourceId: type: string filterSpecs: type: array items: type: object properties: columnIndex: type: integer dataSourceColumnReference: type: object properties: name: type: string filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string fontName: type: string hiddenDimensionStrategy: type: string histogramChart: type: object properties: bucketSize: type: number legendPosition: type: string outlierPercentile: type: number series: type: array items: type: object properties: barColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number barColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer showItemDividers: type: boolean maximized: type: boolean orgChart: type: object properties: labels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer nodeColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number nodeColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string nodeSize: type: string parentLabels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer selectedNodeColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number selectedNodeColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string tooltips: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer pieChart: type: object properties: domain: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer legendPosition: type: string pieHole: type: number series: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer threeDimensional: type: boolean scorecardChart: type: object properties: aggregateType: type: string baselineValueData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer baselineValueFormat: type: object properties: comparisonType: type: string description: type: string negativeColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number negativeColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string position: type: object properties: horizontalAlignment: type: string positiveColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number positiveColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean customFormatOptions: type: object properties: prefix: type: string suffix: type: string keyValueData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer keyValueFormat: type: object properties: position: type: object properties: horizontalAlignment: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean numberFormatSource: type: string scaleFactor: type: number sortSpecs: type: array items: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataSourceColumnReference: type: object properties: name: type: string dimensionIndex: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string sortOrder: type: string subtitle: type: string subtitleTextFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean subtitleTextPosition: type: object properties: horizontalAlignment: type: string title: type: string titleTextFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean titleTextPosition: type: object properties: horizontalAlignment: type: string treemapChart: type: object properties: colorData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer colorScale: type: object properties: maxValueColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number maxValueColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string midValueColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number midValueColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string minValueColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number minValueColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string noDataColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number noDataColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string headerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number headerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string hideTooltips: type: boolean hintedLevels: type: integer labels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer levels: type: integer maxValue: type: number minValue: type: number parentLabels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer sizeData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean waterfallChart: type: object properties: connectorLineStyle: type: object properties: type: type: string width: type: integer domain: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer reversed: type: boolean firstValueIsTotal: type: boolean hideConnectorLines: type: boolean series: type: array items: type: object properties: customSubtotals: type: array items: type: object properties: dataIsSubtotal: type: boolean label: type: string subtotalIndex: type: integer data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer dataLabel: type: object properties: customLabelData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer placement: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean type: type: string hideTrailingSubtotal: type: boolean negativeColumnsStyle: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string label: type: string positiveColumnsStyle: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string label: type: string subtotalColumnsStyle: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string label: type: string stackedType: type: string totalDataLabel: type: object properties: customLabelData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer placement: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean type: type: string columnGroups: type: array items: type: object properties: collapsed: type: boolean depth: type: integer range: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer conditionalFormats: type: array items: type: object properties: booleanRule: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string format: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string borders: type: object properties: bottom: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer left: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer right: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer top: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer horizontalAlignment: type: string hyperlinkDisplayType: type: string numberFormat: type: object properties: pattern: type: string type: type: string padding: type: object properties: bottom: type: integer left: type: integer right: type: integer top: type: integer textDirection: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean textRotation: type: object properties: angle: type: integer vertical: type: boolean verticalAlignment: type: string wrapStrategy: type: string gradientRule: type: object properties: maxpoint: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string type: type: string value: type: string midpoint: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string type: type: string value: type: string minpoint: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string type: type: string value: type: string ranges: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer data: type: array items: type: object properties: columnMetadata: type: array items: type: object properties: dataSourceColumnReference: type: object properties: name: type: string developerMetadata: type: array items: type: object properties: location: type: object properties: dimensionRange: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer locationType: type: string sheetId: type: integer spreadsheet: type: boolean metadataId: type: integer metadataKey: type: string metadataValue: type: string visibility: type: string hiddenByFilter: type: boolean hiddenByUser: type: boolean pixelSize: type: integer rowData: type: array items: type: object properties: values: type: array items: type: object properties: dataSourceFormula: type: object properties: dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSourceId: type: string dataSourceTable: type: object properties: columnSelectionType: type: string columns: type: array items: type: object properties: name: type: string dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSourceId: type: string filterSpecs: type: array items: type: object properties: columnIndex: type: integer dataSourceColumnReference: type: object properties: name: type: string filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string rowLimit: type: integer sortSpecs: type: array items: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataSourceColumnReference: type: object properties: name: type: string dimensionIndex: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string sortOrder: type: string dataValidation: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string inputMessage: type: string showCustomUi: type: boolean strict: type: boolean effectiveFormat: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string borders: type: object properties: bottom: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer left: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer right: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer top: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer horizontalAlignment: type: string hyperlinkDisplayType: type: string numberFormat: type: object properties: pattern: type: string type: type: string padding: type: object properties: bottom: type: integer left: type: integer right: type: integer top: type: integer textDirection: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean textRotation: type: object properties: angle: type: integer vertical: type: boolean verticalAlignment: type: string wrapStrategy: type: string effectiveValue: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string formattedValue: type: string hyperlink: type: string note: type: string pivotTable: type: object properties: columns: type: array items: type: object properties: dataSourceColumnReference: type: object properties: name: type: string groupLimit: type: object properties: applyOrder: type: integer countLimit: type: integer groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: end: type: number interval: type: number start: type: number manualRule: type: object properties: groups: type: array items: type: object properties: groupName: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string items: type: array items: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string label: type: string repeatHeadings: type: boolean showTotals: type: boolean sortOrder: type: string sourceColumnOffset: type: integer valueBucket: type: object properties: buckets: type: array items: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string valuesIndex: type: integer valueMetadata: type: array items: type: object properties: collapsed: type: boolean value: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string criteria: type: object properties: consequat_c15: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string visibleByDefault: type: boolean visibleValues: type: array items: type: string dolor_aa: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string visibleByDefault: type: boolean visibleValues: type: array items: type: string dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSourceId: type: string filterSpecs: type: array items: type: object properties: columnOffsetIndex: type: integer dataSourceColumnReference: type: object properties: name: type: string filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string visibleByDefault: type: boolean visibleValues: type: array items: type: string rows: type: array items: type: object properties: dataSourceColumnReference: type: object properties: name: type: string groupLimit: type: object properties: applyOrder: type: integer countLimit: type: integer groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: end: type: number interval: type: number start: type: number manualRule: type: object properties: groups: type: array items: type: object properties: groupName: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string items: type: array items: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string label: type: string repeatHeadings: type: boolean showTotals: type: boolean sortOrder: type: string sourceColumnOffset: type: integer valueBucket: type: object properties: buckets: type: array items: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string valuesIndex: type: integer valueMetadata: type: array items: type: object properties: collapsed: type: boolean value: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string source: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer valueLayout: type: string values: type: array items: type: object properties: calculatedDisplayType: type: string dataSourceColumnReference: type: object properties: name: type: string formula: type: string name: type: string sourceColumnOffset: type: integer summarizeFunction: type: string textFormatRuns: type: array items: type: object properties: format: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean startIndex: type: integer userEnteredFormat: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string borders: type: object properties: bottom: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer left: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer right: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer top: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer horizontalAlignment: type: string hyperlinkDisplayType: type: string numberFormat: type: object properties: pattern: type: string type: type: string padding: type: object properties: bottom: type: integer left: type: integer right: type: integer top: type: integer textDirection: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean textRotation: type: object properties: angle: type: integer vertical: type: boolean verticalAlignment: type: string wrapStrategy: type: string userEnteredValue: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string rowMetadata: type: array items: type: object properties: dataSourceColumnReference: type: object properties: name: type: string developerMetadata: type: array items: type: object properties: location: type: object properties: dimensionRange: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer locationType: type: string sheetId: type: integer spreadsheet: type: boolean metadataId: type: integer metadataKey: type: string metadataValue: type: string visibility: type: string hiddenByFilter: type: boolean hiddenByUser: type: boolean pixelSize: type: integer startColumn: type: integer startRow: type: integer developerMetadata: type: array items: type: object properties: location: type: object properties: dimensionRange: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer locationType: type: string sheetId: type: integer spreadsheet: type: boolean metadataId: type: integer metadataKey: type: string metadataValue: type: string visibility: type: string filterViews: type: array items: type: object properties: criteria: type: object properties: laborum_5: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string quis_c0: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string filterSpecs: type: array items: type: object properties: columnIndex: type: integer dataSourceColumnReference: type: object properties: name: type: string filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string filterViewId: type: integer namedRangeId: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer sortSpecs: type: array items: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataSourceColumnReference: type: object properties: name: type: string dimensionIndex: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string sortOrder: type: string title: type: string merges: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer properties: type: object properties: dataSourceSheetProperties: type: object properties: columns: type: array items: type: object properties: formula: type: string reference: type: object properties: name: type: string dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSourceId: type: string gridProperties: type: object properties: columnCount: type: integer columnGroupControlAfter: type: boolean frozenColumnCount: type: integer frozenRowCount: type: integer hideGridlines: type: boolean rowCount: type: integer rowGroupControlAfter: type: boolean hidden: type: boolean index: type: integer rightToLeft: type: boolean sheetId: type: integer sheetType: type: string tabColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number tabColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string title: type: string protectedRanges: type: array items: type: object properties: description: type: string editors: type: object properties: domainUsersCanEdit: type: boolean groups: type: array items: type: string users: type: array items: type: string namedRangeId: type: string protectedRangeId: type: integer range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer requestingUserCanEdit: type: boolean unprotectedRanges: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer warningOnly: type: boolean rowGroups: type: array items: type: object properties: collapsed: type: boolean depth: type: integer range: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer slicers: type: array items: type: object properties: position: type: object properties: newSheet: type: boolean overlayPosition: type: object properties: anchorCell: type: object properties: columnIndex: type: integer rowIndex: type: integer sheetId: type: integer heightPixels: type: integer offsetXPixels: type: integer offsetYPixels: type: integer widthPixels: type: integer sheetId: type: integer slicerId: type: integer spec: type: object properties: applyToPivotTables: type: boolean backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string columnIndex: type: integer dataRange: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string horizontalAlignment: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean title: type: string spreadsheetId: type: string spreadsheetUrl: type: string SpreadsheetsGetResponseProperties: description: SpreadsheetsGetResponseProperties schema type: object properties: autoRecalc: type: string defaultFormat: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormat' iterativeCalculationSettings: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesIterativeCalculationSettings' locale: type: string spreadsheetTheme: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesSpreadsheetTheme' timeZone: type: string title: type: string SpreadsheetsGetResponsePropertiesDefaultFormat: description: SpreadsheetsGetResponsePropertiesDefaultFormat schema type: object properties: backgroundColor: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatBackgroundColor' backgroundColorStyle: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatBackgroundColorStyle' borders: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatBorders' horizontalAlignment: type: string hyperlinkDisplayType: type: string numberFormat: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatNumberFormat' padding: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatPadding' textDirection: type: string textFormat: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatTextFormat' textRotation: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatTextRotation' verticalAlignment: type: string wrapStrategy: type: string SpreadsheetsGetResponsePropertiesDefaultFormatBackgroundColor: description: SpreadsheetsGetResponsePropertiesDefaultFormatBackgroundColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsGetResponsePropertiesDefaultFormatBackgroundColorStyle: description: SpreadsheetsGetResponsePropertiesDefaultFormatBackgroundColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatBackgroundColorStyleRgbColor' themeColor: type: string SpreadsheetsGetResponsePropertiesDefaultFormatBackgroundColorStyleRgbColor: description: SpreadsheetsGetResponsePropertiesDefaultFormatBackgroundColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsGetResponsePropertiesDefaultFormatBorders: description: SpreadsheetsGetResponsePropertiesDefaultFormatBorders schema type: object properties: bottom: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatBordersBottom' left: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatBordersLeft' right: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatBordersRight' top: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatBordersTop' SpreadsheetsGetResponsePropertiesDefaultFormatBordersBottom: description: SpreadsheetsGetResponsePropertiesDefaultFormatBordersBottom schema type: object properties: color: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatBordersBottomColor' colorStyle: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatBordersBottomColorStyle' style: type: string width: type: integer SpreadsheetsGetResponsePropertiesDefaultFormatBordersBottomColor: description: SpreadsheetsGetResponsePropertiesDefaultFormatBordersBottomColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsGetResponsePropertiesDefaultFormatBordersBottomColorStyle: description: SpreadsheetsGetResponsePropertiesDefaultFormatBordersBottomColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatBordersBottomColorStyleRgbColor' themeColor: type: string SpreadsheetsGetResponsePropertiesDefaultFormatBordersBottomColorStyleRgbColor: description: SpreadsheetsGetResponsePropertiesDefaultFormatBordersBottomColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsGetResponsePropertiesDefaultFormatBordersLeft: description: SpreadsheetsGetResponsePropertiesDefaultFormatBordersLeft schema type: object properties: color: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatBordersLeftColor' colorStyle: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatBordersLeftColorStyle' style: type: string width: type: integer SpreadsheetsGetResponsePropertiesDefaultFormatBordersLeftColor: description: SpreadsheetsGetResponsePropertiesDefaultFormatBordersLeftColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsGetResponsePropertiesDefaultFormatBordersLeftColorStyle: description: SpreadsheetsGetResponsePropertiesDefaultFormatBordersLeftColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatBordersLeftColorStyleRgbColor' themeColor: type: string SpreadsheetsGetResponsePropertiesDefaultFormatBordersLeftColorStyleRgbColor: description: SpreadsheetsGetResponsePropertiesDefaultFormatBordersLeftColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsGetResponsePropertiesDefaultFormatBordersRight: description: SpreadsheetsGetResponsePropertiesDefaultFormatBordersRight schema type: object properties: color: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatBordersRightColor' colorStyle: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatBordersRightColorStyle' style: type: string width: type: integer SpreadsheetsGetResponsePropertiesDefaultFormatBordersRightColor: description: SpreadsheetsGetResponsePropertiesDefaultFormatBordersRightColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsGetResponsePropertiesDefaultFormatBordersRightColorStyle: description: SpreadsheetsGetResponsePropertiesDefaultFormatBordersRightColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatBordersRightColorStyleRgbColor' themeColor: type: string SpreadsheetsGetResponsePropertiesDefaultFormatBordersRightColorStyleRgbColor: description: SpreadsheetsGetResponsePropertiesDefaultFormatBordersRightColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsGetResponsePropertiesDefaultFormatBordersTop: description: SpreadsheetsGetResponsePropertiesDefaultFormatBordersTop schema type: object properties: color: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatBordersTopColor' colorStyle: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatBordersTopColorStyle' style: type: string width: type: integer SpreadsheetsGetResponsePropertiesDefaultFormatBordersTopColor: description: SpreadsheetsGetResponsePropertiesDefaultFormatBordersTopColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsGetResponsePropertiesDefaultFormatBordersTopColorStyle: description: SpreadsheetsGetResponsePropertiesDefaultFormatBordersTopColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatBordersTopColorStyleRgbColor' themeColor: type: string SpreadsheetsGetResponsePropertiesDefaultFormatBordersTopColorStyleRgbColor: description: SpreadsheetsGetResponsePropertiesDefaultFormatBordersTopColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsGetResponsePropertiesDefaultFormatNumberFormat: description: SpreadsheetsGetResponsePropertiesDefaultFormatNumberFormat schema type: object properties: pattern: type: string type: type: string SpreadsheetsGetResponsePropertiesDefaultFormatPadding: description: SpreadsheetsGetResponsePropertiesDefaultFormatPadding schema type: object properties: bottom: type: integer left: type: integer right: type: integer top: type: integer SpreadsheetsGetResponsePropertiesDefaultFormatTextFormat: description: SpreadsheetsGetResponsePropertiesDefaultFormatTextFormat schema type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatTextFormatForegroundColor' foregroundColorStyle: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatTextFormatForegroundColorStyle' italic: type: boolean link: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatTextFormatLink' strikethrough: type: boolean underline: type: boolean SpreadsheetsGetResponsePropertiesDefaultFormatTextFormatForegroundColor: description: SpreadsheetsGetResponsePropertiesDefaultFormatTextFormatForegroundColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsGetResponsePropertiesDefaultFormatTextFormatForegroundColorStyle: description: SpreadsheetsGetResponsePropertiesDefaultFormatTextFormatForegroundColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsGetResponsePropertiesDefaultFormatTextFormatForegroundColorStyleRgbColor' themeColor: type: string SpreadsheetsGetResponsePropertiesDefaultFormatTextFormatForegroundColorStyleRgbColor: description: SpreadsheetsGetResponsePropertiesDefaultFormatTextFormatForegroundColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsGetResponsePropertiesDefaultFormatTextFormatLink: description: SpreadsheetsGetResponsePropertiesDefaultFormatTextFormatLink schema type: object properties: uri: type: string SpreadsheetsGetResponsePropertiesDefaultFormatTextRotation: description: SpreadsheetsGetResponsePropertiesDefaultFormatTextRotation schema type: object properties: angle: type: integer vertical: type: boolean SpreadsheetsGetResponsePropertiesIterativeCalculationSettings: description: SpreadsheetsGetResponsePropertiesIterativeCalculationSettings schema type: object properties: convergenceThreshold: type: number maxIterations: type: integer SpreadsheetsGetResponsePropertiesSpreadsheetTheme: description: SpreadsheetsGetResponsePropertiesSpreadsheetTheme schema type: object properties: primaryFontFamily: type: string themeColors: type: array items: type: object properties: color: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string colorType: type: string SpreadsheetsPostRequest: description: SpreadsheetsPostRequest schema type: object example: dataSourceSchedules: - dailySchedule: startTime: hours: -43266123 minutes: -65732454 nanos: -97450442 seconds: -41631562 enabled: false monthlySchedule: daysOfMonth: - 57977061 startTime: hours: 3999156 minutes: 89598075 nanos: -62818558 seconds: -7104959 nextRun: endTime: ut tempor laborum startTime: veniam do nisi in refreshScope: DATA_SOURCE_REFRESH_SCOPE_UNSPECIFIED weeklySchedule: daysOfWeek: - SUNDAY startTime: hours: -98244095 minutes: -4153534 nanos: -31897594 seconds: 83370707 dataSources: - calculatedColumns: - formula: nisi sunt reference: name: qui reprehenderit dataSourceId: sed dolore incididunt sheetId: -56661553 spec: bigQuery: projectId: aliqua velit querySpec: rawQuery: deserunt tableSpec: datasetId: culpa magna aliquip Duis tableId: occaecat deserunt tableProjectId: officia Duis ex in labore parameters: - name: Ut ad ipsum namedRangeId: magna range: endColumnIndex: 31885169 endRowIndex: -4040036 sheetId: -19707509 startColumnIndex: 5926358 startRowIndex: -24382075 developerMetadata: - location: dimensionRange: dimension: DIMENSION_UNSPECIFIED endIndex: 83564351 sheetId: 20161961 startIndex: -12299871 locationType: SHEET sheetId: 19412940 spreadsheet: true metadataId: -26483526 metadataKey: ad consectetur nulla metadataValue: cillum proident qui occaecat visibility: DEVELOPER_METADATA_VISIBILITY_UNSPECIFIED namedRanges: - name: reprehenderit sed est aliquip Ut namedRangeId: amet dolore range: endColumnIndex: -29487355 endRowIndex: 28833316 sheetId: 2554752 startColumnIndex: 75795510 startRowIndex: -72526094 properties: autoRecalc: ON_CHANGE defaultFormat: backgroundColor: alpha: -22421824.691030562 blue: 90013088.65213957 green: 24974090.92647165 red: 88011821.65105522 backgroundColorStyle: rgbColor: alpha: 51433993.220397204 blue: -34599856.361609936 green: 23834312.320355803 red: 97183505.05098599 themeColor: LINK borders: bottom: color: alpha: -46461682.392919324 blue: -39600858.47643326 green: -12885677.880025923 red: 20395982.76429157 colorStyle: rgbColor: alpha: -67713553.05349366 blue: 3075128.750359297 green: 89745091.64237362 red: 65057007.37397438 themeColor: ACCENT6 style: DOUBLE width: -83132355 left: color: alpha: 7529742.843985558 blue: 11523153.264217004 green: -83789517.69852239 red: -52273453.1840499 colorStyle: rgbColor: alpha: 23413126.31362365 blue: -89783978.4406965 green: 7478744.238987163 red: 91268984.47651386 themeColor: ACCENT4 style: SOLID_THICK width: 9587363 right: color: alpha: -68478561.90889128 blue: 86635613.318176 green: -4182434.2241241187 red: -37761525.154127404 colorStyle: rgbColor: alpha: 7564148.4709581435 blue: 46817587.00993326 green: 94604103.88139793 red: -39300118.4906812 themeColor: ACCENT4 style: STYLE_UNSPECIFIED width: -68379222 top: color: alpha: -35207179.004029274 blue: 75124743.01189193 green: -79174603.1645633 red: 69525380.65581709 colorStyle: rgbColor: alpha: 13971651.645456567 blue: 79134644.33448789 green: -8214105.3416944295 red: -55694700.72815168 themeColor: ACCENT6 style: DASHED width: -47592569 horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED hyperlinkDisplayType: HYPERLINK_DISPLAY_TYPE_UNSPECIFIED numberFormat: pattern: mollit magna ea type: TEXT padding: bottom: 3638265 left: -10421780 right: 70673792 top: 74778750 textDirection: TEXT_DIRECTION_UNSPECIFIED textFormat: bold: false fontFamily: reprehenderit cupidatat veniam Lorem do fontSize: -28113564 foregroundColor: alpha: 22027996.78423269 blue: -28716622.048885256 green: -19625308.709902182 red: -94408017.34685133 foregroundColorStyle: rgbColor: alpha: 71419372.2264759 blue: -82168243.51208629 green: -14187866.496848583 red: -65181659.34325215 themeColor: ACCENT6 italic: true link: uri: ullamco elit strikethrough: true underline: false textRotation: angle: -56348588 vertical: true verticalAlignment: VERTICAL_ALIGN_UNSPECIFIED wrapStrategy: WRAP iterativeCalculationSettings: convergenceThreshold: -28283351.56397684 maxIterations: -12335234 locale: exercitation cillum spreadsheetTheme: primaryFontFamily: ut themeColors: - color: rgbColor: alpha: -31710249.01160507 blue: 26026986.419538647 green: -43409395.90685053 red: 92736615.8684296 themeColor: THEME_COLOR_TYPE_UNSPECIFIED colorType: ACCENT5 timeZone: dolore laborum title: pariatur consectetur enim sheets: - bandedRanges: - bandedRangeId: 43139549 columnProperties: firstBandColor: alpha: -4656388.077727273 blue: -96613087.81631872 green: 4264693.804137036 red: 15111703.323823318 firstBandColorStyle: rgbColor: alpha: 99618076.90212369 blue: -49006881.50795429 green: 40319994.66356942 red: 65200542.683243126 themeColor: ACCENT6 footerColor: alpha: -33490013.551426753 blue: 32916340.128778905 green: 45262863.20501071 red: 19556816.571504414 footerColorStyle: rgbColor: alpha: -12068084.107148275 blue: -67832617.26921017 green: 22561836.25395614 red: -12142418.295326784 themeColor: LINK headerColor: alpha: -92687886.79756828 blue: -43280044.32060295 green: -23303373.12507233 red: -780389.2770115584 headerColorStyle: rgbColor: alpha: 8336086.317506105 blue: -49729232.317501724 green: -93612445.38047923 red: 31375535.857318223 themeColor: LINK secondBandColor: alpha: 99568934.50178161 blue: -91350629.81953612 green: -92964471.4278552 red: 37608193.63273704 secondBandColorStyle: rgbColor: alpha: 8970943.769093469 blue: -88201063.90158297 green: -13429353.495263636 red: 53969915.37868002 themeColor: ACCENT5 range: endColumnIndex: 87619727 endRowIndex: 20345160 sheetId: -65789249 startColumnIndex: -45948999 startRowIndex: -91737266 rowProperties: firstBandColor: alpha: 72010730.72591546 blue: 36846314.31772801 green: -96974888.03108025 red: 15421378.969790965 firstBandColorStyle: rgbColor: alpha: -22875637.799782306 blue: -73894833.409663 green: 91215030.05576509 red: -50423962.36714643 themeColor: ACCENT5 footerColor: alpha: 29168021.166943878 blue: -73831066.69786125 green: -89420542.5069429 red: 62593032.88934922 footerColorStyle: rgbColor: alpha: 43818785.12623486 blue: -45213359.909048915 green: 82881046.86449617 red: 72695904.25279978 themeColor: THEME_COLOR_TYPE_UNSPECIFIED headerColor: alpha: -60297724.716774106 blue: -89358737.19895242 green: 9563382.870461494 red: -7656815.10466139 headerColorStyle: rgbColor: alpha: -2842718.0475878417 blue: -2902275.1736353934 green: 9050794.865266055 red: -56674654.576242566 themeColor: ACCENT1 secondBandColor: alpha: -58009568.66879341 blue: 58834392.95665088 green: 55256317.50557256 red: 75550157.79389471 secondBandColorStyle: rgbColor: alpha: -30634601.267103404 blue: 55532206.36613929 green: -36562285.06917545 red: 13711659.906762823 themeColor: THEME_COLOR_TYPE_UNSPECIFIED basicFilter: criteria: doloreb_: condition: type: DATE_ON_OR_BEFORE values: - relativeDate: YESTERDAY userEnteredValue: id minim nisi elit hiddenValues: - ullamco nisi Excepteur anim visibleBackgroundColor: alpha: -81353007.03492567 blue: -38141297.090509996 green: 69154203.18882197 red: 36035439.413398474 visibleBackgroundColorStyle: rgbColor: alpha: 91173489.24772286 blue: -89346769.05947395 green: -19404805.972366154 red: -80230975.30043045 themeColor: ACCENT1 visibleForegroundColor: alpha: 57217398.74284211 blue: 74154308.04036638 green: 73016659.72982222 red: -22213180.456824318 visibleForegroundColorStyle: rgbColor: alpha: -43145436.167499796 blue: 74653537.38607502 green: 3025279.31792067 red: 79218590.71985793 themeColor: BACKGROUND filterSpecs: - columnIndex: 78389632 dataSourceColumnReference: name: in incididunt fugiat nostrud pariatur filterCriteria: condition: type: DATE_NOT_EQ values: - relativeDate: YESTERDAY userEnteredValue: laborum consectetur sit minim hiddenValues: - nulla pariatur qui ipsum visibleBackgroundColor: alpha: -91665830.15722671 blue: -99904560.26291601 green: 65347039.68829051 red: 63151914.08808029 visibleBackgroundColorStyle: rgbColor: alpha: 499116.31694211066 blue: 68604299.30482864 green: 98759492.96351925 red: 14867204.90616484 themeColor: BACKGROUND visibleForegroundColor: alpha: 50134573.64080387 blue: -87982539.28045554 green: -54603731.334672555 red: -64824031.22209801 visibleForegroundColorStyle: rgbColor: alpha: -73656646.24134824 blue: 2700641.501126051 green: 33008212.7396079 red: 16719230.552707165 themeColor: ACCENT4 range: endColumnIndex: -43877930 endRowIndex: -8809700 sheetId: 64318214 startColumnIndex: -7032303 startRowIndex: 39815904 sortSpecs: - backgroundColor: alpha: -28651638.96061036 blue: 45673855.84156752 green: 86189187.70006451 red: -74364203.78529602 backgroundColorStyle: rgbColor: alpha: -3168584.4773793966 blue: -56626033.75210678 green: 72484110.2359632 red: 692312.8745354861 themeColor: ACCENT1 dataSourceColumnReference: name: veniam sunt velit culpa dolor dimensionIndex: 11289450 foregroundColor: alpha: 96699958.53379482 blue: 76576567.97638994 green: -97320362.404836 red: -16790174.071512222 foregroundColorStyle: rgbColor: alpha: 67120313.76985142 blue: -79175402.66751315 green: 40644773.578526884 red: 84483907.11570269 themeColor: TEXT sortOrder: DESCENDING charts: - border: color: alpha: -6806672.500234127 blue: -59007826.50270249 green: 10160147.46663165 red: -20321148.950214908 colorStyle: rgbColor: alpha: 91689568.81668949 blue: 2961191.4176778793 green: 35578319.610948086 red: -5716472.749471709 themeColor: ACCENT4 chartId: -32308995 position: newSheet: true overlayPosition: anchorCell: columnIndex: -17264157 rowIndex: 17971192 sheetId: -70644812 heightPixels: 68423649 offsetXPixels: -94619858 offsetYPixels: -40214573 widthPixels: 77699500 sheetId: 63263059 spec: altText: deserunt proident nisi velit backgroundColor: alpha: -74849362.71468747 blue: -33495356.529037237 green: -62285800.332203634 red: -71890137.92690893 backgroundColorStyle: rgbColor: alpha: -79372460.55857861 blue: -95212341.51298112 green: 89931702.92362115 red: -20165241.53386876 themeColor: THEME_COLOR_TYPE_UNSPECIFIED basicChart: axis: - format: bold: false fontFamily: minim ea deserunt sed fontSize: 97507116 foregroundColor: alpha: -38999236.44546352 blue: 40553042.374115616 green: -77531909.59799339 red: 79603930.29403087 foregroundColorStyle: rgbColor: alpha: 32307950.109844625 blue: -67183178.37236509 green: -71081574.55853146 red: 98483083.22794133 themeColor: ACCENT2 italic: false link: uri: quis veniam dolor voluptate strikethrough: false underline: true position: BOTTOM_AXIS title: cupidatat esse nisi adipisicing titleTextPosition: horizontalAlignment: RIGHT viewWindowOptions: viewWindowMax: 72069702.17549679 viewWindowMin: -22257002.843773097 viewWindowMode: PRETTY chartType: STEPPED_AREA compareMode: DATUM domains: - domain: aggregateType: SUM columnReference: name: consectetur deserunt mollit groupRule: dateTimeRule: type: YEAR_MONTH histogramRule: intervalSize: -18521355.740935206 maxValue: 90158102.40211827 minValue: 87397122.90272304 sourceRange: sources: - endColumnIndex: -22668278 endRowIndex: 36123013 sheetId: 11952739 startColumnIndex: -32135218 startRowIndex: 66789128 reversed: true headerCount: 97182168 interpolateNulls: true legendPosition: BOTTOM_LEGEND lineSmoothing: true series: - color: alpha: 55722752.437729895 blue: 64477580.13592622 green: 71676688.93817422 red: -38156417.06576298 colorStyle: rgbColor: alpha: 28247526.09445946 blue: 69221968.87022421 green: 61917915.17307904 red: -17721228.542360783 themeColor: BACKGROUND dataLabel: customLabelData: aggregateType: MEDIAN columnReference: name: occaecat consequat quis groupRule: dateTimeRule: type: DAY_OF_WEEK histogramRule: intervalSize: -3857463.495657593 maxValue: -42586732.40078985 minValue: 37051651.2186895 sourceRange: sources: - endColumnIndex: -49248867 endRowIndex: -10371941 sheetId: 401546 startColumnIndex: -58085589 startRowIndex: -90982621 placement: BELOW textFormat: bold: false fontFamily: exercita fontSize: 81004203 foregroundColor: alpha: 41517003.63395324 blue: -70330186.86511676 green: -40534404.20106273 red: -31969992.615171924 foregroundColorStyle: rgbColor: alpha: 17775650.16171652 blue: -13772557.713170916 green: 27090283.845191807 red: -90047236.70280597 themeColor: ACCENT5 italic: false link: uri: in incididunt strikethrough: true underline: false type: NONE lineStyle: type: SOLID width: -84876836 pointStyle: shape: DIAMOND size: 64452898.462776005 series: aggregateType: SUM columnReference: name: magna groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: -70261025.00131163 maxValue: -30011278.55406885 minValue: 81851518.34003606 sourceRange: sources: - endColumnIndex: 44015002 endRowIndex: -98733261 sheetId: -35067209 startColumnIndex: 86137084 startRowIndex: 3077548 styleOverrides: - color: alpha: -69183513.89384103 blue: 19485706.81396036 green: 65328186.50077203 red: 12493290.07813476 colorStyle: rgbColor: alpha: -64008295.12294073 blue: -94462392.22749741 green: 88044885.24860078 red: -8836624.99906604 themeColor: ACCENT4 index: 7171408 pointStyle: shape: STAR size: -3552381.8585395366 targetAxis: BOTTOM_AXIS type: BASIC_CHART_TYPE_UNSPECIFIED stackedType: STACKED threeDimensional: true totalDataLabel: customLabelData: aggregateType: AVERAGE columnReference: name: elit ut Duis dolor groupRule: dateTimeRule: type: YEAR histogramRule: intervalSize: -5661235.146948233 maxValue: 77926629.53448138 minValue: 95577122.05968186 sourceRange: sources: - endColumnIndex: -76126877 endRowIndex: 42365670 sheetId: -76812357 startColumnIndex: 10226550 startRowIndex: 78881618 placement: RIGHT textFormat: bold: true fontFamily: et quis fontSize: 98579648 foregroundColor: alpha: 61002974.30631539 blue: 80971733.87236923 green: 68549056.98709989 red: 15343737.815225646 foregroundColorStyle: rgbColor: alpha: -91715833.91394736 blue: -56802867.72936918 green: -87612035.17797464 red: -94011753.84827228 themeColor: ACCENT5 italic: true link: uri: nulla id strikethrough: false underline: false type: CUSTOM bubbleChart: bubbleBorderColor: alpha: -84379523.96780863 blue: -22016451.819793478 green: 75200774.78312755 red: -91103521.06502111 bubbleBorderColorStyle: rgbColor: alpha: 42567298.29471606 blue: 53253070.63489702 green: 83815850.61622888 red: 53174334.26933822 themeColor: ACCENT4 bubbleLabels: aggregateType: SUM columnReference: name: commodo laboris consequat occaecat groupRule: dateTimeRule: type: YEAR_QUARTER histogramRule: intervalSize: -47029901.33041931 maxValue: -59720934.285820305 minValue: 72796472.10031083 sourceRange: sources: - endColumnIndex: -55006695 endRowIndex: -93033674 sheetId: 76677429 startColumnIndex: 23516908 startRowIndex: 36856856 bubbleMaxRadiusSize: 41144622 bubbleMinRadiusSize: -10010743 bubbleOpacity: 27400130.72438918 bubbleSizes: aggregateType: SUM columnReference: name: fugiat Except groupRule: dateTimeRule: type: DAY_OF_MONTH histogramRule: intervalSize: 8578270.545850858 maxValue: 64391065.68835834 minValue: -39435110.542253636 sourceRange: sources: - endColumnIndex: 62598857 endRowIndex: -72355329 sheetId: -45696083 startColumnIndex: 94622500 startRowIndex: 92634679 bubbleTextStyle: bold: true fontFamily: nulla commodo dolor fontSize: -5686162 foregroundColor: alpha: -794699.0987645686 blue: -54637342.35554334 green: -36289015.903600894 red: 97876618.28661105 foregroundColorStyle: rgbColor: alpha: 92888781.71785215 blue: 39613389.316816896 green: 52472776.62823087 red: -34529769.67181028 themeColor: LINK italic: true link: uri: nisi eu aliquip strikethrough: false underline: false domain: aggregateType: SUM columnReference: name: tempor cillum qui in groupRule: dateTimeRule: type: DAY_MONTH histogramRule: intervalSize: -80130275.36145376 maxValue: -94810329.47692616 minValue: 9830111.758620098 sourceRange: sources: - endColumnIndex: 25769079 endRowIndex: 48682569 sheetId: 30218238 startColumnIndex: -91964628 startRowIndex: 42746181 groupIds: aggregateType: AVERAGE columnReference: name: est anim do voluptate groupRule: dateTimeRule: type: DAY_OF_YEAR histogramRule: intervalSize: 26899146.655878693 maxValue: -98921533.26900548 minValue: -47194232.78588408 sourceRange: sources: - endColumnIndex: 21684096 endRowIndex: 25205083 sheetId: -44306216 startColumnIndex: 97302956 startRowIndex: 14760080 legendPosition: RIGHT_LEGEND series: aggregateType: SUM columnReference: name: labore laboris in culpa groupRule: dateTimeRule: type: SECOND histogramRule: intervalSize: -75300936.9657991 maxValue: -30478658.85255146 minValue: 13559461.281764477 sourceRange: sources: - endColumnIndex: 6043259 endRowIndex: 93573702 sheetId: -97142515 startColumnIndex: 49623823 startRowIndex: 76944482 candlestickChart: data: - closeSeries: data: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: qui id groupRule: dateTimeRule: type: DAY_OF_MONTH histogramRule: intervalSize: 41125538.61625695 maxValue: 97994679.49475247 minValue: 23618954.14523758 sourceRange: sources: - endColumnIndex: 60932056 endRowIndex: 55451137 sheetId: 23662228 startColumnIndex: -89409748 startRowIndex: -88671225 highSeries: data: aggregateType: SUM columnReference: name: incididunt groupRule: dateTimeRule: type: DAY_OF_YEAR histogramRule: intervalSize: -91812004.1593093 maxValue: 16850134.692005485 minValue: 66295928.31552905 sourceRange: sources: - endColumnIndex: 52635003 endRowIndex: 98820817 sheetId: -80483510 startColumnIndex: 43736501 startRowIndex: 47086604 lowSeries: data: aggregateType: MIN columnReference: name: velit sed cupidatat groupRule: dateTimeRule: type: YEAR_MONTH_DAY histogramRule: intervalSize: 66473933.83846918 maxValue: 47613686.91368076 minValue: -28069209.676522672 sourceRange: sources: - endColumnIndex: 21335855 endRowIndex: 11458701 sheetId: 95775715 startColumnIndex: 56326513 startRowIndex: 57674274 openSeries: data: aggregateType: AVERAGE columnReference: name: nostrud amet tempor dolor groupRule: dateTimeRule: type: DAY_OF_WEEK histogramRule: intervalSize: -37794263.73271777 maxValue: -4646182.705438033 minValue: -65935054.51988828 sourceRange: sources: - endColumnIndex: 54606199 endRowIndex: -76961833 sheetId: -69341559 startColumnIndex: 49818022 startRowIndex: -46883787 domain: data: aggregateType: COUNT columnReference: name: Ut cupidatat Duis groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: 6946669.7408254 maxValue: 83943171.96904132 minValue: 93424064.16476154 sourceRange: sources: - endColumnIndex: 43409596 endRowIndex: 25613295 sheetId: 24793983 startColumnIndex: -86096266 startRowIndex: 27520739 reversed: true dataSourceChartProperties: dataExecutionStatus: errorCode: DATA_EXECUTION_ERROR_CODE_UNSPECIFIED errorMessage: aliquip consectetur anim lastRefreshTime: al state: RUNNING dataSourceId: eiusmod ut consequat filterSpecs: - columnIndex: 90546677 dataSourceColumnReference: name: aute dolor laboris filterCriteria: condition: type: NUMBER_GREATER values: - relativeDate: RELATIVE_DATE_UNSPECIFIED userEnteredValue: ea c hiddenValues: - Duis proident do et visibleBackgroundColor: alpha: -36283526.30272102 blue: -1345286.881266445 green: -12026794.19154644 red: -15180752.626320705 visibleBackgroundColorStyle: rgbColor: alpha: 45116185.141209155 blue: 45489662.91515803 green: 54509241.505173504 red: -687712.9555583447 themeColor: ACCENT3 visibleForegroundColor: alpha: -28565684.45552306 blue: 81054396.77549508 green: 80240546.97687149 red: 34993376.16041127 visibleForegroundColorStyle: rgbColor: alpha: -66222367.96892498 blue: 48585075.55200243 green: -5020969.710157797 red: -46324783.9773818 themeColor: LINK fontName: do hiddenDimensionStrategy: CHART_HIDDEN_DIMENSION_STRATEGY_UNSPECIFIED histogramChart: bucketSize: -84607370.87032846 legendPosition: RIGHT_LEGEND outlierPercentile: -55914163.013332054 series: - barColor: alpha: 55040259.75877115 blue: 69737257.65370405 green: 35399131.94407421 red: 58901591.43528417 barColorStyle: rgbColor: alpha: -42943196.55535497 blue: 67372783.7021254 green: 27349397.156058505 red: -94587978.25310077 themeColor: ACCENT5 data: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: consectetur amet groupRule: dateTimeRule: type: YEAR_MONTH histogramRule: intervalSize: -30788024.641912863 maxValue: -24732732.354569674 minValue: 4681068.022945747 sourceRange: sources: - endColumnIndex: 6881824 endRowIndex: 59193013 sheetId: -78991757 startColumnIndex: -56953158 startRowIndex: -24851839 showItemDividers: true maximized: false orgChart: labels: aggregateType: MEDIAN columnReference: name: dolore sunt groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: 87979300.06759924 maxValue: -69738481.45343556 minValue: -55802864.81927726 sourceRange: sources: - endColumnIndex: 29992841 endRowIndex: -43142118 sheetId: -28375698 startColumnIndex: -72923293 startRowIndex: -33095858 nodeColor: alpha: 63129191.538889855 blue: -35920096.32508599 green: 84152512.73405561 red: -11451214.36287035 nodeColorStyle: rgbColor: alpha: -97554231.51759884 blue: -29398256.39035356 green: 97755801.09825203 red: 34052276.84180114 themeColor: ACCENT3 nodeSize: LARGE parentLabels: aggregateType: MEDIAN columnReference: name: enim est nostrud groupRule: dateTimeRule: type: QUARTER histogramRule: intervalSize: 88870422.46986204 maxValue: 71468798.485621 minValue: -57852079.24046984 sourceRange: sources: - endColumnIndex: 17055627 endRowIndex: -57134547 sheetId: 57015075 startColumnIndex: 99690712 startRowIndex: -33788216 selectedNodeColor: alpha: -29455482.56013368 blue: -22382852.613567516 green: 8850774.5190427 red: 61466971.9064942 selectedNodeColorStyle: rgbColor: alpha: -75343847.9287142 blue: -8954102.548794523 green: -34938585.086757176 red: -19011933.398021072 themeColor: ACCENT3 tooltips: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: officia proident et Ut groupRule: dateTimeRule: type: QUARTER histogramRule: intervalSize: -94682800.43479304 maxValue: 46663800.77882236 minValue: -46526138.67756505 sourceRange: sources: - endColumnIndex: 48665731 endRowIndex: 65106729 sheetId: -86829639 startColumnIndex: -26806983 startRowIndex: -14573074 pieChart: domain: aggregateType: MAX columnReference: name: amet sunt ut groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: 67702553.569311 maxValue: -91163548.4262694 minValue: 33648414.01718235 sourceRange: sources: - endColumnIndex: 51976057 endRowIndex: 19254915 sheetId: 97191751 startColumnIndex: -18454783 startRowIndex: 33933093 legendPosition: TOP_LEGEND pieHole: -30263554.3671816 series: aggregateType: MIN columnReference: name: 'Excepteur minim ' groupRule: dateTimeRule: type: DAY_OF_MONTH histogramRule: intervalSize: -50713394.28357296 maxValue: -39606797.85202501 minValue: -11707961.734067008 sourceRange: sources: - endColumnIndex: -35582263 endRowIndex: -6114928 sheetId: 32942167 startColumnIndex: -61891345 startRowIndex: 42817793 threeDimensional: true scorecardChart: aggregateType: SUM baselineValueData: aggregateType: COUNT columnReference: name: est dol groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: -84704547.41613685 maxValue: -60029874.82360034 minValue: -85835166.9727921 sourceRange: sources: - endColumnIndex: 30967618 endRowIndex: 43348963 sheetId: 8722686 startColumnIndex: 19580190 startRowIndex: 19736578 baselineValueFormat: comparisonType: ABSOLUTE_DIFFERENCE description: exercitation ea negativeColor: alpha: 91192114.04931337 blue: 84467827.57099438 green: 13171452.879573137 red: 749918.1010410339 negativeColorStyle: rgbColor: alpha: 75322019.75364456 blue: -58339194.567314535 green: -2502404.4841341972 red: -49802225.98250763 themeColor: ACCENT4 position: horizontalAlignment: RIGHT positiveColor: alpha: 47683155.2413601 blue: -48258473.6134728 green: -79219630.28850487 red: 73135752.91313782 positiveColorStyle: rgbColor: alpha: -51811771.27181496 blue: -68431861.42049551 green: 3160043.800748363 red: -30675512.206715316 themeColor: ACCENT6 textFormat: bold: true fontFamily: aliquip culpa ut fontSize: 46805087 foregroundColor: alpha: -62924653.43184421 blue: 20943779.987398475 green: -17616130.36710909 red: -3220385.6507084817 foregroundColorStyle: rgbColor: alpha: 71779234.54589847 blue: 31177018.482527792 green: -49721861.10757293 red: 53599046.95277199 themeColor: THEME_COLOR_TYPE_UNSPECIFIED italic: false link: uri: ali strikethrough: false underline: false customFormatOptions: prefix: proident fugiat cons suffix: id aliqua keyValueData: aggregateType: COUNT columnReference: name: anim quis groupRule: dateTimeRule: type: CHART_DATE_TIME_RULE_TYPE_UNSPECIFIED histogramRule: intervalSize: 50402519.97843766 maxValue: 79630701.63392273 minValue: -72021083.7874685 sourceRange: sources: - endColumnIndex: 36860082 endRowIndex: -99459561 sheetId: -20414918 startColumnIndex: 65828 startRowIndex: 89009394 keyValueFormat: position: horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED textFormat: bold: false fontFamily: dolore fontSize: 58034460 foregroundColor: alpha: -89284965.90978332 blue: 87746540.76626381 green: 70359194.17464548 red: -15107432.094405621 foregroundColorStyle: rgbColor: alpha: 92624270.26585877 blue: 76408327.49501455 green: -26905631.18148361 red: -50289008.269739985 themeColor: ACCENT3 italic: false link: uri: velit mollit labore voluptate strikethrough: false underline: false numberFormatSource: CHART_NUMBER_FORMAT_SOURCE_UNDEFINED scaleFactor: -5359429.594352871 sortSpecs: - backgroundColor: alpha: -39930853.52848409 blue: 49080107.640369385 green: -8043835.338221729 red: -82586735.70494701 backgroundColorStyle: rgbColor: alpha: 91640696.8671143 blue: 26897959.743679762 green: -47879743.89375163 red: 93100312.27694032 themeColor: ACCENT6 dataSourceColumnReference: name: fugiat in Lorem occaecat dimensionIndex: -88840985 foregroundColor: alpha: -75857689.17465128 blue: 29787494.024613097 green: -84352396.56627944 red: -89930343.12985398 foregroundColorStyle: rgbColor: alpha: 34651137.4042612 blue: -930903.671572119 green: 1281339.8256363422 red: 3807791.214975789 themeColor: TEXT sortOrder: DESCENDING subtitle: magna velit subtitleTextFormat: bold: true fontFamily: veniam sit dolor aute fontSize: -45388084 foregroundColor: alpha: -52163753.82327558 blue: -10058404.811999738 green: -81965679.10336196 red: 32525819.75083393 foregroundColorStyle: rgbColor: alpha: 68603502.39416003 blue: -24690407.82358101 green: 61136506.37899554 red: 84241621.90678227 themeColor: ACCENT2 italic: true link: uri: tempor consectetur strikethrough: true underline: false subtitleTextPosition: horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED title: aliq titleTextFormat: bold: true fontFamily: non ullamco laboris fontSize: 73318110 foregroundColor: alpha: 30110225.536503732 blue: 38491927.4758943 green: 95094690.34997103 red: -51271996.931729145 foregroundColorStyle: rgbColor: alpha: -45286265.88793503 blue: 4883206.111387521 green: 39371167.88144383 red: -97257188.29635426 themeColor: TEXT italic: true link: uri: sed in strikethrough: true underline: true titleTextPosition: horizontalAlignment: LEFT treemapChart: colorData: aggregateType: MIN columnReference: name: est et groupRule: dateTimeRule: type: DAY_OF_YEAR histogramRule: intervalSize: -87370287.69161367 maxValue: 63694067.566963494 minValue: 65378205.29212701 sourceRange: sources: - endColumnIndex: -86832079 endRowIndex: 56378894 sheetId: 41285499 startColumnIndex: 19967088 startRowIndex: -83999042 colorScale: maxValueColor: alpha: 61322054.213629335 blue: -99123982.21827145 green: 80750735.98303589 red: 52098616.85426694 maxValueColorStyle: rgbColor: alpha: 43468410.23279801 blue: 38780059.91488701 green: 94937094.52421802 red: 5673434.052179977 themeColor: ACCENT1 midValueColor: alpha: -40893685.231944144 blue: 34050815.38297199 green: -95680096.3838476 red: -51629671.84386633 midValueColorStyle: rgbColor: alpha: 95447093.73078987 blue: -83367126.71878645 green: -58423988.25561426 red: 119657.44637519121 themeColor: ACCENT3 minValueColor: alpha: 54617885.253979415 blue: 17837783.893287316 green: 19904306.74798067 red: 61354369.22587797 minValueColorStyle: rgbColor: alpha: 47304735.15669909 blue: 82533081.71530113 green: -16093777.310446367 red: 64352116.3654238 themeColor: LINK noDataColor: alpha: 83331239.39278728 blue: -23262921.960855514 green: 65262497.94032225 red: 10048267.815709531 noDataColorStyle: rgbColor: alpha: -73179697.24343878 blue: -87528688.75965652 green: -59566691.700415395 red: -46601037.91076127 themeColor: ACCENT5 headerColor: alpha: 26994389.41218242 blue: 17093624.016673908 green: -61517646.16487689 red: 81670949.55874091 headerColorStyle: rgbColor: alpha: 2448766.8123804927 blue: -9175268.361172289 green: -69556456.81124017 red: 29179775.0721229 themeColor: ACCENT5 hideTooltips: true hintedLevels: 22972430 labels: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: tempor occa groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: -18477549.46402648 maxValue: 96611960.49759933 minValue: -64086187.69615084 sourceRange: sources: - endColumnIndex: -6007990 endRowIndex: 26304385 sheetId: 57396648 startColumnIndex: -89330295 startRowIndex: 15068429 levels: 51514916 maxValue: -24180101.332737938 minValue: 91137082.88042629 parentLabels: aggregateType: AVERAGE columnReference: name: enim ut dolore ullamco groupRule: dateTimeRule: type: YEAR histogramRule: intervalSize: 85969190.56500435 maxValue: 78955224.44921449 minValue: 79065578.98970333 sourceRange: sources: - endColumnIndex: -12853928 endRowIndex: -9638427 sheetId: -94740200 startColumnIndex: -47659673 startRowIndex: -10557056 sizeData: aggregateType: MEDIAN columnReference: name: ea elit eiusmod in groupRule: dateTimeRule: type: DAY_MONTH histogramRule: intervalSize: 43941521.313759446 maxValue: -4185782.450240046 minValue: 63424334.84402138 sourceRange: sources: - endColumnIndex: 2162496 endRowIndex: -81773720 sheetId: 62084011 startColumnIndex: 14629947 startRowIndex: -20515355 textFormat: bold: false fontFamily: ut sunt fontSize: -35201641 foregroundColor: alpha: -94278432.48688364 blue: -63588026.126646824 green: -20463414.283255383 red: 48171810.31969905 foregroundColorStyle: rgbColor: alpha: -41440237.64087299 blue: 85189591.08992493 green: -20000077.710908532 red: 15296983.031435743 themeColor: ACCENT1 italic: false link: uri: Lorem tempo strikethrough: true underline: true waterfallChart: connectorLineStyle: type: MEDIUM_DASHED width: 20320648 domain: data: aggregateType: MAX columnReference: name: deseru groupRule: dateTimeRule: type: SECOND histogramRule: intervalSize: 86760765.78905803 maxValue: 5305433.656956509 minValue: -75171557.66032615 sourceRange: sources: - endColumnIndex: 51877618 endRowIndex: 40320525 sheetId: 56359334 startColumnIndex: -5364191 startRowIndex: -62128845 reversed: true firstValueIsTotal: true hideConnectorLines: false series: - customSubtotals: - dataIsSubtotal: false label: ad sit consequat exercitation subtotalIndex: 21627474 data: aggregateType: MAX columnReference: name: fugiat groupRule: dateTimeRule: type: HOUR histogramRule: intervalSize: -86172941.4966451 maxValue: -30639866.86549498 minValue: -38795739.96309489 sourceRange: sources: - endColumnIndex: -27247840 endRowIndex: 36821519 sheetId: 77411222 startColumnIndex: 67875131 startRowIndex: 41098630 dataLabel: customLabelData: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: Duis sunt groupRule: dateTimeRule: type: HOUR_MINUTE histogramRule: intervalSize: 19564201.770708054 maxValue: -16648343.70710811 minValue: 24281608.492682233 sourceRange: sources: - endColumnIndex: 29768862 endRowIndex: -37969810 sheetId: -44087576 startColumnIndex: 35789649 startRowIndex: 33693671 placement: CENTER textFormat: bold: false fontFamily: dolor quis fontSize: -40327592 foregroundColor: alpha: -92305964.46019806 blue: 41764178.692697406 green: 4341323.698441401 red: 94530488.20776337 foregroundColorStyle: rgbColor: alpha: -25797716.605266124 blue: -33603002.378911294 green: 50854133.31138152 red: 20121345.028139308 themeColor: LINK italic: true link: uri: nostrud strikethrough: true underline: true type: DATA_LABEL_TYPE_UNSPECIFIED hideTrailingSubtotal: true negativeColumnsStyle: color: alpha: -43139445.953923024 blue: 57711416.60128677 green: 40022444.19989854 red: 46273028.2518788 colorStyle: rgbColor: alpha: 57819589.90490046 blue: 92523222.32820892 green: 1131289.751197651 red: -38793367.02818557 themeColor: ACCENT4 label: reprehenderit eiusmod ex ut positiveColumnsStyle: color: alpha: -33684473.433511466 blue: 47421967.97235504 green: 61485931.39422411 red: 86964213.93143621 colorStyle: rgbColor: alpha: -91575506.62353389 blue: 48932954.386547506 green: 87439439.0248324 red: -92230734.4690994 themeColor: ACCENT4 label: ullamco quis ipsum qui subtotalColumnsStyle: color: alpha: 15682056.821042463 blue: -10132205.608376756 green: 63461460.64753729 red: 4771751.812094882 colorStyle: rgbColor: alpha: 92124248.13654628 blue: -51944586.383404315 green: 77172108.68174008 red: 22212738.56704147 themeColor: ACCENT2 label: nostrud dolore exercitation stackedType: WATERFALL_STACKED_TYPE_UNSPECIFIED totalDataLabel: customLabelData: aggregateType: MIN columnReference: name: aliqua voluptate amet no groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: -13262467.511420175 maxValue: -40456078.32104912 minValue: -78313230.16158862 sourceRange: sources: - endColumnIndex: -79457181 endRowIndex: 15754126 sheetId: -67859274 startColumnIndex: 21830512 startRowIndex: 61101925 placement: LEFT textFormat: bold: false fontFamily: dolor fontSize: 73390401 foregroundColor: alpha: 84556313.01613939 blue: -42099750.8689013 green: 66684186.11342633 red: -5976877.88054651 foregroundColorStyle: rgbColor: alpha: -53960989.89776843 blue: -18442235.36373377 green: -55305533.3459997 red: -85411857.99655175 themeColor: ACCENT5 italic: false link: uri: ullamco dolor consectetur dolor strikethrough: true underline: false type: NONE columnGroups: - collapsed: true depth: 18374754 range: dimension: COLUMNS endIndex: 64005365 sheetId: -23981058 startIndex: -32057668 conditionalFormats: - booleanRule: condition: type: DATE_IS_VALID values: - relativeDate: PAST_YEAR userEnteredValue: nostrud sed occaecat format: backgroundColor: alpha: -33696071.38050195 blue: 15037619.425577775 green: 5387136.656987175 red: 23675355.83419293 backgroundColorStyle: rgbColor: alpha: -71452563.07219623 blue: -44775926.694522105 green: -74123652.41325536 red: 93407629.04067361 themeColor: ACCENT5 borders: bottom: color: alpha: 11713632.41502203 blue: 10612383.080546424 green: -10731370.42296195 red: 85766312.12907669 colorStyle: rgbColor: alpha: -65098789.404307134 blue: 87659842.74322918 green: 55812981.82029432 red: -69790904.97943807 themeColor: ACCENT4 style: DASHED width: 97871266 left: color: alpha: 20601198.911095336 blue: 29841479.57745242 green: 9092286.33986476 red: 40934378.194180965 colorStyle: rgbColor: alpha: -28138053.097323194 blue: -71672715.97565582 green: 25554084.377339065 red: -28855421.117769316 themeColor: ACCENT5 style: SOLID_THICK width: -69936940 right: color: alpha: 43989936.684245825 blue: 34329817.85070273 green: -97595714.19915205 red: 83020651.84483784 colorStyle: rgbColor: alpha: -69997276.90040971 blue: 36711991.453406304 green: -11937914.337869376 red: 1142599.3258616775 themeColor: ACCENT4 style: DOUBLE width: -63493261 top: color: alpha: 51867248.317953914 blue: 16173933.168091908 green: 30261508.495030716 red: 18478551.68641144 colorStyle: rgbColor: alpha: 8724031.323282585 blue: -56047238.0663839 green: 54871971.990857065 red: 74762519.29785281 themeColor: ACCENT1 style: DASHED width: 90290532 horizontalAlignment: LEFT hyperlinkDisplayType: LINKED numberFormat: pattern: Duis Lorem type: SCIENTIFIC padding: bottom: -45258047 left: 79501126 right: -88560792 top: 18715229 textDirection: LEFT_TO_RIGHT textFormat: bold: true fontFamily: laborum Lorem aute anim fontSize: -54695866 foregroundColor: alpha: -96715819.03853346 blue: 51262618.51935482 green: 47100542.15011147 red: 72744837.8586438 foregroundColorStyle: rgbColor: alpha: 5077246.416933745 blue: 94924185.87944713 green: -79044590.47108224 red: -48855092.19125601 themeColor: THEME_COLOR_TYPE_UNSPECIFIED italic: false link: uri: enim strikethrough: true underline: false textRotation: angle: 15272087 vertical: true verticalAlignment: BOTTOM wrapStrategy: WRAP_STRATEGY_UNSPECIFIED gradientRule: maxpoint: color: alpha: -44582503.76789694 blue: 84725439.36743551 green: -70597214.37194546 red: -73157025.11586607 colorStyle: rgbColor: alpha: 27296064.52745354 blue: 96221099.65039742 green: 41166760.45432234 red: -5116491.946219787 themeColor: ACCENT5 type: NUMBER value: aliquip esse exe midpoint: color: alpha: -49603195.91381302 blue: -32125023.898420498 green: -78188899.89219734 red: -57892755.206260785 colorStyle: rgbColor: alpha: -82792542.42318083 blue: -58087470.74477996 green: -82430007.61734551 red: -97877882.06454743 themeColor: BACKGROUND type: INTERPOLATION_POINT_TYPE_UNSPECIFIED value: dolor officia minpoint: color: alpha: -99629648.8521859 blue: 21301662.241155967 green: 64155347.91908571 red: -61658800.72800576 colorStyle: rgbColor: alpha: -41052112.6239356 blue: 95533010.45308128 green: -15564682.62086548 red: -21968581.755773365 themeColor: ACCENT1 type: PERCENTILE value: 'incididunt quis sint ' ranges: - endColumnIndex: 74659565 endRowIndex: -88771425 sheetId: 74303660 startColumnIndex: -21044297 startRowIndex: -18392721 data: - columnMetadata: - dataSourceColumnReference: name: labore reprehenderit culpa ad developerMetadata: - location: dimensionRange: dimension: DIMENSION_UNSPECIFIED endIndex: -87933162 sheetId: 47670262 startIndex: -47295049 locationType: SHEET sheetId: -24764939 spreadsheet: true metadataId: 76194147 metadataKey: consequat in metadataValue: mollit aliquip ad visibility: PROJECT hiddenByFilter: false hiddenByUser: true pixelSize: 88073830 rowData: - values: - dataSourceFormula: dataExecutionStatus: errorCode: DATA_EXECUTION_ERROR_CODE_UNSPECIFIED errorMessage: tempor dolore officia veniam lastRefreshTime: culpa proident dolor state: RUNNING dataSourceId: ipsum sit reprehenderit in dataSourceTable: columnSelectionType: SELECTED columns: - name: nisi in irure dataExecutionStatus: errorCode: CONCURRENT_QUERY errorMessage: nisi lastRefreshTime: irure reprehenderit state: RUNNING dataSourceId: veniam sunt aliquip sit filterSpecs: - columnIndex: -99579434 dataSourceColumnReference: name: sunt velit dolore magna filterCriteria: condition: type: NUMBER_BETWEEN values: - relativeDate: PAST_MONTH userEnteredValue: aliquip Duis hiddenValues: - deserunt sed visibleBackgroundColor: alpha: 55398560.65484887 blue: -34173072.032416485 green: -97673278.36096938 red: 67170455.83319402 visibleBackgroundColorStyle: rgbColor: alpha: -33292060.616818644 blue: 69704544.72822353 green: 63635833.17909995 red: 59984200.48429686 themeColor: ACCENT6 visibleForegroundColor: alpha: 27696114.333764046 blue: -58617972.98879745 green: 86459807.99078384 red: -28686752.592930764 visibleForegroundColorStyle: rgbColor: alpha: -60354093.75723786 blue: 73983121.74659374 green: -41247335.40207526 red: -92048880.71548022 themeColor: THEME_COLOR_TYPE_UNSPECIFIED rowLimit: 68396451 sortSpecs: - backgroundColor: alpha: 15017235.123969331 blue: -9033293.91994965 green: 77916247.7642985 red: -16689793.954687998 backgroundColorStyle: rgbColor: alpha: 69138969.14693648 blue: 86509695.95040658 green: -90003248.09829107 red: 9140276.879808739 themeColor: ACCENT4 dataSourceColumnReference: name: dolor voluptate dimensionIndex: 96521710 foregroundColor: alpha: -99202387.1050502 blue: -59191122.74421856 green: 73019757.29999626 red: -24441230.725797743 foregroundColorStyle: rgbColor: alpha: -10796247.60116689 blue: -11355089.479209468 green: -29729478.459359586 red: 49766593.97480062 themeColor: ACCENT4 sortOrder: ASCENDING dataValidation: condition: type: NUMBER_EQ values: - relativeDate: YESTERDAY userEnteredValue: et inputMessage: id Duis showCustomUi: true strict: false effectiveFormat: backgroundColor: alpha: -75165906.87639546 blue: 31437318.769427687 green: -25133229.664263457 red: -73598153.15391107 backgroundColorStyle: rgbColor: alpha: 73284162.59540677 blue: 80348581.55412823 green: 83304070.27409178 red: 28015158.098887578 themeColor: ACCENT4 borders: bottom: color: alpha: 87561132.5655073 blue: -32232656.67089477 green: -70787822.84402739 red: 76420690.66282183 colorStyle: rgbColor: alpha: 21204111.585098535 blue: -5189404.144321725 green: -28696708.174476355 red: 14501358.597405821 themeColor: ACCENT2 style: SOLID_THICK width: -21459940 left: color: alpha: -72669838.59894718 blue: 18652029.719697267 green: -77277200.42718627 red: -9658050.436916187 colorStyle: rgbColor: alpha: -9822871.180133492 blue: -45876765.68401129 green: -28517314.345187068 red: -33708821.58251196 themeColor: ACCENT5 style: NONE width: -77939700 right: color: alpha: -92112658.48853767 blue: -7633934.965055779 green: 91208642.66715351 red: 35480546.31778875 colorStyle: rgbColor: alpha: -38575607.829158634 blue: 55951475.3930189 green: 25867680.686059162 red: 20304526.938570917 themeColor: TEXT style: DASHED width: -63237809 top: color: alpha: -56954813.58897112 blue: 88612165.95023671 green: 10714099.928762838 red: 82593997.34483165 colorStyle: rgbColor: alpha: 31699946.670475304 blue: -88050254.85500804 green: 73138556.05160445 red: 90773299.82631132 themeColor: ACCENT6 style: NONE width: 9174193 horizontalAlignment: RIGHT hyperlinkDisplayType: LINKED numberFormat: pattern: 'ullamco aute ' type: PERCENT padding: bottom: 86665013 left: 48041536 right: -74666208 top: -54673629 textDirection: RIGHT_TO_LEFT textFormat: bold: false fontFamily: in amet aliqua tempor fontSize: -85109807 foregroundColor: alpha: -29969706.666835055 blue: -71459984.88710994 green: -17699409.167820737 red: -43227880.60569085 foregroundColorStyle: rgbColor: alpha: -15886756.891549066 blue: -26993248.489153564 green: 18984824.729538634 red: -27602564.702234656 themeColor: ACCENT5 italic: false link: uri: ad tempor consectet strikethrough: true underline: true textRotation: angle: -19008652 vertical: true verticalAlignment: TOP wrapStrategy: WRAP_STRATEGY_UNSPECIFIED effectiveValue: boolValue: true errorValue: message: quis Lorem dolore nostrud type: LOADING formulaValue: mollit deserunt eiusmod non numberValue: 65393364.65626028 stringValue: amet c formattedValue: minim velit hyperlink: est magna pariatur note: tem pivotTable: columns: - dataSourceColumnReference: name: in laboris groupLimit: applyOrder: 86894586 countLimit: -95189988 groupRule: dateTimeRule: type: SECOND histogramRule: end: 73388672.70205921 interval: -29611396.371270522 start: -736558.7482237965 manualRule: groups: - groupName: boolValue: false errorValue: message: aliquip eiusmod irure nisi type: NUM formulaValue: quis deserunt nulla numberValue: 65941239.132365406 stringValue: culpa mollit ipsum velit items: - boolValue: true errorValue: message: tempor elit incididunt type: DIVIDE_BY_ZERO formulaValue: Lorem proident numberValue: 85929252.08708397 stringValue: velit dolore in label: ipsum cupidat repeatHeadings: true showTotals: false sortOrder: DESCENDING sourceColumnOffset: -93231206 valueBucket: buckets: - boolValue: true errorValue: message: ut dol type: DIVIDE_BY_ZERO formulaValue: amet nisi exerc numberValue: 46380282.57440895 stringValue: enim Lorem magna valuesIndex: 81769487 valueMetadata: - collapsed: true value: boolValue: true errorValue: message: Duis type: N_A formulaValue: dolor eiusmod anim voluptate pari numberValue: -26844411.7826768 stringValue: elit occaecat criteria: consequat_c15: condition: type: ONE_OF_RANGE values: - relativeDate: YESTERDAY userEnteredValue: tempor aliqua officia visibleByDefault: false visibleValues: - quis ea deserunt in dolor_aa: condition: type: DATE_BETWEEN values: - relativeDate: PAST_YEAR userEnteredValue: sit sint visibleByDefault: true visibleValues: - dolore eiusmod elit occaecat dataExecutionStatus: errorCode: TOO_MANY_COLUMNS errorMessage: nulla ut deserunt lastRefreshTime: eiusmod fugiat dolor state: SUCCEEDED dataSourceId: Duis occaecat Lorem mollit filterSpecs: - columnOffsetIndex: 68390305 dataSourceColumnReference: name: nisi est filterCriteria: condition: type: NUMBER_NOT_EQ values: - relativeDate: PAST_MONTH userEnteredValue: Lorem officia velit aliqua visibleByDefault: false visibleValues: - Ut est rows: - dataSourceColumnReference: name: et Duis groupLimit: applyOrder: -87421783 countLimit: 97455878 groupRule: dateTimeRule: type: YEAR_MONTH histogramRule: end: -45430317.88629501 interval: 19112464.14861214 start: -601118.3269306868 manualRule: groups: - groupName: boolValue: true errorValue: message: in proident do deserunt amet type: LOADING formulaValue: ip numberValue: -78375600.73544556 stringValue: labore est voluptate officia items: - boolValue: true errorValue: message: reprehenderit ex type: ERROR formulaValue: nisi id numberValue: 87183800.10702923 stringValue: officia label: consequat ullamco aute voluptate ad repeatHeadings: true showTotals: false sortOrder: DESCENDING sourceColumnOffset: -44411710 valueBucket: buckets: - boolValue: false errorValue: message: cillum nostrud type: DIVIDE_BY_ZERO formulaValue: est anim nulla numberValue: 62541937.02901471 stringValue: non Excepteur valuesIndex: -98790945 valueMetadata: - collapsed: false value: boolValue: true errorValue: message: dolo type: ERROR_TYPE_UNSPECIFIED formulaValue: qui numberValue: 70999832.1996871 stringValue: Excepteur cillum nostrud sit source: endColumnIndex: -52966387 endRowIndex: 73464648 sheetId: 26197423 startColumnIndex: 65892321 startRowIndex: 73328951 valueLayout: HORIZONTAL values: - calculatedDisplayType: PERCENT_OF_COLUMN_TOTAL dataSourceColumnReference: name: elit veniam mollit formula: in qui u name: dolor ad magna dolor sourceColumnOffset: 37969168 summarizeFunction: STDEVP textFormatRuns: - format: bold: false fontFamily: in aute fontSize: -32005442 foregroundColor: alpha: -41451009.7751632 blue: 50352423.90654141 green: 53143325.43411711 red: -85457268.54885384 foregroundColorStyle: rgbColor: alpha: 57441892.294582576 blue: -56261494.03466365 green: -20070334.48529367 red: -44818422.94338132 themeColor: ACCENT6 italic: true link: uri: laborum mo strikethrough: false underline: true startIndex: -44697679 userEnteredFormat: backgroundColor: alpha: 16235958.11779435 blue: 72798167.68336585 green: 52013078.54701626 red: 30373130.672796294 backgroundColorStyle: rgbColor: alpha: 16486518.285981506 blue: -39751287.05494741 green: 21619706.9985601 red: -71330440.49013782 themeColor: ACCENT1 borders: bottom: color: alpha: -36555151.42781356 blue: -74208683.55784705 green: 57746540.27194807 red: 29994710.88130851 colorStyle: rgbColor: alpha: 54516165.652094096 blue: 77027668.19738951 green: 63962014.416650295 red: 70087936.93838301 themeColor: ACCENT2 style: DOUBLE width: -14473424 left: color: alpha: -39789231.24171487 blue: -89708072.39761886 green: 45571135.52069461 red: 72494046.39968094 colorStyle: rgbColor: alpha: -60007140.78625395 blue: -446046.0255649537 green: 86990245.45480078 red: 29958676.957075655 themeColor: ACCENT1 style: DOUBLE width: -30082634 right: color: alpha: -9393032.849586368 blue: -83153669.34595625 green: -71624949.31064041 red: -80968641.75605151 colorStyle: rgbColor: alpha: 71824702.21632546 blue: -35043582.97587431 green: 59238675.52873051 red: 21344980.42260109 themeColor: BACKGROUND style: STYLE_UNSPECIFIED width: 4357643 top: color: alpha: -25307587.924525306 blue: 43166994.75238925 green: -54168585.88518769 red: 30895917.19349292 colorStyle: rgbColor: alpha: -80787203.7284075 blue: -17541923.775853038 green: 6712843.9920782745 red: 25491278.090904996 themeColor: THEME_COLOR_TYPE_UNSPECIFIED style: DOUBLE width: 72172146 horizontalAlignment: LEFT hyperlinkDisplayType: LINKED numberFormat: pattern: incididunt ut type: SCIENTIFIC padding: bottom: -65902242 left: 29002485 right: 53944408 top: -31004637 textDirection: TEXT_DIRECTION_UNSPECIFIED textFormat: bold: false fontFamily: sed eu fontSize: 215982 foregroundColor: alpha: -2639320.204084024 blue: 79218091.42426041 green: -18156892.879986137 red: -9248773.390694961 foregroundColorStyle: rgbColor: alpha: 26279239.217041582 blue: 34797003.40519014 green: 80077070.73050928 red: 95727232.5388664 themeColor: THEME_COLOR_TYPE_UNSPECIFIED italic: false link: uri: ullamc strikethrough: false underline: false textRotation: angle: -55192093 vertical: false verticalAlignment: VERTICAL_ALIGN_UNSPECIFIED wrapStrategy: CLIP userEnteredValue: boolValue: false errorValue: message: culpa est id nisi type: REF formulaValue: amet est sint dolor numberValue: 65088564.28292459 stringValue: officia mollit anim rowMetadata: - dataSourceColumnReference: name: qui aliquip do developerMetadata: - location: dimensionRange: dimension: ROWS endIndex: -44951718 sheetId: 97483151 startIndex: -43420977 locationType: SHEET sheetId: -29429824 spreadsheet: false metadataId: 65352796 metadataKey: officia metadataValue: nostrud Ut visibility: PROJECT hiddenByFilter: false hiddenByUser: true pixelSize: 38087355 startColumn: 99299073 startRow: 16142545 developerMetadata: - location: dimensionRange: dimension: COLUMNS endIndex: -14106255 sheetId: 18692779 startIndex: 39297711 locationType: DEVELOPER_METADATA_LOCATION_TYPE_UNSPECIFIED sheetId: -96663531 spreadsheet: false metadataId: 26526962 metadataKey: labore dolor aliqua metadataValue: Excepteur consequat visibility: DOCUMENT filterViews: - criteria: laborum_5: condition: type: DATE_BETWEEN values: - relativeDate: TODAY userEnteredValue: consequat Excepteur laboris minim sed hiddenValues: - exerc visibleBackgroundColor: alpha: 26587630.051572695 blue: -46399136.4885628 green: -40440691.767909564 red: 30692845.781372428 visibleBackgroundColorStyle: rgbColor: alpha: -36273486.55584348 blue: 96392363.6100077 green: -62560571.41801041 red: -65597002.27855321 themeColor: LINK visibleForegroundColor: alpha: 29241469.066167578 blue: -30192963.9297359 green: 70180835.40378043 red: -83730703.47639975 visibleForegroundColorStyle: rgbColor: alpha: -23490395.416582018 blue: -51160629.083008 green: 13647481.536380693 red: -99523149.13434108 themeColor: ACCENT2 quis_c0: condition: type: TEXT_IS_URL values: - relativeDate: PAST_YEAR userEnteredValue: in hiddenValues: - in visibleBackgroundColor: alpha: 14028520.369448707 blue: -2007903.5193176717 green: 55691231.64105004 red: 49469530.178036004 visibleBackgroundColorStyle: rgbColor: alpha: 84001328.06996918 blue: -50333507.62282995 green: -64079464.913153216 red: 44416770.20208529 themeColor: ACCENT3 visibleForegroundColor: alpha: -12731127.634207606 blue: 41996697.90869641 green: -46579626.66862479 red: -71150296.35351284 visibleForegroundColorStyle: rgbColor: alpha: -18641126.628708497 blue: -35774654.21024848 green: -72763786.36671 red: 99095348.24340591 themeColor: LINK filterSpecs: - columnIndex: -8690044 dataSourceColumnReference: name: proident aliquip filterCriteria: condition: type: NOT_BLANK values: - relativeDate: TOMORROW userEnteredValue: officia nostrud in hiddenValues: - proident eiusmod non consectetur visibleBackgroundColor: alpha: -7995442.001775116 blue: -74968499.54806182 green: -79772789.4567942 red: -45369903.57868702 visibleBackgroundColorStyle: rgbColor: alpha: -9338751.285100594 blue: -2922536.209486857 green: -82581075.82193448 red: 39414349.65034157 themeColor: ACCENT1 visibleForegroundColor: alpha: 29826077.416628256 blue: 48191500.28130442 green: -56553429.51918874 red: 44218276.386606455 visibleForegroundColorStyle: rgbColor: alpha: -14641434.094726428 blue: 10963555.996505782 green: 17382951.727717713 red: -50522176.394069575 themeColor: ACCENT1 filterViewId: 35977611 namedRangeId: veniam sunt Excepteur anim consectetur range: endColumnIndex: -19775724 endRowIndex: 75054710 sheetId: -28503853 startColumnIndex: 19549933 startRowIndex: 1397688 sortSpecs: - backgroundColor: alpha: 22422725.21389985 blue: -88600267.43612233 green: -48137071.12259924 red: 72603692.21021366 backgroundColorStyle: rgbColor: alpha: 47557536.703449786 blue: 29954654.171645597 green: 13074032.706790864 red: 13567227.501118809 themeColor: ACCENT4 dataSourceColumnReference: name: officia Duis dimensionIndex: 64535392 foregroundColor: alpha: 9223315.989956275 blue: 43453995.384192556 green: 66577650.54409447 red: 72655687.62276167 foregroundColorStyle: rgbColor: alpha: 70826650.4811235 blue: 1195344.3883961737 green: 86670478.51519728 red: 1106016.8049707562 themeColor: BACKGROUND sortOrder: ASCENDING title: Excepteur cupidatat adipisicing ad nostrud merges: - endColumnIndex: -65646743 endRowIndex: 2370620 sheetId: 54682586 startColumnIndex: -56370214 startRowIndex: -84051334 properties: dataSourceSheetProperties: columns: - formula: sed anim Ex reference: name: non cillum in fugiat dataExecutionStatus: errorCode: TIMED_OUT errorMessage: deserunt enim pariatur sunt lastRefreshTime: ea state: NOT_STARTED dataSourceId: anim in amet cupidatat gridProperties: columnCount: -71712723 columnGroupControlAfter: true frozenColumnCount: -90124383 frozenRowCount: 74050606 hideGridlines: true rowCount: -37569744 rowGroupControlAfter: true hidden: false index: -42379632 rightToLeft: true sheetId: 88867496 sheetType: SHEET_TYPE_UNSPECIFIED tabColor: alpha: 34340021.79368842 blue: -35647903.855287574 green: 27350831.725596964 red: -29831687.798329383 tabColorStyle: rgbColor: alpha: -21095073.74059789 blue: -6546349.867675126 green: 65316494.2932547 red: 5366328.794987932 themeColor: ACCENT2 title: Excepteur pariatu protectedRanges: - description: Ut est consectetur velit in editors: domainUsersCanEdit: true groups: - velit id adipisicing users: - voluptate velit anim esse namedRangeId: ad anim ex fugiat commodo protectedRangeId: -59769653 range: endColumnIndex: 27053664 endRowIndex: 84919062 sheetId: -54029466 startColumnIndex: -17405602 startRowIndex: -92003717 requestingUserCanEdit: false unprotectedRanges: - endColumnIndex: -28613412 endRowIndex: 89307655 sheetId: 87556321 startColumnIndex: -60327341 startRowIndex: -12180076 warningOnly: false rowGroups: - collapsed: false depth: -72387551 range: dimension: COLUMNS endIndex: -78794036 sheetId: -69497049 startIndex: 61085100 slicers: - position: newSheet: false overlayPosition: anchorCell: columnIndex: 47149370 rowIndex: 27022228 sheetId: -92084491 heightPixels: 37774180 offsetXPixels: 98758649 offsetYPixels: 63656157 widthPixels: -37102689 sheetId: 31674633 slicerId: -99019864 spec: applyToPivotTables: false backgroundColor: alpha: 76611683.93311697 blue: -95457599.27911983 green: -80674015.14034791 red: 38384841.20268336 backgroundColorStyle: rgbColor: alpha: 45268035.116818696 blue: 85089391.7779136 green: -49914707.53847343 red: 12913778.751262933 themeColor: ACCENT1 columnIndex: -29725812 dataRange: endColumnIndex: 82140662 endRowIndex: -70575595 sheetId: 82466991 startColumnIndex: 94185441 startRowIndex: 7912425 filterCriteria: condition: type: TEXT_NOT_CONTAINS values: - relativeDate: RELATIVE_DATE_UNSPECIFIED userEnteredValue: in consectetur Duis Excepteur hiddenValues: - quis in ips visibleBackgroundColor: alpha: 67346716.83941466 blue: 7010293.065400258 green: -54823332.83422176 red: 43970874.32053563 visibleBackgroundColorStyle: rgbColor: alpha: 5612184.912998065 blue: 76030046.26226127 green: -34098010.12699867 red: -36420734.9640632 themeColor: ACCENT4 visibleForegroundColor: alpha: -66559976.35060133 blue: -87754127.50317453 green: 34873691.555959314 red: 62645348.243606985 visibleForegroundColorStyle: rgbColor: alpha: 74678402.3235969 blue: -59956351.77014305 green: 85501973.05161777 red: 62643824.40413025 themeColor: ACCENT3 horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED textFormat: bold: false fontFamily: nisi dolor commodo fontSize: 75678415 foregroundColor: alpha: 66042584.444209546 blue: -55648158.88610921 green: -9096621.078611419 red: -69355322.31732976 foregroundColorStyle: rgbColor: alpha: -55416053.26437509 blue: 84142785.79442164 green: 44930095.29360053 red: 94764366.94169018 themeColor: BACKGROUND italic: true link: uri: pariatur laboru strikethrough: true underline: true title: exercitation Lorem spreadsheetId: tempor qui laboris labore spreadsheetUrl: nisi ipsum eiusmod aliquip SpreadsheetsPostRequest1: description: SpreadsheetsPostRequest1 schema type: object example: includeSpreadsheetInResponse: false requests: - addBanding: bandedRange: bandedRangeId: -96846382 columnProperties: firstBandColor: alpha: 70251780.40500161 blue: 28555743.899902716 green: -53797871.7210132 red: -51478776.184011556 firstBandColorStyle: rgbColor: alpha: -33098579.31806013 blue: 7522641.906237215 green: 86210912.23453692 red: -2103771.9816852957 themeColor: THEME_COLOR_TYPE_UNSPECIFIED footerColor: alpha: -56804739.44207778 blue: -48351391.49545662 green: -81406817.58953732 red: 69067392.61572969 footerColorStyle: rgbColor: alpha: 47933080.86272076 blue: 50434702.75361401 green: 86193627.14334509 red: -97982896.69144276 themeColor: LINK headerColor: alpha: 9615683.561064392 blue: 6194684.037701219 green: 34627693.38435975 red: -55968525.63820973 headerColorStyle: rgbColor: alpha: 32004807.88943371 blue: -76072440.86598942 green: 39187596.32074794 red: 97337315.54824975 themeColor: ACCENT3 secondBandColor: alpha: 68059878.85961598 blue: 96880329.24998659 green: 27672297.50913693 red: -89740566.4936045 secondBandColorStyle: rgbColor: alpha: -20085148.76133427 blue: -26670041.250101566 green: -60609164.53517291 red: 61130287.995918006 themeColor: ACCENT4 range: endColumnIndex: -46032306 endRowIndex: 33293349 sheetId: -14987792 startColumnIndex: 17255490 startRowIndex: -47530429 rowProperties: firstBandColor: alpha: -28034422.194523633 blue: -36999985.352626964 green: 28594143.567644224 red: 67965830.28717849 firstBandColorStyle: rgbColor: alpha: 25123303.38837616 blue: 16192662.955780655 green: 66614511.387342244 red: 80082421.8721667 themeColor: ACCENT1 footerColor: alpha: 97361137.82878754 blue: -97002834.25142522 green: -49238187.936699696 red: -3906823.790816456 footerColorStyle: rgbColor: alpha: -48635938.698786415 blue: -41709161.144378416 green: -25893706.664750263 red: 30654351.545616046 themeColor: ACCENT1 headerColor: alpha: -36830496.02105899 blue: 65981690.69066313 green: 48713068.61152074 red: 37742307.188732475 headerColorStyle: rgbColor: alpha: -12103541.279335111 blue: 80390902.2815254 green: -1961127.49602592 red: -69608610.32892907 themeColor: ACCENT3 secondBandColor: alpha: -46337551.25347432 blue: 10970276.921878457 green: 27033393.341103643 red: -92559351.5759492 secondBandColorStyle: rgbColor: alpha: 49026303.06315744 blue: -86197529.20049258 green: 54976859.71471888 red: -40371364.92400783 themeColor: ACCENT1 addChart: chart: border: color: alpha: -3777154.9706519693 blue: -62887972.081919804 green: -24419994.62795645 red: 95969339.17360443 colorStyle: rgbColor: alpha: 92301197.58903301 blue: 28661193.077507585 green: -81732562.43846439 red: 99571146.96258307 themeColor: ACCENT5 chartId: -18807748 position: newSheet: false overlayPosition: anchorCell: columnIndex: -38091138 rowIndex: 85024396 sheetId: -42185452 heightPixels: 22923227 offsetXPixels: -53004405 offsetYPixels: 85953478 widthPixels: 88287318 sheetId: -62746252 spec: altText: pariatur anim dolore eu backgroundColor: alpha: -4927177.927149981 blue: -7754969.251586944 green: -66399101.3424337 red: -62593575.930732384 backgroundColorStyle: rgbColor: alpha: -56079920.08418994 blue: -61162941.304819055 green: -63383752.66971363 red: -31535379.802617222 themeColor: ACCENT2 basicChart: axis: - format: bold: false fontFamily: 'sunt nostrud cupidatat ' fontSize: 18402166 foregroundColor: alpha: 18495352.887631714 blue: -11462103.317601442 green: -90612613.26518895 red: 50984101.91626078 foregroundColorStyle: rgbColor: alpha: -79761674.57984391 blue: 63795094.88181573 green: -948640.256267637 red: -56027948.775989644 themeColor: TEXT italic: false link: uri: Duis eiusmod proident et strikethrough: false underline: false position: LEFT_AXIS title: ad velit titleTextPosition: horizontalAlignment: LEFT viewWindowOptions: viewWindowMax: -58507461.224948406 viewWindowMin: 86382572.51797822 viewWindowMode: EXPLICIT chartType: COMBO compareMode: CATEGORY domains: - domain: aggregateType: MIN columnReference: name: qui pariatur velit ad groupRule: dateTimeRule: type: QUARTER histogramRule: intervalSize: 79039791.97925949 maxValue: 59318305.06714514 minValue: -70469660.95799081 sourceRange: sources: - endColumnIndex: 34930582 endRowIndex: -31825809 sheetId: -69647861 startColumnIndex: 71665828 startRowIndex: 44350066 reversed: true headerCount: -15131322 interpolateNulls: true legendPosition: NO_LEGEND lineSmoothing: true series: - color: alpha: -14661992.786036521 blue: 66779487.33178702 green: -50709283.521357395 red: 29484156.748778373 colorStyle: rgbColor: alpha: -83433658.32406771 blue: -11222941.97524178 green: -89490014.23264891 red: -96383435.89706989 themeColor: ACCENT2 dataLabel: customLabelData: aggregateType: COUNT columnReference: name: nisi in anim ea groupRule: dateTimeRule: type: HOUR_MINUTE histogramRule: intervalSize: 37001219.81223035 maxValue: 20480419.614078566 minValue: -2042613.0807511508 sourceRange: sources: - endColumnIndex: -48655568 endRowIndex: -92482284 sheetId: -17069711 startColumnIndex: 10341636 startRowIndex: -30577343 placement: ABOVE textFormat: bold: true fontFamily: ut Excepteur fontSize: -78953472 foregroundColor: alpha: -72045628.38380136 blue: -39445618.28419686 green: -36250346.62229063 red: -66703517.331920326 foregroundColorStyle: rgbColor: alpha: 52725072.04177651 blue: 79753388.00029191 green: -95102284.52065359 red: 58040037.8826583 themeColor: TEXT italic: true link: uri: reprehenderit ex quis strikethrough: false underline: true type: NONE lineStyle: type: LONG_DASHED_DOTTED width: -72752662 pointStyle: shape: POINT_SHAPE_UNSPECIFIED size: 57426830.085677564 series: aggregateType: AVERAGE columnReference: name: irure do consequat groupRule: dateTimeRule: type: SECOND histogramRule: intervalSize: -86556500.95803961 maxValue: 31027398.46222575 minValue: -17323237.094367534 sourceRange: sources: - endColumnIndex: -34258897 endRowIndex: -13978820 sheetId: 75403407 startColumnIndex: -56796208 startRowIndex: 81939680 styleOverrides: - color: alpha: 91072558.68877551 blue: -80418815.62614721 green: 79495314.90926197 red: 97387142.24726355 colorStyle: rgbColor: alpha: -65922359.72587877 blue: -66516841.27564219 green: -4871087.277008042 red: -57043860.49208909 themeColor: LINK index: -68589409 pointStyle: shape: DIAMOND size: -38163945.07461776 targetAxis: BOTTOM_AXIS type: SCATTER stackedType: PERCENT_STACKED threeDimensional: true totalDataLabel: customLabelData: aggregateType: MAX columnReference: name: cillum id et in groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: -18345623.572051957 maxValue: -56811880.03408009 minValue: 28165132.918033734 sourceRange: sources: - endColumnIndex: 21735600 endRowIndex: -89685472 sheetId: -85053904 startColumnIndex: -49063819 startRowIndex: -8870370 placement: LEFT textFormat: bold: false fontFamily: non esse laborum fugiat tempor fontSize: 88213743 foregroundColor: alpha: -86733777.4888683 blue: 70194366.57293382 green: -87299055.54063757 red: 40863384.98263365 foregroundColorStyle: rgbColor: alpha: -67682368.35118993 blue: 31934884.602817923 green: -37496881.51558308 red: 74568788.1587016 themeColor: ACCENT2 italic: false link: uri: sit elit in strikethrough: true underline: true type: DATA_LABEL_TYPE_UNSPECIFIED bubbleChart: bubbleBorderColor: alpha: 6974295.392466605 blue: 84257461.22427967 green: -70028588.53251511 red: 6219075.402563095 bubbleBorderColorStyle: rgbColor: alpha: -31643009.10061097 blue: 66172323.31581664 green: 43520006.764544696 red: 79609278.39723846 themeColor: TEXT bubbleLabels: aggregateType: MIN columnReference: name: dolore voluptate groupRule: dateTimeRule: type: HOUR_MINUTE histogramRule: intervalSize: -3392900.280859694 maxValue: -35403221.35826126 minValue: -82298096.52293101 sourceRange: sources: - endColumnIndex: 70686696 endRowIndex: -49447056 sheetId: 65662744 startColumnIndex: 84329675 startRowIndex: -14353467 bubbleMaxRadiusSize: 30791907 bubbleMinRadiusSize: 45206173 bubbleOpacity: 52745196.20965877 bubbleSizes: aggregateType: MIN columnReference: name: aute in aliquip groupRule: dateTimeRule: type: YEAR histogramRule: intervalSize: 57066111.25423762 maxValue: -43422573.84527559 minValue: -15205609.12904881 sourceRange: sources: - endColumnIndex: -79687515 endRowIndex: -80816006 sheetId: -1138804 startColumnIndex: -12524445 startRowIndex: -86775089 bubbleTextStyle: bold: true fontFamily: 'dolor voluptate ' fontSize: -82096117 foregroundColor: alpha: -15271471.059048295 blue: 56253125.80656016 green: 78341973.72271526 red: 84229341.44583088 foregroundColorStyle: rgbColor: alpha: 92970367.64136806 blue: 43506297.43292686 green: 61538080.48740062 red: 39248808.99544731 themeColor: TEXT italic: true link: uri: non strikethrough: false underline: true domain: aggregateType: COUNT columnReference: name: labore aliquip ut nisi qui groupRule: dateTimeRule: type: DAY_OF_WEEK histogramRule: intervalSize: -1165984.762858227 maxValue: -86797858.02412584 minValue: 10461174.094117403 sourceRange: sources: - endColumnIndex: -94917158 endRowIndex: -56053941 sheetId: 49264052 startColumnIndex: -1595767 startRowIndex: 77352510 groupIds: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: incididunt groupRule: dateTimeRule: type: CHART_DATE_TIME_RULE_TYPE_UNSPECIFIED histogramRule: intervalSize: -58753873.91646889 maxValue: 53197797.56777918 minValue: 73195381.02758983 sourceRange: sources: - endColumnIndex: 2600154 endRowIndex: 64305022 sheetId: 7563256 startColumnIndex: -19435893 startRowIndex: 2731688 legendPosition: TOP_LEGEND series: aggregateType: COUNT columnReference: name: incididunt sed groupRule: dateTimeRule: type: DAY_OF_WEEK histogramRule: intervalSize: -4596501.49778983 maxValue: -95301466.18353532 minValue: -90537366.98380579 sourceRange: sources: - endColumnIndex: 34874230 endRowIndex: 75919372 sheetId: -48274951 startColumnIndex: -71599993 startRowIndex: -32495425 candlestickChart: data: - closeSeries: data: aggregateType: AVERAGE columnReference: name: in groupRule: dateTimeRule: type: CHART_DATE_TIME_RULE_TYPE_UNSPECIFIED histogramRule: intervalSize: -85201149.44690493 maxValue: 9707869.374339268 minValue: 38147834.424473524 sourceRange: sources: - endColumnIndex: 82509372 endRowIndex: -6648708 sheetId: 7760544 startColumnIndex: 55995234 startRowIndex: 9470427 highSeries: data: aggregateType: AVERAGE columnReference: name: do ad groupRule: dateTimeRule: type: DAY_OF_YEAR histogramRule: intervalSize: -69815676.34579924 maxValue: 38866449.05415338 minValue: -64163847.16804768 sourceRange: sources: - endColumnIndex: -52620274 endRowIndex: 36125954 sheetId: 15812909 startColumnIndex: 75950781 startRowIndex: 42613416 lowSeries: data: aggregateType: COUNT columnReference: name: do ex groupRule: dateTimeRule: type: MONTH histogramRule: intervalSize: 98841358.70983633 maxValue: 25120133.165922403 minValue: 17281143.82656938 sourceRange: sources: - endColumnIndex: 81465463 endRowIndex: 69085789 sheetId: -21242336 startColumnIndex: 82646672 startRowIndex: -47751490 openSeries: data: aggregateType: AVERAGE columnReference: name: Ut consequat qu groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: 73002762.26109156 maxValue: -57286318.205252714 minValue: 89056001.95883358 sourceRange: sources: - endColumnIndex: -42035213 endRowIndex: -70166577 sheetId: 50253058 startColumnIndex: 15168688 startRowIndex: 4486728 domain: data: aggregateType: COUNT columnReference: name: commodo ei groupRule: dateTimeRule: type: HOUR_MINUTE histogramRule: intervalSize: -98824569.9626535 maxValue: 32056300.307588577 minValue: -4788437.28015694 sourceRange: sources: - endColumnIndex: -65708627 endRowIndex: 82323054 sheetId: 42390101 startColumnIndex: 54841574 startRowIndex: -65981726 reversed: true dataSourceChartProperties: dataExecutionStatus: errorCode: OBJECT_SPEC_INVALID errorMessage: amet lastRefreshTime: Ut elit state: NOT_STARTED dataSourceId: qui anim filterSpecs: - columnIndex: -1562453 dataSourceColumnReference: name: sint qui laborum filterCriteria: condition: type: DATE_IS_VALID values: - relativeDate: YESTERDAY userEnteredValue: culpa ipsum hiddenValues: - aute visibleBackgroundColor: alpha: 98350554.28024045 blue: -92228896.37536573 green: 59081851.838526666 red: 79840159.95413601 visibleBackgroundColorStyle: rgbColor: alpha: 62052229.16653553 blue: -77135421.30571818 green: 66599570.82823658 red: 48108004.258456826 themeColor: ACCENT3 visibleForegroundColor: alpha: -73767994.4402561 blue: 34378530.11423054 green: 52172403.453792274 red: -20144691.932950526 visibleForegroundColorStyle: rgbColor: alpha: -41739506.01011938 blue: -15188274.678633824 green: -59973118.99810427 red: -35269259.840009145 themeColor: ACCENT4 fontName: enim quis anim reprehenderit ex hiddenDimensionStrategy: SKIP_HIDDEN_ROWS_AND_COLUMNS histogramChart: bucketSize: -58869002.815851964 legendPosition: BOTTOM_LEGEND outlierPercentile: -90119306.24247828 series: - barColor: alpha: -66343358.81173623 blue: 98436891.80354285 green: 88960994.81201625 red: -49324892.91013371 barColorStyle: rgbColor: alpha: -64195530.032023475 blue: -84917234.342171 green: 45558491.71681222 red: -54137402.72599035 themeColor: ACCENT5 data: aggregateType: AVERAGE columnReference: name: consequat ut dolore groupRule: dateTimeRule: type: HOUR_MINUTE_AMPM histogramRule: intervalSize: 98552301.37058067 maxValue: 41391876.06002927 minValue: 72902333.91639346 sourceRange: sources: - endColumnIndex: -62984850 endRowIndex: 76778620 sheetId: 98548324 startColumnIndex: 34660351 startRowIndex: -45010337 showItemDividers: true maximized: false orgChart: labels: aggregateType: COUNT columnReference: name: ipsum laboris labore eu groupRule: dateTimeRule: type: HOUR_MINUTE histogramRule: intervalSize: -26290319.18107465 maxValue: 85386293.33459437 minValue: 48385690.99895021 sourceRange: sources: - endColumnIndex: -10802860 endRowIndex: 74620880 sheetId: -22279107 startColumnIndex: -67605501 startRowIndex: 85842929 nodeColor: alpha: 18753317.15946813 blue: -18259011.361318663 green: 50128752.019614935 red: -63234920.96284778 nodeColorStyle: rgbColor: alpha: -49007221.5220259 blue: -55421140.80058971 green: -73899297.87618281 red: -34779848.96207125 themeColor: THEME_COLOR_TYPE_UNSPECIFIED nodeSize: MEDIUM parentLabels: aggregateType: AVERAGE columnReference: name: aliquip et groupRule: dateTimeRule: type: CHART_DATE_TIME_RULE_TYPE_UNSPECIFIED histogramRule: intervalSize: -36524671.87999404 maxValue: 26906103.015907854 minValue: 32357146.593605533 sourceRange: sources: - endColumnIndex: 49370167 endRowIndex: -58795181 sheetId: 60958162 startColumnIndex: 57283835 startRowIndex: 27985231 selectedNodeColor: alpha: 4283572.8690791875 blue: 44543347.30246803 green: 50425282.56708169 red: 1703716.3273180872 selectedNodeColorStyle: rgbColor: alpha: 24086219.23257646 blue: 728589.3107289821 green: 33156684.817073017 red: 1904066.512834698 themeColor: ACCENT4 tooltips: aggregateType: SUM columnReference: name: reprehenderit groupRule: dateTimeRule: type: HOUR_MINUTE_AMPM histogramRule: intervalSize: 12451426.24565588 maxValue: 52749132.36806822 minValue: -80016889.90136823 sourceRange: sources: - endColumnIndex: -45571898 endRowIndex: 58656657 sheetId: -5608709 startColumnIndex: -30774618 startRowIndex: -63536648 pieChart: domain: aggregateType: MEDIAN columnReference: name: elit proident groupRule: dateTimeRule: type: DAY_OF_WEEK histogramRule: intervalSize: 41340976.6920377 maxValue: 41684723.66547933 minValue: 64524115.02310169 sourceRange: sources: - endColumnIndex: 38247483 endRowIndex: 32231114 sheetId: -98409589 startColumnIndex: 16154102 startRowIndex: -79772420 legendPosition: TOP_LEGEND pieHole: 18520272.558301702 series: aggregateType: MIN columnReference: name: occaecat laborum velit groupRule: dateTimeRule: type: MONTH histogramRule: intervalSize: 74880924.5518792 maxValue: 48422636.254939914 minValue: -47336007.0561359 sourceRange: sources: - endColumnIndex: 25313441 endRowIndex: 19160429 sheetId: -10573997 startColumnIndex: -35138256 startRowIndex: -95992310 threeDimensional: false scorecardChart: aggregateType: MAX baselineValueData: aggregateType: MIN columnReference: name: in laborum groupRule: dateTimeRule: type: HOUR_MINUTE_AMPM histogramRule: intervalSize: 80630695.70050633 maxValue: 70487214.31972086 minValue: 3786367.2596718073 sourceRange: sources: - endColumnIndex: -42803244 endRowIndex: -34336045 sheetId: -3924100 startColumnIndex: 56477349 startRowIndex: -13175877 baselineValueFormat: comparisonType: ABSOLUTE_DIFFERENCE description: commodo anim negativeColor: alpha: 39255021.448569775 blue: 72673791.78199151 green: -16221397.812125772 red: 91963777.24383348 negativeColorStyle: rgbColor: alpha: -6263049.8816355765 blue: -41475717.707765326 green: -77833592.14446315 red: 42780171.58231896 themeColor: TEXT position: horizontalAlignment: RIGHT positiveColor: alpha: -11094459.47887373 blue: 93629902.64857382 green: 24404552.152140006 red: 48432902.55947888 positiveColorStyle: rgbColor: alpha: -17768246.952158555 blue: 10329654.335062742 green: -72714972.46110958 red: 99631312.63975179 themeColor: ACCENT1 textFormat: bold: false fontFamily: do Ut officia ips fontSize: -74446122 foregroundColor: alpha: -15442972.094088152 blue: -81519901.61978611 green: -20529759.781840757 red: 27578807.502938792 foregroundColorStyle: rgbColor: alpha: -64469786.93289225 blue: 958675.581234172 green: -19190102.648990452 red: -57286217.862376 themeColor: BACKGROUND italic: true link: uri: cillum mollit strikethrough: false underline: false customFormatOptions: prefix: Duis elit dolor esse suffix: nostrud keyValueData: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: Excepteur Duis labore Ut dolor groupRule: dateTimeRule: type: SECOND histogramRule: intervalSize: -28407627.29666686 maxValue: -68377224.78909494 minValue: 59828412.748476 sourceRange: sources: - endColumnIndex: 49961387 endRowIndex: 59812535 sheetId: -11603429 startColumnIndex: 84640843 startRowIndex: 38651616 keyValueFormat: position: horizontalAlignment: CENTER textFormat: bold: true fontFamily: irure deserunt fontSize: -43268782 foregroundColor: alpha: 8158606.468517959 blue: -21105556.32390882 green: -11404516.1791974 red: 64925589.619461834 foregroundColorStyle: rgbColor: alpha: 5530396.250883788 blue: 90145937.90891397 green: -32688970.13676542 red: -16203141.240939349 themeColor: ACCENT2 italic: false link: uri: consectetur enim strikethrough: true underline: true numberFormatSource: CUSTOM scaleFactor: 11558623.107555643 sortSpecs: - backgroundColor: alpha: -17227103.501275703 blue: -12993147.672025666 green: -59964516.854676254 red: -72545113.84957589 backgroundColorStyle: rgbColor: alpha: -43645604.72779715 blue: 28831274.41776243 green: 29981114.25149563 red: -76875576.8622873 themeColor: ACCENT2 dataSourceColumnReference: name: occaecat ut aute laborum dimensionIndex: -59204651 foregroundColor: alpha: -79192153.97585262 blue: -51022231.7871126 green: 80342390.01304275 red: -86650601.55841205 foregroundColorStyle: rgbColor: alpha: -67616877.52085468 blue: -66430309.673875734 green: -28849681.231130436 red: -12048441.564153433 themeColor: ACCENT6 sortOrder: DESCENDING subtitle: sunt tempor subtitleTextFormat: bold: false fontFamily: velit est fontSize: -42403456 foregroundColor: alpha: 22058022.2761451 blue: -57106121.12313691 green: -62292772.277853504 red: 42725637.61607307 foregroundColorStyle: rgbColor: alpha: 51435390.33859742 blue: 26399633.43765652 green: -53891845.774531074 red: -48217319.088982746 themeColor: ACCENT1 italic: false link: uri: aliquip voluptate strikethrough: true underline: false subtitleTextPosition: horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED title: nisi irure mo titleTextFormat: bold: true fontFamily: in mollit fontSize: 80166864 foregroundColor: alpha: -48202625.10693212 blue: -33356531.302473865 green: -59830588.56053791 red: 13190491.999954283 foregroundColorStyle: rgbColor: alpha: 72578854.4087722 blue: -50314285.85426121 green: -30254207.514688283 red: -80311236.66702192 themeColor: ACCENT3 italic: true link: uri: consectetur ull strikethrough: true underline: false titleTextPosition: horizontalAlignment: LEFT treemapChart: colorData: aggregateType: MIN columnReference: name: elit laborum est groupRule: dateTimeRule: type: HOUR histogramRule: intervalSize: -56791573.37193392 maxValue: -3082088.469437629 minValue: 2584110.989090726 sourceRange: sources: - endColumnIndex: 33185679 endRowIndex: 90877081 sheetId: -46124716 startColumnIndex: -58013604 startRowIndex: 9958981 colorScale: maxValueColor: alpha: -19565302.690681458 blue: 84348600.89777851 green: 84525348.2270937 red: 36308892.93153095 maxValueColorStyle: rgbColor: alpha: -91899775.06573048 blue: -19112262.061323017 green: 72986920.21975598 red: -37421607.295319825 themeColor: ACCENT1 midValueColor: alpha: -78580507.9354704 blue: -43485752.68811152 green: 40721285.03563833 red: -85478108.28834087 midValueColorStyle: rgbColor: alpha: 43885375.653633 blue: -58797019.346704625 green: -55831349.98846808 red: 78831028.01352298 themeColor: ACCENT2 minValueColor: alpha: -56302442.40313313 blue: 24824772.48649597 green: -84835660.25575185 red: 73070513.7324338 minValueColorStyle: rgbColor: alpha: -68651941.30003309 blue: 65843468.77101663 green: 17665073.77399917 red: -73644791.62597264 themeColor: ACCENT5 noDataColor: alpha: -26650200.226608783 blue: 98267281.51374656 green: -82224040.64974701 red: -45219829.73007854 noDataColorStyle: rgbColor: alpha: 20428573.381920144 blue: -76533154.1506069 green: 91785375.4483588 red: -81854741.65044627 themeColor: TEXT headerColor: alpha: 62795871.080174536 blue: -72654284.65699393 green: -59856285.01332072 red: 64598314.14250702 headerColorStyle: rgbColor: alpha: 5366698.194378555 blue: -27822544.61282058 green: 26048910.883402467 red: 51482956.638316184 themeColor: ACCENT2 hideTooltips: false hintedLevels: 16673173 labels: aggregateType: SUM columnReference: name: tempor qui nulla aliquip eu groupRule: dateTimeRule: type: YEAR_MONTH_DAY histogramRule: intervalSize: 78591671.47170237 maxValue: -15247648.852261797 minValue: 343012.5209438652 sourceRange: sources: - endColumnIndex: -18336103 endRowIndex: -13127573 sheetId: 50078783 startColumnIndex: 55384336 startRowIndex: -35738688 levels: -91470959 maxValue: 79830746.9979603 minValue: -86195318.3310901 parentLabels: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: Excepteur elit laborum groupRule: dateTimeRule: type: SECOND histogramRule: intervalSize: 10340392.50206998 maxValue: -17088289.300464556 minValue: -65608222.25319858 sourceRange: sources: - endColumnIndex: -10498634 endRowIndex: -67747016 sheetId: -61697402 startColumnIndex: -96842174 startRowIndex: -20827250 sizeData: aggregateType: SUM columnReference: name: labore tempor non Ut groupRule: dateTimeRule: type: DAY_OF_MONTH histogramRule: intervalSize: 79378247.04537997 maxValue: -43329469.56078158 minValue: -97248154.88703299 sourceRange: sources: - endColumnIndex: 85204064 endRowIndex: -28499494 sheetId: -65214303 startColumnIndex: 40903840 startRowIndex: 26826697 textFormat: bold: true fontFamily: ips fontSize: 95699804 foregroundColor: alpha: -99574844.58625712 blue: 94087417.14684385 green: -69943349.51341844 red: -84351990.4778689 foregroundColorStyle: rgbColor: alpha: -28706704.26180722 blue: 92058951.55454847 green: -92677751.34458587 red: 75874632.59761295 themeColor: ACCENT3 italic: true link: uri: nisi id consequat labore strikethrough: true underline: false waterfallChart: connectorLineStyle: type: MEDIUM_DASHED_DOTTED width: 33080774 domain: data: aggregateType: COUNT columnReference: name: Excepteur ut cillum nostrud est groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: 40778376.57674664 maxValue: -72577192.48402995 minValue: -49487259.248587415 sourceRange: sources: - endColumnIndex: 27809632 endRowIndex: -61186119 sheetId: -90317898 startColumnIndex: -80472998 startRowIndex: -30131633 reversed: true firstValueIsTotal: true hideConnectorLines: false series: - customSubtotals: - dataIsSubtotal: false label: mollit ullamco consectetur laboris subtotalIndex: -41643203 data: aggregateType: MIN columnReference: name: non officia laboris nostrud groupRule: dateTimeRule: type: YEAR_MONTH_DAY histogramRule: intervalSize: 62683277.417633176 maxValue: 10907330.986029297 minValue: -64353429.18307647 sourceRange: sources: - endColumnIndex: -38349675 endRowIndex: -8495219 sheetId: 12481272 startColumnIndex: -7722759 startRowIndex: 52121150 dataLabel: customLabelData: aggregateType: SUM columnReference: name: dolore pariatur groupRule: dateTimeRule: type: DAY_MONTH histogramRule: intervalSize: -34952249.28179348 maxValue: -19197899.076197132 minValue: -48705393.081115924 sourceRange: sources: - endColumnIndex: 48396977 endRowIndex: 48408152 sheetId: 45082892 startColumnIndex: 8569302 startRowIndex: 8804186 placement: DATA_LABEL_PLACEMENT_UNSPECIFIED textFormat: bold: true fontFamily: ipsum Lorem aute id ad fontSize: 36959697 foregroundColor: alpha: 92597660.67068368 blue: -8223093.535896629 green: -32761886.109998077 red: -47510604.97605319 foregroundColorStyle: rgbColor: alpha: -46086685.56990394 blue: 69326539.89784497 green: 4263114.687935948 red: -76932373.53723687 themeColor: THEME_COLOR_TYPE_UNSPECIFIED italic: true link: uri: in reprehenderit et strikethrough: false underline: false type: CUSTOM hideTrailingSubtotal: true negativeColumnsStyle: color: alpha: -57300543.21741753 blue: 811834.4185521901 green: 17285941.040074885 red: 44324464.81213114 colorStyle: rgbColor: alpha: 38549576.362757415 blue: 59769707.88523102 green: -85550541.90553242 red: -23400569.85534686 themeColor: ACCENT4 label: ullamco consectetur positiveColumnsStyle: color: alpha: -57143066.71421121 blue: -22385725.273851037 green: -74442933.1232018 red: -56188657.327717096 colorStyle: rgbColor: alpha: -78667173.31474432 blue: -71255259.9857593 green: -27966891.93243815 red: -40358465.308683254 themeColor: ACCENT6 label: mollit nostrud non ut subtotalColumnsStyle: color: alpha: 86574190.75044301 blue: 19274312.320697457 green: -22311029.12966509 red: -82007428.83099875 colorStyle: rgbColor: alpha: -65889591.68119732 blue: 73201987.77406809 green: 62305908.1374473 red: -57569853.80001027 themeColor: THEME_COLOR_TYPE_UNSPECIFIED label: in culpa stackedType: SEQUENTIAL totalDataLabel: customLabelData: aggregateType: COUNT columnReference: name: ut non groupRule: dateTimeRule: type: SECOND histogramRule: intervalSize: 5767589.708562553 maxValue: 44987405.830274165 minValue: 40248880.6212669 sourceRange: sources: - endColumnIndex: 68628293 endRowIndex: -73581679 sheetId: 90320414 startColumnIndex: 69988813 startRowIndex: -14745972 placement: LEFT textFormat: bold: false fontFamily: amet deserunt fontSize: -34797287 foregroundColor: alpha: 81792633.22947782 blue: -26682732.26843372 green: -74639556.847081 red: 65551355.307558626 foregroundColorStyle: rgbColor: alpha: 41817385.85548803 blue: -40901369.77309133 green: 88881075.27922347 red: 63289248.29846412 themeColor: ACCENT6 italic: true link: uri: dolore fugiat strikethrough: false underline: false type: CUSTOM addConditionalFormatRule: index: 39020153 rule: booleanRule: condition: type: TEXT_EQ values: - relativeDate: PAST_WEEK userEnteredValue: est repreh format: backgroundColor: alpha: -21200100.64957811 blue: -27890795.45896764 green: -19986246.66044186 red: -79971277.9054397 backgroundColorStyle: rgbColor: alpha: 9682144.749252602 blue: -85249492.41329938 green: 82733746.26793104 red: -21931762.103332415 themeColor: LINK borders: bottom: color: alpha: -19563350.323531955 blue: 55561011.74570793 green: -94902301.5289864 red: 19158291.068031102 colorStyle: rgbColor: alpha: 10478786.164701328 blue: 94431827.40392965 green: 64463133.73011455 red: 87070545.78873593 themeColor: ACCENT4 style: STYLE_UNSPECIFIED width: -30629920 left: color: alpha: -53474919.80035745 blue: -43502560.40461464 green: -89119073.45203716 red: -41252108.76694765 colorStyle: rgbColor: alpha: 23833527.8830422 blue: -84698836.9366224 green: 46157021.56877339 red: -70107194.35363862 themeColor: ACCENT4 style: DOTTED width: -42802068 right: color: alpha: 33539288.946765035 blue: 40263513.05259204 green: -87004692.90656096 red: 56627914.71661818 colorStyle: rgbColor: alpha: 82784900.74365026 blue: -49236022.50525003 green: 5461917.062216014 red: 78430399.33125958 themeColor: ACCENT4 style: DOTTED width: -5991483 top: color: alpha: -36547499.622195676 blue: 83934913.40857872 green: 38582209.311409 red: -57261185.72176744 colorStyle: rgbColor: alpha: -18558810.9426492 blue: 490949.52678211033 green: 22377686.344058305 red: -35907939.18564978 themeColor: ACCENT4 style: DASHED width: -77121186 horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED hyperlinkDisplayType: LINKED numberFormat: pattern: Lorem officia type: NUMBER padding: bottom: 69321075 left: -2771443 right: 98829401 top: 81983894 textDirection: TEXT_DIRECTION_UNSPECIFIED textFormat: bold: true fontFamily: id est tempor incididunt fontSize: -60981899 foregroundColor: alpha: -34540229.1056625 blue: -16624945.695482075 green: 94737632.80889544 red: 47445516.66795197 foregroundColorStyle: rgbColor: alpha: -59343429.28625971 blue: -66097065.79160038 green: -1663710.406443283 red: -43788603.42101722 themeColor: ACCENT2 italic: true link: uri: cillum strikethrough: false underline: false textRotation: angle: 73947984 vertical: false verticalAlignment: BOTTOM wrapStrategy: OVERFLOW_CELL gradientRule: maxpoint: color: alpha: -90054548.93733962 blue: 25463533.571013168 green: -64625586.90245195 red: -49931347.00133579 colorStyle: rgbColor: alpha: -51274586.961468846 blue: 9075361.02339597 green: 15530863.090044454 red: -56726642.43386034 themeColor: TEXT type: NUMBER value: aute in deserunt laborum occaecat midpoint: color: alpha: -26183254.34970306 blue: 61971443.868216276 green: -63234687.54774706 red: -21418609.887120217 colorStyle: rgbColor: alpha: 48693538.64693552 blue: -99372789.22541934 green: -33501610.769846745 red: -68899170.18311334 themeColor: TEXT type: NUMBER value: ipsum sunt reprehen minpoint: color: alpha: 53375658.861344665 blue: 70095945.32133684 green: -74775925.59198155 red: 44846417.97100043 colorStyle: rgbColor: alpha: 79415601.14334148 blue: -25148964.388339803 green: -85501906.45455156 red: 16428463.664203048 themeColor: BACKGROUND type: PERCENT value: ea elit ranges: - endColumnIndex: -30949022 endRowIndex: 63106767 sheetId: -80870383 startColumnIndex: 9578758 startRowIndex: 11240023 addDataSource: dataSource: calculatedColumns: - formula: cupidatat reference: name: reprehenderit laborum eiusmod quis dataSourceId: irure reprehenderit sheetId: 85894926 spec: bigQuery: projectId: incididunt dolore deserunt querySpec: rawQuery: cupidatat incididunt nostrud dolore tableSpec: datasetId: dolore in aliquip tableId: consectetur anim qui Duis tableProjectId: ipsum ea dolor parameters: - name: proident eu elit namedRangeId: anim ad range: endColumnIndex: 56501617 endRowIndex: 37567438 sheetId: 61309478 startColumnIndex: 52814142 startRowIndex: -97506521 addDimensionGroup: range: dimension: COLUMNS endIndex: -30586547 sheetId: 5908919 startIndex: 12143563 addFilterView: filter: criteria: adipisicing_5f_: condition: type: NUMBER_GREATER_THAN_EQ values: - relativeDate: RELATIVE_DATE_UNSPECIFIED userEnteredValue: ad hiddenValues: - dolor visibleBackgroundColor: alpha: -47709939.46827451 blue: -64424677.39828634 green: 52622650.68558678 red: -50544895.144491434 visibleBackgroundColorStyle: rgbColor: alpha: -35133297.10869107 blue: 32583346.07127504 green: -16858451.438400567 red: 54643051.46257442 themeColor: ACCENT6 visibleForegroundColor: alpha: -27021409.719739735 blue: 99245728.59404162 green: 79640346.35238263 red: -58776765.285239115 visibleForegroundColorStyle: rgbColor: alpha: -3094701.2901301235 blue: -27521681.01639141 green: 46891706.0368354 red: -8955289.47250335 themeColor: TEXT mollitdc2: condition: type: DATE_NOT_BETWEEN values: - relativeDate: PAST_YEAR userEnteredValue: adipisicing et non hiddenValues: - nostrud occaecat dolor id visibleBackgroundColor: alpha: 91523249.91490385 blue: 83518028.3624953 green: 76479570.36978966 red: 64816314.80955148 visibleBackgroundColorStyle: rgbColor: alpha: 66346206.949744195 blue: -22431916.31817329 green: 37305870.92702916 red: 40859093.0160979 themeColor: BACKGROUND visibleForegroundColor: alpha: -19916864.843276322 blue: -39456650.966717 green: -67932140.44590643 red: 73696389.67222029 visibleForegroundColorStyle: rgbColor: alpha: -29747802.866967186 blue: -11819934.789227068 green: 97097294.90102386 red: 18231390.122805014 themeColor: ACCENT1 filterSpecs: - columnIndex: 3676061 dataSourceColumnReference: name: consequat tempor sunt ipsum filterCriteria: condition: type: ONE_OF_RANGE values: - relativeDate: PAST_MONTH userEnteredValue: non sunt vol hiddenValues: - aliqua enim aliquip anim visibleBackgroundColor: alpha: -29106731.10588427 blue: 94641148.43610391 green: -28299275.336464897 red: -91390013.65861228 visibleBackgroundColorStyle: rgbColor: alpha: 1048104.2280354798 blue: 80101135.1154094 green: 53238.99149720371 red: 10001819.74439083 themeColor: LINK visibleForegroundColor: alpha: -52694473.99922717 blue: -79451861.29687682 green: 3448103.367785737 red: -34153928.8506977 visibleForegroundColorStyle: rgbColor: alpha: -60951528.98239888 blue: 14809233.88666518 green: 96914624.51141727 red: -57694621.57815979 themeColor: ACCENT6 filterViewId: 59315207 namedRangeId: dolore aliqua range: endColumnIndex: 28901526 endRowIndex: -30771130 sheetId: -66431047 startColumnIndex: 30610887 startRowIndex: -37235189 sortSpecs: - backgroundColor: alpha: 18510605.19196607 blue: -56407195.35617413 green: 21285143.893614218 red: 54180667.02258238 backgroundColorStyle: rgbColor: alpha: -44185077.38379165 blue: -48686584.07109479 green: 23729104.04777047 red: -94826969.63260978 themeColor: LINK dataSourceColumnReference: name: Duis Excepteur dimensionIndex: 29504368 foregroundColor: alpha: -9464703.860532492 blue: 624072.8807945102 green: -37127545.50049535 red: -22274486.15405509 foregroundColorStyle: rgbColor: alpha: -98597749.75700332 blue: -77977649.93430749 green: 58270130.56171432 red: 70488238.78493723 themeColor: TEXT sortOrder: SORT_ORDER_UNSPECIFIED title: quis ea addNamedRange: namedRange: name: occaecat in labore commodo non namedRangeId: consequat anim qui magna range: endColumnIndex: 19916896 endRowIndex: -54139050 sheetId: 50250826 startColumnIndex: 18009145 startRowIndex: 33194189 addProtectedRange: protectedRange: description: in minim editors: domainUsersCanEdit: true groups: - ut amet magna nisi users: - Excepteur culpa non namedRangeId: nostrud commodo veniam protectedRangeId: -25801592 range: endColumnIndex: -32974012 endRowIndex: -9324258 sheetId: -3622897 startColumnIndex: -28331054 startRowIndex: -30890006 requestingUserCanEdit: true unprotectedRanges: - endColumnIndex: 92280894 endRowIndex: -9915549 sheetId: 50744047 startColumnIndex: 66087676 startRowIndex: 60158842 warningOnly: false addSheet: properties: dataSourceSheetProperties: columns: - formula: commodo fugiat quis aliquip reference: name: mollit voluptate incididunt dataExecutionStatus: errorCode: TOO_MANY_ROWS errorMessage: Duis culpa lastRefreshTime: ullamco reprehenderit state: RUNNING dataSourceId: aute dolore officia in gridProperties: columnCount: 21190059 columnGroupControlAfter: false frozenColumnCount: 88509374 frozenRowCount: -45306334 hideGridlines: false rowCount: 36381075 rowGroupControlAfter: false hidden: false index: 92359399 rightToLeft: true sheetId: 92832643 sheetType: GRID tabColor: alpha: -55393407.04330295 blue: -23354096.324263513 green: -60589900.119638786 red: -91469795.39060758 tabColorStyle: rgbColor: alpha: -27695504.716086105 blue: 30911875.580136135 green: 94770901.04398388 red: 15647859.293036029 themeColor: ACCENT3 title: 'Ut ' addSlicer: slicer: position: newSheet: true overlayPosition: anchorCell: columnIndex: 74647069 rowIndex: 17798051 sheetId: 7074707 heightPixels: 83589513 offsetXPixels: -21693587 offsetYPixels: 88604836 widthPixels: -6122819 sheetId: 24409483 slicerId: 64462945 spec: applyToPivotTables: true backgroundColor: alpha: -51052788.00824835 blue: 91711540.40064314 green: -17827945.428301424 red: 57520724.57868129 backgroundColorStyle: rgbColor: alpha: 75258229.76683924 blue: -53748233.73617303 green: 23954950.50980778 red: 93981999.73357409 themeColor: ACCENT4 columnIndex: -71424642 dataRange: endColumnIndex: 72558011 endRowIndex: -50101804 sheetId: 86537978 startColumnIndex: -23165318 startRowIndex: 57654567 filterCriteria: condition: type: CUSTOM_FORMULA values: - relativeDate: RELATIVE_DATE_UNSPECIFIED userEnteredValue: dolor non conseq hiddenValues: - amet quis visibleBackgroundColor: alpha: -54421180.9254703 blue: 82006184.78338754 green: -72040635.55412722 red: 55102355.50168252 visibleBackgroundColorStyle: rgbColor: alpha: 86921907.90063742 blue: -92518090.14890812 green: 96704991.65908003 red: -43810414.57453274 themeColor: TEXT visibleForegroundColor: alpha: 96433359.71744081 blue: 46588459.93618703 green: -83070011.7663918 red: 81529689.9605138 visibleForegroundColorStyle: rgbColor: alpha: 30191599.391763672 blue: 16319721.29636763 green: -54841310.38660935 red: -22672098.964117333 themeColor: ACCENT6 horizontalAlignment: CENTER textFormat: bold: true fontFamily: Duis labore est consectetur fontSize: 76448001 foregroundColor: alpha: 91555742.50669932 blue: -23087287.709628955 green: 85525509.69420981 red: 72532351.78829178 foregroundColorStyle: rgbColor: alpha: -89932328.7251626 blue: -1326184.3547674716 green: -17623609.52238238 red: -53652933.96866697 themeColor: ACCENT5 italic: false link: uri: cillum amet ve strikethrough: true underline: false title: nulla Ut in appendCells: fields: Lorem deserunt rows: - values: - dataSourceFormula: dataExecutionStatus: errorCode: OBJECT_SPEC_INVALID errorMessage: Lorem amet labore ut nostrud lastRefreshTime: ipsum state: FAILED dataSourceId: anim sint do voluptate dataSourceTable: columnSelectionType: DATA_SOURCE_TABLE_COLUMN_SELECTION_TYPE_UNSPECIFIED columns: - name: cillum veniam aliquip consequat sit dataExecutionStatus: errorCode: ENGINE errorMessage: deserunt mollit proident incididunt dolor lastRefreshTime: id do fugiat aliquip velit state: DATA_EXECUTION_STATE_UNSPECIFIED dataSourceId: enim ea dolor ut veniam filterSpecs: - columnIndex: 33956883 dataSourceColumnReference: name: reprehenderit enim nisi filterCriteria: condition: type: FILTER_EXPRESSION values: - relativeDate: RELATIVE_DATE_UNSPECIFIED userEnteredValue: consequat qui reprehenderit hiddenValues: - et eu visibleBackgroundColor: alpha: -72139335.32048884 blue: 19136951.115336627 green: -77431082.6235257 red: -93286430.8540379 visibleBackgroundColorStyle: rgbColor: alpha: -12843769.457580969 blue: -46017312.432048164 green: 20215987.16801405 red: 6671326.935598642 themeColor: ACCENT1 visibleForegroundColor: alpha: 8636094.377905533 blue: 23321052.666658208 green: -43734614.71939279 red: -10570302.035413578 visibleForegroundColorStyle: rgbColor: alpha: -17584415.52179271 blue: 71997824.76922119 green: -662722.053203702 red: 35830163.88710028 themeColor: ACCENT1 rowLimit: 30773560 sortSpecs: - backgroundColor: alpha: -92981334.21324316 blue: 6340873.047007948 green: -61545310.28612857 red: 11566199.672896937 backgroundColorStyle: rgbColor: alpha: -88385755.57807134 blue: 4206596.412067175 green: -96296205.75688796 red: 76368003.38165438 themeColor: LINK dataSourceColumnReference: name: ullamco dolore dimensionIndex: -25606572 foregroundColor: alpha: -15163413.949598774 blue: -22260386.853475243 green: 95722287.38554695 red: -32116099.020489484 foregroundColorStyle: rgbColor: alpha: 79095922.8864902 blue: -21062295.948573515 green: -28787955.236987054 red: 47053565.91248834 themeColor: ACCENT3 sortOrder: SORT_ORDER_UNSPECIFIED dataValidation: condition: type: NUMBER_BETWEEN values: - relativeDate: RELATIVE_DATE_UNSPECIFIED userEnteredValue: aliqua ipsum fugiat pariatur ea inputMessage: dolore showCustomUi: false strict: false effectiveFormat: backgroundColor: alpha: -95151670.56658967 blue: 47212531.162602425 green: -18737343.732527107 red: -38266118.28110438 backgroundColorStyle: rgbColor: alpha: -26861270.45409657 blue: 30427102.271430105 green: 36847542.37954709 red: 94091899.69558701 themeColor: LINK borders: bottom: color: alpha: -9370382.866101772 blue: -70570396.691652 green: -66878390.03678176 red: -80798148.47797446 colorStyle: rgbColor: alpha: -74430476.73212236 blue: -38740903.866503194 green: -80248535.97214973 red: -5403548.926558033 themeColor: BACKGROUND style: SOLID_MEDIUM width: 56324391 left: color: alpha: 36453614.478486955 blue: 55567162.67719293 green: 6610809.811924547 red: 49056848.311787516 colorStyle: rgbColor: alpha: 43876372.21810189 blue: 80047034.32543582 green: 6227417.253189936 red: -81797763.81436414 themeColor: TEXT style: DOTTED width: 43786127 right: color: alpha: -60545538.18015127 blue: -66683512.34404799 green: 45996444.398989946 red: 68326483.79982162 colorStyle: rgbColor: alpha: 48556686.35702598 blue: -60237275.862577945 green: -83335766.12500359 red: 43768150.444468915 themeColor: TEXT style: SOLID width: 49487679 top: color: alpha: 62752247.2957322 blue: -63850787.154992886 green: -31259024.00529106 red: 87830643.48178253 colorStyle: rgbColor: alpha: 57660209.71025744 blue: 51578424.411388904 green: 65740051.476291776 red: 14928144.139166698 themeColor: ACCENT3 style: SOLID width: 54219430 horizontalAlignment: CENTER hyperlinkDisplayType: LINKED numberFormat: pattern: ea quis type: NUMBER_FORMAT_TYPE_UNSPECIFIED padding: bottom: 48077272 left: 46750582 right: -95475153 top: -22812070 textDirection: LEFT_TO_RIGHT textFormat: bold: false fontFamily: aliqua in magna ut quis fontSize: 49414714 foregroundColor: alpha: -60185305.7745815 blue: 46948400.06887576 green: -50297812.667303085 red: 77802092.08064601 foregroundColorStyle: rgbColor: alpha: 57143989.828578115 blue: 81505653.76149186 green: -50299930.06226694 red: 87947829.03134704 themeColor: THEME_COLOR_TYPE_UNSPECIFIED italic: true link: uri: ut strikethrough: false underline: false textRotation: angle: -45263390 vertical: true verticalAlignment: TOP wrapStrategy: CLIP effectiveValue: boolValue: true errorValue: message: mollit dolor deserunt non type: REF formulaValue: occaecat tempor numberValue: -14520926.367911488 stringValue: dolore officia ut formattedValue: ex enim magna hyperlink: amet minim adipisicing cupidatat note: reprehenderit dolore ipsum pivotTable: columns: - dataSourceColumnReference: name: enim dolore groupLimit: applyOrder: 7741343 countLimit: -22838657 groupRule: dateTimeRule: type: MINUTE histogramRule: end: -93694626.82827638 interval: 22879728.640180603 start: -99980244.32686159 manualRule: groups: - groupName: boolValue: true errorValue: message: quis consequat non type: ERROR formulaValue: fugiat incididunt pariatur sit numberValue: -27214952.866321474 stringValue: Ut items: - boolValue: true errorValue: message: Ut do id type: ERROR_TYPE_UNSPECIFIED formulaValue: veniam non nulla labore numberValue: -76432787.21966906 stringValue: enim sint Lorem ut sit label: amet repeatHeadings: false showTotals: false sortOrder: SORT_ORDER_UNSPECIFIED sourceColumnOffset: -86418613 valueBucket: buckets: - boolValue: true errorValue: message: veniam qui nulla sunt eiusmod type: VALUE formulaValue: occaecat ullamco fugiat numberValue: -90992102.86478953 stringValue: enim aute do valuesIndex: -74448422 valueMetadata: - collapsed: false value: boolValue: false errorValue: message: dolore et commo type: NAME formulaValue: minim nulla ut numberValue: 87696131.71814683 stringValue: nulla sunt ea criteria: dolor6: condition: type: TEXT_NOT_EQ values: - relativeDate: TODAY userEnteredValue: aliqua consequat visibleByDefault: false visibleValues: - sed deserunt esse amet quis_12e: condition: type: TEXT_CONTAINS values: - relativeDate: PAST_WEEK userEnteredValue: ut commodo exercitation pro visibleByDefault: true visibleValues: - incididunt voluptate et irure dataExecutionStatus: errorCode: TOO_MANY_COLUMNS errorMessage: non lastRefreshTime: ea voluptate et state: FAILED dataSourceId: amet ea Ut filterSpecs: - columnOffsetIndex: 7301934 dataSourceColumnReference: name: Excepteur minim filterCriteria: condition: type: TEXT_NOT_EQ values: - relativeDate: PAST_MONTH userEnteredValue: id visibleByDefault: true visibleValues: - 'ex ' rows: - dataSourceColumnReference: name: mollit pariatur amet sunt groupLimit: applyOrder: 7644945 countLimit: -61252069 groupRule: dateTimeRule: type: YEAR_MONTH_DAY histogramRule: end: 10655483.030086547 interval: 25289784.454808205 start: 39286743.3839733 manualRule: groups: - groupName: boolValue: true errorValue: message: magna anim type: VALUE formulaValue: cillum nulla sunt numberValue: -78033693.64815858 stringValue: dolore aute items: - boolValue: true errorValue: message: incididunt dolore qui type: ERROR formulaValue: voluptate enim elit cupidatat aliqua numberValue: 49727850.79105395 stringValue: id cillum label: in occaecat repeatHeadings: true showTotals: false sortOrder: DESCENDING sourceColumnOffset: 67639776 valueBucket: buckets: - boolValue: true errorValue: message: con type: ERROR formulaValue: dolor exercitation irure numberValue: 55862669.35758829 stringValue: consectetur est valuesIndex: 62052868 valueMetadata: - collapsed: true value: boolValue: false errorValue: message: quis qui reprehenderit dolor veniam type: VALUE formulaValue: quis reprehenderit eiusmod numberValue: 7856694.672357187 stringValue: laborum sint culpa source: endColumnIndex: 83441918 endRowIndex: -54929184 sheetId: -99698093 startColumnIndex: 55960587 startRowIndex: 29589725 valueLayout: HORIZONTAL values: - calculatedDisplayType: PIVOT_VALUE_CALCULATED_DISPLAY_TYPE_UNSPECIFIED dataSourceColumnReference: name: voluptate aute sed est formula: ea magna name: exercitation dolor nostrud sourceColumnOffset: 28932839 summarizeFunction: AVERAGE textFormatRuns: - format: bold: false fontFamily: dolore amet fontSize: -59186404 foregroundColor: alpha: -38260753.8953101 blue: -26016459.12195556 green: 28076583.314072415 red: -49318798.78195362 foregroundColorStyle: rgbColor: alpha: 20398281.252241373 blue: -30333863.965094432 green: 62649168.22003803 red: -6980421.350123793 themeColor: THEME_COLOR_TYPE_UNSPECIFIED italic: false link: uri: occaecat sint off strikethrough: false underline: false startIndex: 86802798 userEnteredFormat: backgroundColor: alpha: -13941733.798478767 blue: -93852981.35993141 green: -47070891.725780986 red: -43652909.35303472 backgroundColorStyle: rgbColor: alpha: 70966631.62099591 blue: -29805277.950492084 green: -77456372.67764382 red: 59496258.6402933 themeColor: ACCENT5 borders: bottom: color: alpha: -82158478.78145252 blue: 16187758.171744093 green: 79249241.8565813 red: 75847325.96031806 colorStyle: rgbColor: alpha: 69855758.18095735 blue: 52882364.40550181 green: 70679799.38751277 red: -90676402.84168737 themeColor: ACCENT2 style: DOUBLE width: -24467879 left: color: alpha: -670242.7981057018 blue: -28144294.590660527 green: 85367391.89141008 red: -59772456.6337996 colorStyle: rgbColor: alpha: 73174208.70163906 blue: -51593233.46351559 green: -91738296.57866271 red: -67187166.53719059 themeColor: TEXT style: SOLID width: 98050859 right: color: alpha: 43064252.352229625 blue: -18077382.68793276 green: 48158083.14423302 red: 38267802.06460324 colorStyle: rgbColor: alpha: -24701536.50229104 blue: -48790957.22883844 green: 66382424.55666119 red: 97508528.0795117 themeColor: ACCENT6 style: DOTTED width: -17658626 top: color: alpha: 80223858.81546459 blue: 96735786.16281638 green: -7866994.9663145095 red: -45336066.37330974 colorStyle: rgbColor: alpha: -36006339.130659536 blue: 62089372.90988302 green: 60287103.416385084 red: 84182384.5348978 themeColor: TEXT style: SOLID_MEDIUM width: -63713325 horizontalAlignment: CENTER hyperlinkDisplayType: PLAIN_TEXT numberFormat: pattern: ipsum in Lorem type: SCIENTIFIC padding: bottom: 96480784 left: 79250875 right: -11769952 top: 58101394 textDirection: TEXT_DIRECTION_UNSPECIFIED textFormat: bold: false fontFamily: dol fontSize: 60640055 foregroundColor: alpha: 39132394.90736896 blue: 18535179.13522546 green: 84198318.92835924 red: 35158967.872997135 foregroundColorStyle: rgbColor: alpha: -36869988.68760032 blue: 72940062.41818288 green: -18933022.28267175 red: 86902076.7026949 themeColor: LINK italic: true link: uri: ex ea anim officia elit strikethrough: true underline: true textRotation: angle: 10504684 vertical: true verticalAlignment: VERTICAL_ALIGN_UNSPECIFIED wrapStrategy: CLIP userEnteredValue: boolValue: true errorValue: message: pariatur aute officia type: NULL_VALUE formulaValue: culpa s numberValue: 41633161.727574974 stringValue: ex Excepteur dolor sheetId: -42239857 appendDimension: dimension: COLUMNS length: -58345383 sheetId: -33457851 autoFill: range: endColumnIndex: -58877595 endRowIndex: 61246331 sheetId: -5069171 startColumnIndex: 62778097 startRowIndex: 7476372 sourceAndDestination: dimension: COLUMNS fillLength: -91870916 source: endColumnIndex: 13124489 endRowIndex: 47106158 sheetId: -45003121 startColumnIndex: 48282592 startRowIndex: -86100098 useAlternateSeries: false autoResizeDimensions: dataSourceSheetDimensions: columnReferences: - name: sit aute sheetId: -44560536 dimensions: dimension: ROWS endIndex: 22177876 sheetId: 95228452 startIndex: 82496239 clearBasicFilter: sheetId: -61078859 copyPaste: destination: endColumnIndex: -53395750 endRowIndex: -61716765 sheetId: -16181770 startColumnIndex: -93520137 startRowIndex: -87119186 pasteOrientation: NORMAL pasteType: PASTE_DATA_VALIDATION source: endColumnIndex: 67270658 endRowIndex: -30674853 sheetId: 68067764 startColumnIndex: -19862228 startRowIndex: -5133648 createDeveloperMetadata: developerMetadata: location: dimensionRange: dimension: ROWS endIndex: 3771036 sheetId: -19826464 startIndex: -63257846 locationType: DEVELOPER_METADATA_LOCATION_TYPE_UNSPECIFIED sheetId: -69268140 spreadsheet: true metadataId: -97554412 metadataKey: velit in metadataValue: Duis reprehenderi visibility: DEVELOPER_METADATA_VISIBILITY_UNSPECIFIED cutPaste: destination: columnIndex: 29244844 rowIndex: 4799805 sheetId: 68085369 pasteType: PASTE_NORMAL source: endColumnIndex: -3747884 endRowIndex: -44521776 sheetId: -74060162 startColumnIndex: 44819116 startRowIndex: -59744440 deleteBanding: bandedRangeId: -39911918 deleteConditionalFormatRule: index: 70226729 sheetId: 59881899 deleteDataSource: dataSourceId: 'incididunt ' deleteDeveloperMetadata: dataFilter: a1Range: ex incididunt developerMetadataLookup: locationMatchingStrategy: EXACT_LOCATION locationType: SHEET metadataId: -79862907 metadataKey: Ut elit dolor metadataLocation: dimensionRange: dimension: DIMENSION_UNSPECIFIED endIndex: 48739671 sheetId: -43882706 startIndex: 975297 locationType: DEVELOPER_METADATA_LOCATION_TYPE_UNSPECIFIED sheetId: -68301028 spreadsheet: false metadataValue: anim ullamco ut visibility: DOCUMENT gridRange: endColumnIndex: 84787750 endRowIndex: 67436281 sheetId: -11002515 startColumnIndex: 20941797 startRowIndex: -44684885 deleteDimension: range: dimension: COLUMNS endIndex: -41818070 sheetId: -43507416 startIndex: -58388953 deleteDimensionGroup: range: dimension: DIMENSION_UNSPECIFIED endIndex: -67624457 sheetId: -1688921 startIndex: 73612448 deleteDuplicates: comparisonColumns: - dimension: DIMENSION_UNSPECIFIED endIndex: -3613017 sheetId: -2844930 startIndex: 27387937 range: endColumnIndex: -84372927 endRowIndex: -87444966 sheetId: 58151571 startColumnIndex: 30826551 startRowIndex: 3488662 deleteEmbeddedObject: objectId: 7898854 deleteFilterView: filterId: -27577015 deleteNamedRange: namedRangeId: fugiat non pariatur deleteProtectedRange: protectedRangeId: -22042976 deleteRange: range: endColumnIndex: 46879898 endRowIndex: -23933465 sheetId: -30719729 startColumnIndex: -54902298 startRowIndex: -28422281 shiftDimension: DIMENSION_UNSPECIFIED deleteSheet: sheetId: 84074075 duplicateFilterView: filterId: -94917685 duplicateSheet: insertSheetIndex: -79956410 newSheetId: -44700203 newSheetName: aute velit sourceSheetId: 12035244 findReplace: allSheets: true find: deserunt includeFormulas: false matchCase: false matchEntireCell: true range: endColumnIndex: 97326287 endRowIndex: -73047308 sheetId: -91133484 startColumnIndex: 56325024 startRowIndex: 70483231 replacement: eiusmod proident dolor searchByRegex: false sheetId: 78266312 insertDimension: inheritFromBefore: true range: dimension: COLUMNS endIndex: 78269371 sheetId: 78722214 startIndex: 44087292 insertRange: range: endColumnIndex: -42712722 endRowIndex: 56672935 sheetId: -3102200 startColumnIndex: 64368185 startRowIndex: 93527644 shiftDimension: DIMENSION_UNSPECIFIED mergeCells: mergeType: MERGE_ROWS range: endColumnIndex: 57579359 endRowIndex: 53277885 sheetId: -26073895 startColumnIndex: -15541236 startRowIndex: 32678826 moveDimension: destinationIndex: -84285690 source: dimension: DIMENSION_UNSPECIFIED endIndex: -7216462 sheetId: 76156814 startIndex: -54149157 pasteData: coordinate: columnIndex: -44127722 rowIndex: -25117477 sheetId: 74397466 data: dolore Duis incididunt exercitation delimiter: esse ipsum quis laboris est html: false type: PASTE_NO_BORDERS randomizeRange: range: endColumnIndex: 47073510 endRowIndex: -2361782 sheetId: -49601833 startColumnIndex: -84063194 startRowIndex: -34662842 refreshDataSource: dataSourceId: consequat velit laborum force: false isAll: false references: references: - chartId: 89595556 dataSourceFormulaCell: columnIndex: 9782114 rowIndex: 15332084 sheetId: -34941835 dataSourcePivotTableAnchorCell: columnIndex: 49203434 rowIndex: 87413905 sheetId: 52282904 dataSourceTableAnchorCell: columnIndex: -30868733 rowIndex: 77308931 sheetId: -20020589 sheetId: consectetur dolor voluptate cillum repeatCell: cell: dataSourceFormula: dataExecutionStatus: errorCode: TOO_MANY_CHARS_PER_CELL errorMessage: consectetur quis lastRefreshTime: dolor voluptate consectetur anim state: SUCCEEDED dataSourceId: laborum Excepteur ipsum tempor dataSourceTable: columnSelectionType: DATA_SOURCE_TABLE_COLUMN_SELECTION_TYPE_UNSPECIFIED columns: - name: nisi labore dataExecutionStatus: errorCode: PARAMETER_INVALID errorMessage: mollit lastRefreshTime: sunt anim nulla state: DATA_EXECUTION_STATE_UNSPECIFIED dataSourceId: consequat filterSpecs: - columnIndex: -82068848 dataSourceColumnReference: name: aute Lorem voluptate ipsum deserunt filterCriteria: condition: type: TEXT_EQ values: - relativeDate: RELATIVE_DATE_UNSPECIFIED userEnteredValue: pariatur nisi voluptate aliqua hiddenValues: - dolore visibleBackgroundColor: alpha: 44409411.214898705 blue: -33402753.99198571 green: -15967387.929001123 red: 53244136.3776733 visibleBackgroundColorStyle: rgbColor: alpha: 71457119.92893994 blue: 15168750.562665775 green: 88450885.50887433 red: 24901880.899277583 themeColor: ACCENT1 visibleForegroundColor: alpha: -29640188.59382844 blue: -27748984.70643352 green: -30875604.935351044 red: -36549647.11126905 visibleForegroundColorStyle: rgbColor: alpha: 19879618.58457248 blue: -53608440.895018995 green: 10206855.416861191 red: 68331115.62507224 themeColor: ACCENT5 rowLimit: 10378086 sortSpecs: - backgroundColor: alpha: 8487533.622345328 blue: -4112486.9633083194 green: 83501191.55640882 red: 32363581.894582525 backgroundColorStyle: rgbColor: alpha: -25264883.357606977 blue: 88526800.20004016 green: -2253521.213397354 red: -29562232.212087914 themeColor: ACCENT3 dataSourceColumnReference: name: non e dimensionIndex: -63573158 foregroundColor: alpha: 8539959.927481264 blue: 10163143.458689734 green: 22113654.96302195 red: -26857383.95215425 foregroundColorStyle: rgbColor: alpha: 182681.62095069885 blue: 99059035.5354847 green: 20987035.266701207 red: 32658525.27060984 themeColor: TEXT sortOrder: ASCENDING dataValidation: condition: type: DATE_NOT_EQ values: - relativeDate: PAST_YEAR userEnteredValue: eu inputMessage: c showCustomUi: false strict: false effectiveFormat: backgroundColor: alpha: 52196988.1674245 blue: 38722713.22653806 green: 18693098.90008512 red: -56923057.017407075 backgroundColorStyle: rgbColor: alpha: -36242708.5093072 blue: 96947536.7313315 green: -49821481.7747515 red: 27650017.296556234 themeColor: ACCENT3 borders: bottom: color: alpha: 32500768.79442902 blue: 92724087.38583931 green: 52799993.04826325 red: -54035765.61848071 colorStyle: rgbColor: alpha: -58890609.7593207 blue: -66867056.7743523 green: -50478926.01682462 red: -13600662.56554085 themeColor: ACCENT3 style: SOLID width: -177483 left: color: alpha: 78556526.71015373 blue: 45389276.5978252 green: -15873005.542732969 red: 98218158.3025473 colorStyle: rgbColor: alpha: -66695818.35794047 blue: -24865781.732432038 green: 77142224.97287512 red: 55620253.043097645 themeColor: LINK style: DOUBLE width: 10131728 right: color: alpha: 15513154.459412217 blue: 44891769.26408532 green: -71513539.37233189 red: 84904134.20335728 colorStyle: rgbColor: alpha: 72116293.6490885 blue: 56895221.041192144 green: 86701403.78552222 red: -82612984.83188918 themeColor: ACCENT1 style: SOLID_MEDIUM width: 88643181 top: color: alpha: 28474095.152980447 blue: 26171563.41789028 green: -85215524.2972731 red: -7099170.589315042 colorStyle: rgbColor: alpha: -62783374.87577428 blue: -94848785.42984201 green: 66918601.858246684 red: -4322776.114713505 themeColor: ACCENT2 style: DOTTED width: -47063603 horizontalAlignment: LEFT hyperlinkDisplayType: PLAIN_TEXT numberFormat: pattern: ea type: NUMBER padding: bottom: 12689576 left: -33945746 right: -71339584 top: 777599 textDirection: RIGHT_TO_LEFT textFormat: bold: false fontFamily: reprehenderit velit fontSize: 46444260 foregroundColor: alpha: 31462724.011977136 blue: -47309558.565462686 green: -85805500.46478672 red: 97736719.64737752 foregroundColorStyle: rgbColor: alpha: 52618372.39870882 blue: -13812510.704866067 green: -94483066.34952965 red: 639313.9968470186 themeColor: ACCENT1 italic: true link: uri: incididunt velit irure pariatur strikethrough: true underline: false textRotation: angle: 92945241 vertical: true verticalAlignment: TOP wrapStrategy: WRAP effectiveValue: boolValue: true errorValue: message: velit anim type: N_A formulaValue: 'laboris ' numberValue: -36398303.15028516 stringValue: occaecat velit formattedValue: inc hyperlink: magna in sint note: ex est pivotTable: columns: - dataSourceColumnReference: name: nostrud reprehenderit ullamco adipisicing groupLimit: applyOrder: -86851478 countLimit: -12169796 groupRule: dateTimeRule: type: MONTH histogramRule: end: -56333378.79268945 interval: 20098252.59856303 start: -41094897.04677682 manualRule: groups: - groupName: boolValue: true errorValue: message: dolor labore quis incididunt laboris type: LOADING formulaValue: Duis dolore exercitation numberValue: 53425892.236581504 stringValue: nulla consectetur in items: - boolValue: false errorValue: message: ex proident in officia type: NAME formulaValue: deserunt dolore tempor numberValue: 34923060.68202916 stringValue: proident cupidatat label: qui Excepteur ut repeatHeadings: false showTotals: true sortOrder: ASCENDING sourceColumnOffset: -47624040 valueBucket: buckets: - boolValue: true errorValue: message: dolore sed do tempor type: DIVIDE_BY_ZERO formulaValue: anim adipisicing laborum sed numberValue: 55630892.202661365 stringValue: ex velit consequat valuesIndex: -90278651 valueMetadata: - collapsed: false value: boolValue: false errorValue: message: ex type: DIVIDE_BY_ZERO formulaValue: sed dolor pariatur occaecat numberValue: 34037708.49753469 stringValue: ut est non nostrud criteria: cupidatat_060: condition: type: NUMBER_NOT_BETWEEN values: - relativeDate: RELATIVE_DATE_UNSPECIFIED userEnteredValue: tempor occaecat Duis qui do visibleByDefault: false visibleValues: - in est_5: condition: type: TEXT_IS_EMAIL values: - relativeDate: RELATIVE_DATE_UNSPECIFIED userEnteredValue: sit visibleByDefault: true visibleValues: - laborum aute dolor_bd5: condition: type: NUMBER_GREATER values: - relativeDate: RELATIVE_DATE_UNSPECIFIED userEnteredValue: ullamco sed cillum aliqua culpa visibleByDefault: true visibleValues: - commodo dolore dataExecutionStatus: errorCode: OBJECT_SPEC_INVALID errorMessage: reprehenderit lastRefreshTime: deserunt labore state: FAILED dataSourceId: aliquip filterSpecs: - columnOffsetIndex: 64372105 dataSourceColumnReference: name: dolore consectetur proident eu filterCriteria: condition: type: TEXT_IS_URL values: - relativeDate: RELATIVE_DATE_UNSPECIFIED userEnteredValue: consectet visibleByDefault: false visibleValues: - occaecat sit rows: - dataSourceColumnReference: name: velit labore voluptate groupLimit: applyOrder: -79255127 countLimit: -67139752 groupRule: dateTimeRule: type: YEAR_MONTH histogramRule: end: 4338437.430739537 interval: 93905634.00934505 start: 22323378.802748322 manualRule: groups: - groupName: boolValue: true errorValue: message: dolore fugiat type: NAME formulaValue: anim numberValue: 39726644.45278159 stringValue: mollit dolor sunt items: - boolValue: true errorValue: message: dolor nostrud adipisicing exercitation nisi type: ERROR_TYPE_UNSPECIFIED formulaValue: minim dolor ex proident numberValue: -64877486.43745452 stringValue: ipsum ad elit ea label: cillum in ad enim repeatHeadings: true showTotals: false sortOrder: DESCENDING sourceColumnOffset: 14431216 valueBucket: buckets: - boolValue: false errorValue: message: fug type: ERROR formulaValue: non cupidatat numberValue: -69684786.57180354 stringValue: occaecat aute dolor tempor valuesIndex: 60765535 valueMetadata: - collapsed: false value: boolValue: true errorValue: message: qui ex Ut elit type: VALUE formulaValue: aliquip numberValue: -31747503.91511552 stringValue: aliqua nostrud anim do source: endColumnIndex: -10571321 endRowIndex: -41154846 sheetId: -74531530 startColumnIndex: 65893774 startRowIndex: -72373665 valueLayout: HORIZONTAL values: - calculatedDisplayType: PERCENT_OF_ROW_TOTAL dataSourceColumnReference: name: dolor exercitation formula: pariatur fugiat esse amet name: Duis aute labore sourceColumnOffset: 65406309 summarizeFunction: PRODUCT textFormatRuns: - format: bold: false fontFamily: laborum nulla fontSize: -47159093 foregroundColor: alpha: 61153852.29472157 blue: 91195511.31268632 green: -69589771.28706843 red: 21981599.23315312 foregroundColorStyle: rgbColor: alpha: -15778238.079958841 blue: -68501126.82371941 green: 38092918.228194475 red: 26663959.499205396 themeColor: ACCENT5 italic: false link: uri: minim labore id aliquip strikethrough: true underline: false startIndex: 78119977 userEnteredFormat: backgroundColor: alpha: -91560832.42822999 blue: -54342500.678868435 green: -66397699.31197508 red: 74990963.83127871 backgroundColorStyle: rgbColor: alpha: -39817410.01498813 blue: -15212311.300888896 green: 86532125.69837856 red: -45038833.89103698 themeColor: ACCENT4 borders: bottom: color: alpha: -16378774.035174713 blue: 29888774.440915495 green: 11418640.582215339 red: -15096067.140549555 colorStyle: rgbColor: alpha: -98296916.3459455 blue: -78872482.5638492 green: -13510183.114739284 red: -20378780.933285028 themeColor: ACCENT1 style: SOLID_MEDIUM width: -72316271 left: color: alpha: -85385482.13431403 blue: -30608413.308576003 green: -51226614.463157505 red: 57376087.71952489 colorStyle: rgbColor: alpha: -20663950.593185022 blue: 11170956.912445933 green: -59919892.051782094 red: -64364366.54491966 themeColor: LINK style: SOLID_MEDIUM width: 61526380 right: color: alpha: -64498878.45123064 blue: 5136524.518400967 green: 11633490.933061585 red: -55171694.699902795 colorStyle: rgbColor: alpha: -52914221.25193588 blue: -92186632.57082525 green: -80463006.69333455 red: 28235887.47100696 themeColor: ACCENT2 style: NONE width: -52341234 top: color: alpha: 51151609.69536069 blue: -88671449.04490423 green: -56168078.88343192 red: 52020668.0705367 colorStyle: rgbColor: alpha: -41415579.00354194 blue: 44707444.358851016 green: 24587664.115148127 red: 97132372.39844003 themeColor: ACCENT4 style: STYLE_UNSPECIFIED width: 26037058 horizontalAlignment: CENTER hyperlinkDisplayType: PLAIN_TEXT numberFormat: pattern: magna fugiat pariatur incididunt type: DATE_TIME padding: bottom: -14469659 left: 44710605 right: 99630110 top: -4571468 textDirection: LEFT_TO_RIGHT textFormat: bold: true fontFamily: occaecat elit fontSize: 92475395 foregroundColor: alpha: -35924083.66831528 blue: -23873270.644337863 green: 51171707.050572604 red: -19823405.998741925 foregroundColorStyle: rgbColor: alpha: -75631870.51613723 blue: -11881939.911777288 green: 96901734.27985585 red: 23336894.296681926 themeColor: ACCENT3 italic: false link: uri: culpa cillum strikethrough: true underline: true textRotation: angle: -25269730 vertical: false verticalAlignment: MIDDLE wrapStrategy: CLIP userEnteredValue: boolValue: true errorValue: message: laboris dolor et type: ERROR formulaValue: reprehenderit numberValue: -85077553.91243234 stringValue: cillum aliqua sit veniam proident fields: culpa ex range: endColumnIndex: -47402632 endRowIndex: -49439712 sheetId: 17213530 startColumnIndex: -42707323 startRowIndex: -83559910 setBasicFilter: filter: criteria: aliqua1: condition: type: DATE_AFTER values: - relativeDate: TOMORROW userEnteredValue: voluptate hiddenValues: - sit laborum minim culpa dolore visibleBackgroundColor: alpha: 22274750.80556874 blue: 45689764.073245466 green: 37386371.46026781 red: 52083332.61054495 visibleBackgroundColorStyle: rgbColor: alpha: 78163547.33014604 blue: -79203937.51970565 green: -37958163.6298405 red: 92617303.56625208 themeColor: ACCENT5 visibleForegroundColor: alpha: 96029672.23844874 blue: -55171904.70764941 green: -12788646.192367986 red: 54350630.28845292 visibleForegroundColorStyle: rgbColor: alpha: 48551552.1573804 blue: -78119767.33817309 green: 40516125.13536537 red: -45841709.47605477 themeColor: ACCENT3 filterSpecs: - columnIndex: 88589979 dataSourceColumnReference: name: 'eiusmod ' filterCriteria: condition: type: NUMBER_GREATER values: - relativeDate: RELATIVE_DATE_UNSPECIFIED userEnteredValue: est Duis labore hiddenValues: - cupidatat Excepteur exercitation do visibleBackgroundColor: alpha: -17830367.38684109 blue: -47754719.37180784 green: -93780435.23414345 red: 48141019.55383235 visibleBackgroundColorStyle: rgbColor: alpha: -78906650.06174871 blue: -46495244.17241273 green: -98976497.28199789 red: -54854802.484207 themeColor: BACKGROUND visibleForegroundColor: alpha: 60136049.92573044 blue: -98303681.69882804 green: 3048342.8754327 red: -80515157.53252798 visibleForegroundColorStyle: rgbColor: alpha: -8496725.410581037 blue: 32948020.997711465 green: 75419380.59776264 red: 8026930.244567245 themeColor: ACCENT5 range: endColumnIndex: 2516302 endRowIndex: 40487202 sheetId: -95307726 startColumnIndex: 28079169 startRowIndex: -92211530 sortSpecs: - backgroundColor: alpha: 7213992.792022198 blue: 85916851.88085365 green: -72542335.83029887 red: 64939214.5477846 backgroundColorStyle: rgbColor: alpha: 18795363.34850566 blue: -77416167.38142142 green: -41184510.11171836 red: 47116731.82847583 themeColor: ACCENT3 dataSourceColumnReference: name: l dimensionIndex: 20241193 foregroundColor: alpha: -53168130.76022222 blue: 43573262.848961204 green: 51098372.73435217 red: 75770221.49259615 foregroundColorStyle: rgbColor: alpha: 97224195.59869513 blue: -80448281.61969098 green: 18879465.86295794 red: -16759965.032727167 themeColor: BACKGROUND sortOrder: ASCENDING setDataValidation: range: endColumnIndex: 18317732 endRowIndex: -23174869 sheetId: -89352027 startColumnIndex: -7449692 startRowIndex: 93555474 rule: condition: type: DATE_BEFORE values: - relativeDate: YESTERDAY userEnteredValue: reprehenderit in culpa inputMessage: venia showCustomUi: false strict: false sortRange: range: endColumnIndex: 63607656 endRowIndex: -32578395 sheetId: 85684420 startColumnIndex: 88217028 startRowIndex: -86280140 sortSpecs: - backgroundColor: alpha: -8227856.301591665 blue: 24568175.413588643 green: -43731912.59641751 red: -30891753.86781968 backgroundColorStyle: rgbColor: alpha: -23843826.900139928 blue: -73131272.19372784 green: 56707238.42998472 red: 55344376.30355865 themeColor: ACCENT6 dataSourceColumnReference: name: enim laboris nulla dimensionIndex: 7422108 foregroundColor: alpha: 90720563.30774948 blue: 23397928.910291597 green: 42047681.762815535 red: 20524926.53556928 foregroundColorStyle: rgbColor: alpha: 71537402.379673 blue: -7537067.055189088 green: -68430336.47285286 red: -50236304.51563155 themeColor: THEME_COLOR_TYPE_UNSPECIFIED sortOrder: DESCENDING textToColumns: delimiter: irure velit delimiterType: CUSTOM source: endColumnIndex: -71089236 endRowIndex: -305169 sheetId: -62215714 startColumnIndex: 59945414 startRowIndex: -70252160 trimWhitespace: range: endColumnIndex: 76235215 endRowIndex: 11433855 sheetId: 8414810 startColumnIndex: -50186951 startRowIndex: 41020164 unmergeCells: range: endColumnIndex: 80109370 endRowIndex: -54804532 sheetId: -25059974 startColumnIndex: -45195489 startRowIndex: 34779369 updateBanding: bandedRange: bandedRangeId: 91863178 columnProperties: firstBandColor: alpha: 59348248.48086092 blue: -15380705.82583408 green: 25260477.818337843 red: 88489934.10208088 firstBandColorStyle: rgbColor: alpha: 7212924.3960939795 blue: -52123387.27303818 green: 55662452.52221212 red: 48643151.5694291 themeColor: LINK footerColor: alpha: -39702633.77905825 blue: 65384260.32677299 green: 78910988.14288834 red: 43576091.28090933 footerColorStyle: rgbColor: alpha: -52663918.84460861 blue: -10058379.055658758 green: -74449522.8432683 red: 61656183.86466867 themeColor: ACCENT4 headerColor: alpha: -19699884.942480102 blue: -97744098.3577253 green: -61784304.965913296 red: 59183700.86228132 headerColorStyle: rgbColor: alpha: -66486746.99760706 blue: -4338211.775703549 green: -73065039.98042291 red: -27427243.570080638 themeColor: ACCENT5 secondBandColor: alpha: 41628165.097570956 blue: 81084247.52527702 green: 85677513.87683639 red: -95789617.90114087 secondBandColorStyle: rgbColor: alpha: -24829381.584337234 blue: -54675510.05262958 green: 87894709.64192453 red: 77661395.02805641 themeColor: THEME_COLOR_TYPE_UNSPECIFIED range: endColumnIndex: 56729485 endRowIndex: -89723084 sheetId: 47498024 startColumnIndex: -25691057 startRowIndex: -64039915 rowProperties: firstBandColor: alpha: -96842738.06135608 blue: -34504390.945174545 green: 58836256.936054885 red: -32406597.65410298 firstBandColorStyle: rgbColor: alpha: 9537826.776931271 blue: -13564212.337570414 green: -32562696.70646459 red: -5296607.267697558 themeColor: ACCENT1 footerColor: alpha: 96162620.82551637 blue: 81252940.262876 green: 82256484.5754154 red: 93469677.15120518 footerColorStyle: rgbColor: alpha: 74426312.42523423 blue: -67953373.56255735 green: 73113638.27141708 red: -24515435.07031402 themeColor: BACKGROUND headerColor: alpha: 25996385.75321497 blue: 91552111.24494648 green: -75359856.78111841 red: 75371521.94154131 headerColorStyle: rgbColor: alpha: 57915309.729604155 blue: -34385296.52215152 green: -56826213.90902236 red: 64370371.21231434 themeColor: LINK secondBandColor: alpha: -85354369.55478927 blue: 5420221.825720921 green: -61325236.83856719 red: -24620582.524540156 secondBandColorStyle: rgbColor: alpha: 21478344.8586033 blue: -82159339.27628228 green: 34372316.81366944 red: -88901640.12430897 themeColor: LINK fields: qui deserunt Excepteur nisi in updateBorders: bottom: color: alpha: 20895808.0981493 blue: -76099622.10950543 green: -11009626.745909482 red: 3263680.8038620055 colorStyle: rgbColor: alpha: 75054733.56375444 blue: -65905833.72562633 green: 20641207.50247787 red: -17031608.174264923 themeColor: ACCENT4 style: DASHED width: 51002332 innerHorizontal: color: alpha: -41298431.80086219 blue: -37458150.6425748 green: 80204886.08067346 red: -68620960.89407595 colorStyle: rgbColor: alpha: 56104417.820574164 blue: -81983222.05238555 green: 60579095.08127025 red: -80270141.78552374 themeColor: ACCENT3 style: SOLID_MEDIUM width: -77362270 innerVertical: color: alpha: -11201437.552749291 blue: -78330649.40001129 green: -72234330.91417117 red: -9963652.797598496 colorStyle: rgbColor: alpha: -32524312.078829125 blue: 58265874.02636844 green: -45420251.18887625 red: 36581313.44228092 themeColor: ACCENT5 style: DOUBLE width: 20518468 left: color: alpha: 31016427.899778202 blue: -17810065.1748852 green: -90328973.25018294 red: -72690504.96293676 colorStyle: rgbColor: alpha: -44954638.18805354 blue: -29594133.97087705 green: -28852968.35413471 red: 6297762.328428596 themeColor: ACCENT3 style: DOUBLE width: 46195978 range: endColumnIndex: -37721013 endRowIndex: -42527870 sheetId: -73691818 startColumnIndex: 78475384 startRowIndex: -89504309 right: color: alpha: -87492710.04562393 blue: -7857066.211041138 green: -47010438.64942429 red: -83501758.25122195 colorStyle: rgbColor: alpha: 29866305.15021646 blue: 44390752.9171173 green: -58327412.66503194 red: 23433863.916713446 themeColor: BACKGROUND style: SOLID_THICK width: 11660666 top: color: alpha: 38565086.26666924 blue: -48405746.88708737 green: 22317129.850532383 red: 11991610.999127239 colorStyle: rgbColor: alpha: 98935619.03279209 blue: -61539765.30130665 green: 86113371.18368629 red: 87274796.871532 themeColor: ACCENT3 style: STYLE_UNSPECIFIED width: 84012056 updateCells: fields: ullamco range: endColumnIndex: -32179080 endRowIndex: 93645060 sheetId: 23779502 startColumnIndex: -28987766 startRowIndex: 12952055 rows: - values: - dataSourceFormula: dataExecutionStatus: errorCode: OTHER errorMessage: aliquip culpa cupidatat lastRefreshTime: minim aliquip quis state: NOT_STARTED dataSourceId: consequat anim reprehenderit dataSourceTable: columnSelectionType: SELECTED columns: - name: consectetur pariatur dolor voluptate dataExecutionStatus: errorCode: TOO_MANY_CHARS_PER_CELL errorMessage: qui labore ipsum lastRefreshTime: cupidatat ipsum dolor state: FAILED dataSourceId: consequat filterSpecs: - columnIndex: -94699119 dataSourceColumnReference: name: anim eu filterCriteria: condition: type: TEXT_CONTAINS values: - relativeDate: PAST_WEEK userEnteredValue: irure voluptate hiddenValues: - Ut visibleBackgroundColor: alpha: -3235698.4754820466 blue: 46913282.64160296 green: 24517842.04615 red: -93869856.97521561 visibleBackgroundColorStyle: rgbColor: alpha: -86951126.06097016 blue: 73944951.12742764 green: -1932485.8865207583 red: 48498006.48102942 themeColor: ACCENT5 visibleForegroundColor: alpha: 74961564.99455133 blue: 15111888.776842669 green: 28068785.249410316 red: 17727408.480157524 visibleForegroundColorStyle: rgbColor: alpha: 77151714.04221964 blue: -10080501.337342486 green: -12858713.287345484 red: -88223400.0009412 themeColor: LINK rowLimit: -77722640 sortSpecs: - backgroundColor: alpha: -2906613.2478229553 blue: -30685669.622812867 green: 94987239.08154395 red: -92558006.44028346 backgroundColorStyle: rgbColor: alpha: -15035050.222793296 blue: -7547273.766824961 green: -33699069.48501789 red: -23065249.103005096 themeColor: ACCENT2 dataSourceColumnReference: name: qui labore dimensionIndex: 32499227 foregroundColor: alpha: -95263723.50173138 blue: -52681799.598076664 green: -19214647.87248555 red: 16803743.240329444 foregroundColorStyle: rgbColor: alpha: -26038850.66207385 blue: -22736609.56215799 green: 66177308.34416786 red: -36094057.276209444 themeColor: ACCENT6 sortOrder: ASCENDING dataValidation: condition: type: DATE_ON_OR_BEFORE values: - relativeDate: PAST_WEEK userEnteredValue: 'sit id ' inputMessage: non dolore Duis proident showCustomUi: false strict: true effectiveFormat: backgroundColor: alpha: 91665281.84357649 blue: 49806173.72775102 green: 29441692.395365402 red: -69793504.02995199 backgroundColorStyle: rgbColor: alpha: 69762723.4141852 blue: -32791342.58415231 green: -81167170.99445072 red: 15770160.979582965 themeColor: LINK borders: bottom: color: alpha: -92343510.38528179 blue: -31543442.266875222 green: 61905614.491788656 red: -45884737.80831253 colorStyle: rgbColor: alpha: 7990201.210351527 blue: 757830.429209426 green: 15931779.059901834 red: -98604526.64365984 themeColor: ACCENT3 style: SOLID_MEDIUM width: -59281145 left: color: alpha: -21909155.30309318 blue: 96626094.74944058 green: 42588664.52764583 red: 17606973.38477871 colorStyle: rgbColor: alpha: -93858743.26419872 blue: 56300346.47118193 green: -82946358.71393327 red: 55781035.698414385 themeColor: ACCENT3 style: DOTTED width: 82513021 right: color: alpha: 10917544.70839201 blue: 90591686.20847881 green: -79915996.27564794 red: -62964423.19459899 colorStyle: rgbColor: alpha: -95457078.95402002 blue: -73576278.3895058 green: 26229019.912147626 red: -33632738.39919519 themeColor: TEXT style: DOUBLE width: 23836160 top: color: alpha: 75407245.45534614 blue: 99866922.80711168 green: 40470706.07486555 red: 82425649.5176487 colorStyle: rgbColor: alpha: -83889578.38437912 blue: -85739768.95955373 green: 39453330.61118385 red: 94174548.66320804 themeColor: BACKGROUND style: DOTTED width: -80094321 horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED hyperlinkDisplayType: PLAIN_TEXT numberFormat: pattern: do voluptate velit cillum adipisicing type: PERCENT padding: bottom: 16766450 left: -28202845 right: 31329575 top: 88413567 textDirection: TEXT_DIRECTION_UNSPECIFIED textFormat: bold: true fontFamily: voluptate fontSize: 12476682 foregroundColor: alpha: 61827521.919970214 blue: 92542679.6734756 green: 85391658.70276958 red: 77084065.21108097 foregroundColorStyle: rgbColor: alpha: 35379197.62653154 blue: -49263731.09697102 green: 50803056.60106829 red: -85121619.53215078 themeColor: ACCENT1 italic: false link: uri: ipsum pariatur incididunt strikethrough: false underline: false textRotation: angle: -40776685 vertical: true verticalAlignment: MIDDLE wrapStrategy: WRAP effectiveValue: boolValue: false errorValue: message: nulla consequat type: ERROR formulaValue: Ut exercitation Excepteur tempor numberValue: 2188924.7940896153 stringValue: minim formattedValue: velit cupidatat non hyperlink: fugiat consectetur note: Ut pivotTable: columns: - dataSourceColumnReference: name: in proident Ut dolore ex groupLimit: applyOrder: 76861358 countLimit: 23890524 groupRule: dateTimeRule: type: HOUR_MINUTE histogramRule: end: -98510511.43465365 interval: -35533422.51733884 start: 63508201.31965533 manualRule: groups: - groupName: boolValue: false errorValue: message: dolor Lorem type: LOADING formulaValue: reprehenderit labore numberValue: 8264410.242233783 stringValue: pariatur ad in items: - boolValue: false errorValue: message: aute ut type: NAME formulaValue: enim deserunt numberValue: 8713046.565912873 stringValue: quis cillum aliquip label: cupidatat ut repeatHeadings: true showTotals: true sortOrder: ASCENDING sourceColumnOffset: 44826644 valueBucket: buckets: - boolValue: true errorValue: message: 'et qui ' type: ERROR formulaValue: sint numberValue: -85325007.48000693 stringValue: culpa valuesIndex: 40103326 valueMetadata: - collapsed: false value: boolValue: true errorValue: message: tempor consequat Ut type: DIVIDE_BY_ZERO formulaValue: eiusmod reprehenderit enim dolore nostrud numberValue: 48476058.52737212 stringValue: reprehenderit Excepteur adipisicing criteria: exercitationff1: condition: type: ONE_OF_RANGE values: - relativeDate: TODAY userEnteredValue: ea visibleByDefault: true visibleValues: - dolore labore nostrud laborum dataExecutionStatus: errorCode: TIMED_OUT errorMessage: consequat veniam lastRefreshTime: Ut Duis adipisicing est state: NOT_STARTED dataSourceId: id Duis reprehenderit filterSpecs: - columnOffsetIndex: 90371155 dataSourceColumnReference: name: aliqua filterCriteria: condition: type: BLANK values: - relativeDate: RELATIVE_DATE_UNSPECIFIED userEnteredValue: ipsum labore et ex visibleByDefault: false visibleValues: - non dolor irure reprehenderit rows: - dataSourceColumnReference: name: non deserunt groupLimit: applyOrder: -65470338 countLimit: 47031079 groupRule: dateTimeRule: type: MONTH histogramRule: end: 74512947.67106229 interval: 80890564.36444232 start: 37675585.17967439 manualRule: groups: - groupName: boolValue: false errorValue: message: dolor ex ullamco type: NULL_VALUE formulaValue: culpa est numberValue: -9909221.662552297 stringValue: 'ullamco mollit ' items: - boolValue: false errorValue: message: culpa dolor eiusmod type: LOADING formulaValue: in tempor numberValue: -76872750.85212031 stringValue: do elit ipsum dolor exercit label: dolor ipsum repeatHeadings: false showTotals: false sortOrder: DESCENDING sourceColumnOffset: 93935944 valueBucket: buckets: - boolValue: false errorValue: message: exercitation fugiat laboris adipisicing type: ERROR formulaValue: consectetur cillum numberValue: 77264288.58070683 stringValue: adipisicing sint esse valuesIndex: 10521183 valueMetadata: - collapsed: true value: boolValue: false errorValue: message: 'consequat ' type: ERROR formulaValue: veniam consequat ad tempor dolor numberValue: 63619652.18692142 stringValue: laborum fugiat consequat source: endColumnIndex: -25222194 endRowIndex: 1879607 sheetId: -3456661 startColumnIndex: 29538041 startRowIndex: -41232849 valueLayout: HORIZONTAL values: - calculatedDisplayType: PERCENT_OF_COLUMN_TOTAL dataSourceColumnReference: name: venia formula: dolore name: irure occaecat cillum laborum sourceColumnOffset: -72893389 summarizeFunction: MEDIAN textFormatRuns: - format: bold: false fontFamily: Excepteur fontSize: -59991519 foregroundColor: alpha: -42978863.608940944 blue: 63314683.64873099 green: 35168750.65446997 red: -10801735.743368283 foregroundColorStyle: rgbColor: alpha: -43080823.10502086 blue: -34074638.72995127 green: 27433484.6319416 red: -19426350.728569597 themeColor: BACKGROUND italic: true link: uri: et reprehenderit anim irure strikethrough: false underline: true startIndex: 99351641 userEnteredFormat: backgroundColor: alpha: -17483626.811418995 blue: -51919325.713466115 green: -55128290.75962467 red: 35604870.74627447 backgroundColorStyle: rgbColor: alpha: -49291575.62429105 blue: -91170623.0836054 green: -62673584.79496958 red: -69781081.7284458 themeColor: ACCENT1 borders: bottom: color: alpha: -92405837.33017069 blue: -80273377.91970867 green: 55524305.78196207 red: 39957522.98567292 colorStyle: rgbColor: alpha: 75667708.36391687 blue: -22609930.540739283 green: 64916036.9114275 red: -84229496.51396334 themeColor: LINK style: DOTTED width: -80194457 left: color: alpha: 94277487.68022504 blue: -94209152.76555015 green: 4309253.670401424 red: 62141018.52128181 colorStyle: rgbColor: alpha: 50248060.69189447 blue: 82938089.35357511 green: 68293688.22488773 red: 30060464.47863722 themeColor: BACKGROUND style: SOLID width: -44214981 right: color: alpha: 19306541.834672153 blue: -37706111.8211679 green: 60931907.18828386 red: 76412564.48437437 colorStyle: rgbColor: alpha: -55740339.897301495 blue: 8210339.233759806 green: -95024687.21961561 red: 50851149.90961635 themeColor: BACKGROUND style: DASHED width: 28873347 top: color: alpha: 40023202.07316452 blue: -53639277.343408324 green: 53342363.6715368 red: 61052256.59473449 colorStyle: rgbColor: alpha: 3754700.0863782763 blue: -69957227.6405446 green: -71837267.6911729 red: 56561823.11212236 themeColor: ACCENT2 style: NONE width: 11822903 horizontalAlignment: LEFT hyperlinkDisplayType: LINKED numberFormat: pattern: est id fugi type: TIME padding: bottom: 34215584 left: 3792937 right: 5955265 top: 59765284 textDirection: TEXT_DIRECTION_UNSPECIFIED textFormat: bold: false fontFamily: Excepteur adipisicing ullamco veniam et fontSize: -90319307 foregroundColor: alpha: -71127197.549094 blue: -35508093.58400526 green: -44446263.68822782 red: 26325296.077880815 foregroundColorStyle: rgbColor: alpha: 32237751.95278597 blue: 33756948.44935842 green: -82257882.0868423 red: 45188990.31434178 themeColor: ACCENT3 italic: true link: uri: nostrud strikethrough: true underline: true textRotation: angle: -29326520 vertical: false verticalAlignment: MIDDLE wrapStrategy: WRAP_STRATEGY_UNSPECIFIED userEnteredValue: boolValue: true errorValue: message: in type: N_A formulaValue: tempor consectetur Lorem numberValue: -13737721.004786476 stringValue: dolore start: columnIndex: -38795214 rowIndex: 65871030 sheetId: -56372035 updateChartSpec: chartId: 29057968 spec: altText: 'laboris officia in quis ' backgroundColor: alpha: -67719298.44779137 blue: 30371386.38624622 green: 34616586.78098369 red: 14990281.81224586 backgroundColorStyle: rgbColor: alpha: -90797144.21415748 blue: -80529180.37206066 green: -27928312.463725075 red: -59178157.2685512 themeColor: ACCENT3 basicChart: axis: - format: bold: true fontFamily: laborum velit eiusmod deserunt irure fontSize: -21161994 foregroundColor: alpha: 14028490.925359488 blue: -4960087.324908584 green: -58941944.876083285 red: 35738859.76766956 foregroundColorStyle: rgbColor: alpha: -7801214.838426456 blue: 88210345.73350802 green: 92721240.39982742 red: 88509957.00308064 themeColor: LINK italic: true link: uri: 'ad ut ' strikethrough: false underline: false position: BASIC_CHART_AXIS_POSITION_UNSPECIFIED title: in quis sint irure titleTextPosition: horizontalAlignment: LEFT viewWindowOptions: viewWindowMax: 9891761.16485408 viewWindowMin: 93019359.37531054 viewWindowMode: PRETTY chartType: AREA compareMode: CATEGORY domains: - domain: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: Lorem amet groupRule: dateTimeRule: type: DAY_MONTH histogramRule: intervalSize: -44052792.729837 maxValue: -48197010.64185229 minValue: 93452516.10522726 sourceRange: sources: - endColumnIndex: -96915148 endRowIndex: 70040527 sheetId: -35593485 startColumnIndex: 73075178 startRowIndex: 44226521 reversed: true headerCount: -2561468 interpolateNulls: false legendPosition: LEFT_LEGEND lineSmoothing: false series: - color: alpha: 47426384.13167092 blue: 960596.9446998388 green: -11854752.475658432 red: -19986018.985051677 colorStyle: rgbColor: alpha: 98539646.56801128 blue: -86090594.05777794 green: 14529134.140786499 red: 99869213.76951417 themeColor: ACCENT4 dataLabel: customLabelData: aggregateType: COUNT columnReference: name: officia groupRule: dateTimeRule: type: HOUR_MINUTE_AMPM histogramRule: intervalSize: -79197999.72514991 maxValue: 69639368.64089245 minValue: -38730115.21174132 sourceRange: sources: - endColumnIndex: -46284573 endRowIndex: -40463024 sheetId: -34356098 startColumnIndex: -29940729 startRowIndex: 68535899 placement: LEFT textFormat: bold: false fontFamily: esse fugiat mollit sint fontSize: 9243565 foregroundColor: alpha: 18324148.413714886 blue: 58483585.59556538 green: -67359953.3684751 red: 48225637.24262926 foregroundColorStyle: rgbColor: alpha: 37710698.82136276 blue: -27769220.312235728 green: -71488495.81044322 red: -91021146.83403832 themeColor: ACCENT6 italic: false link: uri: esse velit strikethrough: false underline: true type: DATA lineStyle: type: SOLID width: -54797903 pointStyle: shape: TRIANGLE size: -64566399.56404588 series: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: anim est Excepteur groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: -1709282.0833874494 maxValue: 39492608.08744541 minValue: 82952430.7074053 sourceRange: sources: - endColumnIndex: -27304178 endRowIndex: 98748719 sheetId: -97070416 startColumnIndex: -39415755 startRowIndex: 81304279 styleOverrides: - color: alpha: -64936330.0535279 blue: -88438254.2264456 green: 98831643.1403422 red: 89202544.70080295 colorStyle: rgbColor: alpha: -73710985.74051222 blue: 37622407.53697914 green: 71244755.42817238 red: -14042562.456825271 themeColor: ACCENT6 index: -98541328 pointStyle: shape: DIAMOND size: -98585308.67682585 targetAxis: LEFT_AXIS type: LINE stackedType: BASIC_CHART_STACKED_TYPE_UNSPECIFIED threeDimensional: true totalDataLabel: customLabelData: aggregateType: MAX columnReference: name: minim do groupRule: dateTimeRule: type: DAY_MONTH histogramRule: intervalSize: 62087592.21354318 maxValue: -38517468.93187085 minValue: 62263013.086282104 sourceRange: sources: - endColumnIndex: 39619581 endRowIndex: -939429 sheetId: -45290426 startColumnIndex: -31599867 startRowIndex: 94909499 placement: ABOVE textFormat: bold: false fontFamily: amet mollit fontSize: -29915860 foregroundColor: alpha: -76319023.68943866 blue: -99862272.87672809 green: 95611303.35213566 red: 6888472.740452126 foregroundColorStyle: rgbColor: alpha: -58048298.35322489 blue: -6878202.604028955 green: 45413132.77507436 red: 6694685.540895045 themeColor: ACCENT4 italic: false link: uri: dolor cupidata strikethrough: true underline: true type: DATA_LABEL_TYPE_UNSPECIFIED bubbleChart: bubbleBorderColor: alpha: -57349101.62417428 blue: 83319519.79774788 green: -58788830.62322404 red: -57679475.36675093 bubbleBorderColorStyle: rgbColor: alpha: 71925920.64409733 blue: -95619992.22735693 green: -31690815.2755253 red: 90329128.67008963 themeColor: LINK bubbleLabels: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: minim do irure groupRule: dateTimeRule: type: HOUR_MINUTE_AMPM histogramRule: intervalSize: 84459021.40428156 maxValue: 54077588.286567 minValue: -4539573.925084144 sourceRange: sources: - endColumnIndex: 50534160 endRowIndex: -24177515 sheetId: -64389065 startColumnIndex: -50417718 startRowIndex: 16293429 bubbleMaxRadiusSize: 96111313 bubbleMinRadiusSize: -96997839 bubbleOpacity: 89342231.65824565 bubbleSizes: aggregateType: MAX columnReference: name: proident sit groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: 21333958.541476637 maxValue: 66421712.42547467 minValue: -65282507.25459497 sourceRange: sources: - endColumnIndex: -33354590 endRowIndex: 79806481 sheetId: 17640206 startColumnIndex: -921662 startRowIndex: 60953045 bubbleTextStyle: bold: false fontFamily: mollit amet aute fontSize: -86568407 foregroundColor: alpha: 28394175.373853862 blue: 40663250.55328503 green: -81255021.87383975 red: 45815485.58151117 foregroundColorStyle: rgbColor: alpha: 73207409.61735958 blue: 57950090.39754593 green: 90230043.2865788 red: -81227489.94524387 themeColor: BACKGROUND italic: true link: uri: reprehenderit proident do strikethrough: false underline: true domain: aggregateType: MIN columnReference: name: ex dolore eiusmod minim groupRule: dateTimeRule: type: YEAR_MONTH_DAY histogramRule: intervalSize: -65140924.055727646 maxValue: 74223864.00516859 minValue: -94139068.70913525 sourceRange: sources: - endColumnIndex: -16282362 endRowIndex: 52136105 sheetId: -79446217 startColumnIndex: 84406092 startRowIndex: 63830911 groupIds: aggregateType: SUM columnReference: name: fugiat reprehenderit deserunt groupRule: dateTimeRule: type: HOUR_MINUTE_AMPM histogramRule: intervalSize: 61547572.83853814 maxValue: -42953701.495396726 minValue: -91913911.3365079 sourceRange: sources: - endColumnIndex: -23305770 endRowIndex: 33197310 sheetId: -66146995 startColumnIndex: -18269634 startRowIndex: -52030016 legendPosition: BOTTOM_LEGEND series: aggregateType: COUNT columnReference: name: aute groupRule: dateTimeRule: type: DAY_OF_WEEK histogramRule: intervalSize: 55767127.001532316 maxValue: 91780322.07428864 minValue: 52664376.94050494 sourceRange: sources: - endColumnIndex: 79667631 endRowIndex: -72845228 sheetId: -19200441 startColumnIndex: 71857581 startRowIndex: 2383784 candlestickChart: data: - closeSeries: data: aggregateType: SUM columnReference: name: proident cillum dolor occaecat groupRule: dateTimeRule: type: DAY_MONTH histogramRule: intervalSize: 17008473.06338802 maxValue: 59527282.63191798 minValue: 83708909.69550842 sourceRange: sources: - endColumnIndex: 85492810 endRowIndex: -56140273 sheetId: 24011265 startColumnIndex: -78980638 startRowIndex: -16289465 highSeries: data: aggregateType: MIN columnReference: name: fugiat amet qui cillum groupRule: dateTimeRule: type: HOUR histogramRule: intervalSize: 80243998.47061545 maxValue: 17203217.079798535 minValue: -41067851.49549412 sourceRange: sources: - endColumnIndex: -74130867 endRowIndex: -67409678 sheetId: -5711139 startColumnIndex: -25005387 startRowIndex: 21371336 lowSeries: data: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: esse Lo groupRule: dateTimeRule: type: DAY_MONTH histogramRule: intervalSize: -24297637.395166665 maxValue: 97847882.14395756 minValue: -48886841.997806616 sourceRange: sources: - endColumnIndex: 87218897 endRowIndex: -84357057 sheetId: 70881681 startColumnIndex: 37775440 startRowIndex: -8766461 openSeries: data: aggregateType: MAX columnReference: name: sint groupRule: dateTimeRule: type: HOUR histogramRule: intervalSize: -26741522.518865317 maxValue: -9874153.676358059 minValue: -3154305.090781674 sourceRange: sources: - endColumnIndex: 80272882 endRowIndex: -39711771 sheetId: 37591817 startColumnIndex: 93547582 startRowIndex: 50882113 domain: data: aggregateType: AVERAGE columnReference: name: dolore id exercitation laborum deserunt groupRule: dateTimeRule: type: HOUR histogramRule: intervalSize: -78480157.42946899 maxValue: -77235395.72733049 minValue: -45845791.01062971 sourceRange: sources: - endColumnIndex: -43292244 endRowIndex: 81153095 sheetId: -53006508 startColumnIndex: 98572977 startRowIndex: -42176368 reversed: true dataSourceChartProperties: dataExecutionStatus: errorCode: UNSUPPORTED_DATA_TYPE errorMessage: in lastRefreshTime: la state: DATA_EXECUTION_STATE_UNSPECIFIED dataSourceId: aliqua adipisicing filterSpecs: - columnIndex: 71273613 dataSourceColumnReference: name: eu aliqua anim fugiat filterCriteria: condition: type: DATE_IS_VALID values: - relativeDate: TODAY userEnteredValue: occaecat nisi ipsum amet hiddenValues: - eiusmod cillum amet visibleBackgroundColor: alpha: -51041833.449910626 blue: 37278144.53276861 green: -44093446.99553715 red: 68305744.09122297 visibleBackgroundColorStyle: rgbColor: alpha: 57917560.35236922 blue: 76104101.40731362 green: 14629418.331204697 red: 46104280.195521206 themeColor: ACCENT4 visibleForegroundColor: alpha: -752882.5940968692 blue: -54276572.50822753 green: -15880532.803752884 red: 22653244.966652468 visibleForegroundColorStyle: rgbColor: alpha: -95747340.04040901 blue: 66832546.214434266 green: -23274938.631770775 red: -60537320.9188409 themeColor: ACCENT2 fontName: non qui aliquip ut occaecat hiddenDimensionStrategy: SHOW_ALL histogramChart: bucketSize: -16746409.256834388 legendPosition: LEFT_LEGEND outlierPercentile: -96024305.38597107 series: - barColor: alpha: -73617287.36157946 blue: 44125888.772159964 green: 79191840.17657831 red: 90227877.54008621 barColorStyle: rgbColor: alpha: -21731755.94309762 blue: -81574951.63718945 green: 29501895.180449143 red: 2578765.863245368 themeColor: BACKGROUND data: aggregateType: SUM columnReference: name: nostrud est commodo groupRule: dateTimeRule: type: YEAR_QUARTER histogramRule: intervalSize: -21243765.52104193 maxValue: 81221365.97945356 minValue: -96711277.4174169 sourceRange: sources: - endColumnIndex: 50774152 endRowIndex: 45082955 sheetId: -48607266 startColumnIndex: -62036288 startRowIndex: 96168824 showItemDividers: true maximized: false orgChart: labels: aggregateType: AVERAGE columnReference: name: ut groupRule: dateTimeRule: type: YEAR_QUARTER histogramRule: intervalSize: -73009172.6482303 maxValue: 43672320.73161355 minValue: 52062946.05393484 sourceRange: sources: - endColumnIndex: -46503120 endRowIndex: 35835544 sheetId: -94239208 startColumnIndex: -25819805 startRowIndex: -4796265 nodeColor: alpha: 83750748.11753774 blue: 70591645.2497713 green: -42807651.63763891 red: -93959377.07654767 nodeColorStyle: rgbColor: alpha: 9847754.383107394 blue: -13919581.173310786 green: -82915665.75013545 red: 8805503.035825074 themeColor: ACCENT4 nodeSize: LARGE parentLabels: aggregateType: AVERAGE columnReference: name: deserunt groupRule: dateTimeRule: type: MONTH histogramRule: intervalSize: 43842460.564609855 maxValue: -41564673.420354925 minValue: -36666440.71513674 sourceRange: sources: - endColumnIndex: -94556538 endRowIndex: -30333064 sheetId: -43671914 startColumnIndex: -99885658 startRowIndex: 32473923 selectedNodeColor: alpha: -58689625.91981632 blue: -63836834.61037859 green: 52721455.13673535 red: 8555098.020803079 selectedNodeColorStyle: rgbColor: alpha: -9959659.834915474 blue: -65373962.17128668 green: 24460997.03811027 red: 65380703.57378355 themeColor: ACCENT4 tooltips: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: dolor groupRule: dateTimeRule: type: DAY_OF_MONTH histogramRule: intervalSize: -58482054.00580189 maxValue: 48693991.01462951 minValue: 6323524.736073464 sourceRange: sources: - endColumnIndex: 68001455 endRowIndex: -46062051 sheetId: -34421161 startColumnIndex: 19013785 startRowIndex: 81691145 pieChart: domain: aggregateType: MEDIAN columnReference: name: aliquip groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: -83475200.67900191 maxValue: -49799573.518000305 minValue: 8616670.345478907 sourceRange: sources: - endColumnIndex: -79391562 endRowIndex: -78096948 sheetId: 51449536 startColumnIndex: 56056912 startRowIndex: 20812583 legendPosition: LEFT_LEGEND pieHole: 42060923.763115585 series: aggregateType: MIN columnReference: name: ullamco nul groupRule: dateTimeRule: type: YEAR_MONTH histogramRule: intervalSize: 34220711.89592573 maxValue: 25337179.630290583 minValue: 50825278.04472202 sourceRange: sources: - endColumnIndex: -15775420 endRowIndex: 78402136 sheetId: 18101000 startColumnIndex: -81267866 startRowIndex: 97527711 threeDimensional: true scorecardChart: aggregateType: SUM baselineValueData: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: ipsum occaecat groupRule: dateTimeRule: type: YEAR_MONTH histogramRule: intervalSize: -5195467.413925886 maxValue: -35480089.46897983 minValue: 38860106.83642405 sourceRange: sources: - endColumnIndex: -92963512 endRowIndex: 50933990 sheetId: 30142482 startColumnIndex: 38802193 startRowIndex: 43308351 baselineValueFormat: comparisonType: COMPARISON_TYPE_UNDEFINED description: velit minim negativeColor: alpha: -11381752.457094312 blue: -64546078.101563476 green: 56460642.37535691 red: -21857111.227614284 negativeColorStyle: rgbColor: alpha: 26035052.905543044 blue: 28856434.024337217 green: 82192931.34957212 red: 80756521.72049147 themeColor: ACCENT5 position: horizontalAlignment: LEFT positiveColor: alpha: 81758094.85716128 blue: 34361857.51928705 green: -7337491.657133073 red: -25009596.479407564 positiveColorStyle: rgbColor: alpha: -29911137.69234462 blue: 73410447.01477522 green: 23839555.157896712 red: 34094322.340430066 themeColor: TEXT textFormat: bold: false fontFamily: oc fontSize: 37920376 foregroundColor: alpha: 81214618.25494859 blue: 20895351.56723073 green: -87561465.4197804 red: 25158911.940402582 foregroundColorStyle: rgbColor: alpha: -67502442.4751407 blue: -2934207.7026754916 green: -19196563.524953753 red: -402260.88317893445 themeColor: LINK italic: true link: uri: velit strikethrough: true underline: true customFormatOptions: prefix: proident suffix: ipsum nulla Lorem ea keyValueData: aggregateType: COUNT columnReference: name: cillum irure aliquip groupRule: dateTimeRule: type: QUARTER histogramRule: intervalSize: 21120780.837884426 maxValue: 78251593.7271389 minValue: 34833024.50643405 sourceRange: sources: - endColumnIndex: -48296316 endRowIndex: 78155984 sheetId: 50374079 startColumnIndex: -15633166 startRowIndex: 34627778 keyValueFormat: position: horizontalAlignment: RIGHT textFormat: bold: false fontFamily: ut tempor velit officia fontSize: 76151125 foregroundColor: alpha: 71616835.21009046 blue: -83064975.82568616 green: -73991391.85621837 red: -59492127.77337469 foregroundColorStyle: rgbColor: alpha: -52366649.93252025 blue: 85880219.01211098 green: 69032191.1057651 red: -11397183.245551452 themeColor: ACCENT3 italic: true link: uri: magna aute tempor deserunt elit strikethrough: true underline: false numberFormatSource: FROM_DATA scaleFactor: 48357452.75406769 sortSpecs: - backgroundColor: alpha: -71372951.88112818 blue: -43810303.55867255 green: -83628570.62044418 red: -59650935.42375261 backgroundColorStyle: rgbColor: alpha: 61884983.704449624 blue: 70558409.95208356 green: 77870968.35348529 red: 11593002.310185432 themeColor: ACCENT4 dataSourceColumnReference: name: ut deserunt dolor dolore dimensionIndex: -62595542 foregroundColor: alpha: -43465678.701618195 blue: 67855910.83563313 green: -20339068.41783604 red: -7608487.104679629 foregroundColorStyle: rgbColor: alpha: -22505345.212664858 blue: -56035598.45485884 green: 39546727.453888535 red: -35465448.97913822 themeColor: LINK sortOrder: DESCENDING subtitle: in subtitleTextFormat: bold: true fontFamily: in incididunt fontSize: -16521662 foregroundColor: alpha: 62269230.83704218 blue: -25096616.48942098 green: -29089512.983826622 red: 31458193.557784766 foregroundColorStyle: rgbColor: alpha: 83413655.30647069 blue: -63156685.18145365 green: -22944363.772764385 red: -63389086.35397296 themeColor: ACCENT1 italic: true link: uri: dolor id culpa strikethrough: true underline: false subtitleTextPosition: horizontalAlignment: CENTER title: ut Duis venia titleTextFormat: bold: false fontFamily: voluptate officia do veniam anim fontSize: -42458133 foregroundColor: alpha: -10995570.377029479 blue: 69985523.0327394 green: -73751236.10301593 red: -90621750.71337388 foregroundColorStyle: rgbColor: alpha: 53123827.850197256 blue: 63083346.281060904 green: -45861480.365033194 red: -64088282.54498262 themeColor: LINK italic: false link: uri: dolore ut est consectetur amet strikethrough: true underline: false titleTextPosition: horizontalAlignment: RIGHT treemapChart: colorData: aggregateType: COUNT columnReference: name: exercitation culpa ad groupRule: dateTimeRule: type: SECOND histogramRule: intervalSize: -53351985.49772766 maxValue: 40910988.56826353 minValue: 9671250.209489018 sourceRange: sources: - endColumnIndex: -50648286 endRowIndex: 51548188 sheetId: -27558280 startColumnIndex: 96808550 startRowIndex: -69870588 colorScale: maxValueColor: alpha: -9344183.281588197 blue: -51035511.520184726 green: -70437358.71239987 red: 36109695.02841681 maxValueColorStyle: rgbColor: alpha: -66784570.63909362 blue: -95344748.51012105 green: 15149927.26536128 red: -34395235.71751977 themeColor: TEXT midValueColor: alpha: -57215354.91664644 blue: -10220530.907973662 green: 38610613.439285815 red: 77942435.74101076 midValueColorStyle: rgbColor: alpha: -53279662.46183346 blue: 53337375.20970291 green: -37995829.84842233 red: -41424358.67366721 themeColor: LINK minValueColor: alpha: 77307903.6134896 blue: -43705800.57041056 green: -93759751.69780952 red: -9479022.026797742 minValueColorStyle: rgbColor: alpha: 22086605.70165457 blue: 24985078.309830427 green: -90224624.02663738 red: 96180926.5864428 themeColor: TEXT noDataColor: alpha: -96499474.98258169 blue: -31863907.049255818 green: 58759325.64657068 red: -19494371.754963472 noDataColorStyle: rgbColor: alpha: -76800831.56719948 blue: -4017653.5974168777 green: -95402877.73655507 red: 76610326.58377454 themeColor: ACCENT1 headerColor: alpha: 1185845.131859377 blue: -46404114.96899448 green: -64295075.45592079 red: -63904617.362848096 headerColorStyle: rgbColor: alpha: -66450559.87126356 blue: 12635051.313611045 green: 66306963.8209008 red: -3431370.733263746 themeColor: ACCENT3 hideTooltips: false hintedLevels: 50720694 labels: aggregateType: MIN columnReference: name: do groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: 12088771.799155042 maxValue: 9916198.529553592 minValue: 37106075.937499166 sourceRange: sources: - endColumnIndex: 62662034 endRowIndex: 87714690 sheetId: -45193615 startColumnIndex: -86424093 startRowIndex: -5080098 levels: 279505 maxValue: -63612946.133811384 minValue: 62850505.29770625 parentLabels: aggregateType: COUNT columnReference: name: nostrud Excepteur labore ea laborum groupRule: dateTimeRule: type: DAY_MONTH histogramRule: intervalSize: 59509285.892623216 maxValue: 45110715.62485555 minValue: -43555458.26008944 sourceRange: sources: - endColumnIndex: -6546501 endRowIndex: -73016486 sheetId: 99133755 startColumnIndex: 97148115 startRowIndex: 20092847 sizeData: aggregateType: MEDIAN columnReference: name: est groupRule: dateTimeRule: type: YEAR_MONTH_DAY histogramRule: intervalSize: -3374234.0429680645 maxValue: -55368826.8694942 minValue: -15390062.002123758 sourceRange: sources: - endColumnIndex: -54021694 endRowIndex: 65968532 sheetId: 84278437 startColumnIndex: -70600941 startRowIndex: 22440734 textFormat: bold: true fontFamily: sint adipisici fontSize: -73551259 foregroundColor: alpha: -68783629.62223071 blue: -10049477.554731995 green: -50502372.31349617 red: 27443.54292163253 foregroundColorStyle: rgbColor: alpha: 49736170.99514884 blue: -95636239.73884363 green: 6328445.611700177 red: 96536450.3908014 themeColor: TEXT italic: true link: uri: quis lab strikethrough: false underline: true waterfallChart: connectorLineStyle: type: MEDIUM_DASHED width: 22660932 domain: data: aggregateType: MIN columnReference: name: in laboris groupRule: dateTimeRule: type: DAY_OF_MONTH histogramRule: intervalSize: 15582849.443432778 maxValue: -37250470.78576887 minValue: 72985384.25314191 sourceRange: sources: - endColumnIndex: 68144537 endRowIndex: 26926499 sheetId: -74376340 startColumnIndex: -53759384 startRowIndex: -43840657 reversed: false firstValueIsTotal: false hideConnectorLines: false series: - customSubtotals: - dataIsSubtotal: true label: eu subtotalIndex: -68172859 data: aggregateType: SUM columnReference: name: reprehenderit ex dolore irure groupRule: dateTimeRule: type: YEAR_MONTH_DAY histogramRule: intervalSize: -52063135.85901517 maxValue: 24128585.86345163 minValue: 99075907.49503732 sourceRange: sources: - endColumnIndex: 82919619 endRowIndex: 51107089 sheetId: 72286989 startColumnIndex: -31700027 startRowIndex: -14428047 dataLabel: customLabelData: aggregateType: MAX columnReference: name: Excepteur dolore laborum dolor groupRule: dateTimeRule: type: HOUR_MINUTE_AMPM histogramRule: intervalSize: 278697.31192056835 maxValue: -93999221.39988965 minValue: -95413330.0701081 sourceRange: sources: - endColumnIndex: -37248522 endRowIndex: 77307029 sheetId: 40342805 startColumnIndex: -84917281 startRowIndex: -33956935 placement: INSIDE_BASE textFormat: bold: true fontFamily: in amet est consequat fontSize: -31875316 foregroundColor: alpha: -73300731.29159099 blue: 16270056.516597629 green: 54227138.39396095 red: -73723223.27714631 foregroundColorStyle: rgbColor: alpha: -47356722.446611196 blue: 83098122.67160606 green: 38470641.30916959 red: 45063318.625376195 themeColor: LINK italic: false link: uri: incididunt dolore eiusmod strikethrough: true underline: false type: DATA hideTrailingSubtotal: false negativeColumnsStyle: color: alpha: 25401581.582328707 blue: 67520583.67115813 green: -69869924.53869192 red: 65986593.42350528 colorStyle: rgbColor: alpha: -73363556.56599851 blue: -97245677.75678898 green: 14264435.608205646 red: 64857739.96622464 themeColor: ACCENT2 label: adipisicing consectetur culpa elit pariatur positiveColumnsStyle: color: alpha: -52802922.38341966 blue: 15842076.637250766 green: 74532033.16645935 red: 82377518.88260224 colorStyle: rgbColor: alpha: 24535049.898789614 blue: -30649315.04662019 green: 27930690.528461173 red: 27861757.860581532 themeColor: ACCENT3 label: deserunt sit ullamco subtotalColumnsStyle: color: alpha: -8828790.660025194 blue: 96060321.10097042 green: 93761479.7738311 red: 37904230.9865118 colorStyle: rgbColor: alpha: 23911158.698096946 blue: -12620426.935574785 green: -86617596.51034972 red: -25299842.309265718 themeColor: THEME_COLOR_TYPE_UNSPECIFIED label: irure elit stackedType: STACKED totalDataLabel: customLabelData: aggregateType: MEDIAN columnReference: name: consequat cillum ut groupRule: dateTimeRule: type: DAY_MONTH histogramRule: intervalSize: 21374829.82217799 maxValue: 45582751.99760598 minValue: -39697144.289023265 sourceRange: sources: - endColumnIndex: 2958442 endRowIndex: -53729707 sheetId: 27302581 startColumnIndex: -70249185 startRowIndex: 86170619 placement: INSIDE_BASE textFormat: bold: true fontFamily: Ut culpa irure fontSize: -13588028 foregroundColor: alpha: 81382749.4975144 blue: -27867916.46539539 green: -89722359.70702691 red: -64319735.05597193 foregroundColorStyle: rgbColor: alpha: 23904837.49130343 blue: 16271274.845257595 green: -87010765.72803856 red: 72433626.06404573 themeColor: ACCENT6 italic: true link: uri: eiusmod elit strikethrough: true underline: true type: DATA updateConditionalFormatRule: index: 73340324 newIndex: 86761949 rule: booleanRule: condition: type: BLANK values: - relativeDate: PAST_WEEK userEnteredValue: in format: backgroundColor: alpha: 72312638.85854599 blue: -7277835.020690665 green: -36935730.14474638 red: 75398970.26766294 backgroundColorStyle: rgbColor: alpha: 9396664.623327494 blue: 57446992.70060539 green: 13479560.18300423 red: 62503644.69839606 themeColor: THEME_COLOR_TYPE_UNSPECIFIED borders: bottom: color: alpha: 4760131.837533787 blue: 40925384.50147471 green: -71670359.38989872 red: -21944214.609583184 colorStyle: rgbColor: alpha: 74081759.96552092 blue: -46087012.44704738 green: -88538425.95139074 red: 30830776.569793314 themeColor: ACCENT6 style: NONE width: -37120649 left: color: alpha: 56132186.86380345 blue: 31684828.605305076 green: -88781348.42394897 red: 85482430.22423008 colorStyle: rgbColor: alpha: 67464239.6037643 blue: 71559243.81366625 green: -25900536.816644147 red: -45616780.172430314 themeColor: THEME_COLOR_TYPE_UNSPECIFIED style: DASHED width: 12814214 right: color: alpha: -17125756.733060047 blue: 67826101.65340412 green: -62880211.94701758 red: 91087150.09438297 colorStyle: rgbColor: alpha: -64422369.22237128 blue: 99767229.0602383 green: -78435193.32707843 red: -71999436.99759261 themeColor: BACKGROUND style: SOLID width: 51729575 top: color: alpha: -87143495.4050999 blue: 12934179.347599477 green: 95655036.73698825 red: 8998509.898773938 colorStyle: rgbColor: alpha: 92014076.56222078 blue: 27904762.12198554 green: 79613667.6892477 red: -65474946.33421045 themeColor: ACCENT3 style: SOLID_MEDIUM width: 81885517 horizontalAlignment: RIGHT hyperlinkDisplayType: PLAIN_TEXT numberFormat: pattern: commodo deserunt type: NUMBER padding: bottom: 26237841 left: -32830859 right: -20661086 top: 12984825 textDirection: TEXT_DIRECTION_UNSPECIFIED textFormat: bold: false fontFamily: Excepteur ut et deserunt fontSize: -66145359 foregroundColor: alpha: 83769829.48789018 blue: -8756661.313300416 green: 42637542.46485716 red: 67307320.65519077 foregroundColorStyle: rgbColor: alpha: -59685306.767699055 blue: 32220409.0652539 green: 83565915.854523 red: 1273277.3540689945 themeColor: LINK italic: false link: uri: pariatur minim ullamco labore strikethrough: true underline: false textRotation: angle: 62193194 vertical: false verticalAlignment: BOTTOM wrapStrategy: CLIP gradientRule: maxpoint: color: alpha: 16856771.342587113 blue: 4107135.406564757 green: -48809342.50428535 red: -34343514.62141016 colorStyle: rgbColor: alpha: -38992170.19417494 blue: 35123086.27214092 green: -86809054.65412363 red: 1330725.4355700165 themeColor: ACCENT2 type: MAX value: qui laborum non midpoint: color: alpha: -26282738.40478213 blue: 31688337.539297253 green: 87573317.75297198 red: 77843657.41982388 colorStyle: rgbColor: alpha: 99664133.6636754 blue: 7789499.690645173 green: -80029391.0307222 red: 61034466.86671159 themeColor: THEME_COLOR_TYPE_UNSPECIFIED type: NUMBER value: fugiat anim dolore voluptate minpoint: color: alpha: 56942846.1698482 blue: -86807682.94082615 green: -13586455.410727367 red: 37308243.58295864 colorStyle: rgbColor: alpha: -62566656.87080933 blue: -9558061.431058154 green: 36077432.41102898 red: 89030205.81028187 themeColor: ACCENT2 type: PERCENT value: tempor enim nulla ranges: - endColumnIndex: 38993476 endRowIndex: 59130649 sheetId: -50902003 startColumnIndex: 74978514 startRowIndex: -80198515 sheetId: 11881001 updateDataSource: dataSource: calculatedColumns: - formula: Ut qui tempor Excepteur dolore reference: name: in dataSourceId: occaecat minim sheetId: 29444488 spec: bigQuery: projectId: irure magna sin querySpec: rawQuery: sit nostrud esse tableSpec: datasetId: magna sunt do dolor Duis tableId: sint veniam eiusmod tableProjectId: id pariatur ea parameters: - name: officia cillum non namedRangeId: ea labo range: endColumnIndex: 20966000 endRowIndex: 11157354 sheetId: -42978185 startColumnIndex: 33629617 startRowIndex: -81156975 fields: culpa aliqua ipsum updateDeveloperMetadata: dataFilters: - a1Range: dolor developerMetadataLookup: locationMatchingStrategy: DEVELOPER_METADATA_LOCATION_MATCHING_STRATEGY_UNSPECIFIED locationType: SHEET metadataId: -98931990 metadataKey: sunt in ex metadataLocation: dimensionRange: dimension: ROWS endIndex: -80365034 sheetId: -99213734 startIndex: 68488165 locationType: SHEET sheetId: -35215334 spreadsheet: false metadataValue: et do visibility: DEVELOPER_METADATA_VISIBILITY_UNSPECIFIED gridRange: endColumnIndex: -7538457 endRowIndex: 29902050 sheetId: -73118781 startColumnIndex: 19219188 startRowIndex: -30446643 developerMetadata: location: dimensionRange: dimension: DIMENSION_UNSPECIFIED endIndex: 98065923 sheetId: 51408387 startIndex: -27800589 locationType: ROW sheetId: 40856660 spreadsheet: false metadataId: -60256510 metadataKey: pariatur nisi amet laboris metadataValue: labore minim in visibility: DOCUMENT fields: minim ad magna anim updateDimensionGroup: dimensionGroup: collapsed: true depth: -49998896 range: dimension: COLUMNS endIndex: -50936479 sheetId: -33847103 startIndex: -25522601 fields: eu esse velit Lorem non updateDimensionProperties: dataSourceSheetRange: columnReferences: - name: id aliqua aliquip velit sheetId: 79057067 fields: ut ut aute velit properties: dataSourceColumnReference: name: laboris enim cupidatat est ipsum developerMetadata: - location: dimensionRange: dimension: COLUMNS endIndex: 24439643 sheetId: -40274978 startIndex: 78680075 locationType: SPREADSHEET sheetId: -20862911 spreadsheet: true metadataId: 36030997 metadataKey: ut metadataValue: tempor dolor mollit exercitation consequat visibility: DEVELOPER_METADATA_VISIBILITY_UNSPECIFIED hiddenByFilter: true hiddenByUser: true pixelSize: -97123513 range: dimension: ROWS endIndex: 20470807 sheetId: 32818012 startIndex: -22975303 updateEmbeddedObjectBorder: border: color: alpha: 93075318.78942674 blue: -21001940.259938404 green: -79109556.72280245 red: 8628579.5218855 colorStyle: rgbColor: alpha: -36304707.5417743 blue: -61596006.3731559 green: 55689759.59342715 red: 397061.2611807734 themeColor: ACCENT2 fields: fugiat dolore objectId: -35825454 updateEmbeddedObjectPosition: fields: Ut enim newPosition: newSheet: true overlayPosition: anchorCell: columnIndex: 46302625 rowIndex: 1746063 sheetId: 56352433 heightPixels: -98780847 offsetXPixels: 83782973 offsetYPixels: 56784048 widthPixels: 14541701 sheetId: -15339785 objectId: 14720359 updateFilterView: fields: deserunt voluptate labore filter: criteria: exercitation_5: condition: type: NUMBER_NOT_EQ values: - relativeDate: TOMORROW userEnteredValue: Lorem hiddenValues: - nulla minim et visibleBackgroundColor: alpha: -65658463.26209184 blue: -661950.5389306992 green: -29944649.11671187 red: 58849299.451177955 visibleBackgroundColorStyle: rgbColor: alpha: 14586534.217029363 blue: 76798809.11578944 green: -28149426.941093832 red: 8657403.952864766 themeColor: ACCENT6 visibleForegroundColor: alpha: -32645368.948191762 blue: -28179049.382132113 green: 55184003.20548493 red: 14350855.576288074 visibleForegroundColorStyle: rgbColor: alpha: 68902543.74917504 blue: 97224359.65442783 green: 7645133.288328588 red: 31388099.071739405 themeColor: THEME_COLOR_TYPE_UNSPECIFIED Excepteur3ad: condition: type: NOT_BLANK values: - relativeDate: PAST_MONTH userEnteredValue: mollit eli hiddenValues: - ut labore reprehenderit tempor visibleBackgroundColor: alpha: -23376082.1128636 blue: 82290782.12570214 green: -29942678.87432401 red: 85585391.20795116 visibleBackgroundColorStyle: rgbColor: alpha: -14561141.483558252 blue: 28490548.75525275 green: 43022042.819059074 red: -53237191.97031598 themeColor: ACCENT1 visibleForegroundColor: alpha: -96242397.21730183 blue: -6738593.880083114 green: -33687002.03958648 red: -60418225.69929143 visibleForegroundColorStyle: rgbColor: alpha: -44258155.811260335 blue: -19547710.972946852 green: 75129144.93356112 red: -59431083.95083092 themeColor: ACCENT2 filterSpecs: - columnIndex: -80641846 dataSourceColumnReference: name: nulla in reprehenderit filterCriteria: condition: type: BOOLEAN values: - relativeDate: TOMORROW userEnteredValue: ullamco dolore do labore hiddenValues: - occaecat Excepteur visibleBackgroundColor: alpha: 22815722.90522535 blue: -87310923.13822924 green: -92117895.96034837 red: 60995771.96752882 visibleBackgroundColorStyle: rgbColor: alpha: 78885656.0924626 blue: 24916482.1358601 green: -74547686.08318849 red: -67446540.49796131 themeColor: BACKGROUND visibleForegroundColor: alpha: 22521318.027211204 blue: -96669585.74918593 green: 87658239.5692532 red: -87824101.26944384 visibleForegroundColorStyle: rgbColor: alpha: -25054943.868710786 blue: 529619.1949372292 green: -58575050.85265995 red: -21619194.965084538 themeColor: BACKGROUND filterViewId: 55564510 namedRangeId: sint commodo ad range: endColumnIndex: -91574765 endRowIndex: -80829107 sheetId: -25270399 startColumnIndex: -60681561 startRowIndex: 53352557 sortSpecs: - backgroundColor: alpha: 73799661.6279392 blue: 72362002.52571082 green: 83873062.28255239 red: -44430733.917060696 backgroundColorStyle: rgbColor: alpha: 21517007.217173308 blue: -6939417.059134319 green: -46701549.475406304 red: -84596109.0501016 themeColor: ACCENT2 dataSourceColumnReference: name: fugiat Ut sint dimensionIndex: 20717295 foregroundColor: alpha: 47104665.440649986 blue: 14930038.130042568 green: 18894654.297642782 red: 47420641.39860669 foregroundColorStyle: rgbColor: alpha: 37593751.58233872 blue: -45971341.13544192 green: -14130564.177817509 red: 19833775.90607387 themeColor: BACKGROUND sortOrder: ASCENDING title: dolore fugiat ea velit sit updateNamedRange: fields: Duis dolor namedRange: name: sint mollit namedRangeId: quis irure exercitation range: endColumnIndex: 63800974 endRowIndex: -9972381 sheetId: 23394672 startColumnIndex: 49865068 startRowIndex: 60767719 updateProtectedRange: fields: deserunt Excepteur irure dolore protectedRange: description: qui id pariatur sed editors: domainUsersCanEdit: false groups: - exercitation ad occaecat users: - ea culpa namedRangeId: consectetur eiusmod esse dolore deserunt protectedRangeId: 47669098 range: endColumnIndex: 3589267 endRowIndex: -90999035 sheetId: 22594987 startColumnIndex: 15303384 startRowIndex: -54310478 requestingUserCanEdit: true unprotectedRanges: - endColumnIndex: -92726878 endRowIndex: 78392752 sheetId: -45084298 startColumnIndex: -77114220 startRowIndex: 11929401 warningOnly: false updateSheetProperties: fields: dolore sint properties: dataSourceSheetProperties: columns: - formula: ipsum reference: name: in pariatur exercitation enim dataExecutionStatus: errorCode: ENGINE errorMessage: sed nisi fugiat in lastRefreshTime: laborum occaecat adipisicing aute dolore state: RUNNING dataSourceId: Du gridProperties: columnCount: -43338858 columnGroupControlAfter: false frozenColumnCount: -88013151 frozenRowCount: 77637985 hideGridlines: false rowCount: 87740158 rowGroupControlAfter: false hidden: false index: 26710105 rightToLeft: true sheetId: 47198617 sheetType: GRID tabColor: alpha: -1288316.7337609082 blue: -70056928.16675681 green: 97837982.64657587 red: 92333294.00323501 tabColorStyle: rgbColor: alpha: -26253953.965918615 blue: 50547842.25849366 green: 41019254.60187808 red: -94077708.76541437 themeColor: THEME_COLOR_TYPE_UNSPECIFIED title: dolore nostrud ex sed in updateSlicerSpec: fields: commo slicerId: -57596442 spec: applyToPivotTables: false backgroundColor: alpha: 38265304.41509539 blue: 46271796.88043049 green: -70295425.92765838 red: 57970119.50023529 backgroundColorStyle: rgbColor: alpha: 3488407.22065939 blue: 76965590.44502625 green: 78829080.70552313 red: 19924303.6077656 themeColor: ACCENT2 columnIndex: 23745269 dataRange: endColumnIndex: -28265730 endRowIndex: -58271447 sheetId: -38096570 startColumnIndex: -52029006 startRowIndex: -51848159 filterCriteria: condition: type: TEXT_IS_EMAIL values: - relativeDate: PAST_YEAR userEnteredValue: ullamco nulla enim hiddenValues: - veniam nostrud laborum et visibleBackgroundColor: alpha: -44145346.10970078 blue: 5089842.037805468 green: -20360069.221636847 red: -85688480.16725634 visibleBackgroundColorStyle: rgbColor: alpha: -9314021.071504101 blue: 28666703.590510115 green: 24556289.625984326 red: 15519313.894922554 themeColor: ACCENT4 visibleForegroundColor: alpha: 13549013.387059271 blue: -80314030.31658426 green: -1051843.464169845 red: -80363499.28439654 visibleForegroundColorStyle: rgbColor: alpha: 15177718.399773404 blue: 6860323.015534714 green: -84774110.57090908 red: -27038669.67742306 themeColor: TEXT horizontalAlignment: LEFT textFormat: bold: false fontFamily: adipisicing magna irure fontSize: -51944752 foregroundColor: alpha: -490823.5040641129 blue: -82439072.73010796 green: 3234025.59473522 red: -32301671.78692396 foregroundColorStyle: rgbColor: alpha: -63579767.04771837 blue: 77523904.38725829 green: 82762047.38880903 red: 68229878.77400851 themeColor: ACCENT5 italic: true link: uri: velit nisi consectetur strikethrough: true underline: true title: ut ipsum updateSpreadsheetProperties: fields: aute Ut v properties: autoRecalc: MINUTE defaultFormat: backgroundColor: alpha: 5295953.228434056 blue: -82620480.64993772 green: 88830739.95604822 red: -92172117.03094357 backgroundColorStyle: rgbColor: alpha: 74888549.5592801 blue: -91862612.09001811 green: 61491637.51535189 red: 81567086.68250361 themeColor: ACCENT2 borders: bottom: color: alpha: -97414032.9584829 blue: -99580610.66960932 green: -18418487.808883816 red: 77362290.63155782 colorStyle: rgbColor: alpha: 43280114.350717515 blue: 54615645.000635505 green: 44355726.87583619 red: -8845309.00861393 themeColor: LINK style: SOLID width: -39036144 left: color: alpha: 48963119.38806653 blue: -38130525.99470601 green: -54647539.10610955 red: -11872019.836188927 colorStyle: rgbColor: alpha: 44346125.02024421 blue: -45085667.34728654 green: -73287801.87238148 red: -22324957.897678077 themeColor: BACKGROUND style: STYLE_UNSPECIFIED width: 96928389 right: color: alpha: -18201917.77343063 blue: 72281192.29299751 green: 94755386.91441429 red: 60446448.97681427 colorStyle: rgbColor: alpha: -35071276.24622273 blue: 95575647.3887054 green: 83138121.56881809 red: 58329039.914827436 themeColor: THEME_COLOR_TYPE_UNSPECIFIED style: DOTTED width: -64764165 top: color: alpha: -57563057.14220824 blue: 79143554.84494862 green: 94323017.60559314 red: 17231155.792164803 colorStyle: rgbColor: alpha: 54258559.44512957 blue: 8756667.700666338 green: 41405920.17393029 red: -35796748.44766893 themeColor: ACCENT4 style: DASHED width: -90980202 horizontalAlignment: LEFT hyperlinkDisplayType: LINKED numberFormat: pattern: l type: SCIENTIFIC padding: bottom: -89136076 left: -13568793 right: 2155188 top: 23905828 textDirection: TEXT_DIRECTION_UNSPECIFIED textFormat: bold: false fontFamily: proident occaecat fontSize: 82259848 foregroundColor: alpha: -51197227.7897915 blue: -21870450.039533466 green: -89741837.67165922 red: -85318950.81398347 foregroundColorStyle: rgbColor: alpha: 90638725.64142317 blue: 94399466.45683831 green: -75687555.77672075 red: -23247421.834329262 themeColor: ACCENT2 italic: true link: uri: cillum magna strikethrough: false underline: true textRotation: angle: -19293730 vertical: true verticalAlignment: MIDDLE wrapStrategy: OVERFLOW_CELL iterativeCalculationSettings: convergenceThreshold: -43211704.47974261 maxIterations: -38497211 locale: commodo ad mollit spreadsheetTheme: primaryFontFamily: in ipsum themeColors: - color: rgbColor: alpha: -16421506.483655393 blue: -60483418.5081073 green: -92997652.5259061 red: -68861915.41211799 themeColor: LINK colorType: ACCENT3 timeZone: sunt quis velit adipisicing title: qui culpa laboris responseIncludeGridData: true responseRanges: - reprehenderit consectetur SpreadsheetsPostRequest2: description: SpreadsheetsPostRequest2 schema type: object example: dataFilters: - a1Range: tempor culpa in developerMetadataLookup: locationMatchingStrategy: EXACT_LOCATION locationType: DEVELOPER_METADATA_LOCATION_TYPE_UNSPECIFIED metadataId: 38631502 metadataKey: nisi volupt metadataLocation: dimensionRange: dimension: DIMENSION_UNSPECIFIED endIndex: 63439729 sheetId: -25406806 startIndex: 35052771 locationType: SHEET sheetId: 11542900 spreadsheet: false metadataValue: in nostrud labore enim sint visibility: DEVELOPER_METADATA_VISIBILITY_UNSPECIFIED gridRange: endColumnIndex: 23894477 endRowIndex: -48431467 sheetId: -4486644 startColumnIndex: 74711378 startRowIndex: 6303367 - a1Range: occaecat non consectetur developerMetadataLookup: locationMatchingStrategy: INTERSECTING_LOCATION locationType: SHEET metadataId: 43386196 metadataKey: aliqua nulla metadataLocation: dimensionRange: dimension: COLUMNS endIndex: -12105509 sheetId: 31623920 startIndex: -90047308 locationType: DEVELOPER_METADATA_LOCATION_TYPE_UNSPECIFIED sheetId: 66134968 spreadsheet: false metadataValue: consequat visibility: DOCUMENT gridRange: endColumnIndex: -29841116 endRowIndex: 41097577 sheetId: -38508617 startColumnIndex: -53934581 startRowIndex: 18701599 includeGridData: true SpreadsheetsPostResponse: description: SpreadsheetsPostResponse schema type: object properties: dataSourceSchedules: type: array items: type: object properties: dailySchedule: type: object properties: startTime: type: object properties: hours: type: integer minutes: type: integer nanos: type: integer seconds: type: integer enabled: type: boolean monthlySchedule: type: object properties: daysOfMonth: type: array items: type: integer startTime: type: object properties: hours: type: integer minutes: type: integer nanos: type: integer seconds: type: integer nextRun: type: object properties: endTime: type: string startTime: type: string refreshScope: type: string weeklySchedule: type: object properties: daysOfWeek: type: array items: type: string startTime: type: object properties: hours: type: integer minutes: type: integer nanos: type: integer seconds: type: integer dataSources: type: array items: type: object properties: calculatedColumns: type: array items: type: object properties: formula: type: string reference: type: object properties: name: type: string dataSourceId: type: string sheetId: type: integer spec: type: object properties: bigQuery: type: object properties: projectId: type: string querySpec: type: object properties: rawQuery: type: string tableSpec: type: object properties: datasetId: type: string tableId: type: string tableProjectId: type: string parameters: type: array items: type: object properties: name: type: string namedRangeId: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer developerMetadata: type: array items: type: object properties: location: type: object properties: dimensionRange: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer locationType: type: string sheetId: type: integer spreadsheet: type: boolean metadataId: type: integer metadataKey: type: string metadataValue: type: string visibility: type: string namedRanges: type: array items: type: object properties: name: type: string namedRangeId: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer properties: $ref: '#/components/schemas/SpreadsheetsPostResponseProperties' sheets: type: array items: type: object properties: bandedRanges: type: array items: type: object properties: bandedRangeId: type: integer columnProperties: type: object properties: firstBandColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number firstBandColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string footerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number footerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string headerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number headerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string secondBandColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number secondBandColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer rowProperties: type: object properties: firstBandColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number firstBandColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string footerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number footerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string headerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number headerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string secondBandColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number secondBandColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string basicFilter: type: object properties: criteria: type: object properties: doloreb_: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string filterSpecs: type: array items: type: object properties: columnIndex: type: integer dataSourceColumnReference: type: object properties: name: type: string filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer sortSpecs: type: array items: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataSourceColumnReference: type: object properties: name: type: string dimensionIndex: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string sortOrder: type: string charts: type: array items: type: object properties: border: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string chartId: type: integer position: type: object properties: newSheet: type: boolean overlayPosition: type: object properties: anchorCell: type: object properties: columnIndex: type: integer rowIndex: type: integer sheetId: type: integer heightPixels: type: integer offsetXPixels: type: integer offsetYPixels: type: integer widthPixels: type: integer sheetId: type: integer spec: type: object properties: altText: type: string backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string basicChart: type: object properties: axis: type: array items: type: object properties: format: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean position: type: string title: type: string titleTextPosition: type: object properties: horizontalAlignment: type: string viewWindowOptions: type: object properties: viewWindowMax: type: number viewWindowMin: type: number viewWindowMode: type: string chartType: type: string compareMode: type: string domains: type: array items: type: object properties: domain: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer reversed: type: boolean headerCount: type: integer interpolateNulls: type: boolean legendPosition: type: string lineSmoothing: type: boolean series: type: array items: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataLabel: type: object properties: customLabelData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer placement: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean type: type: string lineStyle: type: object properties: type: type: string width: type: integer pointStyle: type: object properties: shape: type: string size: type: number series: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer styleOverrides: type: array items: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string index: type: integer pointStyle: type: object properties: shape: type: string size: type: number targetAxis: type: string type: type: string stackedType: type: string threeDimensional: type: boolean totalDataLabel: type: object properties: customLabelData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer placement: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean type: type: string bubbleChart: type: object properties: bubbleBorderColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number bubbleBorderColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string bubbleLabels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer bubbleMaxRadiusSize: type: integer bubbleMinRadiusSize: type: integer bubbleOpacity: type: number bubbleSizes: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer bubbleTextStyle: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean domain: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer groupIds: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer legendPosition: type: string series: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer candlestickChart: type: object properties: data: type: array items: type: object properties: closeSeries: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer highSeries: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer lowSeries: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer openSeries: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer domain: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer reversed: type: boolean dataSourceChartProperties: type: object properties: dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSourceId: type: string filterSpecs: type: array items: type: object properties: columnIndex: type: integer dataSourceColumnReference: type: object properties: name: type: string filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string fontName: type: string hiddenDimensionStrategy: type: string histogramChart: type: object properties: bucketSize: type: number legendPosition: type: string outlierPercentile: type: number series: type: array items: type: object properties: barColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number barColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer showItemDividers: type: boolean maximized: type: boolean orgChart: type: object properties: labels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer nodeColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number nodeColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string nodeSize: type: string parentLabels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer selectedNodeColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number selectedNodeColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string tooltips: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer pieChart: type: object properties: domain: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer legendPosition: type: string pieHole: type: number series: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer threeDimensional: type: boolean scorecardChart: type: object properties: aggregateType: type: string baselineValueData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer baselineValueFormat: type: object properties: comparisonType: type: string description: type: string negativeColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number negativeColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string position: type: object properties: horizontalAlignment: type: string positiveColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number positiveColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean customFormatOptions: type: object properties: prefix: type: string suffix: type: string keyValueData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer keyValueFormat: type: object properties: position: type: object properties: horizontalAlignment: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean numberFormatSource: type: string scaleFactor: type: number sortSpecs: type: array items: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataSourceColumnReference: type: object properties: name: type: string dimensionIndex: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string sortOrder: type: string subtitle: type: string subtitleTextFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean subtitleTextPosition: type: object properties: horizontalAlignment: type: string title: type: string titleTextFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean titleTextPosition: type: object properties: horizontalAlignment: type: string treemapChart: type: object properties: colorData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer colorScale: type: object properties: maxValueColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number maxValueColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string midValueColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number midValueColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string minValueColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number minValueColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string noDataColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number noDataColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string headerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number headerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string hideTooltips: type: boolean hintedLevels: type: integer labels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer levels: type: integer maxValue: type: number minValue: type: number parentLabels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer sizeData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean waterfallChart: type: object properties: connectorLineStyle: type: object properties: type: type: string width: type: integer domain: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer reversed: type: boolean firstValueIsTotal: type: boolean hideConnectorLines: type: boolean series: type: array items: type: object properties: customSubtotals: type: array items: type: object properties: dataIsSubtotal: type: boolean label: type: string subtotalIndex: type: integer data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer dataLabel: type: object properties: customLabelData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer placement: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean type: type: string hideTrailingSubtotal: type: boolean negativeColumnsStyle: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string label: type: string positiveColumnsStyle: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string label: type: string subtotalColumnsStyle: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string label: type: string stackedType: type: string totalDataLabel: type: object properties: customLabelData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer placement: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean type: type: string columnGroups: type: array items: type: object properties: collapsed: type: boolean depth: type: integer range: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer conditionalFormats: type: array items: type: object properties: booleanRule: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string format: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string borders: type: object properties: bottom: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer left: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer right: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer top: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer horizontalAlignment: type: string hyperlinkDisplayType: type: string numberFormat: type: object properties: pattern: type: string type: type: string padding: type: object properties: bottom: type: integer left: type: integer right: type: integer top: type: integer textDirection: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean textRotation: type: object properties: angle: type: integer vertical: type: boolean verticalAlignment: type: string wrapStrategy: type: string gradientRule: type: object properties: maxpoint: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string type: type: string value: type: string midpoint: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string type: type: string value: type: string minpoint: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string type: type: string value: type: string ranges: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer data: type: array items: type: object properties: columnMetadata: type: array items: type: object properties: dataSourceColumnReference: type: object properties: name: type: string developerMetadata: type: array items: type: object properties: location: type: object properties: dimensionRange: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer locationType: type: string sheetId: type: integer spreadsheet: type: boolean metadataId: type: integer metadataKey: type: string metadataValue: type: string visibility: type: string hiddenByFilter: type: boolean hiddenByUser: type: boolean pixelSize: type: integer rowData: type: array items: type: object properties: values: type: array items: type: object properties: dataSourceFormula: type: object properties: dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSourceId: type: string dataSourceTable: type: object properties: columnSelectionType: type: string columns: type: array items: type: object properties: name: type: string dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSourceId: type: string filterSpecs: type: array items: type: object properties: columnIndex: type: integer dataSourceColumnReference: type: object properties: name: type: string filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string rowLimit: type: integer sortSpecs: type: array items: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataSourceColumnReference: type: object properties: name: type: string dimensionIndex: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string sortOrder: type: string dataValidation: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string inputMessage: type: string showCustomUi: type: boolean strict: type: boolean effectiveFormat: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string borders: type: object properties: bottom: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer left: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer right: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer top: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer horizontalAlignment: type: string hyperlinkDisplayType: type: string numberFormat: type: object properties: pattern: type: string type: type: string padding: type: object properties: bottom: type: integer left: type: integer right: type: integer top: type: integer textDirection: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean textRotation: type: object properties: angle: type: integer vertical: type: boolean verticalAlignment: type: string wrapStrategy: type: string effectiveValue: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string formattedValue: type: string hyperlink: type: string note: type: string pivotTable: type: object properties: columns: type: array items: type: object properties: dataSourceColumnReference: type: object properties: name: type: string groupLimit: type: object properties: applyOrder: type: integer countLimit: type: integer groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: end: type: number interval: type: number start: type: number manualRule: type: object properties: groups: type: array items: type: object properties: groupName: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string items: type: array items: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string label: type: string repeatHeadings: type: boolean showTotals: type: boolean sortOrder: type: string sourceColumnOffset: type: integer valueBucket: type: object properties: buckets: type: array items: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string valuesIndex: type: integer valueMetadata: type: array items: type: object properties: collapsed: type: boolean value: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string criteria: type: object properties: consequat_c15: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string visibleByDefault: type: boolean visibleValues: type: array items: type: string dolor_aa: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string visibleByDefault: type: boolean visibleValues: type: array items: type: string dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSourceId: type: string filterSpecs: type: array items: type: object properties: columnOffsetIndex: type: integer dataSourceColumnReference: type: object properties: name: type: string filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string visibleByDefault: type: boolean visibleValues: type: array items: type: string rows: type: array items: type: object properties: dataSourceColumnReference: type: object properties: name: type: string groupLimit: type: object properties: applyOrder: type: integer countLimit: type: integer groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: end: type: number interval: type: number start: type: number manualRule: type: object properties: groups: type: array items: type: object properties: groupName: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string items: type: array items: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string label: type: string repeatHeadings: type: boolean showTotals: type: boolean sortOrder: type: string sourceColumnOffset: type: integer valueBucket: type: object properties: buckets: type: array items: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string valuesIndex: type: integer valueMetadata: type: array items: type: object properties: collapsed: type: boolean value: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string source: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer valueLayout: type: string values: type: array items: type: object properties: calculatedDisplayType: type: string dataSourceColumnReference: type: object properties: name: type: string formula: type: string name: type: string sourceColumnOffset: type: integer summarizeFunction: type: string textFormatRuns: type: array items: type: object properties: format: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean startIndex: type: integer userEnteredFormat: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string borders: type: object properties: bottom: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer left: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer right: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer top: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer horizontalAlignment: type: string hyperlinkDisplayType: type: string numberFormat: type: object properties: pattern: type: string type: type: string padding: type: object properties: bottom: type: integer left: type: integer right: type: integer top: type: integer textDirection: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean textRotation: type: object properties: angle: type: integer vertical: type: boolean verticalAlignment: type: string wrapStrategy: type: string userEnteredValue: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string rowMetadata: type: array items: type: object properties: dataSourceColumnReference: type: object properties: name: type: string developerMetadata: type: array items: type: object properties: location: type: object properties: dimensionRange: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer locationType: type: string sheetId: type: integer spreadsheet: type: boolean metadataId: type: integer metadataKey: type: string metadataValue: type: string visibility: type: string hiddenByFilter: type: boolean hiddenByUser: type: boolean pixelSize: type: integer startColumn: type: integer startRow: type: integer developerMetadata: type: array items: type: object properties: location: type: object properties: dimensionRange: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer locationType: type: string sheetId: type: integer spreadsheet: type: boolean metadataId: type: integer metadataKey: type: string metadataValue: type: string visibility: type: string filterViews: type: array items: type: object properties: criteria: type: object properties: laborum_5: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string quis_c0: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string filterSpecs: type: array items: type: object properties: columnIndex: type: integer dataSourceColumnReference: type: object properties: name: type: string filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string filterViewId: type: integer namedRangeId: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer sortSpecs: type: array items: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataSourceColumnReference: type: object properties: name: type: string dimensionIndex: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string sortOrder: type: string title: type: string merges: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer properties: type: object properties: dataSourceSheetProperties: type: object properties: columns: type: array items: type: object properties: formula: type: string reference: type: object properties: name: type: string dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSourceId: type: string gridProperties: type: object properties: columnCount: type: integer columnGroupControlAfter: type: boolean frozenColumnCount: type: integer frozenRowCount: type: integer hideGridlines: type: boolean rowCount: type: integer rowGroupControlAfter: type: boolean hidden: type: boolean index: type: integer rightToLeft: type: boolean sheetId: type: integer sheetType: type: string tabColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number tabColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string title: type: string protectedRanges: type: array items: type: object properties: description: type: string editors: type: object properties: domainUsersCanEdit: type: boolean groups: type: array items: type: string users: type: array items: type: string namedRangeId: type: string protectedRangeId: type: integer range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer requestingUserCanEdit: type: boolean unprotectedRanges: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer warningOnly: type: boolean rowGroups: type: array items: type: object properties: collapsed: type: boolean depth: type: integer range: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer slicers: type: array items: type: object properties: position: type: object properties: newSheet: type: boolean overlayPosition: type: object properties: anchorCell: type: object properties: columnIndex: type: integer rowIndex: type: integer sheetId: type: integer heightPixels: type: integer offsetXPixels: type: integer offsetYPixels: type: integer widthPixels: type: integer sheetId: type: integer slicerId: type: integer spec: type: object properties: applyToPivotTables: type: boolean backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string columnIndex: type: integer dataRange: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string horizontalAlignment: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean title: type: string spreadsheetId: type: string spreadsheetUrl: type: string SpreadsheetsPostResponse1: description: SpreadsheetsPostResponse1 schema type: object properties: replies: type: array items: type: object properties: addBanding: type: object properties: bandedRange: type: object properties: bandedRangeId: type: integer columnProperties: type: object properties: firstBandColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number firstBandColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string footerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number footerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string headerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number headerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string secondBandColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number secondBandColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer rowProperties: type: object properties: firstBandColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number firstBandColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string footerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number footerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string headerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number headerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string secondBandColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number secondBandColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string addChart: type: object properties: chart: type: object properties: border: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string chartId: type: integer position: type: object properties: newSheet: type: boolean overlayPosition: type: object properties: anchorCell: type: object properties: columnIndex: type: integer rowIndex: type: integer sheetId: type: integer heightPixels: type: integer offsetXPixels: type: integer offsetYPixels: type: integer widthPixels: type: integer sheetId: type: integer spec: type: object properties: altText: type: string backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string basicChart: type: object properties: axis: type: array items: type: object properties: format: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean position: type: string title: type: string titleTextPosition: type: object properties: horizontalAlignment: type: string viewWindowOptions: type: object properties: viewWindowMax: type: number viewWindowMin: type: number viewWindowMode: type: string chartType: type: string compareMode: type: string domains: type: array items: type: object properties: domain: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer reversed: type: boolean headerCount: type: integer interpolateNulls: type: boolean legendPosition: type: string lineSmoothing: type: boolean series: type: array items: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataLabel: type: object properties: customLabelData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer placement: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean type: type: string lineStyle: type: object properties: type: type: string width: type: integer pointStyle: type: object properties: shape: type: string size: type: number series: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer styleOverrides: type: array items: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string index: type: integer pointStyle: type: object properties: shape: type: string size: type: number targetAxis: type: string type: type: string stackedType: type: string threeDimensional: type: boolean totalDataLabel: type: object properties: customLabelData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer placement: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean type: type: string bubbleChart: type: object properties: bubbleBorderColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number bubbleBorderColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string bubbleLabels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer bubbleMaxRadiusSize: type: integer bubbleMinRadiusSize: type: integer bubbleOpacity: type: number bubbleSizes: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer bubbleTextStyle: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean domain: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer groupIds: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer legendPosition: type: string series: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer candlestickChart: type: object properties: data: type: array items: type: object properties: closeSeries: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer highSeries: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer lowSeries: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer openSeries: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer domain: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer reversed: type: boolean dataSourceChartProperties: type: object properties: dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSourceId: type: string filterSpecs: type: array items: type: object properties: columnIndex: type: integer dataSourceColumnReference: type: object properties: name: type: string filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string fontName: type: string hiddenDimensionStrategy: type: string histogramChart: type: object properties: bucketSize: type: number legendPosition: type: string outlierPercentile: type: number series: type: array items: type: object properties: barColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number barColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer showItemDividers: type: boolean maximized: type: boolean orgChart: type: object properties: labels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer nodeColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number nodeColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string nodeSize: type: string parentLabels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer selectedNodeColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number selectedNodeColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string tooltips: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer pieChart: type: object properties: domain: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer legendPosition: type: string pieHole: type: number series: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer threeDimensional: type: boolean scorecardChart: type: object properties: aggregateType: type: string baselineValueData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer baselineValueFormat: type: object properties: comparisonType: type: string description: type: string negativeColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number negativeColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string position: type: object properties: horizontalAlignment: type: string positiveColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number positiveColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean customFormatOptions: type: object properties: prefix: type: string suffix: type: string keyValueData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer keyValueFormat: type: object properties: position: type: object properties: horizontalAlignment: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean numberFormatSource: type: string scaleFactor: type: number sortSpecs: type: array items: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataSourceColumnReference: type: object properties: name: type: string dimensionIndex: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string sortOrder: type: string subtitle: type: string subtitleTextFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean subtitleTextPosition: type: object properties: horizontalAlignment: type: string title: type: string titleTextFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean titleTextPosition: type: object properties: horizontalAlignment: type: string treemapChart: type: object properties: colorData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer colorScale: type: object properties: maxValueColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number maxValueColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string midValueColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number midValueColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string minValueColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number minValueColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string noDataColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number noDataColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string headerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number headerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string hideTooltips: type: boolean hintedLevels: type: integer labels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer levels: type: integer maxValue: type: number minValue: type: number parentLabels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer sizeData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean waterfallChart: type: object properties: connectorLineStyle: type: object properties: type: type: string width: type: integer domain: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer reversed: type: boolean firstValueIsTotal: type: boolean hideConnectorLines: type: boolean series: type: array items: type: object properties: customSubtotals: type: array items: type: object properties: dataIsSubtotal: type: boolean label: type: string subtotalIndex: type: integer data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer dataLabel: type: object properties: customLabelData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer placement: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean type: type: string hideTrailingSubtotal: type: boolean negativeColumnsStyle: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string label: type: string positiveColumnsStyle: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string label: type: string subtotalColumnsStyle: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string label: type: string stackedType: type: string totalDataLabel: type: object properties: customLabelData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer placement: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean type: type: string addDataSource: type: object properties: dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSource: type: object properties: calculatedColumns: type: array items: type: object properties: formula: type: string reference: type: object properties: name: type: string dataSourceId: type: string sheetId: type: integer spec: type: object properties: bigQuery: type: object properties: projectId: type: string querySpec: type: object properties: rawQuery: type: string tableSpec: type: object properties: datasetId: type: string tableId: type: string tableProjectId: type: string parameters: type: array items: type: object properties: name: type: string namedRangeId: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer addDimensionGroup: type: object properties: dimensionGroups: type: array items: type: object properties: collapsed: type: boolean depth: type: integer range: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer addFilterView: type: object properties: filter: type: object properties: criteria: type: object properties: reprehenderit_f3: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string sed_99: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string filterSpecs: type: array items: type: object properties: columnIndex: type: integer dataSourceColumnReference: type: object properties: name: type: string filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string filterViewId: type: integer namedRangeId: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer sortSpecs: type: array items: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataSourceColumnReference: type: object properties: name: type: string dimensionIndex: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string sortOrder: type: string title: type: string addNamedRange: type: object properties: namedRange: type: object properties: name: type: string namedRangeId: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer addProtectedRange: type: object properties: protectedRange: type: object properties: description: type: string editors: type: object properties: domainUsersCanEdit: type: boolean groups: type: array items: type: string users: type: array items: type: string namedRangeId: type: string protectedRangeId: type: integer range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer requestingUserCanEdit: type: boolean unprotectedRanges: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer warningOnly: type: boolean addSheet: type: object properties: properties: type: object properties: dataSourceSheetProperties: type: object properties: columns: type: array items: type: object properties: formula: type: string reference: type: object properties: name: type: string dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSourceId: type: string gridProperties: type: object properties: columnCount: type: integer columnGroupControlAfter: type: boolean frozenColumnCount: type: integer frozenRowCount: type: integer hideGridlines: type: boolean rowCount: type: integer rowGroupControlAfter: type: boolean hidden: type: boolean index: type: integer rightToLeft: type: boolean sheetId: type: integer sheetType: type: string tabColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number tabColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string title: type: string addSlicer: type: object properties: slicer: type: object properties: position: type: object properties: newSheet: type: boolean overlayPosition: type: object properties: anchorCell: type: object properties: columnIndex: type: integer rowIndex: type: integer sheetId: type: integer heightPixels: type: integer offsetXPixels: type: integer offsetYPixels: type: integer widthPixels: type: integer sheetId: type: integer slicerId: type: integer spec: type: object properties: applyToPivotTables: type: boolean backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string columnIndex: type: integer dataRange: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string horizontalAlignment: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean title: type: string createDeveloperMetadata: type: object properties: developerMetadata: type: object properties: location: type: object properties: dimensionRange: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer locationType: type: string sheetId: type: integer spreadsheet: type: boolean metadataId: type: integer metadataKey: type: string metadataValue: type: string visibility: type: string deleteConditionalFormatRule: type: object properties: rule: type: object properties: booleanRule: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string format: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string borders: type: object properties: bottom: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer left: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer right: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer top: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer horizontalAlignment: type: string hyperlinkDisplayType: type: string numberFormat: type: object properties: pattern: type: string type: type: string padding: type: object properties: bottom: type: integer left: type: integer right: type: integer top: type: integer textDirection: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean textRotation: type: object properties: angle: type: integer vertical: type: boolean verticalAlignment: type: string wrapStrategy: type: string gradientRule: type: object properties: maxpoint: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string type: type: string value: type: string midpoint: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string type: type: string value: type: string minpoint: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string type: type: string value: type: string ranges: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer deleteDeveloperMetadata: type: object properties: deletedDeveloperMetadata: type: array items: type: object properties: location: type: object properties: dimensionRange: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer locationType: type: string sheetId: type: integer spreadsheet: type: boolean metadataId: type: integer metadataKey: type: string metadataValue: type: string visibility: type: string deleteDimensionGroup: type: object properties: dimensionGroups: type: array items: type: object properties: collapsed: type: boolean depth: type: integer range: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer deleteDuplicates: type: object properties: duplicatesRemovedCount: type: integer duplicateFilterView: type: object properties: filter: type: object properties: criteria: type: object properties: anim_31: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string filterSpecs: type: array items: type: object properties: columnIndex: type: integer dataSourceColumnReference: type: object properties: name: type: string filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string filterViewId: type: integer namedRangeId: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer sortSpecs: type: array items: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataSourceColumnReference: type: object properties: name: type: string dimensionIndex: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string sortOrder: type: string title: type: string duplicateSheet: type: object properties: properties: type: object properties: dataSourceSheetProperties: type: object properties: columns: type: array items: type: object properties: formula: type: string reference: type: object properties: name: type: string dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSourceId: type: string gridProperties: type: object properties: columnCount: type: integer columnGroupControlAfter: type: boolean frozenColumnCount: type: integer frozenRowCount: type: integer hideGridlines: type: boolean rowCount: type: integer rowGroupControlAfter: type: boolean hidden: type: boolean index: type: integer rightToLeft: type: boolean sheetId: type: integer sheetType: type: string tabColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number tabColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string title: type: string findReplace: type: object properties: formulasChanged: type: integer occurrencesChanged: type: integer rowsChanged: type: integer sheetsChanged: type: integer valuesChanged: type: integer refreshDataSource: type: object properties: statuses: type: array items: type: object properties: dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string reference: type: object properties: chartId: type: integer dataSourceFormulaCell: type: object properties: columnIndex: type: integer rowIndex: type: integer sheetId: type: integer dataSourcePivotTableAnchorCell: type: object properties: columnIndex: type: integer rowIndex: type: integer sheetId: type: integer dataSourceTableAnchorCell: type: object properties: columnIndex: type: integer rowIndex: type: integer sheetId: type: integer sheetId: type: string trimWhitespace: type: object properties: cellsChangedCount: type: integer updateConditionalFormatRule: type: object properties: newIndex: type: integer newRule: type: object properties: booleanRule: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string format: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string borders: type: object properties: bottom: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer left: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer right: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer top: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer horizontalAlignment: type: string hyperlinkDisplayType: type: string numberFormat: type: object properties: pattern: type: string type: type: string padding: type: object properties: bottom: type: integer left: type: integer right: type: integer top: type: integer textDirection: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean textRotation: type: object properties: angle: type: integer vertical: type: boolean verticalAlignment: type: string wrapStrategy: type: string gradientRule: type: object properties: maxpoint: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string type: type: string value: type: string midpoint: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string type: type: string value: type: string minpoint: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string type: type: string value: type: string ranges: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer oldIndex: type: integer oldRule: type: object properties: booleanRule: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string format: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string borders: type: object properties: bottom: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer left: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer right: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer top: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer horizontalAlignment: type: string hyperlinkDisplayType: type: string numberFormat: type: object properties: pattern: type: string type: type: string padding: type: object properties: bottom: type: integer left: type: integer right: type: integer top: type: integer textDirection: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean textRotation: type: object properties: angle: type: integer vertical: type: boolean verticalAlignment: type: string wrapStrategy: type: string gradientRule: type: object properties: maxpoint: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string type: type: string value: type: string midpoint: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string type: type: string value: type: string minpoint: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string type: type: string value: type: string ranges: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer updateDataSource: type: object properties: dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSource: type: object properties: calculatedColumns: type: array items: type: object properties: formula: type: string reference: type: object properties: name: type: string dataSourceId: type: string sheetId: type: integer spec: type: object properties: bigQuery: type: object properties: projectId: type: string querySpec: type: object properties: rawQuery: type: string tableSpec: type: object properties: datasetId: type: string tableId: type: string tableProjectId: type: string parameters: type: array items: type: object properties: name: type: string namedRangeId: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer updateDeveloperMetadata: type: object properties: developerMetadata: type: array items: type: object properties: location: type: object properties: dimensionRange: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer locationType: type: string sheetId: type: integer spreadsheet: type: boolean metadataId: type: integer metadataKey: type: string metadataValue: type: string visibility: type: string updateEmbeddedObjectPosition: type: object properties: position: type: object properties: newSheet: type: boolean overlayPosition: type: object properties: anchorCell: type: object properties: columnIndex: type: integer rowIndex: type: integer sheetId: type: integer heightPixels: type: integer offsetXPixels: type: integer offsetYPixels: type: integer widthPixels: type: integer sheetId: type: integer spreadsheetId: type: string updatedSpreadsheet: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheet' SpreadsheetsPostResponse1UpdatedSpreadsheet: description: SpreadsheetsPostResponse1UpdatedSpreadsheet schema type: object properties: dataSourceSchedules: type: array items: type: object properties: dailySchedule: type: object properties: startTime: type: object properties: hours: type: integer minutes: type: integer nanos: type: integer seconds: type: integer enabled: type: boolean monthlySchedule: type: object properties: daysOfMonth: type: array items: type: integer startTime: type: object properties: hours: type: integer minutes: type: integer nanos: type: integer seconds: type: integer nextRun: type: object properties: endTime: type: string startTime: type: string refreshScope: type: string weeklySchedule: type: object properties: daysOfWeek: type: array items: type: string startTime: type: object properties: hours: type: integer minutes: type: integer nanos: type: integer seconds: type: integer dataSources: type: array items: type: object properties: calculatedColumns: type: array items: type: object properties: formula: type: string reference: type: object properties: name: type: string dataSourceId: type: string sheetId: type: integer spec: type: object properties: bigQuery: type: object properties: projectId: type: string querySpec: type: object properties: rawQuery: type: string tableSpec: type: object properties: datasetId: type: string tableId: type: string tableProjectId: type: string parameters: type: array items: type: object properties: name: type: string namedRangeId: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer developerMetadata: type: array items: type: object properties: location: type: object properties: dimensionRange: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer locationType: type: string sheetId: type: integer spreadsheet: type: boolean metadataId: type: integer metadataKey: type: string metadataValue: type: string visibility: type: string namedRanges: type: array items: type: object properties: name: type: string namedRangeId: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer properties: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetProperties' sheets: type: array items: type: object properties: bandedRanges: type: array items: type: object properties: bandedRangeId: type: integer columnProperties: type: object properties: firstBandColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number firstBandColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string footerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number footerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string headerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number headerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string secondBandColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number secondBandColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer rowProperties: type: object properties: firstBandColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number firstBandColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string footerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number footerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string headerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number headerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string secondBandColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number secondBandColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string basicFilter: type: object properties: criteria: type: object properties: nisiec: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string deserunt_77: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string filterSpecs: type: array items: type: object properties: columnIndex: type: integer dataSourceColumnReference: type: object properties: name: type: string filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer sortSpecs: type: array items: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataSourceColumnReference: type: object properties: name: type: string dimensionIndex: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string sortOrder: type: string charts: type: array items: type: object properties: border: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string chartId: type: integer position: type: object properties: newSheet: type: boolean overlayPosition: type: object properties: anchorCell: type: object properties: columnIndex: type: integer rowIndex: type: integer sheetId: type: integer heightPixels: type: integer offsetXPixels: type: integer offsetYPixels: type: integer widthPixels: type: integer sheetId: type: integer spec: type: object properties: altText: type: string backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string basicChart: type: object properties: axis: type: array items: type: object properties: format: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean position: type: string title: type: string titleTextPosition: type: object properties: horizontalAlignment: type: string viewWindowOptions: type: object properties: viewWindowMax: type: number viewWindowMin: type: number viewWindowMode: type: string chartType: type: string compareMode: type: string domains: type: array items: type: object properties: domain: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer reversed: type: boolean headerCount: type: integer interpolateNulls: type: boolean legendPosition: type: string lineSmoothing: type: boolean series: type: array items: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataLabel: type: object properties: customLabelData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer placement: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean type: type: string lineStyle: type: object properties: type: type: string width: type: integer pointStyle: type: object properties: shape: type: string size: type: number series: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer styleOverrides: type: array items: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string index: type: integer pointStyle: type: object properties: shape: type: string size: type: number targetAxis: type: string type: type: string stackedType: type: string threeDimensional: type: boolean totalDataLabel: type: object properties: customLabelData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer placement: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean type: type: string bubbleChart: type: object properties: bubbleBorderColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number bubbleBorderColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string bubbleLabels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer bubbleMaxRadiusSize: type: integer bubbleMinRadiusSize: type: integer bubbleOpacity: type: number bubbleSizes: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer bubbleTextStyle: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean domain: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer groupIds: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer legendPosition: type: string series: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer candlestickChart: type: object properties: data: type: array items: type: object properties: closeSeries: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer highSeries: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer lowSeries: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer openSeries: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer domain: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer reversed: type: boolean dataSourceChartProperties: type: object properties: dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSourceId: type: string filterSpecs: type: array items: type: object properties: columnIndex: type: integer dataSourceColumnReference: type: object properties: name: type: string filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string fontName: type: string hiddenDimensionStrategy: type: string histogramChart: type: object properties: bucketSize: type: number legendPosition: type: string outlierPercentile: type: number series: type: array items: type: object properties: barColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number barColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer showItemDividers: type: boolean maximized: type: boolean orgChart: type: object properties: labels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer nodeColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number nodeColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string nodeSize: type: string parentLabels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer selectedNodeColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number selectedNodeColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string tooltips: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer pieChart: type: object properties: domain: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer legendPosition: type: string pieHole: type: number series: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer threeDimensional: type: boolean scorecardChart: type: object properties: aggregateType: type: string baselineValueData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer baselineValueFormat: type: object properties: comparisonType: type: string description: type: string negativeColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number negativeColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string position: type: object properties: horizontalAlignment: type: string positiveColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number positiveColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean customFormatOptions: type: object properties: prefix: type: string suffix: type: string keyValueData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer keyValueFormat: type: object properties: position: type: object properties: horizontalAlignment: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean numberFormatSource: type: string scaleFactor: type: number sortSpecs: type: array items: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataSourceColumnReference: type: object properties: name: type: string dimensionIndex: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string sortOrder: type: string subtitle: type: string subtitleTextFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean subtitleTextPosition: type: object properties: horizontalAlignment: type: string title: type: string titleTextFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean titleTextPosition: type: object properties: horizontalAlignment: type: string treemapChart: type: object properties: colorData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer colorScale: type: object properties: maxValueColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number maxValueColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string midValueColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number midValueColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string minValueColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number minValueColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string noDataColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number noDataColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string headerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number headerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string hideTooltips: type: boolean hintedLevels: type: integer labels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer levels: type: integer maxValue: type: number minValue: type: number parentLabels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer sizeData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean waterfallChart: type: object properties: connectorLineStyle: type: object properties: type: type: string width: type: integer domain: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer reversed: type: boolean firstValueIsTotal: type: boolean hideConnectorLines: type: boolean series: type: array items: type: object properties: customSubtotals: type: array items: type: object properties: dataIsSubtotal: type: boolean label: type: string subtotalIndex: type: integer data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer dataLabel: type: object properties: customLabelData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer placement: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean type: type: string hideTrailingSubtotal: type: boolean negativeColumnsStyle: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string label: type: string positiveColumnsStyle: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string label: type: string subtotalColumnsStyle: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string label: type: string stackedType: type: string totalDataLabel: type: object properties: customLabelData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer placement: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean type: type: string columnGroups: type: array items: type: object properties: collapsed: type: boolean depth: type: integer range: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer conditionalFormats: type: array items: type: object properties: booleanRule: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string format: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string borders: type: object properties: bottom: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer left: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer right: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer top: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer horizontalAlignment: type: string hyperlinkDisplayType: type: string numberFormat: type: object properties: pattern: type: string type: type: string padding: type: object properties: bottom: type: integer left: type: integer right: type: integer top: type: integer textDirection: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean textRotation: type: object properties: angle: type: integer vertical: type: boolean verticalAlignment: type: string wrapStrategy: type: string gradientRule: type: object properties: maxpoint: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string type: type: string value: type: string midpoint: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string type: type: string value: type: string minpoint: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string type: type: string value: type: string ranges: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer data: type: array items: type: object properties: columnMetadata: type: array items: type: object properties: dataSourceColumnReference: type: object properties: name: type: string developerMetadata: type: array items: type: object properties: location: type: object properties: dimensionRange: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer locationType: type: string sheetId: type: integer spreadsheet: type: boolean metadataId: type: integer metadataKey: type: string metadataValue: type: string visibility: type: string hiddenByFilter: type: boolean hiddenByUser: type: boolean pixelSize: type: integer rowData: type: array items: type: object properties: values: type: array items: type: object properties: dataSourceFormula: type: object properties: dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSourceId: type: string dataSourceTable: type: object properties: columnSelectionType: type: string columns: type: array items: type: object properties: name: type: string dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSourceId: type: string filterSpecs: type: array items: type: object properties: columnIndex: type: integer dataSourceColumnReference: type: object properties: name: type: string filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string rowLimit: type: integer sortSpecs: type: array items: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataSourceColumnReference: type: object properties: name: type: string dimensionIndex: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string sortOrder: type: string dataValidation: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string inputMessage: type: string showCustomUi: type: boolean strict: type: boolean effectiveFormat: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string borders: type: object properties: bottom: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer left: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer right: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer top: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer horizontalAlignment: type: string hyperlinkDisplayType: type: string numberFormat: type: object properties: pattern: type: string type: type: string padding: type: object properties: bottom: type: integer left: type: integer right: type: integer top: type: integer textDirection: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean textRotation: type: object properties: angle: type: integer vertical: type: boolean verticalAlignment: type: string wrapStrategy: type: string effectiveValue: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string formattedValue: type: string hyperlink: type: string note: type: string pivotTable: type: object properties: columns: type: array items: type: object properties: dataSourceColumnReference: type: object properties: name: type: string groupLimit: type: object properties: applyOrder: type: integer countLimit: type: integer groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: end: type: number interval: type: number start: type: number manualRule: type: object properties: groups: type: array items: type: object properties: groupName: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string items: type: array items: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string label: type: string repeatHeadings: type: boolean showTotals: type: boolean sortOrder: type: string sourceColumnOffset: type: integer valueBucket: type: object properties: buckets: type: array items: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string valuesIndex: type: integer valueMetadata: type: array items: type: object properties: collapsed: type: boolean value: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string criteria: type: object properties: commodobb_: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string visibleByDefault: type: boolean visibleValues: type: array items: type: string officia528: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string visibleByDefault: type: boolean visibleValues: type: array items: type: string dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSourceId: type: string filterSpecs: type: array items: type: object properties: columnOffsetIndex: type: integer dataSourceColumnReference: type: object properties: name: type: string filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string visibleByDefault: type: boolean visibleValues: type: array items: type: string rows: type: array items: type: object properties: dataSourceColumnReference: type: object properties: name: type: string groupLimit: type: object properties: applyOrder: type: integer countLimit: type: integer groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: end: type: number interval: type: number start: type: number manualRule: type: object properties: groups: type: array items: type: object properties: groupName: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string items: type: array items: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string label: type: string repeatHeadings: type: boolean showTotals: type: boolean sortOrder: type: string sourceColumnOffset: type: integer valueBucket: type: object properties: buckets: type: array items: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string valuesIndex: type: integer valueMetadata: type: array items: type: object properties: collapsed: type: boolean value: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string source: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer valueLayout: type: string values: type: array items: type: object properties: calculatedDisplayType: type: string dataSourceColumnReference: type: object properties: name: type: string formula: type: string name: type: string sourceColumnOffset: type: integer summarizeFunction: type: string textFormatRuns: type: array items: type: object properties: format: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean startIndex: type: integer userEnteredFormat: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string borders: type: object properties: bottom: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer left: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer right: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer top: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer horizontalAlignment: type: string hyperlinkDisplayType: type: string numberFormat: type: object properties: pattern: type: string type: type: string padding: type: object properties: bottom: type: integer left: type: integer right: type: integer top: type: integer textDirection: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean textRotation: type: object properties: angle: type: integer vertical: type: boolean verticalAlignment: type: string wrapStrategy: type: string userEnteredValue: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string rowMetadata: type: array items: type: object properties: dataSourceColumnReference: type: object properties: name: type: string developerMetadata: type: array items: type: object properties: location: type: object properties: dimensionRange: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer locationType: type: string sheetId: type: integer spreadsheet: type: boolean metadataId: type: integer metadataKey: type: string metadataValue: type: string visibility: type: string hiddenByFilter: type: boolean hiddenByUser: type: boolean pixelSize: type: integer startColumn: type: integer startRow: type: integer developerMetadata: type: array items: type: object properties: location: type: object properties: dimensionRange: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer locationType: type: string sheetId: type: integer spreadsheet: type: boolean metadataId: type: integer metadataKey: type: string metadataValue: type: string visibility: type: string filterViews: type: array items: type: object properties: criteria: type: object properties: quisc72: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string filterSpecs: type: array items: type: object properties: columnIndex: type: integer dataSourceColumnReference: type: object properties: name: type: string filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string filterViewId: type: integer namedRangeId: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer sortSpecs: type: array items: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataSourceColumnReference: type: object properties: name: type: string dimensionIndex: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string sortOrder: type: string title: type: string merges: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer properties: type: object properties: dataSourceSheetProperties: type: object properties: columns: type: array items: type: object properties: formula: type: string reference: type: object properties: name: type: string dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSourceId: type: string gridProperties: type: object properties: columnCount: type: integer columnGroupControlAfter: type: boolean frozenColumnCount: type: integer frozenRowCount: type: integer hideGridlines: type: boolean rowCount: type: integer rowGroupControlAfter: type: boolean hidden: type: boolean index: type: integer rightToLeft: type: boolean sheetId: type: integer sheetType: type: string tabColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number tabColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string title: type: string protectedRanges: type: array items: type: object properties: description: type: string editors: type: object properties: domainUsersCanEdit: type: boolean groups: type: array items: type: string users: type: array items: type: string namedRangeId: type: string protectedRangeId: type: integer range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer requestingUserCanEdit: type: boolean unprotectedRanges: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer warningOnly: type: boolean rowGroups: type: array items: type: object properties: collapsed: type: boolean depth: type: integer range: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer slicers: type: array items: type: object properties: position: type: object properties: newSheet: type: boolean overlayPosition: type: object properties: anchorCell: type: object properties: columnIndex: type: integer rowIndex: type: integer sheetId: type: integer heightPixels: type: integer offsetXPixels: type: integer offsetYPixels: type: integer widthPixels: type: integer sheetId: type: integer slicerId: type: integer spec: type: object properties: applyToPivotTables: type: boolean backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string columnIndex: type: integer dataRange: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string horizontalAlignment: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean title: type: string spreadsheetId: type: string spreadsheetUrl: type: string SpreadsheetsPostResponse1UpdatedSpreadsheetProperties: description: SpreadsheetsPostResponse1UpdatedSpreadsheetProperties schema type: object properties: autoRecalc: type: string defaultFormat: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormat' iterativeCalculationSettings: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesIterativeCalculationSettings' locale: type: string spreadsheetTheme: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesSpreadsheetTheme' timeZone: type: string title: type: string SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormat: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormat schema type: object properties: backgroundColor: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBackgroundColor' backgroundColorStyle: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBackgroundColorStyle' borders: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBorders' horizontalAlignment: type: string hyperlinkDisplayType: type: string numberFormat: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatNumberFormat' padding: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatPadding' textDirection: type: string textFormat: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatTextFormat' textRotation: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatTextRotation' verticalAlignment: type: string wrapStrategy: type: string SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBackgroundColor: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBackgroundColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBackgroundColorStyle: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBackgroundColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBackgroundColorStyleRgbColor' themeColor: type: string SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBackgroundColorStyleRgbColor: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBackgroundColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBorders: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBorders schema type: object properties: bottom: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersBottom' left: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersLeft' right: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersRight' top: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersTop' SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersBottom: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersBottom schema type: object properties: color: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersBottomColor' colorStyle: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersBottomColorStyle' style: type: string width: type: integer SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersBottomColor: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersBottomColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersBottomColorStyle: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersBottomColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersBottomColorStyleRgbColor' themeColor: type: string SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersBottomColorStyleRgbColor: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersBottomColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersLeft: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersLeft schema type: object properties: color: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersLeftColor' colorStyle: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersLeftColorStyle' style: type: string width: type: integer SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersLeftColor: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersLeftColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersLeftColorStyle: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersLeftColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersLeftColorStyleRgbColor' themeColor: type: string SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersLeftColorStyleRgbColor: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersLeftColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersRight: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersRight schema type: object properties: color: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersRightColor' colorStyle: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersRightColorStyle' style: type: string width: type: integer SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersRightColor: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersRightColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersRightColorStyle: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersRightColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersRightColorStyleRgbColor' themeColor: type: string SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersRightColorStyleRgbColor: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersRightColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersTop: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersTop schema type: object properties: color: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersTopColor' colorStyle: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersTopColorStyle' style: type: string width: type: integer SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersTopColor: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersTopColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersTopColorStyle: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersTopColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersTopColorStyleRgbColor' themeColor: type: string SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersTopColorStyleRgbColor: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatBordersTopColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatNumberFormat: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatNumberFormat schema type: object properties: pattern: type: string type: type: string SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatPadding: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatPadding schema type: object properties: bottom: type: integer left: type: integer right: type: integer top: type: integer SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatTextFormat: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatTextFormat schema type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatTextFormatForegroundColor' foregroundColorStyle: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatTextFormatForegroundColorStyle' italic: type: boolean link: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatTextFormatLink' strikethrough: type: boolean underline: type: boolean SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatTextFormatForegroundColor: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatTextFormatForegroundColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatTextFormatForegroundColorStyle: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatTextFormatForegroundColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatTextFormatForegroundColorStyleRgbColor' themeColor: type: string SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatTextFormatForegroundColorStyleRgbColor: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatTextFormatForegroundColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatTextFormatLink: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatTextFormatLink schema type: object properties: uri: type: string SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatTextRotation: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesDefaultFormatTextRotation schema type: object properties: angle: type: integer vertical: type: boolean SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesIterativeCalculationSettings: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesIterativeCalculationSettings schema type: object properties: convergenceThreshold: type: number maxIterations: type: integer SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesSpreadsheetTheme: description: SpreadsheetsPostResponse1UpdatedSpreadsheetPropertiesSpreadsheetTheme schema type: object properties: primaryFontFamily: type: string themeColors: type: array items: type: object properties: color: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string colorType: type: string SpreadsheetsPostResponse2: description: SpreadsheetsPostResponse2 schema type: object properties: dataSourceSchedules: type: array items: type: object properties: dailySchedule: type: object properties: startTime: type: object properties: hours: type: integer minutes: type: integer nanos: type: integer seconds: type: integer enabled: type: boolean monthlySchedule: type: object properties: daysOfMonth: type: array items: type: integer startTime: type: object properties: hours: type: integer minutes: type: integer nanos: type: integer seconds: type: integer nextRun: type: object properties: endTime: type: string startTime: type: string refreshScope: type: string weeklySchedule: type: object properties: daysOfWeek: type: array items: type: string startTime: type: object properties: hours: type: integer minutes: type: integer nanos: type: integer seconds: type: integer dataSources: type: array items: type: object properties: calculatedColumns: type: array items: type: object properties: formula: type: string reference: type: object properties: name: type: string dataSourceId: type: string sheetId: type: integer spec: type: object properties: bigQuery: type: object properties: projectId: type: string querySpec: type: object properties: rawQuery: type: string tableSpec: type: object properties: datasetId: type: string tableId: type: string tableProjectId: type: string parameters: type: array items: type: object properties: name: type: string namedRangeId: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer developerMetadata: type: array items: type: object properties: location: type: object properties: dimensionRange: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer locationType: type: string sheetId: type: integer spreadsheet: type: boolean metadataId: type: integer metadataKey: type: string metadataValue: type: string visibility: type: string namedRanges: type: array items: type: object properties: name: type: string namedRangeId: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer properties: $ref: '#/components/schemas/SpreadsheetsPostResponse2Properties' sheets: type: array items: type: object properties: bandedRanges: type: array items: type: object properties: bandedRangeId: type: integer columnProperties: type: object properties: firstBandColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number firstBandColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string footerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number footerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string headerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number headerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string secondBandColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number secondBandColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer rowProperties: type: object properties: firstBandColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number firstBandColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string footerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number footerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string headerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number headerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string secondBandColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number secondBandColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string basicFilter: type: object properties: criteria: type: object properties: doloreb_: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string filterSpecs: type: array items: type: object properties: columnIndex: type: integer dataSourceColumnReference: type: object properties: name: type: string filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer sortSpecs: type: array items: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataSourceColumnReference: type: object properties: name: type: string dimensionIndex: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string sortOrder: type: string charts: type: array items: type: object properties: border: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string chartId: type: integer position: type: object properties: newSheet: type: boolean overlayPosition: type: object properties: anchorCell: type: object properties: columnIndex: type: integer rowIndex: type: integer sheetId: type: integer heightPixels: type: integer offsetXPixels: type: integer offsetYPixels: type: integer widthPixels: type: integer sheetId: type: integer spec: type: object properties: altText: type: string backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string basicChart: type: object properties: axis: type: array items: type: object properties: format: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean position: type: string title: type: string titleTextPosition: type: object properties: horizontalAlignment: type: string viewWindowOptions: type: object properties: viewWindowMax: type: number viewWindowMin: type: number viewWindowMode: type: string chartType: type: string compareMode: type: string domains: type: array items: type: object properties: domain: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer reversed: type: boolean headerCount: type: integer interpolateNulls: type: boolean legendPosition: type: string lineSmoothing: type: boolean series: type: array items: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataLabel: type: object properties: customLabelData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer placement: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean type: type: string lineStyle: type: object properties: type: type: string width: type: integer pointStyle: type: object properties: shape: type: string size: type: number series: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer styleOverrides: type: array items: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string index: type: integer pointStyle: type: object properties: shape: type: string size: type: number targetAxis: type: string type: type: string stackedType: type: string threeDimensional: type: boolean totalDataLabel: type: object properties: customLabelData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer placement: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean type: type: string bubbleChart: type: object properties: bubbleBorderColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number bubbleBorderColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string bubbleLabels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer bubbleMaxRadiusSize: type: integer bubbleMinRadiusSize: type: integer bubbleOpacity: type: number bubbleSizes: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer bubbleTextStyle: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean domain: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer groupIds: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer legendPosition: type: string series: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer candlestickChart: type: object properties: data: type: array items: type: object properties: closeSeries: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer highSeries: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer lowSeries: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer openSeries: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer domain: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer reversed: type: boolean dataSourceChartProperties: type: object properties: dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSourceId: type: string filterSpecs: type: array items: type: object properties: columnIndex: type: integer dataSourceColumnReference: type: object properties: name: type: string filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string fontName: type: string hiddenDimensionStrategy: type: string histogramChart: type: object properties: bucketSize: type: number legendPosition: type: string outlierPercentile: type: number series: type: array items: type: object properties: barColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number barColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer showItemDividers: type: boolean maximized: type: boolean orgChart: type: object properties: labels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer nodeColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number nodeColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string nodeSize: type: string parentLabels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer selectedNodeColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number selectedNodeColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string tooltips: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer pieChart: type: object properties: domain: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer legendPosition: type: string pieHole: type: number series: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer threeDimensional: type: boolean scorecardChart: type: object properties: aggregateType: type: string baselineValueData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer baselineValueFormat: type: object properties: comparisonType: type: string description: type: string negativeColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number negativeColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string position: type: object properties: horizontalAlignment: type: string positiveColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number positiveColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean customFormatOptions: type: object properties: prefix: type: string suffix: type: string keyValueData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer keyValueFormat: type: object properties: position: type: object properties: horizontalAlignment: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean numberFormatSource: type: string scaleFactor: type: number sortSpecs: type: array items: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataSourceColumnReference: type: object properties: name: type: string dimensionIndex: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string sortOrder: type: string subtitle: type: string subtitleTextFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean subtitleTextPosition: type: object properties: horizontalAlignment: type: string title: type: string titleTextFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean titleTextPosition: type: object properties: horizontalAlignment: type: string treemapChart: type: object properties: colorData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer colorScale: type: object properties: maxValueColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number maxValueColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string midValueColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number midValueColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string minValueColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number minValueColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string noDataColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number noDataColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string headerColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number headerColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string hideTooltips: type: boolean hintedLevels: type: integer labels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer levels: type: integer maxValue: type: number minValue: type: number parentLabels: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer sizeData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean waterfallChart: type: object properties: connectorLineStyle: type: object properties: type: type: string width: type: integer domain: type: object properties: data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer reversed: type: boolean firstValueIsTotal: type: boolean hideConnectorLines: type: boolean series: type: array items: type: object properties: customSubtotals: type: array items: type: object properties: dataIsSubtotal: type: boolean label: type: string subtotalIndex: type: integer data: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer dataLabel: type: object properties: customLabelData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer placement: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean type: type: string hideTrailingSubtotal: type: boolean negativeColumnsStyle: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string label: type: string positiveColumnsStyle: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string label: type: string subtotalColumnsStyle: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string label: type: string stackedType: type: string totalDataLabel: type: object properties: customLabelData: type: object properties: aggregateType: type: string columnReference: type: object properties: name: type: string groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: intervalSize: type: number maxValue: type: number minValue: type: number sourceRange: type: object properties: sources: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer placement: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean type: type: string columnGroups: type: array items: type: object properties: collapsed: type: boolean depth: type: integer range: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer conditionalFormats: type: array items: type: object properties: booleanRule: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string format: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string borders: type: object properties: bottom: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer left: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer right: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer top: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer horizontalAlignment: type: string hyperlinkDisplayType: type: string numberFormat: type: object properties: pattern: type: string type: type: string padding: type: object properties: bottom: type: integer left: type: integer right: type: integer top: type: integer textDirection: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean textRotation: type: object properties: angle: type: integer vertical: type: boolean verticalAlignment: type: string wrapStrategy: type: string gradientRule: type: object properties: maxpoint: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string type: type: string value: type: string midpoint: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string type: type: string value: type: string minpoint: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string type: type: string value: type: string ranges: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer data: type: array items: type: object properties: columnMetadata: type: array items: type: object properties: dataSourceColumnReference: type: object properties: name: type: string developerMetadata: type: array items: type: object properties: location: type: object properties: dimensionRange: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer locationType: type: string sheetId: type: integer spreadsheet: type: boolean metadataId: type: integer metadataKey: type: string metadataValue: type: string visibility: type: string hiddenByFilter: type: boolean hiddenByUser: type: boolean pixelSize: type: integer rowData: type: array items: type: object properties: values: type: array items: type: object properties: dataSourceFormula: type: object properties: dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSourceId: type: string dataSourceTable: type: object properties: columnSelectionType: type: string columns: type: array items: type: object properties: name: type: string dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSourceId: type: string filterSpecs: type: array items: type: object properties: columnIndex: type: integer dataSourceColumnReference: type: object properties: name: type: string filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string rowLimit: type: integer sortSpecs: type: array items: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataSourceColumnReference: type: object properties: name: type: string dimensionIndex: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string sortOrder: type: string dataValidation: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string inputMessage: type: string showCustomUi: type: boolean strict: type: boolean effectiveFormat: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string borders: type: object properties: bottom: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer left: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer right: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer top: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer horizontalAlignment: type: string hyperlinkDisplayType: type: string numberFormat: type: object properties: pattern: type: string type: type: string padding: type: object properties: bottom: type: integer left: type: integer right: type: integer top: type: integer textDirection: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean textRotation: type: object properties: angle: type: integer vertical: type: boolean verticalAlignment: type: string wrapStrategy: type: string effectiveValue: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string formattedValue: type: string hyperlink: type: string note: type: string pivotTable: type: object properties: columns: type: array items: type: object properties: dataSourceColumnReference: type: object properties: name: type: string groupLimit: type: object properties: applyOrder: type: integer countLimit: type: integer groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: end: type: number interval: type: number start: type: number manualRule: type: object properties: groups: type: array items: type: object properties: groupName: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string items: type: array items: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string label: type: string repeatHeadings: type: boolean showTotals: type: boolean sortOrder: type: string sourceColumnOffset: type: integer valueBucket: type: object properties: buckets: type: array items: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string valuesIndex: type: integer valueMetadata: type: array items: type: object properties: collapsed: type: boolean value: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string criteria: type: object properties: consequat_c15: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string visibleByDefault: type: boolean visibleValues: type: array items: type: string dolor_aa: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string visibleByDefault: type: boolean visibleValues: type: array items: type: string dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSourceId: type: string filterSpecs: type: array items: type: object properties: columnOffsetIndex: type: integer dataSourceColumnReference: type: object properties: name: type: string filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string visibleByDefault: type: boolean visibleValues: type: array items: type: string rows: type: array items: type: object properties: dataSourceColumnReference: type: object properties: name: type: string groupLimit: type: object properties: applyOrder: type: integer countLimit: type: integer groupRule: type: object properties: dateTimeRule: type: object properties: type: type: string histogramRule: type: object properties: end: type: number interval: type: number start: type: number manualRule: type: object properties: groups: type: array items: type: object properties: groupName: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string items: type: array items: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string label: type: string repeatHeadings: type: boolean showTotals: type: boolean sortOrder: type: string sourceColumnOffset: type: integer valueBucket: type: object properties: buckets: type: array items: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string valuesIndex: type: integer valueMetadata: type: array items: type: object properties: collapsed: type: boolean value: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string source: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer valueLayout: type: string values: type: array items: type: object properties: calculatedDisplayType: type: string dataSourceColumnReference: type: object properties: name: type: string formula: type: string name: type: string sourceColumnOffset: type: integer summarizeFunction: type: string textFormatRuns: type: array items: type: object properties: format: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean startIndex: type: integer userEnteredFormat: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string borders: type: object properties: bottom: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer left: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer right: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer top: type: object properties: color: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number colorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string style: type: string width: type: integer horizontalAlignment: type: string hyperlinkDisplayType: type: string numberFormat: type: object properties: pattern: type: string type: type: string padding: type: object properties: bottom: type: integer left: type: integer right: type: integer top: type: integer textDirection: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean textRotation: type: object properties: angle: type: integer vertical: type: boolean verticalAlignment: type: string wrapStrategy: type: string userEnteredValue: type: object properties: boolValue: type: boolean errorValue: type: object properties: message: type: string type: type: string formulaValue: type: string numberValue: type: number stringValue: type: string rowMetadata: type: array items: type: object properties: dataSourceColumnReference: type: object properties: name: type: string developerMetadata: type: array items: type: object properties: location: type: object properties: dimensionRange: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer locationType: type: string sheetId: type: integer spreadsheet: type: boolean metadataId: type: integer metadataKey: type: string metadataValue: type: string visibility: type: string hiddenByFilter: type: boolean hiddenByUser: type: boolean pixelSize: type: integer startColumn: type: integer startRow: type: integer developerMetadata: type: array items: type: object properties: location: type: object properties: dimensionRange: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer locationType: type: string sheetId: type: integer spreadsheet: type: boolean metadataId: type: integer metadataKey: type: string metadataValue: type: string visibility: type: string filterViews: type: array items: type: object properties: criteria: type: object properties: laborum_5: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string quis_c0: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string filterSpecs: type: array items: type: object properties: columnIndex: type: integer dataSourceColumnReference: type: object properties: name: type: string filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string filterViewId: type: integer namedRangeId: type: string range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer sortSpecs: type: array items: type: object properties: backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string dataSourceColumnReference: type: object properties: name: type: string dimensionIndex: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string sortOrder: type: string title: type: string merges: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer properties: type: object properties: dataSourceSheetProperties: type: object properties: columns: type: array items: type: object properties: formula: type: string reference: type: object properties: name: type: string dataExecutionStatus: type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string dataSourceId: type: string gridProperties: type: object properties: columnCount: type: integer columnGroupControlAfter: type: boolean frozenColumnCount: type: integer frozenRowCount: type: integer hideGridlines: type: boolean rowCount: type: integer rowGroupControlAfter: type: boolean hidden: type: boolean index: type: integer rightToLeft: type: boolean sheetId: type: integer sheetType: type: string tabColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number tabColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string title: type: string protectedRanges: type: array items: type: object properties: description: type: string editors: type: object properties: domainUsersCanEdit: type: boolean groups: type: array items: type: string users: type: array items: type: string namedRangeId: type: string protectedRangeId: type: integer range: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer requestingUserCanEdit: type: boolean unprotectedRanges: type: array items: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer warningOnly: type: boolean rowGroups: type: array items: type: object properties: collapsed: type: boolean depth: type: integer range: type: object properties: dimension: type: string endIndex: type: integer sheetId: type: integer startIndex: type: integer slicers: type: array items: type: object properties: position: type: object properties: newSheet: type: boolean overlayPosition: type: object properties: anchorCell: type: object properties: columnIndex: type: integer rowIndex: type: integer sheetId: type: integer heightPixels: type: integer offsetXPixels: type: integer offsetYPixels: type: integer widthPixels: type: integer sheetId: type: integer slicerId: type: integer spec: type: object properties: applyToPivotTables: type: boolean backgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number backgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string columnIndex: type: integer dataRange: type: object properties: endColumnIndex: type: integer endRowIndex: type: integer sheetId: type: integer startColumnIndex: type: integer startRowIndex: type: integer filterCriteria: type: object properties: condition: type: object properties: type: type: string values: type: array items: type: object properties: relativeDate: type: string userEnteredValue: type: string hiddenValues: type: array items: type: string visibleBackgroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleBackgroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string visibleForegroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number visibleForegroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string horizontalAlignment: type: string textFormat: type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number foregroundColorStyle: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string italic: type: boolean link: type: object properties: uri: type: string strikethrough: type: boolean underline: type: boolean title: type: string spreadsheetId: type: string spreadsheetUrl: type: string SpreadsheetsPostResponse2Properties: description: SpreadsheetsPostResponse2Properties schema type: object properties: autoRecalc: type: string defaultFormat: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormat' iterativeCalculationSettings: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesIterativeCalculationSettings' locale: type: string spreadsheetTheme: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesSpreadsheetTheme' timeZone: type: string title: type: string SpreadsheetsPostResponse2PropertiesDefaultFormat: description: SpreadsheetsPostResponse2PropertiesDefaultFormat schema type: object properties: backgroundColor: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatBackgroundColor' backgroundColorStyle: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatBackgroundColorStyle' borders: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatBorders' horizontalAlignment: type: string hyperlinkDisplayType: type: string numberFormat: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatNumberFormat' padding: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatPadding' textDirection: type: string textFormat: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatTextFormat' textRotation: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatTextRotation' verticalAlignment: type: string wrapStrategy: type: string SpreadsheetsPostResponse2PropertiesDefaultFormatBackgroundColor: description: SpreadsheetsPostResponse2PropertiesDefaultFormatBackgroundColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse2PropertiesDefaultFormatBackgroundColorStyle: description: SpreadsheetsPostResponse2PropertiesDefaultFormatBackgroundColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatBackgroundColorStyleRgbColor' themeColor: type: string SpreadsheetsPostResponse2PropertiesDefaultFormatBackgroundColorStyleRgbColor: description: SpreadsheetsPostResponse2PropertiesDefaultFormatBackgroundColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse2PropertiesDefaultFormatBorders: description: SpreadsheetsPostResponse2PropertiesDefaultFormatBorders schema type: object properties: bottom: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatBordersBottom' left: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatBordersLeft' right: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatBordersRight' top: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatBordersTop' SpreadsheetsPostResponse2PropertiesDefaultFormatBordersBottom: description: SpreadsheetsPostResponse2PropertiesDefaultFormatBordersBottom schema type: object properties: color: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatBordersBottomColor' colorStyle: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatBordersBottomColorStyle' style: type: string width: type: integer SpreadsheetsPostResponse2PropertiesDefaultFormatBordersBottomColor: description: SpreadsheetsPostResponse2PropertiesDefaultFormatBordersBottomColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse2PropertiesDefaultFormatBordersBottomColorStyle: description: SpreadsheetsPostResponse2PropertiesDefaultFormatBordersBottomColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatBordersBottomColorStyleRgbColor' themeColor: type: string SpreadsheetsPostResponse2PropertiesDefaultFormatBordersBottomColorStyleRgbColor: description: SpreadsheetsPostResponse2PropertiesDefaultFormatBordersBottomColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse2PropertiesDefaultFormatBordersLeft: description: SpreadsheetsPostResponse2PropertiesDefaultFormatBordersLeft schema type: object properties: color: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatBordersLeftColor' colorStyle: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatBordersLeftColorStyle' style: type: string width: type: integer SpreadsheetsPostResponse2PropertiesDefaultFormatBordersLeftColor: description: SpreadsheetsPostResponse2PropertiesDefaultFormatBordersLeftColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse2PropertiesDefaultFormatBordersLeftColorStyle: description: SpreadsheetsPostResponse2PropertiesDefaultFormatBordersLeftColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatBordersLeftColorStyleRgbColor' themeColor: type: string SpreadsheetsPostResponse2PropertiesDefaultFormatBordersLeftColorStyleRgbColor: description: SpreadsheetsPostResponse2PropertiesDefaultFormatBordersLeftColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse2PropertiesDefaultFormatBordersRight: description: SpreadsheetsPostResponse2PropertiesDefaultFormatBordersRight schema type: object properties: color: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatBordersRightColor' colorStyle: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatBordersRightColorStyle' style: type: string width: type: integer SpreadsheetsPostResponse2PropertiesDefaultFormatBordersRightColor: description: SpreadsheetsPostResponse2PropertiesDefaultFormatBordersRightColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse2PropertiesDefaultFormatBordersRightColorStyle: description: SpreadsheetsPostResponse2PropertiesDefaultFormatBordersRightColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatBordersRightColorStyleRgbColor' themeColor: type: string SpreadsheetsPostResponse2PropertiesDefaultFormatBordersRightColorStyleRgbColor: description: SpreadsheetsPostResponse2PropertiesDefaultFormatBordersRightColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse2PropertiesDefaultFormatBordersTop: description: SpreadsheetsPostResponse2PropertiesDefaultFormatBordersTop schema type: object properties: color: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatBordersTopColor' colorStyle: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatBordersTopColorStyle' style: type: string width: type: integer SpreadsheetsPostResponse2PropertiesDefaultFormatBordersTopColor: description: SpreadsheetsPostResponse2PropertiesDefaultFormatBordersTopColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse2PropertiesDefaultFormatBordersTopColorStyle: description: SpreadsheetsPostResponse2PropertiesDefaultFormatBordersTopColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatBordersTopColorStyleRgbColor' themeColor: type: string SpreadsheetsPostResponse2PropertiesDefaultFormatBordersTopColorStyleRgbColor: description: SpreadsheetsPostResponse2PropertiesDefaultFormatBordersTopColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse2PropertiesDefaultFormatNumberFormat: description: SpreadsheetsPostResponse2PropertiesDefaultFormatNumberFormat schema type: object properties: pattern: type: string type: type: string SpreadsheetsPostResponse2PropertiesDefaultFormatPadding: description: SpreadsheetsPostResponse2PropertiesDefaultFormatPadding schema type: object properties: bottom: type: integer left: type: integer right: type: integer top: type: integer SpreadsheetsPostResponse2PropertiesDefaultFormatTextFormat: description: SpreadsheetsPostResponse2PropertiesDefaultFormatTextFormat schema type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatTextFormatForegroundColor' foregroundColorStyle: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatTextFormatForegroundColorStyle' italic: type: boolean link: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatTextFormatLink' strikethrough: type: boolean underline: type: boolean SpreadsheetsPostResponse2PropertiesDefaultFormatTextFormatForegroundColor: description: SpreadsheetsPostResponse2PropertiesDefaultFormatTextFormatForegroundColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse2PropertiesDefaultFormatTextFormatForegroundColorStyle: description: SpreadsheetsPostResponse2PropertiesDefaultFormatTextFormatForegroundColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsPostResponse2PropertiesDefaultFormatTextFormatForegroundColorStyleRgbColor' themeColor: type: string SpreadsheetsPostResponse2PropertiesDefaultFormatTextFormatForegroundColorStyleRgbColor: description: SpreadsheetsPostResponse2PropertiesDefaultFormatTextFormatForegroundColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponse2PropertiesDefaultFormatTextFormatLink: description: SpreadsheetsPostResponse2PropertiesDefaultFormatTextFormatLink schema type: object properties: uri: type: string SpreadsheetsPostResponse2PropertiesDefaultFormatTextRotation: description: SpreadsheetsPostResponse2PropertiesDefaultFormatTextRotation schema type: object properties: angle: type: integer vertical: type: boolean SpreadsheetsPostResponse2PropertiesIterativeCalculationSettings: description: SpreadsheetsPostResponse2PropertiesIterativeCalculationSettings schema type: object properties: convergenceThreshold: type: number maxIterations: type: integer SpreadsheetsPostResponse2PropertiesSpreadsheetTheme: description: SpreadsheetsPostResponse2PropertiesSpreadsheetTheme schema type: object properties: primaryFontFamily: type: string themeColors: type: array items: type: object properties: color: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string colorType: type: string SpreadsheetsPostResponseProperties: description: SpreadsheetsPostResponseProperties schema type: object properties: autoRecalc: type: string defaultFormat: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormat' iterativeCalculationSettings: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesIterativeCalculationSettings' locale: type: string spreadsheetTheme: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesSpreadsheetTheme' timeZone: type: string title: type: string SpreadsheetsPostResponsePropertiesDefaultFormat: description: SpreadsheetsPostResponsePropertiesDefaultFormat schema type: object properties: backgroundColor: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatBackgroundColor' backgroundColorStyle: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatBackgroundColorStyle' borders: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatBorders' horizontalAlignment: type: string hyperlinkDisplayType: type: string numberFormat: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatNumberFormat' padding: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatPadding' textDirection: type: string textFormat: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatTextFormat' textRotation: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatTextRotation' verticalAlignment: type: string wrapStrategy: type: string SpreadsheetsPostResponsePropertiesDefaultFormatBackgroundColor: description: SpreadsheetsPostResponsePropertiesDefaultFormatBackgroundColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponsePropertiesDefaultFormatBackgroundColorStyle: description: SpreadsheetsPostResponsePropertiesDefaultFormatBackgroundColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatBackgroundColorStyleRgbColor' themeColor: type: string SpreadsheetsPostResponsePropertiesDefaultFormatBackgroundColorStyleRgbColor: description: SpreadsheetsPostResponsePropertiesDefaultFormatBackgroundColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponsePropertiesDefaultFormatBorders: description: SpreadsheetsPostResponsePropertiesDefaultFormatBorders schema type: object properties: bottom: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatBordersBottom' left: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatBordersLeft' right: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatBordersRight' top: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatBordersTop' SpreadsheetsPostResponsePropertiesDefaultFormatBordersBottom: description: SpreadsheetsPostResponsePropertiesDefaultFormatBordersBottom schema type: object properties: color: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatBordersBottomColor' colorStyle: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatBordersBottomColorStyle' style: type: string width: type: integer SpreadsheetsPostResponsePropertiesDefaultFormatBordersBottomColor: description: SpreadsheetsPostResponsePropertiesDefaultFormatBordersBottomColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponsePropertiesDefaultFormatBordersBottomColorStyle: description: SpreadsheetsPostResponsePropertiesDefaultFormatBordersBottomColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatBordersBottomColorStyleRgbColor' themeColor: type: string SpreadsheetsPostResponsePropertiesDefaultFormatBordersBottomColorStyleRgbColor: description: SpreadsheetsPostResponsePropertiesDefaultFormatBordersBottomColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponsePropertiesDefaultFormatBordersLeft: description: SpreadsheetsPostResponsePropertiesDefaultFormatBordersLeft schema type: object properties: color: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatBordersLeftColor' colorStyle: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatBordersLeftColorStyle' style: type: string width: type: integer SpreadsheetsPostResponsePropertiesDefaultFormatBordersLeftColor: description: SpreadsheetsPostResponsePropertiesDefaultFormatBordersLeftColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponsePropertiesDefaultFormatBordersLeftColorStyle: description: SpreadsheetsPostResponsePropertiesDefaultFormatBordersLeftColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatBordersLeftColorStyleRgbColor' themeColor: type: string SpreadsheetsPostResponsePropertiesDefaultFormatBordersLeftColorStyleRgbColor: description: SpreadsheetsPostResponsePropertiesDefaultFormatBordersLeftColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponsePropertiesDefaultFormatBordersRight: description: SpreadsheetsPostResponsePropertiesDefaultFormatBordersRight schema type: object properties: color: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatBordersRightColor' colorStyle: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatBordersRightColorStyle' style: type: string width: type: integer SpreadsheetsPostResponsePropertiesDefaultFormatBordersRightColor: description: SpreadsheetsPostResponsePropertiesDefaultFormatBordersRightColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponsePropertiesDefaultFormatBordersRightColorStyle: description: SpreadsheetsPostResponsePropertiesDefaultFormatBordersRightColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatBordersRightColorStyleRgbColor' themeColor: type: string SpreadsheetsPostResponsePropertiesDefaultFormatBordersRightColorStyleRgbColor: description: SpreadsheetsPostResponsePropertiesDefaultFormatBordersRightColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponsePropertiesDefaultFormatBordersTop: description: SpreadsheetsPostResponsePropertiesDefaultFormatBordersTop schema type: object properties: color: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatBordersTopColor' colorStyle: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatBordersTopColorStyle' style: type: string width: type: integer SpreadsheetsPostResponsePropertiesDefaultFormatBordersTopColor: description: SpreadsheetsPostResponsePropertiesDefaultFormatBordersTopColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponsePropertiesDefaultFormatBordersTopColorStyle: description: SpreadsheetsPostResponsePropertiesDefaultFormatBordersTopColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatBordersTopColorStyleRgbColor' themeColor: type: string SpreadsheetsPostResponsePropertiesDefaultFormatBordersTopColorStyleRgbColor: description: SpreadsheetsPostResponsePropertiesDefaultFormatBordersTopColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponsePropertiesDefaultFormatNumberFormat: description: SpreadsheetsPostResponsePropertiesDefaultFormatNumberFormat schema type: object properties: pattern: type: string type: type: string SpreadsheetsPostResponsePropertiesDefaultFormatPadding: description: SpreadsheetsPostResponsePropertiesDefaultFormatPadding schema type: object properties: bottom: type: integer left: type: integer right: type: integer top: type: integer SpreadsheetsPostResponsePropertiesDefaultFormatTextFormat: description: SpreadsheetsPostResponsePropertiesDefaultFormatTextFormat schema type: object properties: bold: type: boolean fontFamily: type: string fontSize: type: integer foregroundColor: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatTextFormatForegroundColor' foregroundColorStyle: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatTextFormatForegroundColorStyle' italic: type: boolean link: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatTextFormatLink' strikethrough: type: boolean underline: type: boolean SpreadsheetsPostResponsePropertiesDefaultFormatTextFormatForegroundColor: description: SpreadsheetsPostResponsePropertiesDefaultFormatTextFormatForegroundColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponsePropertiesDefaultFormatTextFormatForegroundColorStyle: description: SpreadsheetsPostResponsePropertiesDefaultFormatTextFormatForegroundColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsPostResponsePropertiesDefaultFormatTextFormatForegroundColorStyleRgbColor' themeColor: type: string SpreadsheetsPostResponsePropertiesDefaultFormatTextFormatForegroundColorStyleRgbColor: description: SpreadsheetsPostResponsePropertiesDefaultFormatTextFormatForegroundColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsPostResponsePropertiesDefaultFormatTextFormatLink: description: SpreadsheetsPostResponsePropertiesDefaultFormatTextFormatLink schema type: object properties: uri: type: string SpreadsheetsPostResponsePropertiesDefaultFormatTextRotation: description: SpreadsheetsPostResponsePropertiesDefaultFormatTextRotation schema type: object properties: angle: type: integer vertical: type: boolean SpreadsheetsPostResponsePropertiesIterativeCalculationSettings: description: SpreadsheetsPostResponsePropertiesIterativeCalculationSettings schema type: object properties: convergenceThreshold: type: number maxIterations: type: integer SpreadsheetsPostResponsePropertiesSpreadsheetTheme: description: SpreadsheetsPostResponsePropertiesSpreadsheetTheme schema type: object properties: primaryFontFamily: type: string themeColors: type: array items: type: object properties: color: type: object properties: rgbColor: type: object properties: alpha: type: number blue: type: number green: type: number red: type: number themeColor: type: string colorType: type: string SpreadsheetsSheetsPostRequest: description: SpreadsheetsSheetsPostRequest schema type: object example: destinationSpreadsheetId: eu fugiat SpreadsheetsSheetsPostResponse: description: SpreadsheetsSheetsPostResponse schema type: object properties: dataSourceSheetProperties: $ref: '#/components/schemas/SpreadsheetsSheetsPostResponseDataSourceSheetProperties' gridProperties: $ref: '#/components/schemas/SpreadsheetsSheetsPostResponseGridProperties' hidden: type: boolean index: type: integer rightToLeft: type: boolean sheetId: type: integer sheetType: type: string tabColor: $ref: '#/components/schemas/SpreadsheetsSheetsPostResponseTabColor' tabColorStyle: $ref: '#/components/schemas/SpreadsheetsSheetsPostResponseTabColorStyle' title: type: string SpreadsheetsSheetsPostResponseDataSourceSheetProperties: description: SpreadsheetsSheetsPostResponseDataSourceSheetProperties schema type: object properties: columns: type: array items: type: object properties: formula: type: string reference: type: object properties: name: type: string dataExecutionStatus: $ref: '#/components/schemas/SpreadsheetsSheetsPostResponseDataSourceSheetPropertiesDataExecutionStatus' dataSourceId: type: string SpreadsheetsSheetsPostResponseDataSourceSheetPropertiesDataExecutionStatus: description: SpreadsheetsSheetsPostResponseDataSourceSheetPropertiesDataExecutionStatus schema type: object properties: errorCode: type: string errorMessage: type: string lastRefreshTime: type: string state: type: string SpreadsheetsSheetsPostResponseGridProperties: description: SpreadsheetsSheetsPostResponseGridProperties schema type: object properties: columnCount: type: integer columnGroupControlAfter: type: boolean frozenColumnCount: type: integer frozenRowCount: type: integer hideGridlines: type: boolean rowCount: type: integer rowGroupControlAfter: type: boolean SpreadsheetsSheetsPostResponseTabColor: description: SpreadsheetsSheetsPostResponseTabColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsSheetsPostResponseTabColorStyle: description: SpreadsheetsSheetsPostResponseTabColorStyle schema type: object properties: rgbColor: $ref: '#/components/schemas/SpreadsheetsSheetsPostResponseTabColorStyleRgbColor' themeColor: type: string SpreadsheetsSheetsPostResponseTabColorStyleRgbColor: description: SpreadsheetsSheetsPostResponseTabColorStyleRgbColor schema type: object properties: alpha: type: number blue: type: number green: type: number red: type: number SpreadsheetsValuesGetResponse: description: SpreadsheetsValuesGetResponse schema type: object SpreadsheetsValuesPostRequest: description: SpreadsheetsValuesPostRequest schema type: object example: SpreadsheetsValuesPostRequest1: description: SpreadsheetsValuesPostRequest1 schema type: object example: {} SpreadsheetsValuesPostResponse: description: SpreadsheetsValuesPostResponse schema type: object SpreadsheetsValuesPostResponse1: description: SpreadsheetsValuesPostResponse1 schema type: object properties: clearedRange: type: string spreadsheetId: type: string SpreadsheetsValuesPutRequest: description: SpreadsheetsValuesPutRequest schema type: object example: SpreadsheetsValuesPutResponse: description: SpreadsheetsValuesPutResponse schema type: object SpreadsheetsValuesbatchClearByDataFilterPostRequest: description: SpreadsheetsValuesbatchClearByDataFilterPostRequest schema type: object example: dataFilters: - a1Range: commodo ea in ut developerMetadataLookup: locationMatchingStrategy: INTERSECTING_LOCATION locationType: SHEET metadataId: -27000770 metadataKey: ip metadataLocation: dimensionRange: dimension: DIMENSION_UNSPECIFIED endIndex: 91540263 sheetId: -64167623 startIndex: 63800966 locationType: DEVELOPER_METADATA_LOCATION_TYPE_UNSPECIFIED sheetId: 46858270 spreadsheet: false metadataValue: Excepteur visibility: DOCUMENT gridRange: endColumnIndex: 6998754 endRowIndex: 43176042 sheetId: -9008085 startColumnIndex: -17508638 startRowIndex: 21352870 - a1Range: esse eiusmod developerMetadataLookup: locationMatchingStrategy: EXACT_LOCATION locationType: SHEET metadataId: -9620585 metadataKey: in metadataLocation: dimensionRange: dimension: COLUMNS endIndex: -85774445 sheetId: 81988143 startIndex: -35232572 locationType: SPREADSHEET sheetId: -39029265 spreadsheet: false metadataValue: voluptate adipisicing amet dolor visibility: PROJECT gridRange: endColumnIndex: -87815739 endRowIndex: -52115573 sheetId: 67629865 startColumnIndex: 66943098 startRowIndex: 74725547 SpreadsheetsValuesbatchClearByDataFilterPostResponse: description: SpreadsheetsValuesbatchClearByDataFilterPostResponse schema type: object properties: clearedRanges: type: array items: type: string spreadsheetId: type: string SpreadsheetsValuesbatchClearPostRequest: description: SpreadsheetsValuesbatchClearPostRequest schema type: object example: ranges: - nostrud sunt reprehenderit proident cillum - laborum eiusmod dolor ali SpreadsheetsValuesbatchClearPostResponse: description: SpreadsheetsValuesbatchClearPostResponse schema type: object properties: clearedRanges: type: array items: type: string spreadsheetId: type: string SpreadsheetsValuesbatchGetByDataFilterPostRequest: description: SpreadsheetsValuesbatchGetByDataFilterPostRequest schema type: object example: dataFilters: - a1Range: eiusmod anim enim culpa developerMetadataLookup: locationMatchingStrategy: INTERSECTING_LOCATION locationType: SPREADSHEET metadataId: -64798951 metadataKey: sint minim commodo metadataLocation: dimensionRange: dimension: ROWS endIndex: 34518543 sheetId: 68337575 startIndex: 91706381 locationType: ROW sheetId: -33783740 spreadsheet: true metadataValue: sunt visibility: DEVELOPER_METADATA_VISIBILITY_UNSPECIFIED gridRange: endColumnIndex: -96821047 endRowIndex: -9277805 sheetId: 7522437 startColumnIndex: 85603635 startRowIndex: -31384652 - a1Range: sunt irure dolor developerMetadataLookup: locationMatchingStrategy: DEVELOPER_METADATA_LOCATION_MATCHING_STRATEGY_UNSPECIFIED locationType: SHEET metadataId: 26360577 metadataKey: in minim nulla aliquip laboris metadataLocation: dimensionRange: dimension: COLUMNS endIndex: -14426665 sheetId: 88787400 startIndex: -98846780 locationType: COLUMN sheetId: -14062757 spreadsheet: true metadataValue: proident au visibility: DOCUMENT gridRange: endColumnIndex: -11696202 endRowIndex: -87528654 sheetId: 32991035 startColumnIndex: -95148112 startRowIndex: -72465558 dateTimeRenderOption: FORMATTED_STRING majorDimension: DIMENSION_UNSPECIFIED valueRenderOption: FORMULA SpreadsheetsValuesbatchGetByDataFilterPostResponse: description: SpreadsheetsValuesbatchGetByDataFilterPostResponse schema type: object SpreadsheetsValuesbatchGetGetResponse: description: SpreadsheetsValuesbatchGetGetResponse schema type: object SpreadsheetsValuesbatchUpdateByDataFilterPostRequest: description: SpreadsheetsValuesbatchUpdateByDataFilterPostRequest schema type: object example: SpreadsheetsValuesbatchUpdateByDataFilterPostResponse: description: SpreadsheetsValuesbatchUpdateByDataFilterPostResponse schema type: object SpreadsheetsValuesbatchUpdatePostRequest: description: SpreadsheetsValuesbatchUpdatePostRequest schema type: object example: SpreadsheetsValuesbatchUpdatePostResponse: description: SpreadsheetsValuesbatchUpdatePostResponse schema type: object examples: SpreadsheetsDeveloperMetadataGetResponseExample: summary: Successful 200 response value: location: dimensionRange: dimension: ROWS endIndex: -94618933 sheetId: 54017992 startIndex: -52191558 locationType: SHEET sheetId: 33310290 spreadsheet: false metadataId: -42137085 metadataKey: proident ex metadataValue: Lorem magna minim sunt visibility: DEVELOPER_METADATA_VISIBILITY_UNSPECIFIED SpreadsheetsDeveloperMetadatasearchPostResponseExample: summary: Successful 200 response value: matchedDeveloperMetadata: - dataFilters: - a1Range: ullam developerMetadataLookup: locationMatchingStrategy: EXACT_LOCATION locationType: SHEET metadataId: -96703507 metadataKey: cupidatat irure dolor eu metadataLocation: dimensionRange: dimension: COLUMNS endIndex: -47261175 sheetId: 3032031 startIndex: -13916935 locationType: SHEET sheetId: 34119692 spreadsheet: true metadataValue: commodo visibility: DOCUMENT gridRange: endColumnIndex: -92591699 endRowIndex: -77367572 sheetId: 21036335 startColumnIndex: -90121416 startRowIndex: -28441128 - a1Range: eu dolor minim Lorem developerMetadataLookup: locationMatchingStrategy: EXACT_LOCATION locationType: DEVELOPER_METADATA_LOCATION_TYPE_UNSPECIFIED metadataId: -74716743 metadataKey: aliqua est anim nisi metadataLocation: dimensionRange: dimension: DIMENSION_UNSPECIFIED endIndex: 71729621 sheetId: 25577647 startIndex: 88154583 locationType: DEVELOPER_METADATA_LOCATION_TYPE_UNSPECIFIED sheetId: 75611815 spreadsheet: false metadataValue: magna reprehenderit in minim visibility: PROJECT gridRange: endColumnIndex: -84187908 endRowIndex: -74735246 sheetId: 96622353 startColumnIndex: -25608378 startRowIndex: -22957175 developerMetadata: location: dimensionRange: dimension: DIMENSION_UNSPECIFIED endIndex: -3673940 sheetId: -65524837 startIndex: -54517761 locationType: ROW sheetId: -56245453 spreadsheet: false metadataId: 34322524 metadataKey: laborum veniam fugiat metadataValue: eiusmod qui Lorem est visibility: DEVELOPER_METADATA_VISIBILITY_UNSPECIFIED - dataFilters: - a1Range: dolore developerMetadataLookup: locationMatchingStrategy: EXACT_LOCATION locationType: DEVELOPER_METADATA_LOCATION_TYPE_UNSPECIFIED metadataId: -40811642 metadataKey: adipisicing laboris ut velit metadataLocation: dimensionRange: dimension: ROWS endIndex: -53824975 sheetId: -93273913 startIndex: 86130672 locationType: ROW sheetId: 52856889 spreadsheet: true metadataValue: aliqua et aliquip occaecat aute visibility: PROJECT gridRange: endColumnIndex: -73440610 endRowIndex: 28308616 sheetId: 37046200 startColumnIndex: -5275558 startRowIndex: -89666878 - a1Range: officia non developerMetadataLookup: locationMatchingStrategy: INTERSECTING_LOCATION locationType: ROW metadataId: 14514280 metadataKey: ni metadataLocation: dimensionRange: dimension: DIMENSION_UNSPECIFIED endIndex: 90859887 sheetId: 24355574 startIndex: -70400658 locationType: ROW sheetId: 8907501 spreadsheet: true metadataValue: ut aute dolore visibility: DOCUMENT gridRange: endColumnIndex: -61886577 endRowIndex: -27471726 sheetId: 28840797 startColumnIndex: 13238176 startRowIndex: -28396473 developerMetadata: location: dimensionRange: dimension: ROWS endIndex: 76653041 sheetId: -21267874 startIndex: -66439347 locationType: SHEET sheetId: 21282299 spreadsheet: true metadataId: 8593114 metadataKey: sunt velit metadataValue: et visibility: DEVELOPER_METADATA_VISIBILITY_UNSPECIFIED SpreadsheetsGetResponseExample: summary: Successful 200 response value: dataSourceSchedules: - dailySchedule: startTime: hours: -43266123 minutes: -65732454 nanos: -97450442 seconds: -41631562 enabled: false monthlySchedule: daysOfMonth: - 57977061 startTime: hours: 3999156 minutes: 89598075 nanos: -62818558 seconds: -7104959 nextRun: endTime: ut tempor laborum startTime: veniam do nisi in refreshScope: DATA_SOURCE_REFRESH_SCOPE_UNSPECIFIED weeklySchedule: daysOfWeek: - SUNDAY startTime: hours: -98244095 minutes: -4153534 nanos: -31897594 seconds: 83370707 dataSources: - calculatedColumns: - formula: nisi sunt reference: name: qui reprehenderit dataSourceId: sed dolore incididunt sheetId: -56661553 spec: bigQuery: projectId: aliqua velit querySpec: rawQuery: deserunt tableSpec: datasetId: culpa magna aliquip Duis tableId: occaecat deserunt tableProjectId: officia Duis ex in labore parameters: - name: Ut ad ipsum namedRangeId: magna range: endColumnIndex: 31885169 endRowIndex: -4040036 sheetId: -19707509 startColumnIndex: 5926358 startRowIndex: -24382075 developerMetadata: - location: dimensionRange: dimension: DIMENSION_UNSPECIFIED endIndex: 83564351 sheetId: 20161961 startIndex: -12299871 locationType: SHEET sheetId: 19412940 spreadsheet: true metadataId: -26483526 metadataKey: ad consectetur nulla metadataValue: cillum proident qui occaecat visibility: DEVELOPER_METADATA_VISIBILITY_UNSPECIFIED namedRanges: - name: reprehenderit sed est aliquip Ut namedRangeId: amet dolore range: endColumnIndex: -29487355 endRowIndex: 28833316 sheetId: 2554752 startColumnIndex: 75795510 startRowIndex: -72526094 properties: autoRecalc: ON_CHANGE defaultFormat: backgroundColor: alpha: -22421824.691030562 blue: 90013088.65213957 green: 24974090.92647165 red: 88011821.65105522 backgroundColorStyle: rgbColor: alpha: 51433993.220397204 blue: -34599856.361609936 green: 23834312.320355803 red: 97183505.05098599 themeColor: LINK borders: bottom: color: alpha: -46461682.392919324 blue: -39600858.47643326 green: -12885677.880025923 red: 20395982.76429157 colorStyle: rgbColor: alpha: -67713553.05349366 blue: 3075128.750359297 green: 89745091.64237362 red: 65057007.37397438 themeColor: ACCENT6 style: DOUBLE width: -83132355 left: color: alpha: 7529742.843985558 blue: 11523153.264217004 green: -83789517.69852239 red: -52273453.1840499 colorStyle: rgbColor: alpha: 23413126.31362365 blue: -89783978.4406965 green: 7478744.238987163 red: 91268984.47651386 themeColor: ACCENT4 style: SOLID_THICK width: 9587363 right: color: alpha: -68478561.90889128 blue: 86635613.318176 green: -4182434.2241241187 red: -37761525.154127404 colorStyle: rgbColor: alpha: 7564148.4709581435 blue: 46817587.00993326 green: 94604103.88139793 red: -39300118.4906812 themeColor: ACCENT4 style: STYLE_UNSPECIFIED width: -68379222 top: color: alpha: -35207179.004029274 blue: 75124743.01189193 green: -79174603.1645633 red: 69525380.65581709 colorStyle: rgbColor: alpha: 13971651.645456567 blue: 79134644.33448789 green: -8214105.3416944295 red: -55694700.72815168 themeColor: ACCENT6 style: DASHED width: -47592569 horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED hyperlinkDisplayType: HYPERLINK_DISPLAY_TYPE_UNSPECIFIED numberFormat: pattern: mollit magna ea type: TEXT padding: bottom: 3638265 left: -10421780 right: 70673792 top: 74778750 textDirection: TEXT_DIRECTION_UNSPECIFIED textFormat: bold: false fontFamily: reprehenderit cupidatat veniam Lorem do fontSize: -28113564 foregroundColor: alpha: 22027996.78423269 blue: -28716622.048885256 green: -19625308.709902182 red: -94408017.34685133 foregroundColorStyle: rgbColor: alpha: 71419372.2264759 blue: -82168243.51208629 green: -14187866.496848583 red: -65181659.34325215 themeColor: ACCENT6 italic: true link: uri: ullamco elit strikethrough: true underline: false textRotation: angle: -56348588 vertical: true verticalAlignment: VERTICAL_ALIGN_UNSPECIFIED wrapStrategy: WRAP iterativeCalculationSettings: convergenceThreshold: -28283351.56397684 maxIterations: -12335234 locale: exercitation cillum spreadsheetTheme: primaryFontFamily: ut themeColors: - color: rgbColor: alpha: -31710249.01160507 blue: 26026986.419538647 green: -43409395.90685053 red: 92736615.8684296 themeColor: THEME_COLOR_TYPE_UNSPECIFIED colorType: ACCENT5 timeZone: dolore laborum title: pariatur consectetur enim sheets: - bandedRanges: - bandedRangeId: 43139549 columnProperties: firstBandColor: alpha: -4656388.077727273 blue: -96613087.81631872 green: 4264693.804137036 red: 15111703.323823318 firstBandColorStyle: rgbColor: alpha: 99618076.90212369 blue: -49006881.50795429 green: 40319994.66356942 red: 65200542.683243126 themeColor: ACCENT6 footerColor: alpha: -33490013.551426753 blue: 32916340.128778905 green: 45262863.20501071 red: 19556816.571504414 footerColorStyle: rgbColor: alpha: -12068084.107148275 blue: -67832617.26921017 green: 22561836.25395614 red: -12142418.295326784 themeColor: LINK headerColor: alpha: -92687886.79756828 blue: -43280044.32060295 green: -23303373.12507233 red: -780389.2770115584 headerColorStyle: rgbColor: alpha: 8336086.317506105 blue: -49729232.317501724 green: -93612445.38047923 red: 31375535.857318223 themeColor: LINK secondBandColor: alpha: 99568934.50178161 blue: -91350629.81953612 green: -92964471.4278552 red: 37608193.63273704 secondBandColorStyle: rgbColor: alpha: 8970943.769093469 blue: -88201063.90158297 green: -13429353.495263636 red: 53969915.37868002 themeColor: ACCENT5 range: endColumnIndex: 87619727 endRowIndex: 20345160 sheetId: -65789249 startColumnIndex: -45948999 startRowIndex: -91737266 rowProperties: firstBandColor: alpha: 72010730.72591546 blue: 36846314.31772801 green: -96974888.03108025 red: 15421378.969790965 firstBandColorStyle: rgbColor: alpha: -22875637.799782306 blue: -73894833.409663 green: 91215030.05576509 red: -50423962.36714643 themeColor: ACCENT5 footerColor: alpha: 29168021.166943878 blue: -73831066.69786125 green: -89420542.5069429 red: 62593032.88934922 footerColorStyle: rgbColor: alpha: 43818785.12623486 blue: -45213359.909048915 green: 82881046.86449617 red: 72695904.25279978 themeColor: THEME_COLOR_TYPE_UNSPECIFIED headerColor: alpha: -60297724.716774106 blue: -89358737.19895242 green: 9563382.870461494 red: -7656815.10466139 headerColorStyle: rgbColor: alpha: -2842718.0475878417 blue: -2902275.1736353934 green: 9050794.865266055 red: -56674654.576242566 themeColor: ACCENT1 secondBandColor: alpha: -58009568.66879341 blue: 58834392.95665088 green: 55256317.50557256 red: 75550157.79389471 secondBandColorStyle: rgbColor: alpha: -30634601.267103404 blue: 55532206.36613929 green: -36562285.06917545 red: 13711659.906762823 themeColor: THEME_COLOR_TYPE_UNSPECIFIED basicFilter: criteria: doloreb_: condition: type: DATE_ON_OR_BEFORE values: - relativeDate: YESTERDAY userEnteredValue: id minim nisi elit hiddenValues: - ullamco nisi Excepteur anim visibleBackgroundColor: alpha: -81353007.03492567 blue: -38141297.090509996 green: 69154203.18882197 red: 36035439.413398474 visibleBackgroundColorStyle: rgbColor: alpha: 91173489.24772286 blue: -89346769.05947395 green: -19404805.972366154 red: -80230975.30043045 themeColor: ACCENT1 visibleForegroundColor: alpha: 57217398.74284211 blue: 74154308.04036638 green: 73016659.72982222 red: -22213180.456824318 visibleForegroundColorStyle: rgbColor: alpha: -43145436.167499796 blue: 74653537.38607502 green: 3025279.31792067 red: 79218590.71985793 themeColor: BACKGROUND filterSpecs: - columnIndex: 78389632 dataSourceColumnReference: name: in incididunt fugiat nostrud pariatur filterCriteria: condition: type: DATE_NOT_EQ values: - relativeDate: YESTERDAY userEnteredValue: laborum consectetur sit minim hiddenValues: - nulla pariatur qui ipsum visibleBackgroundColor: alpha: -91665830.15722671 blue: -99904560.26291601 green: 65347039.68829051 red: 63151914.08808029 visibleBackgroundColorStyle: rgbColor: alpha: 499116.31694211066 blue: 68604299.30482864 green: 98759492.96351925 red: 14867204.90616484 themeColor: BACKGROUND visibleForegroundColor: alpha: 50134573.64080387 blue: -87982539.28045554 green: -54603731.334672555 red: -64824031.22209801 visibleForegroundColorStyle: rgbColor: alpha: -73656646.24134824 blue: 2700641.501126051 green: 33008212.7396079 red: 16719230.552707165 themeColor: ACCENT4 range: endColumnIndex: -43877930 endRowIndex: -8809700 sheetId: 64318214 startColumnIndex: -7032303 startRowIndex: 39815904 sortSpecs: - backgroundColor: alpha: -28651638.96061036 blue: 45673855.84156752 green: 86189187.70006451 red: -74364203.78529602 backgroundColorStyle: rgbColor: alpha: -3168584.4773793966 blue: -56626033.75210678 green: 72484110.2359632 red: 692312.8745354861 themeColor: ACCENT1 dataSourceColumnReference: name: veniam sunt velit culpa dolor dimensionIndex: 11289450 foregroundColor: alpha: 96699958.53379482 blue: 76576567.97638994 green: -97320362.404836 red: -16790174.071512222 foregroundColorStyle: rgbColor: alpha: 67120313.76985142 blue: -79175402.66751315 green: 40644773.578526884 red: 84483907.11570269 themeColor: TEXT sortOrder: DESCENDING charts: - border: color: alpha: -6806672.500234127 blue: -59007826.50270249 green: 10160147.46663165 red: -20321148.950214908 colorStyle: rgbColor: alpha: 91689568.81668949 blue: 2961191.4176778793 green: 35578319.610948086 red: -5716472.749471709 themeColor: ACCENT4 chartId: -32308995 position: newSheet: true overlayPosition: anchorCell: columnIndex: -17264157 rowIndex: 17971192 sheetId: -70644812 heightPixels: 68423649 offsetXPixels: -94619858 offsetYPixels: -40214573 widthPixels: 77699500 sheetId: 63263059 spec: altText: deserunt proident nisi velit backgroundColor: alpha: -74849362.71468747 blue: -33495356.529037237 green: -62285800.332203634 red: -71890137.92690893 backgroundColorStyle: rgbColor: alpha: -79372460.55857861 blue: -95212341.51298112 green: 89931702.92362115 red: -20165241.53386876 themeColor: THEME_COLOR_TYPE_UNSPECIFIED basicChart: axis: - format: bold: false fontFamily: minim ea deserunt sed fontSize: 97507116 foregroundColor: alpha: -38999236.44546352 blue: 40553042.374115616 green: -77531909.59799339 red: 79603930.29403087 foregroundColorStyle: rgbColor: alpha: 32307950.109844625 blue: -67183178.37236509 green: -71081574.55853146 red: 98483083.22794133 themeColor: ACCENT2 italic: false link: uri: quis veniam dolor voluptate strikethrough: false underline: true position: BOTTOM_AXIS title: cupidatat esse nisi adipisicing titleTextPosition: horizontalAlignment: RIGHT viewWindowOptions: viewWindowMax: 72069702.17549679 viewWindowMin: -22257002.843773097 viewWindowMode: PRETTY chartType: STEPPED_AREA compareMode: DATUM domains: - domain: aggregateType: SUM columnReference: name: consectetur deserunt mollit groupRule: dateTimeRule: type: YEAR_MONTH histogramRule: intervalSize: -18521355.740935206 maxValue: 90158102.40211827 minValue: 87397122.90272304 sourceRange: sources: - endColumnIndex: -22668278 endRowIndex: 36123013 sheetId: 11952739 startColumnIndex: -32135218 startRowIndex: 66789128 reversed: true headerCount: 97182168 interpolateNulls: true legendPosition: BOTTOM_LEGEND lineSmoothing: true series: - color: alpha: 55722752.437729895 blue: 64477580.13592622 green: 71676688.93817422 red: -38156417.06576298 colorStyle: rgbColor: alpha: 28247526.09445946 blue: 69221968.87022421 green: 61917915.17307904 red: -17721228.542360783 themeColor: BACKGROUND dataLabel: customLabelData: aggregateType: MEDIAN columnReference: name: occaecat consequat quis groupRule: dateTimeRule: type: DAY_OF_WEEK histogramRule: intervalSize: -3857463.495657593 maxValue: -42586732.40078985 minValue: 37051651.2186895 sourceRange: sources: - endColumnIndex: -49248867 endRowIndex: -10371941 sheetId: 401546 startColumnIndex: -58085589 startRowIndex: -90982621 placement: BELOW textFormat: bold: false fontFamily: exercita fontSize: 81004203 foregroundColor: alpha: 41517003.63395324 blue: -70330186.86511676 green: -40534404.20106273 red: -31969992.615171924 foregroundColorStyle: rgbColor: alpha: 17775650.16171652 blue: -13772557.713170916 green: 27090283.845191807 red: -90047236.70280597 themeColor: ACCENT5 italic: false link: uri: in incididunt strikethrough: true underline: false type: NONE lineStyle: type: SOLID width: -84876836 pointStyle: shape: DIAMOND size: 64452898.462776005 series: aggregateType: SUM columnReference: name: magna groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: -70261025.00131163 maxValue: -30011278.55406885 minValue: 81851518.34003606 sourceRange: sources: - endColumnIndex: 44015002 endRowIndex: -98733261 sheetId: -35067209 startColumnIndex: 86137084 startRowIndex: 3077548 styleOverrides: - color: alpha: -69183513.89384103 blue: 19485706.81396036 green: 65328186.50077203 red: 12493290.07813476 colorStyle: rgbColor: alpha: -64008295.12294073 blue: -94462392.22749741 green: 88044885.24860078 red: -8836624.99906604 themeColor: ACCENT4 index: 7171408 pointStyle: shape: STAR size: -3552381.8585395366 targetAxis: BOTTOM_AXIS type: BASIC_CHART_TYPE_UNSPECIFIED stackedType: STACKED threeDimensional: true totalDataLabel: customLabelData: aggregateType: AVERAGE columnReference: name: elit ut Duis dolor groupRule: dateTimeRule: type: YEAR histogramRule: intervalSize: -5661235.146948233 maxValue: 77926629.53448138 minValue: 95577122.05968186 sourceRange: sources: - endColumnIndex: -76126877 endRowIndex: 42365670 sheetId: -76812357 startColumnIndex: 10226550 startRowIndex: 78881618 placement: RIGHT textFormat: bold: true fontFamily: et quis fontSize: 98579648 foregroundColor: alpha: 61002974.30631539 blue: 80971733.87236923 green: 68549056.98709989 red: 15343737.815225646 foregroundColorStyle: rgbColor: alpha: -91715833.91394736 blue: -56802867.72936918 green: -87612035.17797464 red: -94011753.84827228 themeColor: ACCENT5 italic: true link: uri: nulla id strikethrough: false underline: false type: CUSTOM bubbleChart: bubbleBorderColor: alpha: -84379523.96780863 blue: -22016451.819793478 green: 75200774.78312755 red: -91103521.06502111 bubbleBorderColorStyle: rgbColor: alpha: 42567298.29471606 blue: 53253070.63489702 green: 83815850.61622888 red: 53174334.26933822 themeColor: ACCENT4 bubbleLabels: aggregateType: SUM columnReference: name: commodo laboris consequat occaecat groupRule: dateTimeRule: type: YEAR_QUARTER histogramRule: intervalSize: -47029901.33041931 maxValue: -59720934.285820305 minValue: 72796472.10031083 sourceRange: sources: - endColumnIndex: -55006695 endRowIndex: -93033674 sheetId: 76677429 startColumnIndex: 23516908 startRowIndex: 36856856 bubbleMaxRadiusSize: 41144622 bubbleMinRadiusSize: -10010743 bubbleOpacity: 27400130.72438918 bubbleSizes: aggregateType: SUM columnReference: name: fugiat Except groupRule: dateTimeRule: type: DAY_OF_MONTH histogramRule: intervalSize: 8578270.545850858 maxValue: 64391065.68835834 minValue: -39435110.542253636 sourceRange: sources: - endColumnIndex: 62598857 endRowIndex: -72355329 sheetId: -45696083 startColumnIndex: 94622500 startRowIndex: 92634679 bubbleTextStyle: bold: true fontFamily: nulla commodo dolor fontSize: -5686162 foregroundColor: alpha: -794699.0987645686 blue: -54637342.35554334 green: -36289015.903600894 red: 97876618.28661105 foregroundColorStyle: rgbColor: alpha: 92888781.71785215 blue: 39613389.316816896 green: 52472776.62823087 red: -34529769.67181028 themeColor: LINK italic: true link: uri: nisi eu aliquip strikethrough: false underline: false domain: aggregateType: SUM columnReference: name: tempor cillum qui in groupRule: dateTimeRule: type: DAY_MONTH histogramRule: intervalSize: -80130275.36145376 maxValue: -94810329.47692616 minValue: 9830111.758620098 sourceRange: sources: - endColumnIndex: 25769079 endRowIndex: 48682569 sheetId: 30218238 startColumnIndex: -91964628 startRowIndex: 42746181 groupIds: aggregateType: AVERAGE columnReference: name: est anim do voluptate groupRule: dateTimeRule: type: DAY_OF_YEAR histogramRule: intervalSize: 26899146.655878693 maxValue: -98921533.26900548 minValue: -47194232.78588408 sourceRange: sources: - endColumnIndex: 21684096 endRowIndex: 25205083 sheetId: -44306216 startColumnIndex: 97302956 startRowIndex: 14760080 legendPosition: RIGHT_LEGEND series: aggregateType: SUM columnReference: name: labore laboris in culpa groupRule: dateTimeRule: type: SECOND histogramRule: intervalSize: -75300936.9657991 maxValue: -30478658.85255146 minValue: 13559461.281764477 sourceRange: sources: - endColumnIndex: 6043259 endRowIndex: 93573702 sheetId: -97142515 startColumnIndex: 49623823 startRowIndex: 76944482 candlestickChart: data: - closeSeries: data: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: qui id groupRule: dateTimeRule: type: DAY_OF_MONTH histogramRule: intervalSize: 41125538.61625695 maxValue: 97994679.49475247 minValue: 23618954.14523758 sourceRange: sources: - endColumnIndex: 60932056 endRowIndex: 55451137 sheetId: 23662228 startColumnIndex: -89409748 startRowIndex: -88671225 highSeries: data: aggregateType: SUM columnReference: name: incididunt groupRule: dateTimeRule: type: DAY_OF_YEAR histogramRule: intervalSize: -91812004.1593093 maxValue: 16850134.692005485 minValue: 66295928.31552905 sourceRange: sources: - endColumnIndex: 52635003 endRowIndex: 98820817 sheetId: -80483510 startColumnIndex: 43736501 startRowIndex: 47086604 lowSeries: data: aggregateType: MIN columnReference: name: velit sed cupidatat groupRule: dateTimeRule: type: YEAR_MONTH_DAY histogramRule: intervalSize: 66473933.83846918 maxValue: 47613686.91368076 minValue: -28069209.676522672 sourceRange: sources: - endColumnIndex: 21335855 endRowIndex: 11458701 sheetId: 95775715 startColumnIndex: 56326513 startRowIndex: 57674274 openSeries: data: aggregateType: AVERAGE columnReference: name: nostrud amet tempor dolor groupRule: dateTimeRule: type: DAY_OF_WEEK histogramRule: intervalSize: -37794263.73271777 maxValue: -4646182.705438033 minValue: -65935054.51988828 sourceRange: sources: - endColumnIndex: 54606199 endRowIndex: -76961833 sheetId: -69341559 startColumnIndex: 49818022 startRowIndex: -46883787 domain: data: aggregateType: COUNT columnReference: name: Ut cupidatat Duis groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: 6946669.7408254 maxValue: 83943171.96904132 minValue: 93424064.16476154 sourceRange: sources: - endColumnIndex: 43409596 endRowIndex: 25613295 sheetId: 24793983 startColumnIndex: -86096266 startRowIndex: 27520739 reversed: true dataSourceChartProperties: dataExecutionStatus: errorCode: DATA_EXECUTION_ERROR_CODE_UNSPECIFIED errorMessage: aliquip consectetur anim lastRefreshTime: al state: RUNNING dataSourceId: eiusmod ut consequat filterSpecs: - columnIndex: 90546677 dataSourceColumnReference: name: aute dolor laboris filterCriteria: condition: type: NUMBER_GREATER values: - relativeDate: RELATIVE_DATE_UNSPECIFIED userEnteredValue: ea c hiddenValues: - Duis proident do et visibleBackgroundColor: alpha: -36283526.30272102 blue: -1345286.881266445 green: -12026794.19154644 red: -15180752.626320705 visibleBackgroundColorStyle: rgbColor: alpha: 45116185.141209155 blue: 45489662.91515803 green: 54509241.505173504 red: -687712.9555583447 themeColor: ACCENT3 visibleForegroundColor: alpha: -28565684.45552306 blue: 81054396.77549508 green: 80240546.97687149 red: 34993376.16041127 visibleForegroundColorStyle: rgbColor: alpha: -66222367.96892498 blue: 48585075.55200243 green: -5020969.710157797 red: -46324783.9773818 themeColor: LINK fontName: do hiddenDimensionStrategy: CHART_HIDDEN_DIMENSION_STRATEGY_UNSPECIFIED histogramChart: bucketSize: -84607370.87032846 legendPosition: RIGHT_LEGEND outlierPercentile: -55914163.013332054 series: - barColor: alpha: 55040259.75877115 blue: 69737257.65370405 green: 35399131.94407421 red: 58901591.43528417 barColorStyle: rgbColor: alpha: -42943196.55535497 blue: 67372783.7021254 green: 27349397.156058505 red: -94587978.25310077 themeColor: ACCENT5 data: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: consectetur amet groupRule: dateTimeRule: type: YEAR_MONTH histogramRule: intervalSize: -30788024.641912863 maxValue: -24732732.354569674 minValue: 4681068.022945747 sourceRange: sources: - endColumnIndex: 6881824 endRowIndex: 59193013 sheetId: -78991757 startColumnIndex: -56953158 startRowIndex: -24851839 showItemDividers: true maximized: false orgChart: labels: aggregateType: MEDIAN columnReference: name: dolore sunt groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: 87979300.06759924 maxValue: -69738481.45343556 minValue: -55802864.81927726 sourceRange: sources: - endColumnIndex: 29992841 endRowIndex: -43142118 sheetId: -28375698 startColumnIndex: -72923293 startRowIndex: -33095858 nodeColor: alpha: 63129191.538889855 blue: -35920096.32508599 green: 84152512.73405561 red: -11451214.36287035 nodeColorStyle: rgbColor: alpha: -97554231.51759884 blue: -29398256.39035356 green: 97755801.09825203 red: 34052276.84180114 themeColor: ACCENT3 nodeSize: LARGE parentLabels: aggregateType: MEDIAN columnReference: name: enim est nostrud groupRule: dateTimeRule: type: QUARTER histogramRule: intervalSize: 88870422.46986204 maxValue: 71468798.485621 minValue: -57852079.24046984 sourceRange: sources: - endColumnIndex: 17055627 endRowIndex: -57134547 sheetId: 57015075 startColumnIndex: 99690712 startRowIndex: -33788216 selectedNodeColor: alpha: -29455482.56013368 blue: -22382852.613567516 green: 8850774.5190427 red: 61466971.9064942 selectedNodeColorStyle: rgbColor: alpha: -75343847.9287142 blue: -8954102.548794523 green: -34938585.086757176 red: -19011933.398021072 themeColor: ACCENT3 tooltips: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: officia proident et Ut groupRule: dateTimeRule: type: QUARTER histogramRule: intervalSize: -94682800.43479304 maxValue: 46663800.77882236 minValue: -46526138.67756505 sourceRange: sources: - endColumnIndex: 48665731 endRowIndex: 65106729 sheetId: -86829639 startColumnIndex: -26806983 startRowIndex: -14573074 pieChart: domain: aggregateType: MAX columnReference: name: amet sunt ut groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: 67702553.569311 maxValue: -91163548.4262694 minValue: 33648414.01718235 sourceRange: sources: - endColumnIndex: 51976057 endRowIndex: 19254915 sheetId: 97191751 startColumnIndex: -18454783 startRowIndex: 33933093 legendPosition: TOP_LEGEND pieHole: -30263554.3671816 series: aggregateType: MIN columnReference: name: 'Excepteur minim ' groupRule: dateTimeRule: type: DAY_OF_MONTH histogramRule: intervalSize: -50713394.28357296 maxValue: -39606797.85202501 minValue: -11707961.734067008 sourceRange: sources: - endColumnIndex: -35582263 endRowIndex: -6114928 sheetId: 32942167 startColumnIndex: -61891345 startRowIndex: 42817793 threeDimensional: true scorecardChart: aggregateType: SUM baselineValueData: aggregateType: COUNT columnReference: name: est dol groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: -84704547.41613685 maxValue: -60029874.82360034 minValue: -85835166.9727921 sourceRange: sources: - endColumnIndex: 30967618 endRowIndex: 43348963 sheetId: 8722686 startColumnIndex: 19580190 startRowIndex: 19736578 baselineValueFormat: comparisonType: ABSOLUTE_DIFFERENCE description: exercitation ea negativeColor: alpha: 91192114.04931337 blue: 84467827.57099438 green: 13171452.879573137 red: 749918.1010410339 negativeColorStyle: rgbColor: alpha: 75322019.75364456 blue: -58339194.567314535 green: -2502404.4841341972 red: -49802225.98250763 themeColor: ACCENT4 position: horizontalAlignment: RIGHT positiveColor: alpha: 47683155.2413601 blue: -48258473.6134728 green: -79219630.28850487 red: 73135752.91313782 positiveColorStyle: rgbColor: alpha: -51811771.27181496 blue: -68431861.42049551 green: 3160043.800748363 red: -30675512.206715316 themeColor: ACCENT6 textFormat: bold: true fontFamily: aliquip culpa ut fontSize: 46805087 foregroundColor: alpha: -62924653.43184421 blue: 20943779.987398475 green: -17616130.36710909 red: -3220385.6507084817 foregroundColorStyle: rgbColor: alpha: 71779234.54589847 blue: 31177018.482527792 green: -49721861.10757293 red: 53599046.95277199 themeColor: THEME_COLOR_TYPE_UNSPECIFIED italic: false link: uri: ali strikethrough: false underline: false customFormatOptions: prefix: proident fugiat cons suffix: id aliqua keyValueData: aggregateType: COUNT columnReference: name: anim quis groupRule: dateTimeRule: type: CHART_DATE_TIME_RULE_TYPE_UNSPECIFIED histogramRule: intervalSize: 50402519.97843766 maxValue: 79630701.63392273 minValue: -72021083.7874685 sourceRange: sources: - endColumnIndex: 36860082 endRowIndex: -99459561 sheetId: -20414918 startColumnIndex: 65828 startRowIndex: 89009394 keyValueFormat: position: horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED textFormat: bold: false fontFamily: dolore fontSize: 58034460 foregroundColor: alpha: -89284965.90978332 blue: 87746540.76626381 green: 70359194.17464548 red: -15107432.094405621 foregroundColorStyle: rgbColor: alpha: 92624270.26585877 blue: 76408327.49501455 green: -26905631.18148361 red: -50289008.269739985 themeColor: ACCENT3 italic: false link: uri: velit mollit labore voluptate strikethrough: false underline: false numberFormatSource: CHART_NUMBER_FORMAT_SOURCE_UNDEFINED scaleFactor: -5359429.594352871 sortSpecs: - backgroundColor: alpha: -39930853.52848409 blue: 49080107.640369385 green: -8043835.338221729 red: -82586735.70494701 backgroundColorStyle: rgbColor: alpha: 91640696.8671143 blue: 26897959.743679762 green: -47879743.89375163 red: 93100312.27694032 themeColor: ACCENT6 dataSourceColumnReference: name: fugiat in Lorem occaecat dimensionIndex: -88840985 foregroundColor: alpha: -75857689.17465128 blue: 29787494.024613097 green: -84352396.56627944 red: -89930343.12985398 foregroundColorStyle: rgbColor: alpha: 34651137.4042612 blue: -930903.671572119 green: 1281339.8256363422 red: 3807791.214975789 themeColor: TEXT sortOrder: DESCENDING subtitle: magna velit subtitleTextFormat: bold: true fontFamily: veniam sit dolor aute fontSize: -45388084 foregroundColor: alpha: -52163753.82327558 blue: -10058404.811999738 green: -81965679.10336196 red: 32525819.75083393 foregroundColorStyle: rgbColor: alpha: 68603502.39416003 blue: -24690407.82358101 green: 61136506.37899554 red: 84241621.90678227 themeColor: ACCENT2 italic: true link: uri: tempor consectetur strikethrough: true underline: false subtitleTextPosition: horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED title: aliq titleTextFormat: bold: true fontFamily: non ullamco laboris fontSize: 73318110 foregroundColor: alpha: 30110225.536503732 blue: 38491927.4758943 green: 95094690.34997103 red: -51271996.931729145 foregroundColorStyle: rgbColor: alpha: -45286265.88793503 blue: 4883206.111387521 green: 39371167.88144383 red: -97257188.29635426 themeColor: TEXT italic: true link: uri: sed in strikethrough: true underline: true titleTextPosition: horizontalAlignment: LEFT treemapChart: colorData: aggregateType: MIN columnReference: name: est et groupRule: dateTimeRule: type: DAY_OF_YEAR histogramRule: intervalSize: -87370287.69161367 maxValue: 63694067.566963494 minValue: 65378205.29212701 sourceRange: sources: - endColumnIndex: -86832079 endRowIndex: 56378894 sheetId: 41285499 startColumnIndex: 19967088 startRowIndex: -83999042 colorScale: maxValueColor: alpha: 61322054.213629335 blue: -99123982.21827145 green: 80750735.98303589 red: 52098616.85426694 maxValueColorStyle: rgbColor: alpha: 43468410.23279801 blue: 38780059.91488701 green: 94937094.52421802 red: 5673434.052179977 themeColor: ACCENT1 midValueColor: alpha: -40893685.231944144 blue: 34050815.38297199 green: -95680096.3838476 red: -51629671.84386633 midValueColorStyle: rgbColor: alpha: 95447093.73078987 blue: -83367126.71878645 green: -58423988.25561426 red: 119657.44637519121 themeColor: ACCENT3 minValueColor: alpha: 54617885.253979415 blue: 17837783.893287316 green: 19904306.74798067 red: 61354369.22587797 minValueColorStyle: rgbColor: alpha: 47304735.15669909 blue: 82533081.71530113 green: -16093777.310446367 red: 64352116.3654238 themeColor: LINK noDataColor: alpha: 83331239.39278728 blue: -23262921.960855514 green: 65262497.94032225 red: 10048267.815709531 noDataColorStyle: rgbColor: alpha: -73179697.24343878 blue: -87528688.75965652 green: -59566691.700415395 red: -46601037.91076127 themeColor: ACCENT5 headerColor: alpha: 26994389.41218242 blue: 17093624.016673908 green: -61517646.16487689 red: 81670949.55874091 headerColorStyle: rgbColor: alpha: 2448766.8123804927 blue: -9175268.361172289 green: -69556456.81124017 red: 29179775.0721229 themeColor: ACCENT5 hideTooltips: true hintedLevels: 22972430 labels: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: tempor occa groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: -18477549.46402648 maxValue: 96611960.49759933 minValue: -64086187.69615084 sourceRange: sources: - endColumnIndex: -6007990 endRowIndex: 26304385 sheetId: 57396648 startColumnIndex: -89330295 startRowIndex: 15068429 levels: 51514916 maxValue: -24180101.332737938 minValue: 91137082.88042629 parentLabels: aggregateType: AVERAGE columnReference: name: enim ut dolore ullamco groupRule: dateTimeRule: type: YEAR histogramRule: intervalSize: 85969190.56500435 maxValue: 78955224.44921449 minValue: 79065578.98970333 sourceRange: sources: - endColumnIndex: -12853928 endRowIndex: -9638427 sheetId: -94740200 startColumnIndex: -47659673 startRowIndex: -10557056 sizeData: aggregateType: MEDIAN columnReference: name: ea elit eiusmod in groupRule: dateTimeRule: type: DAY_MONTH histogramRule: intervalSize: 43941521.313759446 maxValue: -4185782.450240046 minValue: 63424334.84402138 sourceRange: sources: - endColumnIndex: 2162496 endRowIndex: -81773720 sheetId: 62084011 startColumnIndex: 14629947 startRowIndex: -20515355 textFormat: bold: false fontFamily: ut sunt fontSize: -35201641 foregroundColor: alpha: -94278432.48688364 blue: -63588026.126646824 green: -20463414.283255383 red: 48171810.31969905 foregroundColorStyle: rgbColor: alpha: -41440237.64087299 blue: 85189591.08992493 green: -20000077.710908532 red: 15296983.031435743 themeColor: ACCENT1 italic: false link: uri: Lorem tempo strikethrough: true underline: true waterfallChart: connectorLineStyle: type: MEDIUM_DASHED width: 20320648 domain: data: aggregateType: MAX columnReference: name: deseru groupRule: dateTimeRule: type: SECOND histogramRule: intervalSize: 86760765.78905803 maxValue: 5305433.656956509 minValue: -75171557.66032615 sourceRange: sources: - endColumnIndex: 51877618 endRowIndex: 40320525 sheetId: 56359334 startColumnIndex: -5364191 startRowIndex: -62128845 reversed: true firstValueIsTotal: true hideConnectorLines: false series: - customSubtotals: - dataIsSubtotal: false label: ad sit consequat exercitation subtotalIndex: 21627474 data: aggregateType: MAX columnReference: name: fugiat groupRule: dateTimeRule: type: HOUR histogramRule: intervalSize: -86172941.4966451 maxValue: -30639866.86549498 minValue: -38795739.96309489 sourceRange: sources: - endColumnIndex: -27247840 endRowIndex: 36821519 sheetId: 77411222 startColumnIndex: 67875131 startRowIndex: 41098630 dataLabel: customLabelData: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: Duis sunt groupRule: dateTimeRule: type: HOUR_MINUTE histogramRule: intervalSize: 19564201.770708054 maxValue: -16648343.70710811 minValue: 24281608.492682233 sourceRange: sources: - endColumnIndex: 29768862 endRowIndex: -37969810 sheetId: -44087576 startColumnIndex: 35789649 startRowIndex: 33693671 placement: CENTER textFormat: bold: false fontFamily: dolor quis fontSize: -40327592 foregroundColor: alpha: -92305964.46019806 blue: 41764178.692697406 green: 4341323.698441401 red: 94530488.20776337 foregroundColorStyle: rgbColor: alpha: -25797716.605266124 blue: -33603002.378911294 green: 50854133.31138152 red: 20121345.028139308 themeColor: LINK italic: true link: uri: nostrud strikethrough: true underline: true type: DATA_LABEL_TYPE_UNSPECIFIED hideTrailingSubtotal: true negativeColumnsStyle: color: alpha: -43139445.953923024 blue: 57711416.60128677 green: 40022444.19989854 red: 46273028.2518788 colorStyle: rgbColor: alpha: 57819589.90490046 blue: 92523222.32820892 green: 1131289.751197651 red: -38793367.02818557 themeColor: ACCENT4 label: reprehenderit eiusmod ex ut positiveColumnsStyle: color: alpha: -33684473.433511466 blue: 47421967.97235504 green: 61485931.39422411 red: 86964213.93143621 colorStyle: rgbColor: alpha: -91575506.62353389 blue: 48932954.386547506 green: 87439439.0248324 red: -92230734.4690994 themeColor: ACCENT4 label: ullamco quis ipsum qui subtotalColumnsStyle: color: alpha: 15682056.821042463 blue: -10132205.608376756 green: 63461460.64753729 red: 4771751.812094882 colorStyle: rgbColor: alpha: 92124248.13654628 blue: -51944586.383404315 green: 77172108.68174008 red: 22212738.56704147 themeColor: ACCENT2 label: nostrud dolore exercitation stackedType: WATERFALL_STACKED_TYPE_UNSPECIFIED totalDataLabel: customLabelData: aggregateType: MIN columnReference: name: aliqua voluptate amet no groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: -13262467.511420175 maxValue: -40456078.32104912 minValue: -78313230.16158862 sourceRange: sources: - endColumnIndex: -79457181 endRowIndex: 15754126 sheetId: -67859274 startColumnIndex: 21830512 startRowIndex: 61101925 placement: LEFT textFormat: bold: false fontFamily: dolor fontSize: 73390401 foregroundColor: alpha: 84556313.01613939 blue: -42099750.8689013 green: 66684186.11342633 red: -5976877.88054651 foregroundColorStyle: rgbColor: alpha: -53960989.89776843 blue: -18442235.36373377 green: -55305533.3459997 red: -85411857.99655175 themeColor: ACCENT5 italic: false link: uri: ullamco dolor consectetur dolor strikethrough: true underline: false type: NONE columnGroups: - collapsed: true depth: 18374754 range: dimension: COLUMNS endIndex: 64005365 sheetId: -23981058 startIndex: -32057668 conditionalFormats: - booleanRule: condition: type: DATE_IS_VALID values: - relativeDate: PAST_YEAR userEnteredValue: nostrud sed occaecat format: backgroundColor: alpha: -33696071.38050195 blue: 15037619.425577775 green: 5387136.656987175 red: 23675355.83419293 backgroundColorStyle: rgbColor: alpha: -71452563.07219623 blue: -44775926.694522105 green: -74123652.41325536 red: 93407629.04067361 themeColor: ACCENT5 borders: bottom: color: alpha: 11713632.41502203 blue: 10612383.080546424 green: -10731370.42296195 red: 85766312.12907669 colorStyle: rgbColor: alpha: -65098789.404307134 blue: 87659842.74322918 green: 55812981.82029432 red: -69790904.97943807 themeColor: ACCENT4 style: DASHED width: 97871266 left: color: alpha: 20601198.911095336 blue: 29841479.57745242 green: 9092286.33986476 red: 40934378.194180965 colorStyle: rgbColor: alpha: -28138053.097323194 blue: -71672715.97565582 green: 25554084.377339065 red: -28855421.117769316 themeColor: ACCENT5 style: SOLID_THICK width: -69936940 right: color: alpha: 43989936.684245825 blue: 34329817.85070273 green: -97595714.19915205 red: 83020651.84483784 colorStyle: rgbColor: alpha: -69997276.90040971 blue: 36711991.453406304 green: -11937914.337869376 red: 1142599.3258616775 themeColor: ACCENT4 style: DOUBLE width: -63493261 top: color: alpha: 51867248.317953914 blue: 16173933.168091908 green: 30261508.495030716 red: 18478551.68641144 colorStyle: rgbColor: alpha: 8724031.323282585 blue: -56047238.0663839 green: 54871971.990857065 red: 74762519.29785281 themeColor: ACCENT1 style: DASHED width: 90290532 horizontalAlignment: LEFT hyperlinkDisplayType: LINKED numberFormat: pattern: Duis Lorem type: SCIENTIFIC padding: bottom: -45258047 left: 79501126 right: -88560792 top: 18715229 textDirection: LEFT_TO_RIGHT textFormat: bold: true fontFamily: laborum Lorem aute anim fontSize: -54695866 foregroundColor: alpha: -96715819.03853346 blue: 51262618.51935482 green: 47100542.15011147 red: 72744837.8586438 foregroundColorStyle: rgbColor: alpha: 5077246.416933745 blue: 94924185.87944713 green: -79044590.47108224 red: -48855092.19125601 themeColor: THEME_COLOR_TYPE_UNSPECIFIED italic: false link: uri: enim strikethrough: true underline: false textRotation: angle: 15272087 vertical: true verticalAlignment: BOTTOM wrapStrategy: WRAP_STRATEGY_UNSPECIFIED gradientRule: maxpoint: color: alpha: -44582503.76789694 blue: 84725439.36743551 green: -70597214.37194546 red: -73157025.11586607 colorStyle: rgbColor: alpha: 27296064.52745354 blue: 96221099.65039742 green: 41166760.45432234 red: -5116491.946219787 themeColor: ACCENT5 type: NUMBER value: aliquip esse exe midpoint: color: alpha: -49603195.91381302 blue: -32125023.898420498 green: -78188899.89219734 red: -57892755.206260785 colorStyle: rgbColor: alpha: -82792542.42318083 blue: -58087470.74477996 green: -82430007.61734551 red: -97877882.06454743 themeColor: BACKGROUND type: INTERPOLATION_POINT_TYPE_UNSPECIFIED value: dolor officia minpoint: color: alpha: -99629648.8521859 blue: 21301662.241155967 green: 64155347.91908571 red: -61658800.72800576 colorStyle: rgbColor: alpha: -41052112.6239356 blue: 95533010.45308128 green: -15564682.62086548 red: -21968581.755773365 themeColor: ACCENT1 type: PERCENTILE value: 'incididunt quis sint ' ranges: - endColumnIndex: 74659565 endRowIndex: -88771425 sheetId: 74303660 startColumnIndex: -21044297 startRowIndex: -18392721 data: - columnMetadata: - dataSourceColumnReference: name: labore reprehenderit culpa ad developerMetadata: - location: dimensionRange: dimension: DIMENSION_UNSPECIFIED endIndex: -87933162 sheetId: 47670262 startIndex: -47295049 locationType: SHEET sheetId: -24764939 spreadsheet: true metadataId: 76194147 metadataKey: consequat in metadataValue: mollit aliquip ad visibility: PROJECT hiddenByFilter: false hiddenByUser: true pixelSize: 88073830 rowData: - values: - dataSourceFormula: dataExecutionStatus: errorCode: DATA_EXECUTION_ERROR_CODE_UNSPECIFIED errorMessage: tempor dolore officia veniam lastRefreshTime: culpa proident dolor state: RUNNING dataSourceId: ipsum sit reprehenderit in dataSourceTable: columnSelectionType: SELECTED columns: - name: nisi in irure dataExecutionStatus: errorCode: CONCURRENT_QUERY errorMessage: nisi lastRefreshTime: irure reprehenderit state: RUNNING dataSourceId: veniam sunt aliquip sit filterSpecs: - columnIndex: -99579434 dataSourceColumnReference: name: sunt velit dolore magna filterCriteria: condition: type: NUMBER_BETWEEN values: - relativeDate: PAST_MONTH userEnteredValue: aliquip Duis hiddenValues: - deserunt sed visibleBackgroundColor: alpha: 55398560.65484887 blue: -34173072.032416485 green: -97673278.36096938 red: 67170455.83319402 visibleBackgroundColorStyle: rgbColor: alpha: -33292060.616818644 blue: 69704544.72822353 green: 63635833.17909995 red: 59984200.48429686 themeColor: ACCENT6 visibleForegroundColor: alpha: 27696114.333764046 blue: -58617972.98879745 green: 86459807.99078384 red: -28686752.592930764 visibleForegroundColorStyle: rgbColor: alpha: -60354093.75723786 blue: 73983121.74659374 green: -41247335.40207526 red: -92048880.71548022 themeColor: THEME_COLOR_TYPE_UNSPECIFIED rowLimit: 68396451 sortSpecs: - backgroundColor: alpha: 15017235.123969331 blue: -9033293.91994965 green: 77916247.7642985 red: -16689793.954687998 backgroundColorStyle: rgbColor: alpha: 69138969.14693648 blue: 86509695.95040658 green: -90003248.09829107 red: 9140276.879808739 themeColor: ACCENT4 dataSourceColumnReference: name: dolor voluptate dimensionIndex: 96521710 foregroundColor: alpha: -99202387.1050502 blue: -59191122.74421856 green: 73019757.29999626 red: -24441230.725797743 foregroundColorStyle: rgbColor: alpha: -10796247.60116689 blue: -11355089.479209468 green: -29729478.459359586 red: 49766593.97480062 themeColor: ACCENT4 sortOrder: ASCENDING dataValidation: condition: type: NUMBER_EQ values: - relativeDate: YESTERDAY userEnteredValue: et inputMessage: id Duis showCustomUi: true strict: false effectiveFormat: backgroundColor: alpha: -75165906.87639546 blue: 31437318.769427687 green: -25133229.664263457 red: -73598153.15391107 backgroundColorStyle: rgbColor: alpha: 73284162.59540677 blue: 80348581.55412823 green: 83304070.27409178 red: 28015158.098887578 themeColor: ACCENT4 borders: bottom: color: alpha: 87561132.5655073 blue: -32232656.67089477 green: -70787822.84402739 red: 76420690.66282183 colorStyle: rgbColor: alpha: 21204111.585098535 blue: -5189404.144321725 green: -28696708.174476355 red: 14501358.597405821 themeColor: ACCENT2 style: SOLID_THICK width: -21459940 left: color: alpha: -72669838.59894718 blue: 18652029.719697267 green: -77277200.42718627 red: -9658050.436916187 colorStyle: rgbColor: alpha: -9822871.180133492 blue: -45876765.68401129 green: -28517314.345187068 red: -33708821.58251196 themeColor: ACCENT5 style: NONE width: -77939700 right: color: alpha: -92112658.48853767 blue: -7633934.965055779 green: 91208642.66715351 red: 35480546.31778875 colorStyle: rgbColor: alpha: -38575607.829158634 blue: 55951475.3930189 green: 25867680.686059162 red: 20304526.938570917 themeColor: TEXT style: DASHED width: -63237809 top: color: alpha: -56954813.58897112 blue: 88612165.95023671 green: 10714099.928762838 red: 82593997.34483165 colorStyle: rgbColor: alpha: 31699946.670475304 blue: -88050254.85500804 green: 73138556.05160445 red: 90773299.82631132 themeColor: ACCENT6 style: NONE width: 9174193 horizontalAlignment: RIGHT hyperlinkDisplayType: LINKED numberFormat: pattern: 'ullamco aute ' type: PERCENT padding: bottom: 86665013 left: 48041536 right: -74666208 top: -54673629 textDirection: RIGHT_TO_LEFT textFormat: bold: false fontFamily: in amet aliqua tempor fontSize: -85109807 foregroundColor: alpha: -29969706.666835055 blue: -71459984.88710994 green: -17699409.167820737 red: -43227880.60569085 foregroundColorStyle: rgbColor: alpha: -15886756.891549066 blue: -26993248.489153564 green: 18984824.729538634 red: -27602564.702234656 themeColor: ACCENT5 italic: false link: uri: ad tempor consectet strikethrough: true underline: true textRotation: angle: -19008652 vertical: true verticalAlignment: TOP wrapStrategy: WRAP_STRATEGY_UNSPECIFIED effectiveValue: boolValue: true errorValue: message: quis Lorem dolore nostrud type: LOADING formulaValue: mollit deserunt eiusmod non numberValue: 65393364.65626028 stringValue: amet c formattedValue: minim velit hyperlink: est magna pariatur note: tem pivotTable: columns: - dataSourceColumnReference: name: in laboris groupLimit: applyOrder: 86894586 countLimit: -95189988 groupRule: dateTimeRule: type: SECOND histogramRule: end: 73388672.70205921 interval: -29611396.371270522 start: -736558.7482237965 manualRule: groups: - groupName: boolValue: false errorValue: message: aliquip eiusmod irure nisi type: NUM formulaValue: quis deserunt nulla numberValue: 65941239.132365406 stringValue: culpa mollit ipsum velit items: - boolValue: true errorValue: message: tempor elit incididunt type: DIVIDE_BY_ZERO formulaValue: Lorem proident numberValue: 85929252.08708397 stringValue: velit dolore in label: ipsum cupidat repeatHeadings: true showTotals: false sortOrder: DESCENDING sourceColumnOffset: -93231206 valueBucket: buckets: - boolValue: true errorValue: message: ut dol type: DIVIDE_BY_ZERO formulaValue: amet nisi exerc numberValue: 46380282.57440895 stringValue: enim Lorem magna valuesIndex: 81769487 valueMetadata: - collapsed: true value: boolValue: true errorValue: message: Duis type: N_A formulaValue: dolor eiusmod anim voluptate pari numberValue: -26844411.7826768 stringValue: elit occaecat criteria: consequat_c15: condition: type: ONE_OF_RANGE values: - relativeDate: YESTERDAY userEnteredValue: tempor aliqua officia visibleByDefault: false visibleValues: - quis ea deserunt in dolor_aa: condition: type: DATE_BETWEEN values: - relativeDate: PAST_YEAR userEnteredValue: sit sint visibleByDefault: true visibleValues: - dolore eiusmod elit occaecat dataExecutionStatus: errorCode: TOO_MANY_COLUMNS errorMessage: nulla ut deserunt lastRefreshTime: eiusmod fugiat dolor state: SUCCEEDED dataSourceId: Duis occaecat Lorem mollit filterSpecs: - columnOffsetIndex: 68390305 dataSourceColumnReference: name: nisi est filterCriteria: condition: type: NUMBER_NOT_EQ values: - relativeDate: PAST_MONTH userEnteredValue: Lorem officia velit aliqua visibleByDefault: false visibleValues: - Ut est rows: - dataSourceColumnReference: name: et Duis groupLimit: applyOrder: -87421783 countLimit: 97455878 groupRule: dateTimeRule: type: YEAR_MONTH histogramRule: end: -45430317.88629501 interval: 19112464.14861214 start: -601118.3269306868 manualRule: groups: - groupName: boolValue: true errorValue: message: in proident do deserunt amet type: LOADING formulaValue: ip numberValue: -78375600.73544556 stringValue: labore est voluptate officia items: - boolValue: true errorValue: message: reprehenderit ex type: ERROR formulaValue: nisi id numberValue: 87183800.10702923 stringValue: officia label: consequat ullamco aute voluptate ad repeatHeadings: true showTotals: false sortOrder: DESCENDING sourceColumnOffset: -44411710 valueBucket: buckets: - boolValue: false errorValue: message: cillum nostrud type: DIVIDE_BY_ZERO formulaValue: est anim nulla numberValue: 62541937.02901471 stringValue: non Excepteur valuesIndex: -98790945 valueMetadata: - collapsed: false value: boolValue: true errorValue: message: dolo type: ERROR_TYPE_UNSPECIFIED formulaValue: qui numberValue: 70999832.1996871 stringValue: Excepteur cillum nostrud sit source: endColumnIndex: -52966387 endRowIndex: 73464648 sheetId: 26197423 startColumnIndex: 65892321 startRowIndex: 73328951 valueLayout: HORIZONTAL values: - calculatedDisplayType: PERCENT_OF_COLUMN_TOTAL dataSourceColumnReference: name: elit veniam mollit formula: in qui u name: dolor ad magna dolor sourceColumnOffset: 37969168 summarizeFunction: STDEVP textFormatRuns: - format: bold: false fontFamily: in aute fontSize: -32005442 foregroundColor: alpha: -41451009.7751632 blue: 50352423.90654141 green: 53143325.43411711 red: -85457268.54885384 foregroundColorStyle: rgbColor: alpha: 57441892.294582576 blue: -56261494.03466365 green: -20070334.48529367 red: -44818422.94338132 themeColor: ACCENT6 italic: true link: uri: laborum mo strikethrough: false underline: true startIndex: -44697679 userEnteredFormat: backgroundColor: alpha: 16235958.11779435 blue: 72798167.68336585 green: 52013078.54701626 red: 30373130.672796294 backgroundColorStyle: rgbColor: alpha: 16486518.285981506 blue: -39751287.05494741 green: 21619706.9985601 red: -71330440.49013782 themeColor: ACCENT1 borders: bottom: color: alpha: -36555151.42781356 blue: -74208683.55784705 green: 57746540.27194807 red: 29994710.88130851 colorStyle: rgbColor: alpha: 54516165.652094096 blue: 77027668.19738951 green: 63962014.416650295 red: 70087936.93838301 themeColor: ACCENT2 style: DOUBLE width: -14473424 left: color: alpha: -39789231.24171487 blue: -89708072.39761886 green: 45571135.52069461 red: 72494046.39968094 colorStyle: rgbColor: alpha: -60007140.78625395 blue: -446046.0255649537 green: 86990245.45480078 red: 29958676.957075655 themeColor: ACCENT1 style: DOUBLE width: -30082634 right: color: alpha: -9393032.849586368 blue: -83153669.34595625 green: -71624949.31064041 red: -80968641.75605151 colorStyle: rgbColor: alpha: 71824702.21632546 blue: -35043582.97587431 green: 59238675.52873051 red: 21344980.42260109 themeColor: BACKGROUND style: STYLE_UNSPECIFIED width: 4357643 top: color: alpha: -25307587.924525306 blue: 43166994.75238925 green: -54168585.88518769 red: 30895917.19349292 colorStyle: rgbColor: alpha: -80787203.7284075 blue: -17541923.775853038 green: 6712843.9920782745 red: 25491278.090904996 themeColor: THEME_COLOR_TYPE_UNSPECIFIED style: DOUBLE width: 72172146 horizontalAlignment: LEFT hyperlinkDisplayType: LINKED numberFormat: pattern: incididunt ut type: SCIENTIFIC padding: bottom: -65902242 left: 29002485 right: 53944408 top: -31004637 textDirection: TEXT_DIRECTION_UNSPECIFIED textFormat: bold: false fontFamily: sed eu fontSize: 215982 foregroundColor: alpha: -2639320.204084024 blue: 79218091.42426041 green: -18156892.879986137 red: -9248773.390694961 foregroundColorStyle: rgbColor: alpha: 26279239.217041582 blue: 34797003.40519014 green: 80077070.73050928 red: 95727232.5388664 themeColor: THEME_COLOR_TYPE_UNSPECIFIED italic: false link: uri: ullamc strikethrough: false underline: false textRotation: angle: -55192093 vertical: false verticalAlignment: VERTICAL_ALIGN_UNSPECIFIED wrapStrategy: CLIP userEnteredValue: boolValue: false errorValue: message: culpa est id nisi type: REF formulaValue: amet est sint dolor numberValue: 65088564.28292459 stringValue: officia mollit anim rowMetadata: - dataSourceColumnReference: name: qui aliquip do developerMetadata: - location: dimensionRange: dimension: ROWS endIndex: -44951718 sheetId: 97483151 startIndex: -43420977 locationType: SHEET sheetId: -29429824 spreadsheet: false metadataId: 65352796 metadataKey: officia metadataValue: nostrud Ut visibility: PROJECT hiddenByFilter: false hiddenByUser: true pixelSize: 38087355 startColumn: 99299073 startRow: 16142545 developerMetadata: - location: dimensionRange: dimension: COLUMNS endIndex: -14106255 sheetId: 18692779 startIndex: 39297711 locationType: DEVELOPER_METADATA_LOCATION_TYPE_UNSPECIFIED sheetId: -96663531 spreadsheet: false metadataId: 26526962 metadataKey: labore dolor aliqua metadataValue: Excepteur consequat visibility: DOCUMENT filterViews: - criteria: laborum_5: condition: type: DATE_BETWEEN values: - relativeDate: TODAY userEnteredValue: consequat Excepteur laboris minim sed hiddenValues: - exerc visibleBackgroundColor: alpha: 26587630.051572695 blue: -46399136.4885628 green: -40440691.767909564 red: 30692845.781372428 visibleBackgroundColorStyle: rgbColor: alpha: -36273486.55584348 blue: 96392363.6100077 green: -62560571.41801041 red: -65597002.27855321 themeColor: LINK visibleForegroundColor: alpha: 29241469.066167578 blue: -30192963.9297359 green: 70180835.40378043 red: -83730703.47639975 visibleForegroundColorStyle: rgbColor: alpha: -23490395.416582018 blue: -51160629.083008 green: 13647481.536380693 red: -99523149.13434108 themeColor: ACCENT2 quis_c0: condition: type: TEXT_IS_URL values: - relativeDate: PAST_YEAR userEnteredValue: in hiddenValues: - in visibleBackgroundColor: alpha: 14028520.369448707 blue: -2007903.5193176717 green: 55691231.64105004 red: 49469530.178036004 visibleBackgroundColorStyle: rgbColor: alpha: 84001328.06996918 blue: -50333507.62282995 green: -64079464.913153216 red: 44416770.20208529 themeColor: ACCENT3 visibleForegroundColor: alpha: -12731127.634207606 blue: 41996697.90869641 green: -46579626.66862479 red: -71150296.35351284 visibleForegroundColorStyle: rgbColor: alpha: -18641126.628708497 blue: -35774654.21024848 green: -72763786.36671 red: 99095348.24340591 themeColor: LINK filterSpecs: - columnIndex: -8690044 dataSourceColumnReference: name: proident aliquip filterCriteria: condition: type: NOT_BLANK values: - relativeDate: TOMORROW userEnteredValue: officia nostrud in hiddenValues: - proident eiusmod non consectetur visibleBackgroundColor: alpha: -7995442.001775116 blue: -74968499.54806182 green: -79772789.4567942 red: -45369903.57868702 visibleBackgroundColorStyle: rgbColor: alpha: -9338751.285100594 blue: -2922536.209486857 green: -82581075.82193448 red: 39414349.65034157 themeColor: ACCENT1 visibleForegroundColor: alpha: 29826077.416628256 blue: 48191500.28130442 green: -56553429.51918874 red: 44218276.386606455 visibleForegroundColorStyle: rgbColor: alpha: -14641434.094726428 blue: 10963555.996505782 green: 17382951.727717713 red: -50522176.394069575 themeColor: ACCENT1 filterViewId: 35977611 namedRangeId: veniam sunt Excepteur anim consectetur range: endColumnIndex: -19775724 endRowIndex: 75054710 sheetId: -28503853 startColumnIndex: 19549933 startRowIndex: 1397688 sortSpecs: - backgroundColor: alpha: 22422725.21389985 blue: -88600267.43612233 green: -48137071.12259924 red: 72603692.21021366 backgroundColorStyle: rgbColor: alpha: 47557536.703449786 blue: 29954654.171645597 green: 13074032.706790864 red: 13567227.501118809 themeColor: ACCENT4 dataSourceColumnReference: name: officia Duis dimensionIndex: 64535392 foregroundColor: alpha: 9223315.989956275 blue: 43453995.384192556 green: 66577650.54409447 red: 72655687.62276167 foregroundColorStyle: rgbColor: alpha: 70826650.4811235 blue: 1195344.3883961737 green: 86670478.51519728 red: 1106016.8049707562 themeColor: BACKGROUND sortOrder: ASCENDING title: Excepteur cupidatat adipisicing ad nostrud merges: - endColumnIndex: -65646743 endRowIndex: 2370620 sheetId: 54682586 startColumnIndex: -56370214 startRowIndex: -84051334 properties: dataSourceSheetProperties: columns: - formula: sed anim Ex reference: name: non cillum in fugiat dataExecutionStatus: errorCode: TIMED_OUT errorMessage: deserunt enim pariatur sunt lastRefreshTime: ea state: NOT_STARTED dataSourceId: anim in amet cupidatat gridProperties: columnCount: -71712723 columnGroupControlAfter: true frozenColumnCount: -90124383 frozenRowCount: 74050606 hideGridlines: true rowCount: -37569744 rowGroupControlAfter: true hidden: false index: -42379632 rightToLeft: true sheetId: 88867496 sheetType: SHEET_TYPE_UNSPECIFIED tabColor: alpha: 34340021.79368842 blue: -35647903.855287574 green: 27350831.725596964 red: -29831687.798329383 tabColorStyle: rgbColor: alpha: -21095073.74059789 blue: -6546349.867675126 green: 65316494.2932547 red: 5366328.794987932 themeColor: ACCENT2 title: Excepteur pariatu protectedRanges: - description: Ut est consectetur velit in editors: domainUsersCanEdit: true groups: - velit id adipisicing users: - voluptate velit anim esse namedRangeId: ad anim ex fugiat commodo protectedRangeId: -59769653 range: endColumnIndex: 27053664 endRowIndex: 84919062 sheetId: -54029466 startColumnIndex: -17405602 startRowIndex: -92003717 requestingUserCanEdit: false unprotectedRanges: - endColumnIndex: -28613412 endRowIndex: 89307655 sheetId: 87556321 startColumnIndex: -60327341 startRowIndex: -12180076 warningOnly: false rowGroups: - collapsed: false depth: -72387551 range: dimension: COLUMNS endIndex: -78794036 sheetId: -69497049 startIndex: 61085100 slicers: - position: newSheet: false overlayPosition: anchorCell: columnIndex: 47149370 rowIndex: 27022228 sheetId: -92084491 heightPixels: 37774180 offsetXPixels: 98758649 offsetYPixels: 63656157 widthPixels: -37102689 sheetId: 31674633 slicerId: -99019864 spec: applyToPivotTables: false backgroundColor: alpha: 76611683.93311697 blue: -95457599.27911983 green: -80674015.14034791 red: 38384841.20268336 backgroundColorStyle: rgbColor: alpha: 45268035.116818696 blue: 85089391.7779136 green: -49914707.53847343 red: 12913778.751262933 themeColor: ACCENT1 columnIndex: -29725812 dataRange: endColumnIndex: 82140662 endRowIndex: -70575595 sheetId: 82466991 startColumnIndex: 94185441 startRowIndex: 7912425 filterCriteria: condition: type: TEXT_NOT_CONTAINS values: - relativeDate: RELATIVE_DATE_UNSPECIFIED userEnteredValue: in consectetur Duis Excepteur hiddenValues: - quis in ips visibleBackgroundColor: alpha: 67346716.83941466 blue: 7010293.065400258 green: -54823332.83422176 red: 43970874.32053563 visibleBackgroundColorStyle: rgbColor: alpha: 5612184.912998065 blue: 76030046.26226127 green: -34098010.12699867 red: -36420734.9640632 themeColor: ACCENT4 visibleForegroundColor: alpha: -66559976.35060133 blue: -87754127.50317453 green: 34873691.555959314 red: 62645348.243606985 visibleForegroundColorStyle: rgbColor: alpha: 74678402.3235969 blue: -59956351.77014305 green: 85501973.05161777 red: 62643824.40413025 themeColor: ACCENT3 horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED textFormat: bold: false fontFamily: nisi dolor commodo fontSize: 75678415 foregroundColor: alpha: 66042584.444209546 blue: -55648158.88610921 green: -9096621.078611419 red: -69355322.31732976 foregroundColorStyle: rgbColor: alpha: -55416053.26437509 blue: 84142785.79442164 green: 44930095.29360053 red: 94764366.94169018 themeColor: BACKGROUND italic: true link: uri: pariatur laboru strikethrough: true underline: true title: exercitation Lorem spreadsheetId: tempor qui laboris labore spreadsheetUrl: nisi ipsum eiusmod aliquip SpreadsheetsPostResponse1Example: summary: Successful 200 response value: replies: - addBanding: bandedRange: bandedRangeId: 52786880 columnProperties: firstBandColor: alpha: -52095264.29237159 blue: 11275199.829174116 green: 85011697.41276437 red: 47565529.90014565 firstBandColorStyle: rgbColor: alpha: -81596967.56368455 blue: -93568502.40185706 green: -91911352.2596263 red: 87795579.20124033 themeColor: ACCENT1 footerColor: alpha: -44691666.908703364 blue: -43865122.67648715 green: 31983304.35929057 red: -69932935.61355892 footerColorStyle: rgbColor: alpha: 72412926.0414511 blue: -71021318.44702964 green: -15705988.795482367 red: 90282954.03277317 themeColor: ACCENT4 headerColor: alpha: 58126181.20633194 blue: -61214413.55306527 green: 92746262.15649563 red: 82706088.16670421 headerColorStyle: rgbColor: alpha: 49816263.90964377 blue: 93817314.46282297 green: 89096630.98481119 red: 79779328.85338044 themeColor: ACCENT4 secondBandColor: alpha: -13601933.827972785 blue: -53946103.55550298 green: 81043120.68032816 red: 60755529.703553885 secondBandColorStyle: rgbColor: alpha: 20929110.587153718 blue: 56831546.13201782 green: 98679606.30505198 red: -95611873.36013432 themeColor: ACCENT4 range: endColumnIndex: 78838991 endRowIndex: -30634768 sheetId: -22768214 startColumnIndex: -66447974 startRowIndex: -12393987 rowProperties: firstBandColor: alpha: 73198866.01894683 blue: 91130795.98782119 green: 7760245.767067179 red: 25296381.30719225 firstBandColorStyle: rgbColor: alpha: -27895545.342653617 blue: -77677055.58258462 green: 83419120.61677524 red: -21406689.824391022 themeColor: ACCENT6 footerColor: alpha: -36001710.83131172 blue: 90313408.08427143 green: 85048362.26785368 red: 39074520.814807564 footerColorStyle: rgbColor: alpha: 86208220.4683604 blue: -89696438.26810253 green: 59876894.015654564 red: 77462108.8167404 themeColor: ACCENT3 headerColor: alpha: -49000248.83982655 blue: -969781.3630868495 green: -12946285.207257807 red: -50454981.01963619 headerColorStyle: rgbColor: alpha: -25173206.310642153 blue: -4150744.503870517 green: 79467500.22757444 red: 7557883.326898992 themeColor: TEXT secondBandColor: alpha: 38738404.39976117 blue: -33339115.746792473 green: -34067541.92820993 red: 58184290.022141635 secondBandColorStyle: rgbColor: alpha: 87430160.22212678 blue: -96741075.60979079 green: 21479334.477129042 red: -34920302.13032624 themeColor: ACCENT1 addChart: chart: border: color: alpha: -35941831.54133579 blue: -72563117.8031553 green: 67265880.2785132 red: -61438998.77105561 colorStyle: rgbColor: alpha: -79087911.38593392 blue: -30691656.96805851 green: -96298457.36240087 red: -82880417.14312313 themeColor: ACCENT1 chartId: -26385570 position: newSheet: false overlayPosition: anchorCell: columnIndex: 17508662 rowIndex: -97565155 sheetId: 99579894 heightPixels: -70123910 offsetXPixels: -43741518 offsetYPixels: -54071580 widthPixels: 40968995 sheetId: -91079705 spec: altText: Excepteur labore ullamco in backgroundColor: alpha: 67787120.40891296 blue: 72143343.76750985 green: -90128508.71434183 red: -94013587.64151157 backgroundColorStyle: rgbColor: alpha: 49710676.05848512 blue: 51392970.94577223 green: -84825550.87210804 red: 92838634.89834073 themeColor: THEME_COLOR_TYPE_UNSPECIFIED basicChart: axis: - format: bold: false fontFamily: quis Excepteur fontSize: 13411135 foregroundColor: alpha: -41034752.08269707 blue: -7172080.803931683 green: -99846703.31916861 red: -86362280.90934893 foregroundColorStyle: rgbColor: alpha: 58796356.48358828 blue: -97328875.42953072 green: -83930653.59975167 red: -90816632.168069 themeColor: TEXT italic: false link: uri: ex eu in adipisicing sed strikethrough: false underline: false position: BASIC_CHART_AXIS_POSITION_UNSPECIFIED title: magna ea titleTextPosition: horizontalAlignment: CENTER viewWindowOptions: viewWindowMax: 67493522.55038202 viewWindowMin: -98418529.40090896 viewWindowMode: EXPLICIT chartType: COMBO compareMode: CATEGORY domains: - domain: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: occaecat in mollit elit eiusmod groupRule: dateTimeRule: type: SECOND histogramRule: intervalSize: -9313147.409049273 maxValue: 14764510.86398302 minValue: -50587492.33626441 sourceRange: sources: - endColumnIndex: 38926941 endRowIndex: -4941997 sheetId: 94440695 startColumnIndex: 1052913 startRowIndex: -73202474 reversed: false headerCount: 84674173 interpolateNulls: false legendPosition: BASIC_CHART_LEGEND_POSITION_UNSPECIFIED lineSmoothing: true series: - color: alpha: 68893594.54787582 blue: -2397317.179555446 green: 58656248.953917354 red: 99076874.8474614 colorStyle: rgbColor: alpha: 91485132.83949265 blue: 97458843.13202322 green: 87680024.03198442 red: 69884962.71263713 themeColor: BACKGROUND dataLabel: customLabelData: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: laborum groupRule: dateTimeRule: type: SECOND histogramRule: intervalSize: -75026756.60054527 maxValue: -25148365.038022384 minValue: 10509779.956527948 sourceRange: sources: - endColumnIndex: -88777132 endRowIndex: 76841633 sheetId: -22135637 startColumnIndex: 69682661 startRowIndex: -86839386 placement: INSIDE_END textFormat: bold: true fontFamily: id cillum et ullamco fontSize: -13139919 foregroundColor: alpha: -57997950.871410705 blue: -15772706.195844948 green: 60487400.61301449 red: -75063196.20400843 foregroundColorStyle: rgbColor: alpha: 871934.9563290477 blue: -94872887.36558433 green: 50691099.46739584 red: 69973712.07952878 themeColor: ACCENT4 italic: false link: uri: occaecat pariatur voluptate exercitation strikethrough: true underline: true type: DATA_LABEL_TYPE_UNSPECIFIED lineStyle: type: MEDIUM_DASHED_DOTTED width: 57126 pointStyle: shape: STAR size: -61733113.123302005 series: aggregateType: MEDIAN columnReference: name: elit groupRule: dateTimeRule: type: DAY_MONTH histogramRule: intervalSize: -19470869.944281816 maxValue: -6310482.40458703 minValue: 25990505.390951395 sourceRange: sources: - endColumnIndex: 36822488 endRowIndex: 23869278 sheetId: 76247314 startColumnIndex: 47433316 startRowIndex: -50451703 styleOverrides: - color: alpha: 99164589.05712724 blue: 92638681.8005676 green: -92352520.12016417 red: 28392484.44457297 colorStyle: rgbColor: alpha: 24454064.776001558 blue: -39888409.53657964 green: 76686688.54023975 red: 32527573.352444112 themeColor: LINK index: -41485118 pointStyle: shape: SQUARE size: -44018465.59310498 targetAxis: LEFT_AXIS type: BASIC_CHART_TYPE_UNSPECIFIED stackedType: NOT_STACKED threeDimensional: true totalDataLabel: customLabelData: aggregateType: SUM columnReference: name: cupidatat groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: 3583504.067386076 maxValue: -99563829.4645616 minValue: 86014487.87504804 sourceRange: sources: - endColumnIndex: -38510031 endRowIndex: -53070247 sheetId: 37357272 startColumnIndex: 15836750 startRowIndex: 59139393 placement: RIGHT textFormat: bold: true fontFamily: nostrud non labore fontSize: 48061858 foregroundColor: alpha: -68943388.80590163 blue: 60645441.75672647 green: 27668625.956354246 red: 23364374.126193345 foregroundColorStyle: rgbColor: alpha: 93641109.11278242 blue: -4363308.89465113 green: 50732509.415833384 red: 83127878.53328162 themeColor: ACCENT6 italic: false link: uri: dolor enim strikethrough: true underline: true type: CUSTOM bubbleChart: bubbleBorderColor: alpha: 26646465.641392946 blue: 53310362.38871282 green: 35619453.688034594 red: 32416831.260554343 bubbleBorderColorStyle: rgbColor: alpha: -40266308.255711935 blue: 19238016.80758159 green: 35887992.46004477 red: -30449281.12029694 themeColor: ACCENT4 bubbleLabels: aggregateType: MEDIAN columnReference: name: aute adipisicing dolore groupRule: dateTimeRule: type: HOUR_MINUTE histogramRule: intervalSize: -92740638.59306537 maxValue: -36937831.33265893 minValue: -39923660.641978696 sourceRange: sources: - endColumnIndex: -97466061 endRowIndex: 52386840 sheetId: -15433852 startColumnIndex: -73314519 startRowIndex: 74686798 bubbleMaxRadiusSize: 16438009 bubbleMinRadiusSize: -46994652 bubbleOpacity: -46849911.944819264 bubbleSizes: aggregateType: COUNT columnReference: name: proident anim groupRule: dateTimeRule: type: YEAR_MONTH_DAY histogramRule: intervalSize: 17218117.500191182 maxValue: -3234431.4581759423 minValue: 82424301.05818254 sourceRange: sources: - endColumnIndex: 72096776 endRowIndex: 38132592 sheetId: 52745279 startColumnIndex: 93303130 startRowIndex: 11042887 bubbleTextStyle: bold: false fontFamily: culpa eu fontSize: -35395973 foregroundColor: alpha: 58345342.82451117 blue: 28457097.62013717 green: 76584204.24583855 red: 8895628.33843182 foregroundColorStyle: rgbColor: alpha: -23689949.06098783 blue: -56090803.134263426 green: -52968981.08980943 red: 42656086.05403489 themeColor: TEXT italic: true link: uri: eiusmod dolore strikethrough: true underline: true domain: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: sint Excepteur voluptate ut adipisicing groupRule: dateTimeRule: type: CHART_DATE_TIME_RULE_TYPE_UNSPECIFIED histogramRule: intervalSize: 69326572.97427115 maxValue: -33161807.461302176 minValue: -40687846.28454281 sourceRange: sources: - endColumnIndex: 85333004 endRowIndex: 77528155 sheetId: 5746345 startColumnIndex: 90417651 startRowIndex: -39959473 groupIds: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: ut aute do commodo groupRule: dateTimeRule: type: YEAR_MONTH histogramRule: intervalSize: 11357571.58450979 maxValue: -87482526.8682494 minValue: -74763174.24027207 sourceRange: sources: - endColumnIndex: -41467984 endRowIndex: -88563023 sheetId: 54043035 startColumnIndex: 91569101 startRowIndex: 29336946 legendPosition: LEFT_LEGEND series: aggregateType: COUNT columnReference: name: aliquip fugiat groupRule: dateTimeRule: type: QUARTER histogramRule: intervalSize: 21802628.64839402 maxValue: -31886835.92800179 minValue: 48212539.45761326 sourceRange: sources: - endColumnIndex: -93423926 endRowIndex: -79770404 sheetId: 63023754 startColumnIndex: 87482078 startRowIndex: 43885543 candlestickChart: data: - closeSeries: data: aggregateType: AVERAGE columnReference: name: amet mollit groupRule: dateTimeRule: type: DAY_OF_MONTH histogramRule: intervalSize: 23242129.917883992 maxValue: -68236534.02080807 minValue: -90438953.02643335 sourceRange: sources: - endColumnIndex: 33572576 endRowIndex: -72727454 sheetId: -66387893 startColumnIndex: -99079402 startRowIndex: -36182719 highSeries: data: aggregateType: MEDIAN columnReference: name: amet consectetur elit groupRule: dateTimeRule: type: MONTH histogramRule: intervalSize: -5861690.008352786 maxValue: -17971778.243295684 minValue: 75575687.24200329 sourceRange: sources: - endColumnIndex: 5957465 endRowIndex: -43650248 sheetId: -50702092 startColumnIndex: -23918837 startRowIndex: 10492460 lowSeries: data: aggregateType: COUNT columnReference: name: in aute non groupRule: dateTimeRule: type: DAY_OF_YEAR histogramRule: intervalSize: -20429507.076086566 maxValue: -13633153.0371041 minValue: 47249541.79498941 sourceRange: sources: - endColumnIndex: 8775255 endRowIndex: -67444968 sheetId: -27811188 startColumnIndex: -5459132 startRowIndex: 94471361 openSeries: data: aggregateType: SUM columnReference: name: sunt sed sit groupRule: dateTimeRule: type: YEAR_QUARTER histogramRule: intervalSize: -58230748.12296123 maxValue: 6802600.504875004 minValue: -18945114.448613912 sourceRange: sources: - endColumnIndex: -95064810 endRowIndex: 43774808 sheetId: 15439553 startColumnIndex: -57695880 startRowIndex: 48167287 domain: data: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: cupidatat pariatur qui groupRule: dateTimeRule: type: DAY_OF_MONTH histogramRule: intervalSize: -44304272.664113894 maxValue: 77903910.68368375 minValue: 84667053.19000596 sourceRange: sources: - endColumnIndex: -39071901 endRowIndex: 70884814 sheetId: 58886460 startColumnIndex: -68824418 startRowIndex: 95575510 reversed: true dataSourceChartProperties: dataExecutionStatus: errorCode: TOO_MANY_COLUMNS errorMessage: '' lastRefreshTime: enim mollit anim state: RUNNING dataSourceId: elit voluptate anim filterSpecs: - columnIndex: 65052676 dataSourceColumnReference: name: tempor cupidatat filterCriteria: condition: type: NOT_BLANK values: - relativeDate: PAST_MONTH userEnteredValue: consequat elit hiddenValues: - in culpa ut visibleBackgroundColor: alpha: 87926531.07370552 blue: 5730805.058903694 green: 23857413.033420548 red: 7931334.928127363 visibleBackgroundColorStyle: rgbColor: alpha: 2358825.9963596165 blue: -11260812.572319344 green: -94969092.45810933 red: -12535910.1667085 themeColor: BACKGROUND visibleForegroundColor: alpha: -65400273.50475683 blue: -85862788.03542893 green: -85893780.06028765 red: 36827470.54024285 visibleForegroundColorStyle: rgbColor: alpha: -95779118.3606901 blue: 23824557.625423595 green: -36809368.40523548 red: -56169821.1425477 themeColor: TEXT fontName: 'in Lorem ' hiddenDimensionStrategy: SKIP_HIDDEN_ROWS histogramChart: bucketSize: -47106426.90261921 legendPosition: LEFT_LEGEND outlierPercentile: -9336152.079325229 series: - barColor: alpha: -38766932.383638375 blue: 10043745.891742572 green: -57232251.63875134 red: -97006624.1325628 barColorStyle: rgbColor: alpha: -91676020.08768277 blue: 86976680.30986029 green: 3097517.9880842865 red: 90394580.76769468 themeColor: ACCENT3 data: aggregateType: MAX columnReference: name: in con groupRule: dateTimeRule: type: DAY_OF_MONTH histogramRule: intervalSize: 67916959.08114398 maxValue: 94451563.56201348 minValue: 55629113.11379346 sourceRange: sources: - endColumnIndex: 56939430 endRowIndex: -68522352 sheetId: -66795153 startColumnIndex: -30165253 startRowIndex: 18623999 showItemDividers: true maximized: true orgChart: labels: aggregateType: AVERAGE columnReference: name: ut eiusmod qui groupRule: dateTimeRule: type: DAY_MONTH histogramRule: intervalSize: 60301549.584071755 maxValue: -80159935.37203316 minValue: -81531179.25393167 sourceRange: sources: - endColumnIndex: -82989360 endRowIndex: -42960787 sheetId: -62804179 startColumnIndex: 95458993 startRowIndex: 34778853 nodeColor: alpha: -60151989.746854804 blue: -21364312.172856703 green: 83106594.26103216 red: -24900269.249570027 nodeColorStyle: rgbColor: alpha: 79935478.06356713 blue: -56825309.019325234 green: -94244094.89245957 red: -31051650.708463803 themeColor: LINK nodeSize: LARGE parentLabels: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: aliqua sed groupRule: dateTimeRule: type: DAY_OF_MONTH histogramRule: intervalSize: -27879576.261443794 maxValue: -33225734.61775931 minValue: -70082512.88445906 sourceRange: sources: - endColumnIndex: -87668405 endRowIndex: -98737800 sheetId: 16343280 startColumnIndex: 29776671 startRowIndex: -10636151 selectedNodeColor: alpha: -48929670.13787492 blue: -69627753.71868081 green: 21045749.289775446 red: -30018923.967560112 selectedNodeColorStyle: rgbColor: alpha: 20109740.943505242 blue: -63939127.00567816 green: -40221352.03321806 red: -61171363.79048533 themeColor: ACCENT2 tooltips: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: proident groupRule: dateTimeRule: type: SECOND histogramRule: intervalSize: 91096306.27868462 maxValue: 47063281.495875806 minValue: 21460675.738671318 sourceRange: sources: - endColumnIndex: 85685926 endRowIndex: -2263967 sheetId: 1892431 startColumnIndex: -23403807 startRowIndex: 82423881 pieChart: domain: aggregateType: SUM columnReference: name: eiusmod tempor groupRule: dateTimeRule: type: DAY_MONTH histogramRule: intervalSize: -52588578.38053035 maxValue: -51078360.03192454 minValue: -69779665.86865385 sourceRange: sources: - endColumnIndex: -8614954 endRowIndex: 44709053 sheetId: 83515802 startColumnIndex: 81242125 startRowIndex: -74228771 legendPosition: LABELED_LEGEND pieHole: 66019934.965613306 series: aggregateType: AVERAGE columnReference: name: quis groupRule: dateTimeRule: type: QUARTER histogramRule: intervalSize: 11801855.88551414 maxValue: -20430703.887851685 minValue: 922547.4365488887 sourceRange: sources: - endColumnIndex: -59045154 endRowIndex: 27305229 sheetId: -99856030 startColumnIndex: -95335490 startRowIndex: 34642425 threeDimensional: false scorecardChart: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED baselineValueData: aggregateType: MIN columnReference: name: dolor Excepteur veniam cillum groupRule: dateTimeRule: type: CHART_DATE_TIME_RULE_TYPE_UNSPECIFIED histogramRule: intervalSize: -96347373.16387531 maxValue: 49282717.159905165 minValue: 95010148.54678646 sourceRange: sources: - endColumnIndex: -54136390 endRowIndex: 27053735 sheetId: -66729733 startColumnIndex: -97005008 startRowIndex: 6680137 baselineValueFormat: comparisonType: COMPARISON_TYPE_UNDEFINED description: laborum ipsum negativeColor: alpha: -14657890.655001447 blue: -3423452.767083958 green: 30648639.087551817 red: 43540466.46628013 negativeColorStyle: rgbColor: alpha: -15944705.60196215 blue: 2152186.235132143 green: -60637568.87496816 red: -47947277.87755604 themeColor: ACCENT6 position: horizontalAlignment: CENTER positiveColor: alpha: -71469312.45784636 blue: -95451934.06153545 green: -52138353.049714945 red: -59253200.14859801 positiveColorStyle: rgbColor: alpha: 9881757.118477762 blue: 43085816.13688359 green: -22779880.755812168 red: 81973819.74519193 themeColor: ACCENT3 textFormat: bold: false fontFamily: cupidatat ea ipsum consectetur fontSize: -3238843 foregroundColor: alpha: 9172595.356865272 blue: 44288775.45932108 green: -11800172.391167328 red: 26508550.282516822 foregroundColorStyle: rgbColor: alpha: -64315911.97606421 blue: -88393742.6594553 green: 75273799.62585473 red: 40097789.59285715 themeColor: ACCENT2 italic: false link: uri: Lorem eu ipsum Duis in strikethrough: false underline: false customFormatOptions: prefix: elit in officia mollit suffix: amet reprehenderit do ipsum consectetur keyValueData: aggregateType: MAX columnReference: name: qui id nulla do esse groupRule: dateTimeRule: type: YEAR_QUARTER histogramRule: intervalSize: 54029117.22567478 maxValue: 33255035.665287957 minValue: -11428306.346809551 sourceRange: sources: - endColumnIndex: 77556896 endRowIndex: -40026009 sheetId: 35494729 startColumnIndex: 45003068 startRowIndex: 55117719 keyValueFormat: position: horizontalAlignment: CENTER textFormat: bold: true fontFamily: occaecat fugiat minim sint aliquip fontSize: 2067185 foregroundColor: alpha: 86024778.4351036 blue: -40427904.26384446 green: -61527699.806732625 red: -77457479.60400955 foregroundColorStyle: rgbColor: alpha: 59100566.392792016 blue: -26919419.215839073 green: -50244814.11245665 red: 85801919.68724394 themeColor: ACCENT1 italic: false link: uri: ad esse in dolore strikethrough: false underline: false numberFormatSource: CHART_NUMBER_FORMAT_SOURCE_UNDEFINED scaleFactor: -85826311.77288227 sortSpecs: - backgroundColor: alpha: -84920977.24815854 blue: -77019871.71393876 green: -86416593.47435838 red: -28327767.326043934 backgroundColorStyle: rgbColor: alpha: 53223396.40495932 blue: 10031626.449614793 green: -33782399.97106314 red: -64992804.89012418 themeColor: ACCENT5 dataSourceColumnReference: name: elit ea Lorem et dolor dimensionIndex: -44111707 foregroundColor: alpha: -81755857.18733585 blue: 23280574.309505567 green: 11032373.019908011 red: -36346386.029633224 foregroundColorStyle: rgbColor: alpha: -27153713.158946633 blue: 76279679.81443304 green: -14336427.589653015 red: -45171363.37105523 themeColor: TEXT sortOrder: ASCENDING subtitle: officia in laborum in subtitleTextFormat: bold: false fontFamily: commodo esse sint laborum fontSize: 52200771 foregroundColor: alpha: 82531665.56764117 blue: 75055137.77547747 green: 84148237.71533602 red: -79939780.22527105 foregroundColorStyle: rgbColor: alpha: 92196811.7712805 blue: 56148532.491362154 green: -93822818.76735501 red: -71614124.85207124 themeColor: ACCENT3 italic: false link: uri: est dolore magna eiusmod sed strikethrough: false underline: true subtitleTextPosition: horizontalAlignment: CENTER title: ea titleTextFormat: bold: false fontFamily: culpa laboris fontSize: -30812513 foregroundColor: alpha: -69285902.18495962 blue: 79563235.10058102 green: -71464279.02535075 red: 8423903.947414324 foregroundColorStyle: rgbColor: alpha: 42022357.70873129 blue: -9499518.696627975 green: 75422007.16140363 red: -70307391.2884074 themeColor: LINK italic: true link: uri: id anim strikethrough: true underline: true titleTextPosition: horizontalAlignment: LEFT treemapChart: colorData: aggregateType: COUNT columnReference: name: nisi pariatur groupRule: dateTimeRule: type: MONTH histogramRule: intervalSize: 5543840.359325141 maxValue: -11864922.823847428 minValue: 20850169.62825881 sourceRange: sources: - endColumnIndex: 66006155 endRowIndex: 4422659 sheetId: -43164796 startColumnIndex: 25703557 startRowIndex: -12385940 colorScale: maxValueColor: alpha: -22407892.48423481 blue: -80142903.18152547 green: 61047529.34284642 red: -70334549.53409702 maxValueColorStyle: rgbColor: alpha: 14027858.381933898 blue: -65485442.19049885 green: -25352465.324917212 red: -16605597.141346395 themeColor: ACCENT6 midValueColor: alpha: 50812566.65518844 blue: -91365561.31184283 green: -55975478.51433289 red: -99132387.2081093 midValueColorStyle: rgbColor: alpha: 86664931.74215019 blue: -59662519.99419892 green: 27796226.89309323 red: -25603798.906071156 themeColor: THEME_COLOR_TYPE_UNSPECIFIED minValueColor: alpha: 4331207.127654225 blue: -14313711.670811146 green: -46743629.618532486 red: 44513389.34283626 minValueColorStyle: rgbColor: alpha: -21722850.48336558 blue: 74245519.51408094 green: -47316434.90360087 red: 55489817.86312765 themeColor: ACCENT6 noDataColor: alpha: 68879805.14649236 blue: 51265204.950010985 green: 60319729.231132776 red: -74461842.96250835 noDataColorStyle: rgbColor: alpha: 91567555.76375496 blue: -52921462.41905691 green: -67819778.85893133 red: -62932487.15469337 themeColor: ACCENT6 headerColor: alpha: -99012871.28969498 blue: 80010032.3706435 green: -54774607.94365405 red: -65618690.062808625 headerColorStyle: rgbColor: alpha: 91571952.72397575 blue: 228196.44520914555 green: 54906155.5977802 red: -91565074.82577698 themeColor: ACCENT1 hideTooltips: false hintedLevels: 43385509 labels: aggregateType: MIN columnReference: name: velit groupRule: dateTimeRule: type: HOUR_MINUTE_AMPM histogramRule: intervalSize: -74737932.08859676 maxValue: 11275859.98050727 minValue: 34535903.26181045 sourceRange: sources: - endColumnIndex: -73791732 endRowIndex: -1846805 sheetId: 60829475 startColumnIndex: -45886927 startRowIndex: 5792286 levels: -65092823 maxValue: -83781347.782819 minValue: -81874869.15455437 parentLabels: aggregateType: COUNT columnReference: name: 'magna ' groupRule: dateTimeRule: type: DAY_OF_WEEK histogramRule: intervalSize: -42743087.476174854 maxValue: 54250412.28838438 minValue: -14567050.344205424 sourceRange: sources: - endColumnIndex: -46403683 endRowIndex: -10941132 sheetId: -18132600 startColumnIndex: 44154341 startRowIndex: -63653013 sizeData: aggregateType: MAX columnReference: name: laborum occaecat laboris in groupRule: dateTimeRule: type: HOUR_MINUTE histogramRule: intervalSize: -90747714.29061857 maxValue: -7935079.399434432 minValue: 33615320.654173255 sourceRange: sources: - endColumnIndex: -23472866 endRowIndex: -67308842 sheetId: -85695768 startColumnIndex: -48534247 startRowIndex: 95849999 textFormat: bold: false fontFamily: enim velit sit ut fontSize: 98629438 foregroundColor: alpha: 42054549.79506457 blue: -66552887.0252921 green: -93139794.56883317 red: 3353104.021780148 foregroundColorStyle: rgbColor: alpha: -30364675.579271466 blue: 36265151.929279625 green: -69002558.45668335 red: 2108520.079809308 themeColor: ACCENT3 italic: true link: uri: deserunt strikethrough: true underline: false waterfallChart: connectorLineStyle: type: LONG_DASHED width: 57430777 domain: data: aggregateType: SUM columnReference: name: occaecat laborum groupRule: dateTimeRule: type: HOUR_MINUTE histogramRule: intervalSize: 15607469.28598778 maxValue: -27143551.053457096 minValue: 91434540.05652231 sourceRange: sources: - endColumnIndex: 28706716 endRowIndex: -96420383 sheetId: 67730750 startColumnIndex: -97772589 startRowIndex: 30599323 reversed: false firstValueIsTotal: true hideConnectorLines: true series: - customSubtotals: - dataIsSubtotal: false label: consectetur consequat in dolore subtotalIndex: 50259836 data: aggregateType: SUM columnReference: name: sint ipsum mollit fugiat groupRule: dateTimeRule: type: SECOND histogramRule: intervalSize: -50599636.06592741 maxValue: -48228884.50409706 minValue: -45167515.21395257 sourceRange: sources: - endColumnIndex: 9759633 endRowIndex: 61062521 sheetId: 37857352 startColumnIndex: 47895357 startRowIndex: 53701778 dataLabel: customLabelData: aggregateType: MIN columnReference: name: minim id groupRule: dateTimeRule: type: DAY_OF_MONTH histogramRule: intervalSize: -85054146.97512141 maxValue: -70148804.22709014 minValue: -38811818.88121618 sourceRange: sources: - endColumnIndex: 51437378 endRowIndex: 72955435 sheetId: -43106812 startColumnIndex: 53381719 startRowIndex: 66290768 placement: ABOVE textFormat: bold: false fontFamily: elit sed fontSize: 54971527 foregroundColor: alpha: 51678253.976278245 blue: -54420426.20594494 green: 35552455.23942983 red: 69066160.11900795 foregroundColorStyle: rgbColor: alpha: 71546077.45657867 blue: 4885613.787905946 green: -37598531.65322249 red: -4134685.4693608284 themeColor: BACKGROUND italic: false link: uri: qui reprehenderit enim consequat labore strikethrough: true underline: true type: DATA hideTrailingSubtotal: false negativeColumnsStyle: color: alpha: 69225219.53216413 blue: 28378975.500314757 green: 20284125.39941904 red: -75021519.53728703 colorStyle: rgbColor: alpha: -45769885.32274524 blue: 14240241.862140477 green: -9630149.566526562 red: 34787461.97900006 themeColor: ACCENT3 label: velit positiveColumnsStyle: color: alpha: 14787618.316733435 blue: 42062483.59576553 green: -94255220.053484 red: 39995255.023992985 colorStyle: rgbColor: alpha: 98687870.81910679 blue: 49948002.80626315 green: 7999395.8502367735 red: 67162933.33005542 themeColor: ACCENT2 label: irure Excepteur Ut in incididunt subtotalColumnsStyle: color: alpha: -15244122.92977871 blue: -5231329.615044624 green: -16536738.093730062 red: 34797138.52325657 colorStyle: rgbColor: alpha: 12458161.409273267 blue: 14949953.132199794 green: 5482974.779147521 red: 18089553.956545323 themeColor: BACKGROUND label: elit est nostrud nisi stackedType: STACKED totalDataLabel: customLabelData: aggregateType: MIN columnReference: name: Lorem exercitation irure dolore groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: 75986855.14557353 maxValue: 16182160.952281818 minValue: -91273074.27760231 sourceRange: sources: - endColumnIndex: -96702880 endRowIndex: 27456326 sheetId: -30451639 startColumnIndex: -39211094 startRowIndex: 56825812 placement: ABOVE textFormat: bold: false fontFamily: con fontSize: 42275476 foregroundColor: alpha: -29095046.708429977 blue: -60523754.537503205 green: -34458924.383699596 red: 64097734.62080765 foregroundColorStyle: rgbColor: alpha: -98465335.49005798 blue: 22415715.0625917 green: -95625639.032442 red: -14060288.747220844 themeColor: ACCENT3 italic: false link: uri: laborum strikethrough: true underline: true type: DATA_LABEL_TYPE_UNSPECIFIED addDataSource: dataExecutionStatus: errorCode: OBJECT_NOT_FOUND errorMessage: elit lastRefreshTime: ipsum non dolor state: NOT_STARTED dataSource: calculatedColumns: - formula: ad mollit irure nostrud reference: name: ut consequat dataSourceId: anim dolor dolore sheetId: 57259672 spec: bigQuery: projectId: i querySpec: rawQuery: tempor et tableSpec: datasetId: Duis laboris labore sed tableId: incididunt sint sit tableProjectId: pariatur Duis ut parameters: - name: deserunt cillum dolore namedRangeId: culpa sit magna id range: endColumnIndex: -6075299 endRowIndex: 21925600 sheetId: -20696143 startColumnIndex: 93343904 startRowIndex: -94585743 addDimensionGroup: dimensionGroups: - collapsed: true depth: 75324958 range: dimension: COLUMNS endIndex: 82773141 sheetId: 92698774 startIndex: 79401518 addFilterView: filter: criteria: reprehenderit_f3: condition: type: NUMBER_LESS_THAN_EQ values: - relativeDate: TOMORROW userEnteredValue: in eu aliquip hiddenValues: - incididunt ex qui visibleBackgroundColor: alpha: -24050120.38076371 blue: 99333750.8551543 green: -6653508.3920645565 red: 99846905.8511959 visibleBackgroundColorStyle: rgbColor: alpha: 13094477.400097966 blue: 9356395.300933868 green: -24790268.939307496 red: 65671340.96857405 themeColor: ACCENT2 visibleForegroundColor: alpha: 51531654.94444707 blue: -20117123.74996066 green: -34475297.762337975 red: -99636098.50674255 visibleForegroundColorStyle: rgbColor: alpha: 51784918.93773365 blue: -73505846.726 green: 47831494.58782977 red: -189090.10780973732 themeColor: ACCENT1 sed_99: condition: type: TEXT_IS_URL values: - relativeDate: YESTERDAY userEnteredValue: enim et aute hiddenValues: - Duis labore visibleBackgroundColor: alpha: -29182393.925405934 blue: 40542883.19055539 green: 21487573.622194007 red: 50983146.81979525 visibleBackgroundColorStyle: rgbColor: alpha: -22644406.292287618 blue: 51398224.64988914 green: 6257979.18096897 red: 26006339.99776955 themeColor: ACCENT5 visibleForegroundColor: alpha: 14354250.797555864 blue: -84529946.87914956 green: 31809223.00066924 red: -86859576.33338237 visibleForegroundColorStyle: rgbColor: alpha: 97085017.91958737 blue: -46081473.4745338 green: -80961352.75743812 red: 51729673.172150105 themeColor: ACCENT5 filterSpecs: - columnIndex: -80460910 dataSourceColumnReference: name: in commodo filterCriteria: condition: type: NUMBER_GREATER values: - relativeDate: TOMORROW userEnteredValue: nostrud in hiddenValues: - magna dolore laborum fugiat visibleBackgroundColor: alpha: 32356384.934325263 blue: 22741314.24508506 green: -99359809.5649244 red: 41400841.722171634 visibleBackgroundColorStyle: rgbColor: alpha: -22724497.04723929 blue: -84580212.40514407 green: 85851806.76579708 red: -68094806.87453155 themeColor: BACKGROUND visibleForegroundColor: alpha: -30794222.764249608 blue: 36487539.781501025 green: 5829972.134827614 red: -84816194.20519811 visibleForegroundColorStyle: rgbColor: alpha: -88523180.49615042 blue: 34461831.21697363 green: -50200320.16971059 red: -68285514.11850218 themeColor: ACCENT1 filterViewId: 79332986 namedRangeId: sint aute cillum ut range: endColumnIndex: -33978018 endRowIndex: -3253460 sheetId: 74481070 startColumnIndex: 7489921 startRowIndex: 36887405 sortSpecs: - backgroundColor: alpha: 70642310.29011098 blue: -34814216.982490234 green: 50676860.39631441 red: 78651463.45032704 backgroundColorStyle: rgbColor: alpha: 52900723.96457103 blue: 15541493.7400482 green: 4849676.665418074 red: 89234391.17673886 themeColor: LINK dataSourceColumnReference: name: ut nisi laboris dimensionIndex: -29554441 foregroundColor: alpha: -4186407.050298378 blue: -24315412.179163605 green: 14432138.104938418 red: 69235440.53213847 foregroundColorStyle: rgbColor: alpha: 3750880.738193631 blue: 29184763.692077547 green: -72827779.55752282 red: -17025679.401230767 themeColor: ACCENT2 sortOrder: SORT_ORDER_UNSPECIFIED title: dolor commodo addNamedRange: namedRange: name: consequat in aute namedRangeId: velit Ut range: endColumnIndex: -61873740 endRowIndex: -88638881 sheetId: -74514556 startColumnIndex: -58674643 startRowIndex: 82676158 addProtectedRange: protectedRange: description: laborum ipsum Duis editors: domainUsersCanEdit: false groups: - dolor voluptate users: - est ex ut namedRangeId: ut eiusmod protectedRangeId: -55626325 range: endColumnIndex: 30117460 endRowIndex: 37834119 sheetId: 3668789 startColumnIndex: 58791012 startRowIndex: -54286067 requestingUserCanEdit: true unprotectedRanges: - endColumnIndex: 67819495 endRowIndex: -62617870 sheetId: 38454156 startColumnIndex: 30413818 startRowIndex: 51354241 warningOnly: true addSheet: properties: dataSourceSheetProperties: columns: - formula: aliqua elit et ad reprehenderit reference: name: adipisicing aute ex dataExecutionStatus: errorCode: OBJECT_SPEC_INVALID errorMessage: nulla sint eu sunt proident lastRefreshTime: est laboris state: NOT_STARTED dataSourceId: officia voluptate reprehenderit gridProperties: columnCount: 536779 columnGroupControlAfter: false frozenColumnCount: -29305242 frozenRowCount: -95824782 hideGridlines: true rowCount: -4250575 rowGroupControlAfter: false hidden: false index: -45428862 rightToLeft: true sheetId: -44746523 sheetType: SHEET_TYPE_UNSPECIFIED tabColor: alpha: -87876907.77385592 blue: 13774860.585119113 green: -76658246.39286053 red: 34419474.48354325 tabColorStyle: rgbColor: alpha: -13021110.26971899 blue: -66427085.87017898 green: -33975191.115655564 red: 12443195.675573021 themeColor: ACCENT6 title: veniam ipsum addSlicer: slicer: position: newSheet: true overlayPosition: anchorCell: columnIndex: -32913390 rowIndex: -62118727 sheetId: 62577719 heightPixels: 55497436 offsetXPixels: -70412928 offsetYPixels: -43019192 widthPixels: 79472051 sheetId: 96665382 slicerId: 46586132 spec: applyToPivotTables: true backgroundColor: alpha: -13893378.343862265 blue: 2437198.4838783294 green: -80240555.14199704 red: 70219246.62861872 backgroundColorStyle: rgbColor: alpha: 9752942.927734047 blue: -75015823.39795254 green: -37707004.20812889 red: -5188833.179631785 themeColor: THEME_COLOR_TYPE_UNSPECIFIED columnIndex: -66861788 dataRange: endColumnIndex: -84721414 endRowIndex: -10736649 sheetId: 73981658 startColumnIndex: 12936111 startRowIndex: -89107075 filterCriteria: condition: type: TEXT_CONTAINS values: - relativeDate: RELATIVE_DATE_UNSPECIFIED userEnteredValue: Lorem hiddenValues: - commodo id visibleBackgroundColor: alpha: 55161341.6226885 blue: -55156520.41728076 green: -3582910.1214185655 red: -82615307.20651379 visibleBackgroundColorStyle: rgbColor: alpha: -7144824.695859998 blue: 8253364.701188609 green: -49072405.92321913 red: 31222252.217380002 themeColor: ACCENT5 visibleForegroundColor: alpha: -97513319.068013 blue: 51992264.47734609 green: 77322641.1311036 red: 74693533.26002765 visibleForegroundColorStyle: rgbColor: alpha: 36054902.32077527 blue: 31149126.13420549 green: -9111263.047671333 red: -70180690.90723835 themeColor: ACCENT1 horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED textFormat: bold: false fontFamily: Lorem et dolore fontSize: 92493660 foregroundColor: alpha: 24532544.615205422 blue: 90105296.71950084 green: 5613923.102843106 red: 63274217.87903473 foregroundColorStyle: rgbColor: alpha: 9697669.150638476 blue: 42167230.95502725 green: -7587142.795144424 red: 16640826.871106595 themeColor: TEXT italic: false link: uri: Duis Ut strikethrough: false underline: true title: aute dolore tempor irure minim createDeveloperMetadata: developerMetadata: location: dimensionRange: dimension: ROWS endIndex: 93440436 sheetId: 19164787 startIndex: 16750121 locationType: SPREADSHEET sheetId: 44151197 spreadsheet: true metadataId: 73506571 metadataKey: quis reprehenderit qui ex metadataValue: nostrud visibility: PROJECT deleteConditionalFormatRule: rule: booleanRule: condition: type: TEXT_CONTAINS values: - relativeDate: RELATIVE_DATE_UNSPECIFIED userEnteredValue: adipisicing dolor mollit format: backgroundColor: alpha: 25627775.598853037 blue: -76893913.64243802 green: 67632066.98168668 red: 41621331.89065614 backgroundColorStyle: rgbColor: alpha: -99071221.36882198 blue: 66166582.64991227 green: 9682058.916966215 red: -69810478.16452044 themeColor: TEXT borders: bottom: color: alpha: -23476586.08028516 blue: -7286938.26959233 green: -81902099.55661118 red: 16033523.488045454 colorStyle: rgbColor: alpha: -37368671.32738384 blue: -73975510.35331608 green: -208009.85812692344 red: 44420275.03900504 themeColor: ACCENT6 style: STYLE_UNSPECIFIED width: 94406933 left: color: alpha: 21361975.95582278 blue: 18565273.163635477 green: -75293766.91176277 red: 40852882.896280855 colorStyle: rgbColor: alpha: 68297757.0071733 blue: -58004819.684784256 green: 19320592.035211653 red: -10580549.446986035 themeColor: ACCENT5 style: NONE width: -71360060 right: color: alpha: 63119098.10235128 blue: -6761448.127060145 green: -19236588.20796384 red: -90161661.1966047 colorStyle: rgbColor: alpha: 53434382.856921494 blue: -87387739.73197614 green: 60453613.689727336 red: 54875293.16849008 themeColor: ACCENT6 style: DASHED width: -55767178 top: color: alpha: -88653818.54399921 blue: 86253300.06482953 green: 30017563.07557915 red: -98358027.67583969 colorStyle: rgbColor: alpha: -50165218.12715138 blue: 42718979.340206355 green: 65468229.20194054 red: -89407070.19594525 themeColor: ACCENT1 style: STYLE_UNSPECIFIED width: 50328472 horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED hyperlinkDisplayType: PLAIN_TEXT numberFormat: pattern: ad exercitation type: NUMBER padding: bottom: -71751429 left: -54632488 right: 74347353 top: -16030791 textDirection: RIGHT_TO_LEFT textFormat: bold: true fontFamily: culpa fontSize: 88786260 foregroundColor: alpha: -15074691.253345355 blue: 53824008.4286021 green: -85568833.73362085 red: -64036811.62729029 foregroundColorStyle: rgbColor: alpha: -84291570.36722197 blue: 14258071.613874406 green: 33347103.193888783 red: -32069404.618975118 themeColor: ACCENT3 italic: true link: uri: veniam sed strikethrough: true underline: true textRotation: angle: -34387939 vertical: true verticalAlignment: TOP wrapStrategy: WRAP gradientRule: maxpoint: color: alpha: -35070601.11917002 blue: 39935682.08363506 green: -91372914.24365582 red: 95591626.34683594 colorStyle: rgbColor: alpha: 62484415.603244215 blue: -21707631.709172353 green: -10123581.519926488 red: 11030836.593905047 themeColor: ACCENT1 type: MAX value: velit quis culpa adipisicing midpoint: color: alpha: -91826502.44866401 blue: -78333899.7950063 green: -37004244.20180144 red: 5229198.592423856 colorStyle: rgbColor: alpha: -84373674.1426072 blue: -38929662.04131008 green: 79279397.48092797 red: -6768151.028788522 themeColor: ACCENT5 type: MIN value: nostrud minpoint: color: alpha: -78925944.3752754 blue: 35650903.03691915 green: -1263071.4986838698 red: 79025572.71056879 colorStyle: rgbColor: alpha: -98288055.41289797 blue: -60693631.94089412 green: -44321604.41672086 red: 28617695.186004028 themeColor: THEME_COLOR_TYPE_UNSPECIFIED type: PERCENTILE value: in Duis dolor ranges: - endColumnIndex: 58719541 endRowIndex: -48184137 sheetId: 6187351 startColumnIndex: 45472793 startRowIndex: 41769051 deleteDeveloperMetadata: deletedDeveloperMetadata: - location: dimensionRange: dimension: DIMENSION_UNSPECIFIED endIndex: -6170488 sheetId: -11394150 startIndex: 67061278 locationType: SPREADSHEET sheetId: 33612566 spreadsheet: false metadataId: -13589317 metadataKey: incididunt aliqua occaecat elit aute metadataValue: ad ex anim visibility: DOCUMENT deleteDimensionGroup: dimensionGroups: - collapsed: false depth: -94207229 range: dimension: ROWS endIndex: 21641412 sheetId: 7159724 startIndex: -46283935 deleteDuplicates: duplicatesRemovedCount: 67529969 duplicateFilterView: filter: criteria: anim_31: condition: type: TEXT_STARTS_WITH values: - relativeDate: YESTERDAY userEnteredValue: aute ex in sed reprehe hiddenValues: - Excepteur qui dolor Lorem dolor visibleBackgroundColor: alpha: -57088467.41001188 blue: -87293703.71423441 green: 82994632.61707234 red: -48493794.50168576 visibleBackgroundColorStyle: rgbColor: alpha: -19660309.316055268 blue: -53071902.03561718 green: -75314190.41150063 red: 23444700.15450199 themeColor: LINK visibleForegroundColor: alpha: -16541196.359422639 blue: 74413302.33631861 green: 18719978.47897075 red: 23508340.671955705 visibleForegroundColorStyle: rgbColor: alpha: 33722527.9873953 blue: 97430682.1705412 green: -27204243.542901233 red: 11855531.062824205 themeColor: TEXT filterSpecs: - columnIndex: 36854714 dataSourceColumnReference: name: Duis aute veniam filterCriteria: condition: type: CONDITION_TYPE_UNSPECIFIED values: - relativeDate: TODAY userEnteredValue: minim hiddenValues: - consequat dolore visibleBackgroundColor: alpha: 82501564.16168627 blue: -45490756.69089726 green: -72384077.63201344 red: -52048228.16289325 visibleBackgroundColorStyle: rgbColor: alpha: -34988015.084605314 blue: 38466406.75156826 green: 22086707.178807393 red: -86963082.78737153 themeColor: ACCENT4 visibleForegroundColor: alpha: 28838452.578693017 blue: -27552085.23122254 green: -1895440.772247523 red: 42982139.62790266 visibleForegroundColorStyle: rgbColor: alpha: 77928489.33416918 blue: -30998557.03850141 green: -60838770.27512416 red: -40003078.027544305 themeColor: ACCENT5 filterViewId: 72264782 namedRangeId: aute elit range: endColumnIndex: -63046237 endRowIndex: -5072070 sheetId: -46752252 startColumnIndex: -50087754 startRowIndex: -81643726 sortSpecs: - backgroundColor: alpha: -41404301.387392685 blue: -30884587.081986263 green: 54581188.641399145 red: 67413976.14431038 backgroundColorStyle: rgbColor: alpha: 94961116.54235658 blue: -81856452.84917307 green: -65636447.12915679 red: -13499149.901089296 themeColor: LINK dataSourceColumnReference: name: reprehenderit commodo velit in dimensionIndex: -14535269 foregroundColor: alpha: -59027031.73601975 blue: 16070855.673888922 green: -5166317.537863702 red: -46969955.073795155 foregroundColorStyle: rgbColor: alpha: -37277970.897151925 blue: -47318531.25011121 green: 60850629.40106872 red: -96887331.51117885 themeColor: ACCENT5 sortOrder: ASCENDING title: exercitation duplicateSheet: properties: dataSourceSheetProperties: columns: - formula: adipisicing consequat reference: name: non reprehenderit minim dataExecutionStatus: errorCode: DUPLICATE_COLUMN_NAMES errorMessage: cillum Lorem ad officia lastRefreshTime: eiusmod ipsum elit et occaecat state: NOT_STARTED dataSourceId: ullamco gridProperties: columnCount: -35213549 columnGroupControlAfter: false frozenColumnCount: 44669683 frozenRowCount: -77338650 hideGridlines: false rowCount: 50791771 rowGroupControlAfter: true hidden: false index: -13450094 rightToLeft: false sheetId: 20644461 sheetType: SHEET_TYPE_UNSPECIFIED tabColor: alpha: -92893626.65159437 blue: 41737832.87103307 green: 83102256.39636183 red: -99693722.90517797 tabColorStyle: rgbColor: alpha: -517791.11448948085 blue: 62919288.88494009 green: 68366042.39171082 red: 71415598.32512322 themeColor: ACCENT4 title: do laborum voluptate nostrud findReplace: formulasChanged: -39358435 occurrencesChanged: 58949964 rowsChanged: -52609126 sheetsChanged: 21243223 valuesChanged: 67524741 refreshDataSource: statuses: - dataExecutionStatus: errorCode: CONCURRENT_QUERY errorMessage: tempor amet lastRefreshTime: ali state: SUCCEEDED reference: chartId: 93783042 dataSourceFormulaCell: columnIndex: 76409199 rowIndex: -83263208 sheetId: -10211021 dataSourcePivotTableAnchorCell: columnIndex: 7791859 rowIndex: -10411605 sheetId: -95622062 dataSourceTableAnchorCell: columnIndex: 88531482 rowIndex: 99607655 sheetId: 14015724 sheetId: velit d trimWhitespace: cellsChangedCount: 79691280 updateConditionalFormatRule: newIndex: 66054422 newRule: booleanRule: condition: type: TEXT_EQ values: - relativeDate: PAST_YEAR userEnteredValue: ut sint ad quis format: backgroundColor: alpha: -41170793.394358896 blue: 42435543.68340686 green: -92466984.50679989 red: 93055099.83031476 backgroundColorStyle: rgbColor: alpha: -7905762.045412689 blue: 43170908.06682989 green: -63715452.091648884 red: 75114429.56208608 themeColor: ACCENT5 borders: bottom: color: alpha: -82924718.57922514 blue: -587692.4218049794 green: -55779062.3304335 red: 64455269.6298995 colorStyle: rgbColor: alpha: -17252429.778438702 blue: 80836280.30558816 green: -46812646.83228492 red: -25161297.65569137 themeColor: LINK style: STYLE_UNSPECIFIED width: 95894482 left: color: alpha: -26278097.812740013 blue: 80571736.46788374 green: 41131106.763185024 red: 28047988.71888888 colorStyle: rgbColor: alpha: 99840946.95949489 blue: -78434346.8309168 green: 67061878.76525375 red: -59144904.645264074 themeColor: ACCENT2 style: SOLID width: 81546681 right: color: alpha: -36584590.818662256 blue: -76754081.11023577 green: -59472103.264735885 red: 57759936.19390237 colorStyle: rgbColor: alpha: 29854979.481804118 blue: -70276705.38572589 green: 84591460.1862165 red: -34543641.01041896 themeColor: BACKGROUND style: SOLID width: -39698804 top: color: alpha: 99101802.85907915 blue: -6927683.929086208 green: 42128074.731814414 red: 67097742.605443776 colorStyle: rgbColor: alpha: -56584959.82232581 blue: 7467404.989848211 green: -48351796.53915121 red: 98862271.5022695 themeColor: ACCENT4 style: STYLE_UNSPECIFIED width: 50486055 horizontalAlignment: CENTER hyperlinkDisplayType: HYPERLINK_DISPLAY_TYPE_UNSPECIFIED numberFormat: pattern: cupidatat in dolor nisi Excepteur type: NUMBER padding: bottom: -78180785 left: 13841098 right: -68292927 top: 64402813 textDirection: TEXT_DIRECTION_UNSPECIFIED textFormat: bold: false fontFamily: of fontSize: 5803153 foregroundColor: alpha: 15328492.596101701 blue: -10826150.16574344 green: -43295820.41174671 red: 51002864.315244794 foregroundColorStyle: rgbColor: alpha: 68429001.0798954 blue: 90038290.62238666 green: 18905246.04572721 red: -79799521.43202569 themeColor: ACCENT1 italic: false link: uri: ea sit et nostrud strikethrough: false underline: false textRotation: angle: -63990887 vertical: false verticalAlignment: TOP wrapStrategy: OVERFLOW_CELL gradientRule: maxpoint: color: alpha: -39510202.91345424 blue: -91771480.18316475 green: 86602084.38855705 red: 62174340.64269015 colorStyle: rgbColor: alpha: -17336961.325314477 blue: -13161775.36672835 green: -57992768.29722637 red: 34438544.05338165 themeColor: ACCENT2 type: MAX value: dolor nostrud esse in midpoint: color: alpha: -25010601.978867263 blue: -65568547.693601035 green: -26425255.594170943 red: -91193580.03227597 colorStyle: rgbColor: alpha: 67239777.09413597 blue: 7141416.177629039 green: 99741249.14060578 red: -63983478.03537323 themeColor: ACCENT4 type: MIN value: qui in deserunt minpoint: color: alpha: -26277281.107816502 blue: -88351721.99401416 green: -63373070.98732699 red: -48468665.07721215 colorStyle: rgbColor: alpha: 38781857.82804039 blue: -18883204.62615356 green: -75324437.08838077 red: -4469317.992589295 themeColor: BACKGROUND type: NUMBER value: dolor dolore ad in nisi ranges: - endColumnIndex: -75145896 endRowIndex: 59002944 sheetId: -8415730 startColumnIndex: 47838605 startRowIndex: -72458590 oldIndex: -79425685 oldRule: booleanRule: condition: type: TEXT_STARTS_WITH values: - relativeDate: PAST_YEAR userEnteredValue: laborum enim voluptate format: backgroundColor: alpha: -85082704.85233492 blue: 70952002.38858354 green: 72092109.74219081 red: 59273453.05221325 backgroundColorStyle: rgbColor: alpha: -77334964.31919166 blue: 105263.79085233808 green: -66397436.4803809 red: -21412456.50802736 themeColor: ACCENT4 borders: bottom: color: alpha: 37735703.45255014 blue: -50538554.712533966 green: 89371340.86775571 red: -78397892.80597582 colorStyle: rgbColor: alpha: -4255201.743855476 blue: -41074616.92518251 green: -32581875.772513717 red: 70741365.82796937 themeColor: ACCENT6 style: STYLE_UNSPECIFIED width: -68278975 left: color: alpha: -17328608.891531736 blue: 20640784.998361334 green: -44560283.47439434 red: -40481196.33125253 colorStyle: rgbColor: alpha: -87408677.48356456 blue: 59665497.78137505 green: -60977431.628777444 red: 15636817.961569533 themeColor: ACCENT4 style: DASHED width: -64694817 right: color: alpha: -61591637.1865604 blue: -85927540.78772269 green: -68873694.45336784 red: -65995670.892846145 colorStyle: rgbColor: alpha: -93645157.4456433 blue: -649098.1632802486 green: -20507221.940120995 red: 89131961.16361654 themeColor: TEXT style: SOLID width: 75846566 top: color: alpha: -37203779.955547 blue: 36221320.87905681 green: -90441319.30053271 red: -78127974.69811246 colorStyle: rgbColor: alpha: 96439620.88075674 blue: -423816.09512870014 green: 24922134.880280793 red: 57648846.65398756 themeColor: BACKGROUND style: NONE width: -56475451 horizontalAlignment: RIGHT hyperlinkDisplayType: LINKED numberFormat: pattern: est nisi mollit type: SCIENTIFIC padding: bottom: 72503410 left: 37831530 right: -46135293 top: -90113746 textDirection: RIGHT_TO_LEFT textFormat: bold: true fontFamily: nostrud fontSize: 85320101 foregroundColor: alpha: 66910347.970840424 blue: -54302565.21794319 green: 70295111.20152009 red: -61712242.59788231 foregroundColorStyle: rgbColor: alpha: 74546027.65303671 blue: 16940004.083091423 green: 31690643.11036189 red: 22760588.62625581 themeColor: TEXT italic: true link: uri: magna ullamco dolore strikethrough: true underline: false textRotation: angle: 54174075 vertical: false verticalAlignment: BOTTOM wrapStrategy: WRAP_STRATEGY_UNSPECIFIED gradientRule: maxpoint: color: alpha: 46051864.59937686 blue: -4422279.1662748605 green: -60657645.44013157 red: -55070504.97687418 colorStyle: rgbColor: alpha: -43395513.10161793 blue: 67638694.17683241 green: -31700929.1481885 red: 79390879.53856343 themeColor: LINK type: INTERPOLATION_POINT_TYPE_UNSPECIFIED value: ex culpa irure et officia midpoint: color: alpha: 49515927.78188908 blue: -31827905.84305048 green: 88048602.59854975 red: 3888359.559476003 colorStyle: rgbColor: alpha: 94623391.1576623 blue: -31234246.001611024 green: -65757047.828706525 red: -29765147.995157987 themeColor: THEME_COLOR_TYPE_UNSPECIFIED type: PERCENT value: esse incididunt labore minpoint: color: alpha: -32389044.9399776 blue: 57495354.914325505 green: -52797773.84188344 red: -62925289.256273635 colorStyle: rgbColor: alpha: 44107077.81451163 blue: 27917956.42474164 green: -31902797.659767628 red: -98811577.8018253 themeColor: LINK type: MAX value: irure ranges: - endColumnIndex: -31124791 endRowIndex: 94339392 sheetId: 71317996 startColumnIndex: 90152388 startRowIndex: 7478879 updateDataSource: dataExecutionStatus: errorCode: MISSING_COLUMN_ALIAS errorMessage: mollit laborum adipisicing lastRefreshTime: ut aliquip Excepteur state: RUNNING dataSource: calculatedColumns: - formula: eiusmod enim dolor reference: name: ipsum dolore dolore incididunt dataSourceId: deserunt Duis labore dolore aliquip sheetId: -16745689 spec: bigQuery: projectId: do querySpec: rawQuery: aute ex tableSpec: datasetId: amet ad officia tableId: incididunt tableProjectId: enim parameters: - name: dolore reprehenderit nulla et namedRangeId: et non range: endColumnIndex: -58491890 endRowIndex: 74897080 sheetId: 47919585 startColumnIndex: 32766832 startRowIndex: 23144263 updateDeveloperMetadata: developerMetadata: - location: dimensionRange: dimension: ROWS endIndex: 14083656 sheetId: 78117113 startIndex: 82644124 locationType: SPREADSHEET sheetId: 62890270 spreadsheet: true metadataId: -16168665 metadataKey: culpa aliquip in repr metadataValue: deserunt tempor visibility: PROJECT updateEmbeddedObjectPosition: position: newSheet: true overlayPosition: anchorCell: columnIndex: 83562839 rowIndex: -24388900 sheetId: -88288285 heightPixels: 53009592 offsetXPixels: -27397415 offsetYPixels: 82385733 widthPixels: 6759353 sheetId: 43852557 spreadsheetId: est updatedSpreadsheet: dataSourceSchedules: - dailySchedule: startTime: hours: 93953415 minutes: 60187830 nanos: 88982801 seconds: -47473906 enabled: true monthlySchedule: daysOfMonth: - -88891534 startTime: hours: -35129283 minutes: -29683322 nanos: -77819309 seconds: 31171709 nextRun: endTime: nisi dolore dolore enim startTime: in reprehenderit pariatur refreshScope: DATA_SOURCE_REFRESH_SCOPE_UNSPECIFIED weeklySchedule: daysOfWeek: - DAY_OF_WEEK_UNSPECIFIED startTime: hours: 47152672 minutes: 99242770 nanos: 43723207 seconds: -5852722 dataSources: - calculatedColumns: - formula: reprehenderit sed anim reference: name: Excepteur elit dataSourceId: Lorem sheetId: 7199748 spec: bigQuery: projectId: magna in irure querySpec: rawQuery: cupidatat eiusmod id ea ipsum tableSpec: datasetId: Lorem Excepteur laboris aliquip tableId: cupidatat enim labore magna tempor tableProjectId: Lorem parameters: - name: officia veniam namedRangeId: velit consectetur Duis dolor labore range: endColumnIndex: 65496627 endRowIndex: -17774305 sheetId: 1571084 startColumnIndex: 49112843 startRowIndex: -72823885 developerMetadata: - location: dimensionRange: dimension: COLUMNS endIndex: -49221461 sheetId: -4231073 startIndex: -51612825 locationType: SHEET sheetId: 98641010 spreadsheet: false metadataId: -29062283 metadataKey: dolor metadataValue: culpa visibility: DOCUMENT namedRanges: - name: ad namedRangeId: sed range: endColumnIndex: -8672458 endRowIndex: -37432245 sheetId: -544584 startColumnIndex: -28684590 startRowIndex: 23978876 properties: autoRecalc: RECALCULATION_INTERVAL_UNSPECIFIED defaultFormat: backgroundColor: alpha: -84982709.18192615 blue: 6572379.703530639 green: 49436889.47215411 red: 52894958.77119875 backgroundColorStyle: rgbColor: alpha: -83018.29312369227 blue: -22785958.39633821 green: 89531021.99060217 red: 22454124.729490086 themeColor: ACCENT6 borders: bottom: color: alpha: 82637331.24904492 blue: 10039292.705741197 green: 62772198.52053943 red: -17341324.35059142 colorStyle: rgbColor: alpha: -47393299.843055956 blue: -5455668.012109622 green: 76796149.88932252 red: -83112948.7302209 themeColor: ACCENT3 style: SOLID width: 53344350 left: color: alpha: -18788170.727351934 blue: 95289912.73195988 green: 24348693.922727585 red: 81658096.27784455 colorStyle: rgbColor: alpha: 15248155.598004937 blue: 38243093.927265316 green: 42450728.88744721 red: -67674361.51748316 themeColor: ACCENT6 style: SOLID_THICK width: -4807081 right: color: alpha: 90996352.84091431 blue: -80708163.16375451 green: -53173386.79931094 red: 8637298.745089069 colorStyle: rgbColor: alpha: -75645688.89345358 blue: 7451888.447015658 green: -59514835.29113206 red: -24918421.04066935 themeColor: LINK style: SOLID width: -58794849 top: color: alpha: -89029354.54762435 blue: 60834716.64536023 green: 64445841.5612354 red: -99761928.7657912 colorStyle: rgbColor: alpha: -30857041.69337964 blue: 78753197.43770602 green: 83441743.5680201 red: -65976752.51179469 themeColor: BACKGROUND style: DASHED width: 18880180 horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED hyperlinkDisplayType: LINKED numberFormat: pattern: culpa officia type: PERCENT padding: bottom: 25997890 left: -83508560 right: -14639447 top: 8616123 textDirection: RIGHT_TO_LEFT textFormat: bold: false fontFamily: deserunt laboris et ut fontSize: 55879175 foregroundColor: alpha: -50849493.14176943 blue: 61224160.25064486 green: -25694728.563254192 red: -33688801.04314451 foregroundColorStyle: rgbColor: alpha: 85794474.25531596 blue: -40009420.93269071 green: 62332486.89188141 red: -36071502.89043628 themeColor: THEME_COLOR_TYPE_UNSPECIFIED italic: false link: uri: magna ea aute enim non strikethrough: true underline: true textRotation: angle: -78131283 vertical: false verticalAlignment: MIDDLE wrapStrategy: OVERFLOW_CELL iterativeCalculationSettings: convergenceThreshold: 11682445.39161241 maxIterations: 24125485 locale: tempor do incididunt spreadsheetTheme: primaryFontFamily: enim themeColors: - color: rgbColor: alpha: 36688159.23046759 blue: -75093303.19133535 green: -18137560.572150186 red: 28089852.667739555 themeColor: BACKGROUND colorType: TEXT timeZone: sit incididunt title: laborum pariatur sheets: - bandedRanges: - bandedRangeId: -11433451 columnProperties: firstBandColor: alpha: -68438647.5138394 blue: -16981718.191488013 green: 47788969.95414871 red: 41109255.45887509 firstBandColorStyle: rgbColor: alpha: -38191018.59354492 blue: 58103266.98208389 green: -67573273.68987522 red: -26449322.44282776 themeColor: ACCENT1 footerColor: alpha: -65588602.81671706 blue: 787502.1614784449 green: -13903517.136773676 red: -72732357.07855585 footerColorStyle: rgbColor: alpha: 38354180.81826082 blue: -87734639.38613935 green: 73955521.00572279 red: -84305530.1729453 themeColor: ACCENT1 headerColor: alpha: -56611028.256433874 blue: -61984977.127350405 green: 38291592.00939083 red: -54624070.519468896 headerColorStyle: rgbColor: alpha: 92603669.16665691 blue: 2824057.266196117 green: -41874715.508016184 red: 72506725.78468245 themeColor: ACCENT3 secondBandColor: alpha: -33775652.78487289 blue: 45016949.95223099 green: -42174794.71920353 red: -97539468.43421467 secondBandColorStyle: rgbColor: alpha: -48940460.349395566 blue: 5893184.678535774 green: 99554704.81180027 red: -83641102.83003643 themeColor: ACCENT6 range: endColumnIndex: -92050737 endRowIndex: 19869977 sheetId: 14781591 startColumnIndex: -43118348 startRowIndex: -39480268 rowProperties: firstBandColor: alpha: 33625973.44153105 blue: -99278081.18007255 green: -11913790.379459187 red: -27416252.767307594 firstBandColorStyle: rgbColor: alpha: -84860083.94917412 blue: -29430999.839244172 green: -57394051.94803701 red: 82724018.83276445 themeColor: ACCENT1 footerColor: alpha: 97815172.11385843 blue: 67509901.52682 green: 1755610.197793141 red: -64276786.60357472 footerColorStyle: rgbColor: alpha: 81511458.3431342 blue: 10741948.174258769 green: 64576025.887591004 red: 11211871.48409897 themeColor: ACCENT4 headerColor: alpha: 3861248.0691927224 blue: 62698584.66927531 green: -13738380.037991509 red: 19442432.44020419 headerColorStyle: rgbColor: alpha: 56266484.397119135 blue: -26233075.76850374 green: -24415402.53592196 red: -90744781.83810371 themeColor: ACCENT1 secondBandColor: alpha: 12672606.88976948 blue: 19047077.001075104 green: -90911264.65680239 red: 10153368.493383259 secondBandColorStyle: rgbColor: alpha: -17481345.122902602 blue: -45184427.93984278 green: -12304546.286195934 red: -9353279.73649685 themeColor: THEME_COLOR_TYPE_UNSPECIFIED basicFilter: criteria: nisiec: condition: type: TEXT_STARTS_WITH values: - relativeDate: YESTERDAY userEnteredValue: ex hiddenValues: - eu dolor commodo visibleBackgroundColor: alpha: 91153106.3027376 blue: 75033302.17685282 green: 74457440.97917992 red: 6575692.145087019 visibleBackgroundColorStyle: rgbColor: alpha: -91809592.86287446 blue: -6086570.696735814 green: -60782474.814981535 red: -18205725.18892187 themeColor: THEME_COLOR_TYPE_UNSPECIFIED visibleForegroundColor: alpha: -21472485.17934428 blue: -36610022.8231879 green: 32186122.0559621 red: 29429416.8071986 visibleForegroundColorStyle: rgbColor: alpha: 27565334.902971014 blue: 35861402.42672172 green: 29239438.31428483 red: -88001342.78156136 themeColor: ACCENT3 deserunt_77: condition: type: NUMBER_GREATER_THAN_EQ values: - relativeDate: PAST_MONTH userEnteredValue: cillum nostrud elit hiddenValues: - cillum visibleBackgroundColor: alpha: 76053356.43452227 blue: -19587305.33008866 green: -6131795.356436238 red: -11099382.919324085 visibleBackgroundColorStyle: rgbColor: alpha: 23456349.17695363 blue: -2959523.9811229557 green: -78639847.66384423 red: -42155273.15709848 themeColor: TEXT visibleForegroundColor: alpha: -7880643.420607433 blue: -17580457.497578636 green: -64616452.617225 red: 21406461.74968919 visibleForegroundColorStyle: rgbColor: alpha: 36294157.835986406 blue: -33618861.06797973 green: -75734661.27215193 red: -7509124.651171416 themeColor: ACCENT1 filterSpecs: - columnIndex: -7883719 dataSourceColumnReference: name: veniam ea eu mollit sed filterCriteria: condition: type: DATE_NOT_BETWEEN values: - relativeDate: YESTERDAY userEnteredValue: fugiat consectetur hiddenValues: - consectetur velit in visibleBackgroundColor: alpha: -41465213.86380191 blue: 97311760.99472743 green: 64653738.28282267 red: 25890297.928478166 visibleBackgroundColorStyle: rgbColor: alpha: -84193424.49938662 blue: -30103871.58127968 green: -70106161.06470837 red: 81359618.50232288 themeColor: ACCENT5 visibleForegroundColor: alpha: -82876435.53083819 blue: -37215108.381181136 green: -91309888.86750546 red: 52905548.25409624 visibleForegroundColorStyle: rgbColor: alpha: 13774746.411701992 blue: -75152314.0641293 green: 89770471.5119299 red: -91963415.44555913 themeColor: THEME_COLOR_TYPE_UNSPECIFIED range: endColumnIndex: 58188958 endRowIndex: 29450781 sheetId: 67773641 startColumnIndex: -49470589 startRowIndex: 5194914 sortSpecs: - backgroundColor: alpha: 55183315.63085917 blue: 71884895.50079682 green: 16453229.714164719 red: 25812642.338262215 backgroundColorStyle: rgbColor: alpha: -30565063.698371157 blue: 89017691.31260782 green: -55175327.64465773 red: 79325764.51130995 themeColor: TEXT dataSourceColumnReference: name: dolore irure labore occaecat ex dimensionIndex: -85227337 foregroundColor: alpha: 55601288.47045171 blue: 76162454.81297743 green: -98892225.32337834 red: -70625096.68378682 foregroundColorStyle: rgbColor: alpha: 95086422.50601396 blue: 46282432.53053254 green: -11210010.072099134 red: -9852642.117541239 themeColor: ACCENT5 sortOrder: ASCENDING charts: - border: color: alpha: -44637560.043322735 blue: 3933473.584093511 green: -49662679.80561976 red: 41013579.375242114 colorStyle: rgbColor: alpha: -68745327.40077756 blue: -73719409.35513991 green: 35332427.75824702 red: -83329745.379513 themeColor: ACCENT6 chartId: 20277460 position: newSheet: true overlayPosition: anchorCell: columnIndex: 37447365 rowIndex: 33797566 sheetId: 32764978 heightPixels: -23262733 offsetXPixels: 71271739 offsetYPixels: -31893331 widthPixels: -89824215 sheetId: -86277696 spec: altText: tempor cillum adipisicing dolor backgroundColor: alpha: 7133866.957655504 blue: 26816046.542986214 green: 54061126.55800587 red: 14843965.35831292 backgroundColorStyle: rgbColor: alpha: -83536787.09979832 blue: 14085404.138541862 green: 72362119.66626796 red: -47613514.543446064 themeColor: ACCENT2 basicChart: axis: - format: bold: true fontFamily: sit fontSize: 37719672 foregroundColor: alpha: -47616935.65492493 blue: -87521901.70353167 green: -96613797.35924469 red: 43483576.91664177 foregroundColorStyle: rgbColor: alpha: 10667079.047447413 blue: -99775445.6054139 green: 62211742.501298875 red: -45053185.56947526 themeColor: ACCENT4 italic: true link: uri: ad strikethrough: false underline: true position: RIGHT_AXIS title: sint titleTextPosition: horizontalAlignment: LEFT viewWindowOptions: viewWindowMax: 71993061.2926135 viewWindowMin: 66093915.18732646 viewWindowMode: EXPLICIT chartType: BAR compareMode: CATEGORY domains: - domain: aggregateType: MEDIAN columnReference: name: in in ullamco et officia groupRule: dateTimeRule: type: CHART_DATE_TIME_RULE_TYPE_UNSPECIFIED histogramRule: intervalSize: 90058430.6019566 maxValue: 36245049.58155307 minValue: 42119031.8875854 sourceRange: sources: - endColumnIndex: 9517071 endRowIndex: 23272811 sheetId: 76526336 startColumnIndex: 43156659 startRowIndex: -67674704 reversed: true headerCount: 98904571 interpolateNulls: true legendPosition: RIGHT_LEGEND lineSmoothing: true series: - color: alpha: 54451.93138369918 blue: 11742670.789865613 green: 26774894.903212637 red: -39669667.949016765 colorStyle: rgbColor: alpha: -64402818.359537095 blue: 35864311.86940634 green: 46413678.47410023 red: 56318587.09528172 themeColor: ACCENT5 dataLabel: customLabelData: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: irure labore id laboris ut groupRule: dateTimeRule: type: DAY_OF_WEEK histogramRule: intervalSize: -84771855.91260938 maxValue: 3691389.217441052 minValue: 17753481.118109837 sourceRange: sources: - endColumnIndex: -84775700 endRowIndex: -22749467 sheetId: -60632396 startColumnIndex: 98251346 startRowIndex: -92573246 placement: LEFT textFormat: bold: false fontFamily: ipsum nisi ut et pariatur fontSize: 13297408 foregroundColor: alpha: 19777445.928364262 blue: 38173539.22743419 green: -69717099.49375615 red: 26318047.976892784 foregroundColorStyle: rgbColor: alpha: -5498398.656072155 blue: -40468243.016171314 green: 67460386.85667875 red: 70524639.69949052 themeColor: ACCENT2 italic: false link: uri: eu laboris strikethrough: false underline: true type: DATA lineStyle: type: LONG_DASHED width: -18716532 pointStyle: shape: POINT_SHAPE_UNSPECIFIED size: -7653803.69717446 series: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: eiusmod nulla sit aliquip groupRule: dateTimeRule: type: DAY_OF_MONTH histogramRule: intervalSize: 16642035.840740114 maxValue: -9505654.432247072 minValue: -11841568.12989521 sourceRange: sources: - endColumnIndex: -18482360 endRowIndex: -36583231 sheetId: 86322191 startColumnIndex: 26551299 startRowIndex: 79751142 styleOverrides: - color: alpha: 79148084.50993189 blue: -19459041.23939623 green: -24871567.852788433 red: -79109004.56630689 colorStyle: rgbColor: alpha: 12663249.05823408 blue: 33837511.04574655 green: -70818583.36591834 red: 65826702.835788965 themeColor: LINK index: -17050144 pointStyle: shape: HEXAGON size: 67333376.31563559 targetAxis: BOTTOM_AXIS type: LINE stackedType: NOT_STACKED threeDimensional: false totalDataLabel: customLabelData: aggregateType: MEDIAN columnReference: name: est aliqua groupRule: dateTimeRule: type: HOUR histogramRule: intervalSize: -88996231.03997447 maxValue: 27889442.228283063 minValue: 85692388.66520101 sourceRange: sources: - endColumnIndex: -63705052 endRowIndex: -88986563 sheetId: -35972178 startColumnIndex: -2988376 startRowIndex: -86410815 placement: OUTSIDE_END textFormat: bold: false fontFamily: ad ullamco velit fontSize: 46708229 foregroundColor: alpha: -54421372.81572399 blue: 21014932.11792387 green: 7047581.5602457225 red: 71407424.65585649 foregroundColorStyle: rgbColor: alpha: 9942139.521025524 blue: 75794116.09228352 green: 29585386.48918982 red: -27778295.70877874 themeColor: ACCENT3 italic: true link: uri: aliqua mollit strikethrough: false underline: true type: CUSTOM bubbleChart: bubbleBorderColor: alpha: -11550235.819207713 blue: -54229941.28207117 green: -2305534.7608103007 red: 60944560.381706566 bubbleBorderColorStyle: rgbColor: alpha: 75568036.2049394 blue: -76954764.22511773 green: -72317053.56634173 red: -41740978.71504152 themeColor: ACCENT1 bubbleLabels: aggregateType: COUNT columnReference: name: in dolor laboris groupRule: dateTimeRule: type: DAY_OF_MONTH histogramRule: intervalSize: 5248498.202150792 maxValue: 53839637.20955625 minValue: 39759297.95870909 sourceRange: sources: - endColumnIndex: 88851771 endRowIndex: 99943200 sheetId: 38681139 startColumnIndex: -17492070 startRowIndex: -66335390 bubbleMaxRadiusSize: -94857507 bubbleMinRadiusSize: -9848067 bubbleOpacity: -87386225.64326355 bubbleSizes: aggregateType: MAX columnReference: name: magna mollit aute lab groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: 85624352.37657446 maxValue: -97753226.31205912 minValue: -98538111.050792 sourceRange: sources: - endColumnIndex: 58275645 endRowIndex: 55201831 sheetId: -97044975 startColumnIndex: -58278743 startRowIndex: 26688636 bubbleTextStyle: bold: false fontFamily: sed fontSize: -89122091 foregroundColor: alpha: 66007042.92078897 blue: -28185563.86858484 green: 53494305.06366527 red: 40194992.031481594 foregroundColorStyle: rgbColor: alpha: -66701974.27184208 blue: -27464595.38812895 green: -66788277.30486425 red: 72338726.88529727 themeColor: ACCENT6 italic: true link: uri: sint dolor strikethrough: true underline: true domain: aggregateType: MEDIAN columnReference: name: sit officia quis nostrud dolore groupRule: dateTimeRule: type: CHART_DATE_TIME_RULE_TYPE_UNSPECIFIED histogramRule: intervalSize: -33606326.53179803 maxValue: -14349858.192618296 minValue: 96490804.22173145 sourceRange: sources: - endColumnIndex: -21257606 endRowIndex: -27038403 sheetId: 64877347 startColumnIndex: 45896069 startRowIndex: -41557412 groupIds: aggregateType: MIN columnReference: name: Lorem do dolore deserunt groupRule: dateTimeRule: type: DAY_OF_MONTH histogramRule: intervalSize: 7609143.462492302 maxValue: 77523027.54360962 minValue: 20280676.658280596 sourceRange: sources: - endColumnIndex: -94224070 endRowIndex: -18932174 sheetId: -82975033 startColumnIndex: 26546922 startRowIndex: 68494759 legendPosition: NO_LEGEND series: aggregateType: MAX columnReference: name: sit aliqua Duis groupRule: dateTimeRule: type: YEAR_MONTH histogramRule: intervalSize: 39146074.10600954 maxValue: 79273988.03018045 minValue: -80394806.26836406 sourceRange: sources: - endColumnIndex: -88550306 endRowIndex: -87226212 sheetId: -84881407 startColumnIndex: 52510123 startRowIndex: -27647932 candlestickChart: data: - closeSeries: data: aggregateType: MIN columnReference: name: Lorem elit sit in groupRule: dateTimeRule: type: SECOND histogramRule: intervalSize: 33985825.09588088 maxValue: 81540273.78769705 minValue: 11894453.40879196 sourceRange: sources: - endColumnIndex: 8447516 endRowIndex: 76546297 sheetId: -53396439 startColumnIndex: 10195825 startRowIndex: 38076873 highSeries: data: aggregateType: COUNT columnReference: name: in quis mollit groupRule: dateTimeRule: type: HOUR_MINUTE_AMPM histogramRule: intervalSize: -89696503.70038012 maxValue: 84810661.56690904 minValue: 73739974.7634646 sourceRange: sources: - endColumnIndex: 92631282 endRowIndex: -57782670 sheetId: 56654198 startColumnIndex: 61469038 startRowIndex: 53683053 lowSeries: data: aggregateType: AVERAGE columnReference: name: Ut anim aliqua mollit groupRule: dateTimeRule: type: YEAR_MONTH histogramRule: intervalSize: 7291665.394636795 maxValue: -65019506.98693655 minValue: -51586625.134628326 sourceRange: sources: - endColumnIndex: -80822857 endRowIndex: -44172595 sheetId: 31051691 startColumnIndex: 70211583 startRowIndex: 62796517 openSeries: data: aggregateType: COUNT columnReference: name: sit groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: -52770877.448917195 maxValue: 72420293.6567699 minValue: -68138543.00527371 sourceRange: sources: - endColumnIndex: -71197242 endRowIndex: -33881058 sheetId: 14783147 startColumnIndex: 34211222 startRowIndex: 12830598 domain: data: aggregateType: MAX columnReference: name: deserun groupRule: dateTimeRule: type: DAY_OF_YEAR histogramRule: intervalSize: 26425999.169800416 maxValue: 41429030.90525249 minValue: 78083269.68794605 sourceRange: sources: - endColumnIndex: 40942948 endRowIndex: -60391817 sheetId: -55351981 startColumnIndex: 45073016 startRowIndex: -20137186 reversed: true dataSourceChartProperties: dataExecutionStatus: errorCode: TIMED_OUT errorMessage: nost lastRefreshTime: minim sit aliquip sunt state: DATA_EXECUTION_STATE_UNSPECIFIED dataSourceId: ipsum magna filterSpecs: - columnIndex: 52163813 dataSourceColumnReference: name: est aute Duis filterCriteria: condition: type: NUMBER_GREATER_THAN_EQ values: - relativeDate: PAST_WEEK userEnteredValue: '' hiddenValues: - pariatur do amet incididu visibleBackgroundColor: alpha: -82505836.8020072 blue: -23455655.922869444 green: 94553963.46519423 red: -54939803.42211011 visibleBackgroundColorStyle: rgbColor: alpha: 2490936.3107411265 blue: 2621416.2013760656 green: -88585278.01297748 red: -99147642.51209806 themeColor: ACCENT1 visibleForegroundColor: alpha: 16001127.575151488 blue: 63104648.18746495 green: -41798649.61413427 red: -85145751.85908502 visibleForegroundColorStyle: rgbColor: alpha: -96919319.23945498 blue: 619897.5174626261 green: 54215556.57062414 red: 54490548.20994794 themeColor: BACKGROUND fontName: dolore culpa quis mollit hiddenDimensionStrategy: SKIP_HIDDEN_COLUMNS histogramChart: bucketSize: -90781927.05396542 legendPosition: NO_LEGEND outlierPercentile: 47336863.44109288 series: - barColor: alpha: -59781109.97826005 blue: -68404858.69735642 green: 51345446.48947993 red: -81522881.65888208 barColorStyle: rgbColor: alpha: -32293302.376669914 blue: -50122139.140957154 green: -25249866.542394802 red: 98404905.19231674 themeColor: LINK data: aggregateType: MAX columnReference: name: proident e groupRule: dateTimeRule: type: DAY_OF_WEEK histogramRule: intervalSize: 99909721.30383128 maxValue: -26412886.68326953 minValue: 8025460.741576791 sourceRange: sources: - endColumnIndex: 54026931 endRowIndex: 7015554 sheetId: 23409945 startColumnIndex: -17583326 startRowIndex: 1684977 showItemDividers: true maximized: true orgChart: labels: aggregateType: MEDIAN columnReference: name: 'aliquip ' groupRule: dateTimeRule: type: SECOND histogramRule: intervalSize: -31689286.997411788 maxValue: -99274576.63987362 minValue: -81175690.42440373 sourceRange: sources: - endColumnIndex: 99573233 endRowIndex: 12216367 sheetId: -62420378 startColumnIndex: -72536397 startRowIndex: 16563787 nodeColor: alpha: -42541244.998174936 blue: 92547831.85212374 green: -14472577.562909976 red: -80174956.21980286 nodeColorStyle: rgbColor: alpha: 94355163.72669822 blue: -13579246.021679878 green: 72575811.6296348 red: 20346926.57754138 themeColor: THEME_COLOR_TYPE_UNSPECIFIED nodeSize: SMALL parentLabels: aggregateType: MAX columnReference: name: consectetur minim groupRule: dateTimeRule: type: CHART_DATE_TIME_RULE_TYPE_UNSPECIFIED histogramRule: intervalSize: -66467918.1427712 maxValue: -7156069.368766844 minValue: 13301830.482927144 sourceRange: sources: - endColumnIndex: 32272989 endRowIndex: -2705152 sheetId: -28708806 startColumnIndex: 55910339 startRowIndex: 93531053 selectedNodeColor: alpha: -72356028.4406339 blue: 66489783.83746922 green: -73773648.62261589 red: 588239.104669869 selectedNodeColorStyle: rgbColor: alpha: -1635614.1950255185 blue: 19929353.72067061 green: 85392666.90684313 red: -42620535.569916606 themeColor: THEME_COLOR_TYPE_UNSPECIFIED tooltips: aggregateType: MIN columnReference: name: eu dolore veniam incididunt groupRule: dateTimeRule: type: DAY_OF_WEEK histogramRule: intervalSize: 31617592.575174183 maxValue: 37735502.50258708 minValue: -36783211.31551052 sourceRange: sources: - endColumnIndex: -32685990 endRowIndex: -91508982 sheetId: -44708445 startColumnIndex: -94188237 startRowIndex: 26539823 pieChart: domain: aggregateType: SUM columnReference: name: nulla ex tempor laborum groupRule: dateTimeRule: type: YEAR_MONTH histogramRule: intervalSize: -99899867.87602487 maxValue: 54005360.15015042 minValue: -52433270.41268735 sourceRange: sources: - endColumnIndex: 3256732 endRowIndex: -11704167 sheetId: -32790993 startColumnIndex: -50966022 startRowIndex: -10557325 legendPosition: PIE_CHART_LEGEND_POSITION_UNSPECIFIED pieHole: -14014341.950599402 series: aggregateType: AVERAGE columnReference: name: fugiat sed consequat incididunt groupRule: dateTimeRule: type: HOUR_MINUTE histogramRule: intervalSize: -87517265.4076104 maxValue: -50887372.83647715 minValue: 48040641.39617056 sourceRange: sources: - endColumnIndex: -96007463 endRowIndex: 87965842 sheetId: -63857512 startColumnIndex: -1835579 startRowIndex: -51360577 threeDimensional: false scorecardChart: aggregateType: MEDIAN baselineValueData: aggregateType: SUM columnReference: name: nostr groupRule: dateTimeRule: type: SECOND histogramRule: intervalSize: -6305279.683512047 maxValue: -50856105.14990786 minValue: -61649583.461500205 sourceRange: sources: - endColumnIndex: 83099669 endRowIndex: -23079184 sheetId: -56012574 startColumnIndex: 46766763 startRowIndex: 23967344 baselineValueFormat: comparisonType: COMPARISON_TYPE_UNDEFINED description: Duis enim quis negativeColor: alpha: -15510026.731522113 blue: 40680474.72904751 green: -24514357.485130534 red: -22772572.68874094 negativeColorStyle: rgbColor: alpha: -64500777.9731805 blue: -8377122.327831939 green: -7719182.975491494 red: -40577108.51520002 themeColor: ACCENT6 position: horizontalAlignment: CENTER positiveColor: alpha: 31650986.807008862 blue: -95132574.96013284 green: 11010978.404646426 red: -23973425.28738533 positiveColorStyle: rgbColor: alpha: 97918530.44188944 blue: -6283755.471211851 green: -26218036.023285717 red: 18756168.1630632 themeColor: THEME_COLOR_TYPE_UNSPECIFIED textFormat: bold: true fontFamily: amet culpa tempor ex fontSize: 87404801 foregroundColor: alpha: -16386492.709332809 blue: -1958428.3185892552 green: 74673559.42118704 red: 99387525.16197243 foregroundColorStyle: rgbColor: alpha: -36354946.17758925 blue: 36389732.33815652 green: -40719878.03973531 red: -70091549.41945925 themeColor: BACKGROUND italic: true link: uri: cupidatat strikethrough: false underline: true customFormatOptions: prefix: aliqua elit velit suffix: exercitation qui keyValueData: aggregateType: AVERAGE columnReference: name: elit nostrud in non aute groupRule: dateTimeRule: type: QUARTER histogramRule: intervalSize: 37591867.16148254 maxValue: 44373711.71721876 minValue: -83224819.52290736 sourceRange: sources: - endColumnIndex: 619703 endRowIndex: -51898578 sheetId: 22555926 startColumnIndex: -56832634 startRowIndex: -98544594 keyValueFormat: position: horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED textFormat: bold: true fontFamily: 'irure ' fontSize: 74016782 foregroundColor: alpha: 83728588.41659307 blue: 5811622.436377823 green: 29103243.18586421 red: -62094527.018734835 foregroundColorStyle: rgbColor: alpha: -59352405.5146152 blue: -87167421.20279765 green: 8102898.665591821 red: 86793230.55816495 themeColor: LINK italic: false link: uri: irure nulla enim strikethrough: false underline: true numberFormatSource: CUSTOM scaleFactor: -15048149.706119135 sortSpecs: - backgroundColor: alpha: -71221291.10251066 blue: -29464776.215957224 green: 97471411.96668139 red: 93819629.76020578 backgroundColorStyle: rgbColor: alpha: -14290454.850766748 blue: 42247784.79419467 green: -9048205.219705448 red: 12334970.101885557 themeColor: TEXT dataSourceColumnReference: name: amet laborum in dimensionIndex: -79935693 foregroundColor: alpha: 9728888.19174686 blue: -33661444.00062892 green: -46135441.21282116 red: -47226701.716640875 foregroundColorStyle: rgbColor: alpha: -42347660.35707356 blue: 30884273.665116563 green: -78660832.1188091 red: 33946618.85172297 themeColor: ACCENT1 sortOrder: ASCENDING subtitle: mollit non officia subtitleTextFormat: bold: false fontFamily: 'sit irure ' fontSize: 89729869 foregroundColor: alpha: -12646599.771137983 blue: 44869880.45444748 green: -46623465.33113002 red: 80256131.35414332 foregroundColorStyle: rgbColor: alpha: -24532319.57545641 blue: -92269145.78002967 green: 38052135.39478642 red: -83667106.27652986 themeColor: ACCENT6 italic: true link: uri: quis sint strikethrough: false underline: true subtitleTextPosition: horizontalAlignment: RIGHT title: enim irure titleTextFormat: bold: true fontFamily: anim fontSize: 96242737 foregroundColor: alpha: 8694756.008732483 blue: -77442182.72914925 green: -49643396.78947538 red: -22856387.371203855 foregroundColorStyle: rgbColor: alpha: 66801250.48498255 blue: -97862317.7826405 green: -82810214.84829569 red: -83420563.39389199 themeColor: TEXT italic: false link: uri: et sit strikethrough: false underline: true titleTextPosition: horizontalAlignment: RIGHT treemapChart: colorData: aggregateType: MIN columnReference: name: ut fugiat enim ipsum dolore groupRule: dateTimeRule: type: HOUR histogramRule: intervalSize: -21300252.556289762 maxValue: -27141059.243664503 minValue: -37330877.012047425 sourceRange: sources: - endColumnIndex: 86242744 endRowIndex: -87319770 sheetId: -87660108 startColumnIndex: 15706395 startRowIndex: 49351863 colorScale: maxValueColor: alpha: -38039625.695155665 blue: 81181062.01105878 green: -11654736.652053326 red: 62253528.93385124 maxValueColorStyle: rgbColor: alpha: -90732609.63151148 blue: 62910089.17822173 green: 52647135.530038804 red: -60951565.887693256 themeColor: THEME_COLOR_TYPE_UNSPECIFIED midValueColor: alpha: 60275748.080825 blue: 92207967.56839827 green: 46585847.84797445 red: 82201753.79982573 midValueColorStyle: rgbColor: alpha: -68144601.84762883 blue: 14123622.568319365 green: 86135327.87707624 red: -98150851.70467554 themeColor: ACCENT6 minValueColor: alpha: -94150536.29063137 blue: -39768043.247462615 green: -5823444.042339161 red: -12204785.312105358 minValueColorStyle: rgbColor: alpha: 77142190.4100222 blue: -52483314.83072248 green: 50783510.82150477 red: 68209215.20545721 themeColor: ACCENT6 noDataColor: alpha: -89481981.38490762 blue: -55169121.29525147 green: 32071918.43471451 red: 43229625.80690092 noDataColorStyle: rgbColor: alpha: -63747611.021314874 blue: 15911115.565667406 green: -44768677.46273614 red: -25658194.017925456 themeColor: TEXT headerColor: alpha: -68589801.5381201 blue: -14717052.188120142 green: 80350331.12867823 red: 10197720.84584698 headerColorStyle: rgbColor: alpha: 53695582.84140149 blue: 47175901.92099702 green: -39554349.46835559 red: 66641171.7690472 themeColor: ACCENT5 hideTooltips: true hintedLevels: 78043275 labels: aggregateType: SUM columnReference: name: eiusmod eu groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: -97360307.23212425 maxValue: -74155001.15951538 minValue: -54114774.04113571 sourceRange: sources: - endColumnIndex: 89352890 endRowIndex: 33366515 sheetId: 64879642 startColumnIndex: 64180546 startRowIndex: 21951507 levels: -55818544 maxValue: 66390100.22119579 minValue: 86869189.2818405 parentLabels: aggregateType: MAX columnReference: name: et quis laboris se groupRule: dateTimeRule: type: DAY_OF_YEAR histogramRule: intervalSize: -12104850.767558247 maxValue: 71108679.82058102 minValue: -96601784.44675362 sourceRange: sources: - endColumnIndex: 24730008 endRowIndex: -82684245 sheetId: -77004327 startColumnIndex: 38801364 startRowIndex: -18077440 sizeData: aggregateType: AVERAGE columnReference: name: veniam es groupRule: dateTimeRule: type: DAY_OF_WEEK histogramRule: intervalSize: -82304165.59122391 maxValue: 75813168.3372496 minValue: -40592913.69277762 sourceRange: sources: - endColumnIndex: 30041654 endRowIndex: 47695730 sheetId: -68137146 startColumnIndex: 63873131 startRowIndex: -12020510 textFormat: bold: false fontFamily: enim consectetur anim fontSize: 50153872 foregroundColor: alpha: -11800923.319965005 blue: -21866288.028190047 green: -18377350.99236557 red: 16857570.80460903 foregroundColorStyle: rgbColor: alpha: -70917801.48759219 blue: 24522190.83387664 green: -57451741.132440135 red: 80098197.91017532 themeColor: ACCENT4 italic: false link: uri: Excepteur labore strikethrough: true underline: false waterfallChart: connectorLineStyle: type: CUSTOM width: -68730919 domain: data: aggregateType: COUNT columnReference: name: deserunt velit non mollit enim groupRule: dateTimeRule: type: HOUR_MINUTE_AMPM histogramRule: intervalSize: -33918412.087684266 maxValue: 76799836.71549523 minValue: 57886991.18295723 sourceRange: sources: - endColumnIndex: 56584115 endRowIndex: -11885604 sheetId: -21918153 startColumnIndex: 29587930 startRowIndex: 54804936 reversed: true firstValueIsTotal: true hideConnectorLines: false series: - customSubtotals: - dataIsSubtotal: true label: ut reprehenderit in veniam subtotalIndex: 24484343 data: aggregateType: MIN columnReference: name: nostrud nulla enim groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: -19094640.854683667 maxValue: 6218750.987591013 minValue: 82838986.79478458 sourceRange: sources: - endColumnIndex: 95684738 endRowIndex: 84371417 sheetId: -47927874 startColumnIndex: 47560878 startRowIndex: 57434176 dataLabel: customLabelData: aggregateType: COUNT columnReference: name: id velit groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: 56494734.0405519 maxValue: -13263132.201980278 minValue: 43400028.66521844 sourceRange: sources: - endColumnIndex: -3315229 endRowIndex: 28780093 sheetId: -53122478 startColumnIndex: -94364858 startRowIndex: 36441978 placement: CENTER textFormat: bold: true fontFamily: aute Lorem labore ad fontSize: -53435500 foregroundColor: alpha: 70690744.61911651 blue: -35081395.465544894 green: -36034949.01717288 red: 10153613.982303515 foregroundColorStyle: rgbColor: alpha: -1266437.8223750144 blue: 4776547.959412485 green: -35595018.09326977 red: 8689355.179619923 themeColor: BACKGROUND italic: true link: uri: in irure sint strikethrough: true underline: false type: NONE hideTrailingSubtotal: true negativeColumnsStyle: color: alpha: 91873330.13454628 blue: 9768831.346967265 green: -84498165.12708232 red: 72223040.11118385 colorStyle: rgbColor: alpha: -6613365.650679842 blue: -17996306.331430614 green: -37775336.04457588 red: 5707864.749569058 themeColor: ACCENT1 label: dolor positiveColumnsStyle: color: alpha: -90375096.6744385 blue: 10020354.710945025 green: 91191376.0196577 red: 53369748.85929075 colorStyle: rgbColor: alpha: 36920686.60337874 blue: 73329486.15183735 green: 8427735.296709076 red: -27691030.400539905 themeColor: ACCENT1 label: Ut nisi culpa subtotalColumnsStyle: color: alpha: 58432545.82295829 blue: 75733284.83375615 green: 88951882.51436773 red: 13932254.286426812 colorStyle: rgbColor: alpha: -48129124.30290552 blue: -7099961.863402531 green: 64196704.845136344 red: 24852531.164596453 themeColor: LINK label: eiusmod Ut stackedType: SEQUENTIAL totalDataLabel: customLabelData: aggregateType: MEDIAN columnReference: name: incididunt groupRule: dateTimeRule: type: SECOND histogramRule: intervalSize: 8962191.303459078 maxValue: -93040867.98871683 minValue: -13927722.343156472 sourceRange: sources: - endColumnIndex: -28295644 endRowIndex: -43817153 sheetId: 2965959 startColumnIndex: -99630123 startRowIndex: -70109399 placement: INSIDE_BASE textFormat: bold: false fontFamily: ipsum ullamco fontSize: -95632983 foregroundColor: alpha: 7825981.108611882 blue: -43527997.50972007 green: 13672296.387852877 red: 25557074.93099244 foregroundColorStyle: rgbColor: alpha: -71865617.28518446 blue: 23688810.2352307 green: -53343075.42075778 red: -60009009.129236594 themeColor: ACCENT6 italic: true link: uri: amet ea ullamco qui et strikethrough: true underline: true type: CUSTOM columnGroups: - collapsed: true depth: -10041201 range: dimension: COLUMNS endIndex: 85912097 sheetId: -7891298 startIndex: -32467285 conditionalFormats: - booleanRule: condition: type: TEXT_STARTS_WITH values: - relativeDate: TODAY userEnteredValue: elit incididunt reprehenderit nulla adipisicing format: backgroundColor: alpha: 29352972.138918743 blue: 82217830.3999233 green: -20844054.068234593 red: -94155990.27533567 backgroundColorStyle: rgbColor: alpha: 32882652.04968384 blue: 50555126.306672305 green: 11999415.36440146 red: -22138883.67415002 themeColor: LINK borders: bottom: color: alpha: -29022360.010785908 blue: -34389807.764842704 green: -33984789.59909355 red: 27840837.593612373 colorStyle: rgbColor: alpha: 33345246.88798645 blue: -79005173.08977096 green: -34792088.94544476 red: 17339206.702706233 themeColor: LINK style: DASHED width: 3954295 left: color: alpha: 26055221.142526045 blue: -51562855.77503139 green: 53731751.57192001 red: -64962871.33814467 colorStyle: rgbColor: alpha: -37467519.055882856 blue: 27903505.553441346 green: 7795817.961432621 red: 5827967.701787263 themeColor: ACCENT1 style: SOLID_THICK width: 21739444 right: color: alpha: 68486339.26417974 blue: -81900318.1185324 green: 86448811.7788822 red: 93468372.91852236 colorStyle: rgbColor: alpha: 99399914.23327744 blue: 55897136.62944406 green: -66522298.471766114 red: -85298150.88501781 themeColor: ACCENT6 style: STYLE_UNSPECIFIED width: -69772937 top: color: alpha: 44482207.876206696 blue: 55998557.13844079 green: -14411132.933156654 red: -23751506.94735533 colorStyle: rgbColor: alpha: -40221328.925557606 blue: 82133690.65503877 green: -78988903.9486372 red: 40771300.374459684 themeColor: ACCENT5 style: SOLID width: 34512293 horizontalAlignment: LEFT hyperlinkDisplayType: LINKED numberFormat: pattern: proident sed Lorem type: TEXT padding: bottom: 74764045 left: -42128725 right: 65449126 top: -91505728 textDirection: LEFT_TO_RIGHT textFormat: bold: true fontFamily: non Duis fontSize: 48078432 foregroundColor: alpha: 80521484.75089633 blue: -40425127.26480894 green: -51525511.89792627 red: 8490007.391785786 foregroundColorStyle: rgbColor: alpha: -19477263.2189423 blue: -27265579.847367063 green: -65130793.40989072 red: -59349139.78605705 themeColor: BACKGROUND italic: true link: uri: consectetur ali strikethrough: true underline: false textRotation: angle: 36091908 vertical: false verticalAlignment: VERTICAL_ALIGN_UNSPECIFIED wrapStrategy: LEGACY_WRAP gradientRule: maxpoint: color: alpha: 89320689.76407886 blue: 74798803.04025924 green: 72906168.39232835 red: -85456210.94331822 colorStyle: rgbColor: alpha: -82817847.70994052 blue: 90093507.7405217 green: -83175171.84343424 red: 54257409.58795768 themeColor: ACCENT5 type: NUMBER value: culpa qui Excepteur consequat midpoint: color: alpha: 94783789.99758443 blue: 39699037.45430902 green: 56207590.67460361 red: 24522221.78985375 colorStyle: rgbColor: alpha: 68672912.53538492 blue: 12479115.121701285 green: -39146700.27973024 red: -68390719.56779926 themeColor: LINK type: PERCENT value: sint aliq minpoint: color: alpha: -91031441.74836366 blue: 64383606.164602816 green: -59822389.2397995 red: 87793626.62307322 colorStyle: rgbColor: alpha: -59963990.12365607 blue: 16868566.075682342 green: 56643373.1693145 red: 99787121.16024432 themeColor: ACCENT4 type: INTERPOLATION_POINT_TYPE_UNSPECIFIED value: in dolore amet ranges: - endColumnIndex: -29610925 endRowIndex: 55727655 sheetId: -36438351 startColumnIndex: -65571226 startRowIndex: 36942484 data: - columnMetadata: - dataSourceColumnReference: name: 'eu ' developerMetadata: - location: dimensionRange: dimension: COLUMNS endIndex: 99834419 sheetId: 84712037 startIndex: -8909175 locationType: SPREADSHEET sheetId: -9501069 spreadsheet: true metadataId: 97322872 metadataKey: quis Excepteur reprehenderit ut metadataValue: est do deserunt visibility: DOCUMENT hiddenByFilter: false hiddenByUser: true pixelSize: 17689467 rowData: - values: - dataSourceFormula: dataExecutionStatus: errorCode: DATA_EXECUTION_ERROR_CODE_UNSPECIFIED errorMessage: Duis et incididunt lastRefreshTime: sit velit minim eiusmod state: FAILED dataSourceId: minim laborum in dataSourceTable: columnSelectionType: DATA_SOURCE_TABLE_COLUMN_SELECTION_TYPE_UNSPECIFIED columns: - name: commodo sint dataExecutionStatus: errorCode: PARAMETER_INVALID errorMessage: in consectetur dolor eiusmod lastRefreshTime: aute aliquip state: SUCCEEDED dataSourceId: Duis labore ut officia culpa filterSpecs: - columnIndex: 5918513 dataSourceColumnReference: name: amet Duis ullamco eu filterCriteria: condition: type: ONE_OF_LIST values: - relativeDate: PAST_WEEK userEnteredValue: aliqua consequat dolore r hiddenValues: - adipisicing Duis enim visibleBackgroundColor: alpha: 44718991.0088532 blue: 44425188.811489314 green: 62627937.53658223 red: -76107389.81749767 visibleBackgroundColorStyle: rgbColor: alpha: -22505145.754628584 blue: -21627127.94103694 green: -49195277.25458232 red: -54926516.28038137 themeColor: LINK visibleForegroundColor: alpha: -69916125.08874892 blue: -77451660.82651855 green: -98226893.38228816 red: -35038247.539674394 visibleForegroundColorStyle: rgbColor: alpha: 44553034.755931705 blue: 33964322.77346766 green: -63706329.38378949 red: -64870790.818621546 themeColor: BACKGROUND rowLimit: 44280013 sortSpecs: - backgroundColor: alpha: 67178288.79609483 blue: 3160779.177118212 green: -72727866.03391138 red: -63708923.19162475 backgroundColorStyle: rgbColor: alpha: 81562852.71334499 blue: 13296903.39775756 green: 54217713.45361796 red: -36479456.14602049 themeColor: ACCENT5 dataSourceColumnReference: name: aliqua sunt dimensionIndex: 24625446 foregroundColor: alpha: 2576962.3467058837 blue: -21970876.457039744 green: -84940117.82756194 red: 23070492.405815735 foregroundColorStyle: rgbColor: alpha: 41988844.289813876 blue: 27159192.87423025 green: 29526947.38487485 red: -24737982.119817793 themeColor: ACCENT1 sortOrder: DESCENDING dataValidation: condition: type: NUMBER_LESS values: - relativeDate: RELATIVE_DATE_UNSPECIFIED userEnteredValue: in Lorem Excepteur ad inputMessage: do proident pariatur nisi in showCustomUi: false strict: false effectiveFormat: backgroundColor: alpha: -82571116.38806322 blue: 89342048.76304829 green: -69746772.76855625 red: 67473710.61879438 backgroundColorStyle: rgbColor: alpha: 63745795.59453729 blue: -61092565.94920698 green: -28859225.55603537 red: 94554918.93750718 themeColor: ACCENT5 borders: bottom: color: alpha: -98953394.27559797 blue: -63227780.70537134 green: 77536404.1068399 red: 90654959.79804882 colorStyle: rgbColor: alpha: 17991870.575758144 blue: -95258976.12158696 green: -96901958.91299748 red: 95736332.78069216 themeColor: ACCENT3 style: SOLID_MEDIUM width: 40936998 left: color: alpha: -50235815.905054435 blue: -15153517.656665236 green: -46234891.07752219 red: -48763281.793110915 colorStyle: rgbColor: alpha: 15742337.10439916 blue: -10026856.275263622 green: -44394191.99139199 red: 89353281.03989705 themeColor: ACCENT3 style: NONE width: 53710419 right: color: alpha: 98237100.11854061 blue: 18351141.257970214 green: -21530416.28502366 red: 64873616.12252194 colorStyle: rgbColor: alpha: -59492615.148122855 blue: -58997672.68973557 green: 31320499.466060042 red: 18022523.243805334 themeColor: ACCENT2 style: SOLID_THICK width: -42446707 top: color: alpha: -12568480.198163584 blue: 59954681.73280144 green: 84875209.04737669 red: 38047125.72935149 colorStyle: rgbColor: alpha: -14965213.16921942 blue: -26962418.015019104 green: 21656449.45179537 red: 4907665.59300755 themeColor: THEME_COLOR_TYPE_UNSPECIFIED style: NONE width: 48874831 horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED hyperlinkDisplayType: LINKED numberFormat: pattern: ut adipisicing type: DATE_TIME padding: bottom: -62062459 left: 47525140 right: 61448417 top: 6495008 textDirection: TEXT_DIRECTION_UNSPECIFIED textFormat: bold: false fontFamily: enim id s fontSize: 12996881 foregroundColor: alpha: -28765409.255873293 blue: 32668069.54346606 green: 96053910.3376036 red: -23946951.63820204 foregroundColorStyle: rgbColor: alpha: -91058295.00301419 blue: 94072224.91182 green: -51065946.48459346 red: -55135358.23091016 themeColor: ACCENT1 italic: false link: uri: aliqua ipsum strikethrough: false underline: false textRotation: angle: -31821875 vertical: false verticalAlignment: TOP wrapStrategy: LEGACY_WRAP effectiveValue: boolValue: false errorValue: message: esse occaecat dolor type: NUM formulaValue: magna adipisicing sed numberValue: 64481180.80281252 stringValue: occaecat a formattedValue: officia hyperlink: Ut in labore note: cupidatat non pivotTable: columns: - dataSourceColumnReference: name: commod groupLimit: applyOrder: -25806200 countLimit: -74873691 groupRule: dateTimeRule: type: DAY_OF_YEAR histogramRule: end: -20711154.581739068 interval: 91163968.74632967 start: 26254960.679242328 manualRule: groups: - groupName: boolValue: true errorValue: message: ut deserunt temp type: DIVIDE_BY_ZERO formulaValue: adipisicing elit numberValue: 82233129.09776843 stringValue: ad items: - boolValue: false errorValue: message: in mollit dolore ullamco amet type: DIVIDE_BY_ZERO formulaValue: ad est in cupidatat numberValue: 27393502.986861765 stringValue: nulla magna velit veniam label: aliqua occaecat repeatHeadings: false showTotals: true sortOrder: SORT_ORDER_UNSPECIFIED sourceColumnOffset: 14799520 valueBucket: buckets: - boolValue: false errorValue: message: sint Ut type: DIVIDE_BY_ZERO formulaValue: tempor cillum numberValue: -45067298.57586978 stringValue: ex dolo valuesIndex: 11254850 valueMetadata: - collapsed: false value: boolValue: true errorValue: message: nulla dolor esse mollit type: NAME formulaValue: nisi aute numberValue: -32898743.75666222 stringValue: culpa do criteria: commodobb_: condition: type: NUMBER_NOT_BETWEEN values: - relativeDate: PAST_WEEK userEnteredValue: in visibleByDefault: true visibleValues: - in officia528: condition: type: NUMBER_EQ values: - relativeDate: PAST_WEEK userEnteredValue: exercitation proident in in visibleByDefault: true visibleValues: - cupidatat culpa in nulla dataExecutionStatus: errorCode: MISSING_COLUMN_ALIAS errorMessage: officia sunt incididunt lastRefreshTime: minim pariatur state: RUNNING dataSourceId: sed filterSpecs: - columnOffsetIndex: 33670684 dataSourceColumnReference: name: magna aliqua filterCriteria: condition: type: DATE_NOT_EQ values: - relativeDate: PAST_MONTH userEnteredValue: veniam fugiat visibleByDefault: true visibleValues: - ut voluptate magna fugiat rows: - dataSourceColumnReference: name: Excepteur groupLimit: applyOrder: 96949982 countLimit: -26848074 groupRule: dateTimeRule: type: YEAR_MONTH histogramRule: end: 43508267.36681807 interval: 92251601.4830355 start: -12076170.433628157 manualRule: groups: - groupName: boolValue: true errorValue: message: in velit Lorem cupidatat type: ERROR formulaValue: id adipisicing amet qui numberValue: -9398387.751595065 stringValue: veniam esse items: - boolValue: false errorValue: message: fugiat officia type: NULL_VALUE formulaValue: ea dolore eu Excepteur mollit numberValue: 6143946.026754275 stringValue: dolore quis reprehenderit anim label: incididunt anim repeatHeadings: true showTotals: true sortOrder: ASCENDING sourceColumnOffset: 91412832 valueBucket: buckets: - boolValue: false errorValue: message: cu type: N_A formulaValue: velit voluptate cupidatat numberValue: 56061411.84582314 stringValue: dolor reprehenderit valuesIndex: -45288222 valueMetadata: - collapsed: false value: boolValue: false errorValue: message: cupidatat dolore commodo laboris type: N_A formulaValue: fugiat labore eiusmod numberValue: -78850739.71462235 stringValue: voluptate source: endColumnIndex: 38611624 endRowIndex: -24698944 sheetId: 61697264 startColumnIndex: -29471691 startRowIndex: 83453828 valueLayout: VERTICAL values: - calculatedDisplayType: PIVOT_VALUE_CALCULATED_DISPLAY_TYPE_UNSPECIFIED dataSourceColumnReference: name: voluptate est ex consequat formula: ullamco irure qui est name: in irure occaecat sourceColumnOffset: 89978648 summarizeFunction: MAX textFormatRuns: - format: bold: false fontFamily: nisi sunt Duis aute fontSize: -69676730 foregroundColor: alpha: 21305822.8373269 blue: -6076169.981690422 green: -15919391.901165232 red: 20218720.70631008 foregroundColorStyle: rgbColor: alpha: -26216776.34175326 blue: 75996367.70000955 green: 96452014.1276139 red: 56522336.36146641 themeColor: ACCENT6 italic: false link: uri: veniam nostrud voluptate eu adipisicing strikethrough: false underline: false startIndex: 87482619 userEnteredFormat: backgroundColor: alpha: -9000102.264779657 blue: 37891586.95056781 green: 93768637.134862 red: 78463597.94367075 backgroundColorStyle: rgbColor: alpha: 74144255.48747906 blue: 50526650.83863458 green: 32051526.258508593 red: -79240173.03837764 themeColor: ACCENT5 borders: bottom: color: alpha: -30767249.267255098 blue: -79200472.3049827 green: 91721884.42357284 red: -32605107.151505753 colorStyle: rgbColor: alpha: 767379.7991424054 blue: 59880079.92855775 green: 69124537.24084827 red: -69811658.91795178 themeColor: THEME_COLOR_TYPE_UNSPECIFIED style: SOLID width: 1496454 left: color: alpha: 77292355.60326186 blue: 4912313.295810074 green: 89924293.69645706 red: -43814422.982904635 colorStyle: rgbColor: alpha: 35113460.20304108 blue: 5762416.32735455 green: -76043992.00676295 red: -74583912.0876298 themeColor: TEXT style: STYLE_UNSPECIFIED width: -70297882 right: color: alpha: 19938748.442872807 blue: 94950518.5212152 green: -12229915.456422493 red: 33266766.909576654 colorStyle: rgbColor: alpha: -96473471.20717047 blue: -15229724.025030881 green: -71102513.11567377 red: -21601148.12646529 themeColor: ACCENT3 style: DASHED width: -97740136 top: color: alpha: -76673409.54121405 blue: -9586070.47113818 green: 36494750.31716633 red: 66684244.89588335 colorStyle: rgbColor: alpha: 81846379.2669886 blue: 7328723.550176844 green: -6120538.35598667 red: 20144287.40299557 themeColor: TEXT style: SOLID_MEDIUM width: -31572304 horizontalAlignment: CENTER hyperlinkDisplayType: PLAIN_TEXT numberFormat: pattern: 'exercitation culpa ' type: TIME padding: bottom: 28894108 left: 92983121 right: 7016926 top: 62005737 textDirection: RIGHT_TO_LEFT textFormat: bold: false fontFamily: Lorem magna est fontSize: 74159265 foregroundColor: alpha: -5494760.214619145 blue: 54279142.53538209 green: -35989042.72214854 red: 17994739.39788668 foregroundColorStyle: rgbColor: alpha: -83245009.66034064 blue: 84432726.32428548 green: 34533465.24141988 red: -42276170.50902781 themeColor: ACCENT5 italic: false link: uri: proident voluptate ex minim fugiat strikethrough: false underline: false textRotation: angle: -72279053 vertical: true verticalAlignment: BOTTOM wrapStrategy: WRAP userEnteredValue: boolValue: true errorValue: message: magna sint proident aliqua type: NAME formulaValue: id amet elit nulla numberValue: -34040249.502685204 stringValue: do esse laborum rowMetadata: - dataSourceColumnReference: name: in minim ut eu qui developerMetadata: - location: dimensionRange: dimension: ROWS endIndex: -28567207 sheetId: 67080580 startIndex: -56695299 locationType: DEVELOPER_METADATA_LOCATION_TYPE_UNSPECIFIED sheetId: -7365639 spreadsheet: true metadataId: 37722330 metadataKey: in consequat cupidatat dolor metadataValue: esse mollit visibility: DEVELOPER_METADATA_VISIBILITY_UNSPECIFIED hiddenByFilter: true hiddenByUser: false pixelSize: 10799908 startColumn: 45577030 startRow: -20921504 developerMetadata: - location: dimensionRange: dimension: ROWS endIndex: 25255312 sheetId: 96560302 startIndex: 20259735 locationType: ROW sheetId: 77026299 spreadsheet: false metadataId: 33023535 metadataKey: nulla metadataValue: do Duis eu culp visibility: DOCUMENT filterViews: - criteria: quisc72: condition: type: TEXT_IS_URL values: - relativeDate: TOMORROW userEnteredValue: occaecat Ut culpa dolore irure hiddenValues: - est ullamco visibleBackgroundColor: alpha: 77547606.80504286 blue: 75531157.12388143 green: 90731569.66365486 red: -40288156.870823324 visibleBackgroundColorStyle: rgbColor: alpha: 76316564.37635198 blue: -41966430.87384713 green: 22495212.865164265 red: 5817550.239686668 themeColor: TEXT visibleForegroundColor: alpha: 66668673.257167965 blue: -16136145.836509645 green: -11623212.729741186 red: 94206034.89447927 visibleForegroundColorStyle: rgbColor: alpha: 9828616.672434494 blue: 35787015.52965769 green: -93160681.64008735 red: 25335564.666004196 themeColor: THEME_COLOR_TYPE_UNSPECIFIED filterSpecs: - columnIndex: -45360382 dataSourceColumnReference: name: do amet fugiat cupidatat filterCriteria: condition: type: ONE_OF_LIST values: - relativeDate: PAST_YEAR userEnteredValue: cillum enim proid hiddenValues: - dolor non visibleBackgroundColor: alpha: -10099007.005319118 blue: -17606661.326149493 green: -81489044.35287601 red: -87445517.15652972 visibleBackgroundColorStyle: rgbColor: alpha: 78218556.74009898 blue: -61371165.05624767 green: -89563465.02629997 red: -36596741.12517393 themeColor: THEME_COLOR_TYPE_UNSPECIFIED visibleForegroundColor: alpha: 38570356.885113 blue: 32746072.82560593 green: -70612962.92822403 red: -94182587.55728513 visibleForegroundColorStyle: rgbColor: alpha: -10597648.066663772 blue: -73724054.86186744 green: -23832181.305095762 red: 33562958.562909275 themeColor: TEXT filterViewId: 64880435 namedRangeId: ut ex voluptate velit range: endColumnIndex: 78625929 endRowIndex: 8249331 sheetId: 23426943 startColumnIndex: -6330250 startRowIndex: -31248430 sortSpecs: - backgroundColor: alpha: -89899298.85420933 blue: -74181936.85154262 green: 2190464.537174508 red: -99785767.23732999 backgroundColorStyle: rgbColor: alpha: 45221067.51472622 blue: -46772785.41671614 green: 76751583.1099261 red: -42230515.47517498 themeColor: THEME_COLOR_TYPE_UNSPECIFIED dataSourceColumnReference: name: dolore do dimensionIndex: 65664265 foregroundColor: alpha: -66491059.47281577 blue: 14810509.522505283 green: 55654406.334661484 red: -18237410.74582483 foregroundColorStyle: rgbColor: alpha: 99412939.2082482 blue: 87590652.14164206 green: -23741841.694763407 red: -71328497.61384356 themeColor: ACCENT1 sortOrder: ASCENDING title: id fugiat nostrud merges: - endColumnIndex: -87822978 endRowIndex: 24960675 sheetId: 78027480 startColumnIndex: 39371804 startRowIndex: 78587123 properties: dataSourceSheetProperties: columns: - formula: pariatur consequat aliquip reference: name: veniam dolore dataExecutionStatus: errorCode: PARAMETER_INVALID errorMessage: consectetur qui lastRefreshTime: amet enim state: NOT_STARTED dataSourceId: tempor gridProperties: columnCount: 66691854 columnGroupControlAfter: true frozenColumnCount: -75278161 frozenRowCount: 94864988 hideGridlines: true rowCount: 98721456 rowGroupControlAfter: false hidden: false index: -56193047 rightToLeft: true sheetId: 25915874 sheetType: DATA_SOURCE tabColor: alpha: -56216233.279394604 blue: 95529423.02558011 green: -36666457.80639044 red: -84786715.70979537 tabColorStyle: rgbColor: alpha: -84205395.64269136 blue: -14521194.977496594 green: 38969008.57605523 red: 16684933.766500488 themeColor: LINK title: 'ut mollit ' protectedRanges: - description: consectetur nisi sunt editors: domainUsersCanEdit: true groups: - aute ullamco fugiat ex ut users: - mollit aliqua proident namedRangeId: commodo protectedRangeId: -14894383 range: endColumnIndex: 94315896 endRowIndex: 46742559 sheetId: -58718358 startColumnIndex: 84101500 startRowIndex: -51137943 requestingUserCanEdit: true unprotectedRanges: - endColumnIndex: -93222945 endRowIndex: 37587423 sheetId: -5383742 startColumnIndex: 69795360 startRowIndex: -90197661 warningOnly: true rowGroups: - collapsed: false depth: -54713128 range: dimension: DIMENSION_UNSPECIFIED endIndex: 94039062 sheetId: 67996879 startIndex: 41561468 slicers: - position: newSheet: true overlayPosition: anchorCell: columnIndex: -98412738 rowIndex: 82222758 sheetId: 60043827 heightPixels: -29439914 offsetXPixels: 96940319 offsetYPixels: -39838506 widthPixels: 6654778 sheetId: -90472140 slicerId: -70236396 spec: applyToPivotTables: true backgroundColor: alpha: 50193435.05174017 blue: -39243448.04571458 green: -51701171.11511754 red: -19378470.775517702 backgroundColorStyle: rgbColor: alpha: -49247585.34559479 blue: -60423128.27044416 green: 70353325.9539296 red: 84134936.89157975 themeColor: BACKGROUND columnIndex: 3482119 dataRange: endColumnIndex: -65399669 endRowIndex: 88616138 sheetId: 3428673 startColumnIndex: -8241392 startRowIndex: 28726651 filterCriteria: condition: type: TEXT_NOT_EQ values: - relativeDate: PAST_WEEK userEnteredValue: sunt laborum hiddenValues: - aute proident ullamco ad visibleBackgroundColor: alpha: -11786715.93585658 blue: 65081923.98129845 green: 87322906.09718964 red: 92641295.68024936 visibleBackgroundColorStyle: rgbColor: alpha: 58242300.7040444 blue: 18717864.264006153 green: -2590820.9614616185 red: -13529697.660978675 themeColor: ACCENT6 visibleForegroundColor: alpha: -83723909.69411856 blue: 78695824.3313871 green: -80286500.17293839 red: 32942440.3549245 visibleForegroundColorStyle: rgbColor: alpha: 98732188.09762108 blue: 47130946.87638381 green: 66636663.74280104 red: 12053798.328996822 themeColor: ACCENT2 horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED textFormat: bold: false fontFamily: 'Ut ' fontSize: 9286806 foregroundColor: alpha: -99416512.55344488 blue: -55147547.227688156 green: -14981513.413470313 red: -25077477.479393855 foregroundColorStyle: rgbColor: alpha: -88174359.34856994 blue: -13255583.101691574 green: 43218253.33104634 red: 14790851.48794286 themeColor: TEXT italic: false link: uri: anim cupid strikethrough: true underline: false title: quis id spreadsheetId: sit consequat exercitation spreadsheetUrl: laborum SpreadsheetsPostResponse2Example: summary: Successful 200 response value: dataSourceSchedules: - dailySchedule: startTime: hours: -43266123 minutes: -65732454 nanos: -97450442 seconds: -41631562 enabled: false monthlySchedule: daysOfMonth: - 57977061 startTime: hours: 3999156 minutes: 89598075 nanos: -62818558 seconds: -7104959 nextRun: endTime: ut tempor laborum startTime: veniam do nisi in refreshScope: DATA_SOURCE_REFRESH_SCOPE_UNSPECIFIED weeklySchedule: daysOfWeek: - SUNDAY startTime: hours: -98244095 minutes: -4153534 nanos: -31897594 seconds: 83370707 dataSources: - calculatedColumns: - formula: nisi sunt reference: name: qui reprehenderit dataSourceId: sed dolore incididunt sheetId: -56661553 spec: bigQuery: projectId: aliqua velit querySpec: rawQuery: deserunt tableSpec: datasetId: culpa magna aliquip Duis tableId: occaecat deserunt tableProjectId: officia Duis ex in labore parameters: - name: Ut ad ipsum namedRangeId: magna range: endColumnIndex: 31885169 endRowIndex: -4040036 sheetId: -19707509 startColumnIndex: 5926358 startRowIndex: -24382075 developerMetadata: - location: dimensionRange: dimension: DIMENSION_UNSPECIFIED endIndex: 83564351 sheetId: 20161961 startIndex: -12299871 locationType: SHEET sheetId: 19412940 spreadsheet: true metadataId: -26483526 metadataKey: ad consectetur nulla metadataValue: cillum proident qui occaecat visibility: DEVELOPER_METADATA_VISIBILITY_UNSPECIFIED namedRanges: - name: reprehenderit sed est aliquip Ut namedRangeId: amet dolore range: endColumnIndex: -29487355 endRowIndex: 28833316 sheetId: 2554752 startColumnIndex: 75795510 startRowIndex: -72526094 properties: autoRecalc: ON_CHANGE defaultFormat: backgroundColor: alpha: -22421824.691030562 blue: 90013088.65213957 green: 24974090.92647165 red: 88011821.65105522 backgroundColorStyle: rgbColor: alpha: 51433993.220397204 blue: -34599856.361609936 green: 23834312.320355803 red: 97183505.05098599 themeColor: LINK borders: bottom: color: alpha: -46461682.392919324 blue: -39600858.47643326 green: -12885677.880025923 red: 20395982.76429157 colorStyle: rgbColor: alpha: -67713553.05349366 blue: 3075128.750359297 green: 89745091.64237362 red: 65057007.37397438 themeColor: ACCENT6 style: DOUBLE width: -83132355 left: color: alpha: 7529742.843985558 blue: 11523153.264217004 green: -83789517.69852239 red: -52273453.1840499 colorStyle: rgbColor: alpha: 23413126.31362365 blue: -89783978.4406965 green: 7478744.238987163 red: 91268984.47651386 themeColor: ACCENT4 style: SOLID_THICK width: 9587363 right: color: alpha: -68478561.90889128 blue: 86635613.318176 green: -4182434.2241241187 red: -37761525.154127404 colorStyle: rgbColor: alpha: 7564148.4709581435 blue: 46817587.00993326 green: 94604103.88139793 red: -39300118.4906812 themeColor: ACCENT4 style: STYLE_UNSPECIFIED width: -68379222 top: color: alpha: -35207179.004029274 blue: 75124743.01189193 green: -79174603.1645633 red: 69525380.65581709 colorStyle: rgbColor: alpha: 13971651.645456567 blue: 79134644.33448789 green: -8214105.3416944295 red: -55694700.72815168 themeColor: ACCENT6 style: DASHED width: -47592569 horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED hyperlinkDisplayType: HYPERLINK_DISPLAY_TYPE_UNSPECIFIED numberFormat: pattern: mollit magna ea type: TEXT padding: bottom: 3638265 left: -10421780 right: 70673792 top: 74778750 textDirection: TEXT_DIRECTION_UNSPECIFIED textFormat: bold: false fontFamily: reprehenderit cupidatat veniam Lorem do fontSize: -28113564 foregroundColor: alpha: 22027996.78423269 blue: -28716622.048885256 green: -19625308.709902182 red: -94408017.34685133 foregroundColorStyle: rgbColor: alpha: 71419372.2264759 blue: -82168243.51208629 green: -14187866.496848583 red: -65181659.34325215 themeColor: ACCENT6 italic: true link: uri: ullamco elit strikethrough: true underline: false textRotation: angle: -56348588 vertical: true verticalAlignment: VERTICAL_ALIGN_UNSPECIFIED wrapStrategy: WRAP iterativeCalculationSettings: convergenceThreshold: -28283351.56397684 maxIterations: -12335234 locale: exercitation cillum spreadsheetTheme: primaryFontFamily: ut themeColors: - color: rgbColor: alpha: -31710249.01160507 blue: 26026986.419538647 green: -43409395.90685053 red: 92736615.8684296 themeColor: THEME_COLOR_TYPE_UNSPECIFIED colorType: ACCENT5 timeZone: dolore laborum title: pariatur consectetur enim sheets: - bandedRanges: - bandedRangeId: 43139549 columnProperties: firstBandColor: alpha: -4656388.077727273 blue: -96613087.81631872 green: 4264693.804137036 red: 15111703.323823318 firstBandColorStyle: rgbColor: alpha: 99618076.90212369 blue: -49006881.50795429 green: 40319994.66356942 red: 65200542.683243126 themeColor: ACCENT6 footerColor: alpha: -33490013.551426753 blue: 32916340.128778905 green: 45262863.20501071 red: 19556816.571504414 footerColorStyle: rgbColor: alpha: -12068084.107148275 blue: -67832617.26921017 green: 22561836.25395614 red: -12142418.295326784 themeColor: LINK headerColor: alpha: -92687886.79756828 blue: -43280044.32060295 green: -23303373.12507233 red: -780389.2770115584 headerColorStyle: rgbColor: alpha: 8336086.317506105 blue: -49729232.317501724 green: -93612445.38047923 red: 31375535.857318223 themeColor: LINK secondBandColor: alpha: 99568934.50178161 blue: -91350629.81953612 green: -92964471.4278552 red: 37608193.63273704 secondBandColorStyle: rgbColor: alpha: 8970943.769093469 blue: -88201063.90158297 green: -13429353.495263636 red: 53969915.37868002 themeColor: ACCENT5 range: endColumnIndex: 87619727 endRowIndex: 20345160 sheetId: -65789249 startColumnIndex: -45948999 startRowIndex: -91737266 rowProperties: firstBandColor: alpha: 72010730.72591546 blue: 36846314.31772801 green: -96974888.03108025 red: 15421378.969790965 firstBandColorStyle: rgbColor: alpha: -22875637.799782306 blue: -73894833.409663 green: 91215030.05576509 red: -50423962.36714643 themeColor: ACCENT5 footerColor: alpha: 29168021.166943878 blue: -73831066.69786125 green: -89420542.5069429 red: 62593032.88934922 footerColorStyle: rgbColor: alpha: 43818785.12623486 blue: -45213359.909048915 green: 82881046.86449617 red: 72695904.25279978 themeColor: THEME_COLOR_TYPE_UNSPECIFIED headerColor: alpha: -60297724.716774106 blue: -89358737.19895242 green: 9563382.870461494 red: -7656815.10466139 headerColorStyle: rgbColor: alpha: -2842718.0475878417 blue: -2902275.1736353934 green: 9050794.865266055 red: -56674654.576242566 themeColor: ACCENT1 secondBandColor: alpha: -58009568.66879341 blue: 58834392.95665088 green: 55256317.50557256 red: 75550157.79389471 secondBandColorStyle: rgbColor: alpha: -30634601.267103404 blue: 55532206.36613929 green: -36562285.06917545 red: 13711659.906762823 themeColor: THEME_COLOR_TYPE_UNSPECIFIED basicFilter: criteria: doloreb_: condition: type: DATE_ON_OR_BEFORE values: - relativeDate: YESTERDAY userEnteredValue: id minim nisi elit hiddenValues: - ullamco nisi Excepteur anim visibleBackgroundColor: alpha: -81353007.03492567 blue: -38141297.090509996 green: 69154203.18882197 red: 36035439.413398474 visibleBackgroundColorStyle: rgbColor: alpha: 91173489.24772286 blue: -89346769.05947395 green: -19404805.972366154 red: -80230975.30043045 themeColor: ACCENT1 visibleForegroundColor: alpha: 57217398.74284211 blue: 74154308.04036638 green: 73016659.72982222 red: -22213180.456824318 visibleForegroundColorStyle: rgbColor: alpha: -43145436.167499796 blue: 74653537.38607502 green: 3025279.31792067 red: 79218590.71985793 themeColor: BACKGROUND filterSpecs: - columnIndex: 78389632 dataSourceColumnReference: name: in incididunt fugiat nostrud pariatur filterCriteria: condition: type: DATE_NOT_EQ values: - relativeDate: YESTERDAY userEnteredValue: laborum consectetur sit minim hiddenValues: - nulla pariatur qui ipsum visibleBackgroundColor: alpha: -91665830.15722671 blue: -99904560.26291601 green: 65347039.68829051 red: 63151914.08808029 visibleBackgroundColorStyle: rgbColor: alpha: 499116.31694211066 blue: 68604299.30482864 green: 98759492.96351925 red: 14867204.90616484 themeColor: BACKGROUND visibleForegroundColor: alpha: 50134573.64080387 blue: -87982539.28045554 green: -54603731.334672555 red: -64824031.22209801 visibleForegroundColorStyle: rgbColor: alpha: -73656646.24134824 blue: 2700641.501126051 green: 33008212.7396079 red: 16719230.552707165 themeColor: ACCENT4 range: endColumnIndex: -43877930 endRowIndex: -8809700 sheetId: 64318214 startColumnIndex: -7032303 startRowIndex: 39815904 sortSpecs: - backgroundColor: alpha: -28651638.96061036 blue: 45673855.84156752 green: 86189187.70006451 red: -74364203.78529602 backgroundColorStyle: rgbColor: alpha: -3168584.4773793966 blue: -56626033.75210678 green: 72484110.2359632 red: 692312.8745354861 themeColor: ACCENT1 dataSourceColumnReference: name: veniam sunt velit culpa dolor dimensionIndex: 11289450 foregroundColor: alpha: 96699958.53379482 blue: 76576567.97638994 green: -97320362.404836 red: -16790174.071512222 foregroundColorStyle: rgbColor: alpha: 67120313.76985142 blue: -79175402.66751315 green: 40644773.578526884 red: 84483907.11570269 themeColor: TEXT sortOrder: DESCENDING charts: - border: color: alpha: -6806672.500234127 blue: -59007826.50270249 green: 10160147.46663165 red: -20321148.950214908 colorStyle: rgbColor: alpha: 91689568.81668949 blue: 2961191.4176778793 green: 35578319.610948086 red: -5716472.749471709 themeColor: ACCENT4 chartId: -32308995 position: newSheet: true overlayPosition: anchorCell: columnIndex: -17264157 rowIndex: 17971192 sheetId: -70644812 heightPixels: 68423649 offsetXPixels: -94619858 offsetYPixels: -40214573 widthPixels: 77699500 sheetId: 63263059 spec: altText: deserunt proident nisi velit backgroundColor: alpha: -74849362.71468747 blue: -33495356.529037237 green: -62285800.332203634 red: -71890137.92690893 backgroundColorStyle: rgbColor: alpha: -79372460.55857861 blue: -95212341.51298112 green: 89931702.92362115 red: -20165241.53386876 themeColor: THEME_COLOR_TYPE_UNSPECIFIED basicChart: axis: - format: bold: false fontFamily: minim ea deserunt sed fontSize: 97507116 foregroundColor: alpha: -38999236.44546352 blue: 40553042.374115616 green: -77531909.59799339 red: 79603930.29403087 foregroundColorStyle: rgbColor: alpha: 32307950.109844625 blue: -67183178.37236509 green: -71081574.55853146 red: 98483083.22794133 themeColor: ACCENT2 italic: false link: uri: quis veniam dolor voluptate strikethrough: false underline: true position: BOTTOM_AXIS title: cupidatat esse nisi adipisicing titleTextPosition: horizontalAlignment: RIGHT viewWindowOptions: viewWindowMax: 72069702.17549679 viewWindowMin: -22257002.843773097 viewWindowMode: PRETTY chartType: STEPPED_AREA compareMode: DATUM domains: - domain: aggregateType: SUM columnReference: name: consectetur deserunt mollit groupRule: dateTimeRule: type: YEAR_MONTH histogramRule: intervalSize: -18521355.740935206 maxValue: 90158102.40211827 minValue: 87397122.90272304 sourceRange: sources: - endColumnIndex: -22668278 endRowIndex: 36123013 sheetId: 11952739 startColumnIndex: -32135218 startRowIndex: 66789128 reversed: true headerCount: 97182168 interpolateNulls: true legendPosition: BOTTOM_LEGEND lineSmoothing: true series: - color: alpha: 55722752.437729895 blue: 64477580.13592622 green: 71676688.93817422 red: -38156417.06576298 colorStyle: rgbColor: alpha: 28247526.09445946 blue: 69221968.87022421 green: 61917915.17307904 red: -17721228.542360783 themeColor: BACKGROUND dataLabel: customLabelData: aggregateType: MEDIAN columnReference: name: occaecat consequat quis groupRule: dateTimeRule: type: DAY_OF_WEEK histogramRule: intervalSize: -3857463.495657593 maxValue: -42586732.40078985 minValue: 37051651.2186895 sourceRange: sources: - endColumnIndex: -49248867 endRowIndex: -10371941 sheetId: 401546 startColumnIndex: -58085589 startRowIndex: -90982621 placement: BELOW textFormat: bold: false fontFamily: exercita fontSize: 81004203 foregroundColor: alpha: 41517003.63395324 blue: -70330186.86511676 green: -40534404.20106273 red: -31969992.615171924 foregroundColorStyle: rgbColor: alpha: 17775650.16171652 blue: -13772557.713170916 green: 27090283.845191807 red: -90047236.70280597 themeColor: ACCENT5 italic: false link: uri: in incididunt strikethrough: true underline: false type: NONE lineStyle: type: SOLID width: -84876836 pointStyle: shape: DIAMOND size: 64452898.462776005 series: aggregateType: SUM columnReference: name: magna groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: -70261025.00131163 maxValue: -30011278.55406885 minValue: 81851518.34003606 sourceRange: sources: - endColumnIndex: 44015002 endRowIndex: -98733261 sheetId: -35067209 startColumnIndex: 86137084 startRowIndex: 3077548 styleOverrides: - color: alpha: -69183513.89384103 blue: 19485706.81396036 green: 65328186.50077203 red: 12493290.07813476 colorStyle: rgbColor: alpha: -64008295.12294073 blue: -94462392.22749741 green: 88044885.24860078 red: -8836624.99906604 themeColor: ACCENT4 index: 7171408 pointStyle: shape: STAR size: -3552381.8585395366 targetAxis: BOTTOM_AXIS type: BASIC_CHART_TYPE_UNSPECIFIED stackedType: STACKED threeDimensional: true totalDataLabel: customLabelData: aggregateType: AVERAGE columnReference: name: elit ut Duis dolor groupRule: dateTimeRule: type: YEAR histogramRule: intervalSize: -5661235.146948233 maxValue: 77926629.53448138 minValue: 95577122.05968186 sourceRange: sources: - endColumnIndex: -76126877 endRowIndex: 42365670 sheetId: -76812357 startColumnIndex: 10226550 startRowIndex: 78881618 placement: RIGHT textFormat: bold: true fontFamily: et quis fontSize: 98579648 foregroundColor: alpha: 61002974.30631539 blue: 80971733.87236923 green: 68549056.98709989 red: 15343737.815225646 foregroundColorStyle: rgbColor: alpha: -91715833.91394736 blue: -56802867.72936918 green: -87612035.17797464 red: -94011753.84827228 themeColor: ACCENT5 italic: true link: uri: nulla id strikethrough: false underline: false type: CUSTOM bubbleChart: bubbleBorderColor: alpha: -84379523.96780863 blue: -22016451.819793478 green: 75200774.78312755 red: -91103521.06502111 bubbleBorderColorStyle: rgbColor: alpha: 42567298.29471606 blue: 53253070.63489702 green: 83815850.61622888 red: 53174334.26933822 themeColor: ACCENT4 bubbleLabels: aggregateType: SUM columnReference: name: commodo laboris consequat occaecat groupRule: dateTimeRule: type: YEAR_QUARTER histogramRule: intervalSize: -47029901.33041931 maxValue: -59720934.285820305 minValue: 72796472.10031083 sourceRange: sources: - endColumnIndex: -55006695 endRowIndex: -93033674 sheetId: 76677429 startColumnIndex: 23516908 startRowIndex: 36856856 bubbleMaxRadiusSize: 41144622 bubbleMinRadiusSize: -10010743 bubbleOpacity: 27400130.72438918 bubbleSizes: aggregateType: SUM columnReference: name: fugiat Except groupRule: dateTimeRule: type: DAY_OF_MONTH histogramRule: intervalSize: 8578270.545850858 maxValue: 64391065.68835834 minValue: -39435110.542253636 sourceRange: sources: - endColumnIndex: 62598857 endRowIndex: -72355329 sheetId: -45696083 startColumnIndex: 94622500 startRowIndex: 92634679 bubbleTextStyle: bold: true fontFamily: nulla commodo dolor fontSize: -5686162 foregroundColor: alpha: -794699.0987645686 blue: -54637342.35554334 green: -36289015.903600894 red: 97876618.28661105 foregroundColorStyle: rgbColor: alpha: 92888781.71785215 blue: 39613389.316816896 green: 52472776.62823087 red: -34529769.67181028 themeColor: LINK italic: true link: uri: nisi eu aliquip strikethrough: false underline: false domain: aggregateType: SUM columnReference: name: tempor cillum qui in groupRule: dateTimeRule: type: DAY_MONTH histogramRule: intervalSize: -80130275.36145376 maxValue: -94810329.47692616 minValue: 9830111.758620098 sourceRange: sources: - endColumnIndex: 25769079 endRowIndex: 48682569 sheetId: 30218238 startColumnIndex: -91964628 startRowIndex: 42746181 groupIds: aggregateType: AVERAGE columnReference: name: est anim do voluptate groupRule: dateTimeRule: type: DAY_OF_YEAR histogramRule: intervalSize: 26899146.655878693 maxValue: -98921533.26900548 minValue: -47194232.78588408 sourceRange: sources: - endColumnIndex: 21684096 endRowIndex: 25205083 sheetId: -44306216 startColumnIndex: 97302956 startRowIndex: 14760080 legendPosition: RIGHT_LEGEND series: aggregateType: SUM columnReference: name: labore laboris in culpa groupRule: dateTimeRule: type: SECOND histogramRule: intervalSize: -75300936.9657991 maxValue: -30478658.85255146 minValue: 13559461.281764477 sourceRange: sources: - endColumnIndex: 6043259 endRowIndex: 93573702 sheetId: -97142515 startColumnIndex: 49623823 startRowIndex: 76944482 candlestickChart: data: - closeSeries: data: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: qui id groupRule: dateTimeRule: type: DAY_OF_MONTH histogramRule: intervalSize: 41125538.61625695 maxValue: 97994679.49475247 minValue: 23618954.14523758 sourceRange: sources: - endColumnIndex: 60932056 endRowIndex: 55451137 sheetId: 23662228 startColumnIndex: -89409748 startRowIndex: -88671225 highSeries: data: aggregateType: SUM columnReference: name: incididunt groupRule: dateTimeRule: type: DAY_OF_YEAR histogramRule: intervalSize: -91812004.1593093 maxValue: 16850134.692005485 minValue: 66295928.31552905 sourceRange: sources: - endColumnIndex: 52635003 endRowIndex: 98820817 sheetId: -80483510 startColumnIndex: 43736501 startRowIndex: 47086604 lowSeries: data: aggregateType: MIN columnReference: name: velit sed cupidatat groupRule: dateTimeRule: type: YEAR_MONTH_DAY histogramRule: intervalSize: 66473933.83846918 maxValue: 47613686.91368076 minValue: -28069209.676522672 sourceRange: sources: - endColumnIndex: 21335855 endRowIndex: 11458701 sheetId: 95775715 startColumnIndex: 56326513 startRowIndex: 57674274 openSeries: data: aggregateType: AVERAGE columnReference: name: nostrud amet tempor dolor groupRule: dateTimeRule: type: DAY_OF_WEEK histogramRule: intervalSize: -37794263.73271777 maxValue: -4646182.705438033 minValue: -65935054.51988828 sourceRange: sources: - endColumnIndex: 54606199 endRowIndex: -76961833 sheetId: -69341559 startColumnIndex: 49818022 startRowIndex: -46883787 domain: data: aggregateType: COUNT columnReference: name: Ut cupidatat Duis groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: 6946669.7408254 maxValue: 83943171.96904132 minValue: 93424064.16476154 sourceRange: sources: - endColumnIndex: 43409596 endRowIndex: 25613295 sheetId: 24793983 startColumnIndex: -86096266 startRowIndex: 27520739 reversed: true dataSourceChartProperties: dataExecutionStatus: errorCode: DATA_EXECUTION_ERROR_CODE_UNSPECIFIED errorMessage: aliquip consectetur anim lastRefreshTime: al state: RUNNING dataSourceId: eiusmod ut consequat filterSpecs: - columnIndex: 90546677 dataSourceColumnReference: name: aute dolor laboris filterCriteria: condition: type: NUMBER_GREATER values: - relativeDate: RELATIVE_DATE_UNSPECIFIED userEnteredValue: ea c hiddenValues: - Duis proident do et visibleBackgroundColor: alpha: -36283526.30272102 blue: -1345286.881266445 green: -12026794.19154644 red: -15180752.626320705 visibleBackgroundColorStyle: rgbColor: alpha: 45116185.141209155 blue: 45489662.91515803 green: 54509241.505173504 red: -687712.9555583447 themeColor: ACCENT3 visibleForegroundColor: alpha: -28565684.45552306 blue: 81054396.77549508 green: 80240546.97687149 red: 34993376.16041127 visibleForegroundColorStyle: rgbColor: alpha: -66222367.96892498 blue: 48585075.55200243 green: -5020969.710157797 red: -46324783.9773818 themeColor: LINK fontName: do hiddenDimensionStrategy: CHART_HIDDEN_DIMENSION_STRATEGY_UNSPECIFIED histogramChart: bucketSize: -84607370.87032846 legendPosition: RIGHT_LEGEND outlierPercentile: -55914163.013332054 series: - barColor: alpha: 55040259.75877115 blue: 69737257.65370405 green: 35399131.94407421 red: 58901591.43528417 barColorStyle: rgbColor: alpha: -42943196.55535497 blue: 67372783.7021254 green: 27349397.156058505 red: -94587978.25310077 themeColor: ACCENT5 data: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: consectetur amet groupRule: dateTimeRule: type: YEAR_MONTH histogramRule: intervalSize: -30788024.641912863 maxValue: -24732732.354569674 minValue: 4681068.022945747 sourceRange: sources: - endColumnIndex: 6881824 endRowIndex: 59193013 sheetId: -78991757 startColumnIndex: -56953158 startRowIndex: -24851839 showItemDividers: true maximized: false orgChart: labels: aggregateType: MEDIAN columnReference: name: dolore sunt groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: 87979300.06759924 maxValue: -69738481.45343556 minValue: -55802864.81927726 sourceRange: sources: - endColumnIndex: 29992841 endRowIndex: -43142118 sheetId: -28375698 startColumnIndex: -72923293 startRowIndex: -33095858 nodeColor: alpha: 63129191.538889855 blue: -35920096.32508599 green: 84152512.73405561 red: -11451214.36287035 nodeColorStyle: rgbColor: alpha: -97554231.51759884 blue: -29398256.39035356 green: 97755801.09825203 red: 34052276.84180114 themeColor: ACCENT3 nodeSize: LARGE parentLabels: aggregateType: MEDIAN columnReference: name: enim est nostrud groupRule: dateTimeRule: type: QUARTER histogramRule: intervalSize: 88870422.46986204 maxValue: 71468798.485621 minValue: -57852079.24046984 sourceRange: sources: - endColumnIndex: 17055627 endRowIndex: -57134547 sheetId: 57015075 startColumnIndex: 99690712 startRowIndex: -33788216 selectedNodeColor: alpha: -29455482.56013368 blue: -22382852.613567516 green: 8850774.5190427 red: 61466971.9064942 selectedNodeColorStyle: rgbColor: alpha: -75343847.9287142 blue: -8954102.548794523 green: -34938585.086757176 red: -19011933.398021072 themeColor: ACCENT3 tooltips: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: officia proident et Ut groupRule: dateTimeRule: type: QUARTER histogramRule: intervalSize: -94682800.43479304 maxValue: 46663800.77882236 minValue: -46526138.67756505 sourceRange: sources: - endColumnIndex: 48665731 endRowIndex: 65106729 sheetId: -86829639 startColumnIndex: -26806983 startRowIndex: -14573074 pieChart: domain: aggregateType: MAX columnReference: name: amet sunt ut groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: 67702553.569311 maxValue: -91163548.4262694 minValue: 33648414.01718235 sourceRange: sources: - endColumnIndex: 51976057 endRowIndex: 19254915 sheetId: 97191751 startColumnIndex: -18454783 startRowIndex: 33933093 legendPosition: TOP_LEGEND pieHole: -30263554.3671816 series: aggregateType: MIN columnReference: name: 'Excepteur minim ' groupRule: dateTimeRule: type: DAY_OF_MONTH histogramRule: intervalSize: -50713394.28357296 maxValue: -39606797.85202501 minValue: -11707961.734067008 sourceRange: sources: - endColumnIndex: -35582263 endRowIndex: -6114928 sheetId: 32942167 startColumnIndex: -61891345 startRowIndex: 42817793 threeDimensional: true scorecardChart: aggregateType: SUM baselineValueData: aggregateType: COUNT columnReference: name: est dol groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: -84704547.41613685 maxValue: -60029874.82360034 minValue: -85835166.9727921 sourceRange: sources: - endColumnIndex: 30967618 endRowIndex: 43348963 sheetId: 8722686 startColumnIndex: 19580190 startRowIndex: 19736578 baselineValueFormat: comparisonType: ABSOLUTE_DIFFERENCE description: exercitation ea negativeColor: alpha: 91192114.04931337 blue: 84467827.57099438 green: 13171452.879573137 red: 749918.1010410339 negativeColorStyle: rgbColor: alpha: 75322019.75364456 blue: -58339194.567314535 green: -2502404.4841341972 red: -49802225.98250763 themeColor: ACCENT4 position: horizontalAlignment: RIGHT positiveColor: alpha: 47683155.2413601 blue: -48258473.6134728 green: -79219630.28850487 red: 73135752.91313782 positiveColorStyle: rgbColor: alpha: -51811771.27181496 blue: -68431861.42049551 green: 3160043.800748363 red: -30675512.206715316 themeColor: ACCENT6 textFormat: bold: true fontFamily: aliquip culpa ut fontSize: 46805087 foregroundColor: alpha: -62924653.43184421 blue: 20943779.987398475 green: -17616130.36710909 red: -3220385.6507084817 foregroundColorStyle: rgbColor: alpha: 71779234.54589847 blue: 31177018.482527792 green: -49721861.10757293 red: 53599046.95277199 themeColor: THEME_COLOR_TYPE_UNSPECIFIED italic: false link: uri: ali strikethrough: false underline: false customFormatOptions: prefix: proident fugiat cons suffix: id aliqua keyValueData: aggregateType: COUNT columnReference: name: anim quis groupRule: dateTimeRule: type: CHART_DATE_TIME_RULE_TYPE_UNSPECIFIED histogramRule: intervalSize: 50402519.97843766 maxValue: 79630701.63392273 minValue: -72021083.7874685 sourceRange: sources: - endColumnIndex: 36860082 endRowIndex: -99459561 sheetId: -20414918 startColumnIndex: 65828 startRowIndex: 89009394 keyValueFormat: position: horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED textFormat: bold: false fontFamily: dolore fontSize: 58034460 foregroundColor: alpha: -89284965.90978332 blue: 87746540.76626381 green: 70359194.17464548 red: -15107432.094405621 foregroundColorStyle: rgbColor: alpha: 92624270.26585877 blue: 76408327.49501455 green: -26905631.18148361 red: -50289008.269739985 themeColor: ACCENT3 italic: false link: uri: velit mollit labore voluptate strikethrough: false underline: false numberFormatSource: CHART_NUMBER_FORMAT_SOURCE_UNDEFINED scaleFactor: -5359429.594352871 sortSpecs: - backgroundColor: alpha: -39930853.52848409 blue: 49080107.640369385 green: -8043835.338221729 red: -82586735.70494701 backgroundColorStyle: rgbColor: alpha: 91640696.8671143 blue: 26897959.743679762 green: -47879743.89375163 red: 93100312.27694032 themeColor: ACCENT6 dataSourceColumnReference: name: fugiat in Lorem occaecat dimensionIndex: -88840985 foregroundColor: alpha: -75857689.17465128 blue: 29787494.024613097 green: -84352396.56627944 red: -89930343.12985398 foregroundColorStyle: rgbColor: alpha: 34651137.4042612 blue: -930903.671572119 green: 1281339.8256363422 red: 3807791.214975789 themeColor: TEXT sortOrder: DESCENDING subtitle: magna velit subtitleTextFormat: bold: true fontFamily: veniam sit dolor aute fontSize: -45388084 foregroundColor: alpha: -52163753.82327558 blue: -10058404.811999738 green: -81965679.10336196 red: 32525819.75083393 foregroundColorStyle: rgbColor: alpha: 68603502.39416003 blue: -24690407.82358101 green: 61136506.37899554 red: 84241621.90678227 themeColor: ACCENT2 italic: true link: uri: tempor consectetur strikethrough: true underline: false subtitleTextPosition: horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED title: aliq titleTextFormat: bold: true fontFamily: non ullamco laboris fontSize: 73318110 foregroundColor: alpha: 30110225.536503732 blue: 38491927.4758943 green: 95094690.34997103 red: -51271996.931729145 foregroundColorStyle: rgbColor: alpha: -45286265.88793503 blue: 4883206.111387521 green: 39371167.88144383 red: -97257188.29635426 themeColor: TEXT italic: true link: uri: sed in strikethrough: true underline: true titleTextPosition: horizontalAlignment: LEFT treemapChart: colorData: aggregateType: MIN columnReference: name: est et groupRule: dateTimeRule: type: DAY_OF_YEAR histogramRule: intervalSize: -87370287.69161367 maxValue: 63694067.566963494 minValue: 65378205.29212701 sourceRange: sources: - endColumnIndex: -86832079 endRowIndex: 56378894 sheetId: 41285499 startColumnIndex: 19967088 startRowIndex: -83999042 colorScale: maxValueColor: alpha: 61322054.213629335 blue: -99123982.21827145 green: 80750735.98303589 red: 52098616.85426694 maxValueColorStyle: rgbColor: alpha: 43468410.23279801 blue: 38780059.91488701 green: 94937094.52421802 red: 5673434.052179977 themeColor: ACCENT1 midValueColor: alpha: -40893685.231944144 blue: 34050815.38297199 green: -95680096.3838476 red: -51629671.84386633 midValueColorStyle: rgbColor: alpha: 95447093.73078987 blue: -83367126.71878645 green: -58423988.25561426 red: 119657.44637519121 themeColor: ACCENT3 minValueColor: alpha: 54617885.253979415 blue: 17837783.893287316 green: 19904306.74798067 red: 61354369.22587797 minValueColorStyle: rgbColor: alpha: 47304735.15669909 blue: 82533081.71530113 green: -16093777.310446367 red: 64352116.3654238 themeColor: LINK noDataColor: alpha: 83331239.39278728 blue: -23262921.960855514 green: 65262497.94032225 red: 10048267.815709531 noDataColorStyle: rgbColor: alpha: -73179697.24343878 blue: -87528688.75965652 green: -59566691.700415395 red: -46601037.91076127 themeColor: ACCENT5 headerColor: alpha: 26994389.41218242 blue: 17093624.016673908 green: -61517646.16487689 red: 81670949.55874091 headerColorStyle: rgbColor: alpha: 2448766.8123804927 blue: -9175268.361172289 green: -69556456.81124017 red: 29179775.0721229 themeColor: ACCENT5 hideTooltips: true hintedLevels: 22972430 labels: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: tempor occa groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: -18477549.46402648 maxValue: 96611960.49759933 minValue: -64086187.69615084 sourceRange: sources: - endColumnIndex: -6007990 endRowIndex: 26304385 sheetId: 57396648 startColumnIndex: -89330295 startRowIndex: 15068429 levels: 51514916 maxValue: -24180101.332737938 minValue: 91137082.88042629 parentLabels: aggregateType: AVERAGE columnReference: name: enim ut dolore ullamco groupRule: dateTimeRule: type: YEAR histogramRule: intervalSize: 85969190.56500435 maxValue: 78955224.44921449 minValue: 79065578.98970333 sourceRange: sources: - endColumnIndex: -12853928 endRowIndex: -9638427 sheetId: -94740200 startColumnIndex: -47659673 startRowIndex: -10557056 sizeData: aggregateType: MEDIAN columnReference: name: ea elit eiusmod in groupRule: dateTimeRule: type: DAY_MONTH histogramRule: intervalSize: 43941521.313759446 maxValue: -4185782.450240046 minValue: 63424334.84402138 sourceRange: sources: - endColumnIndex: 2162496 endRowIndex: -81773720 sheetId: 62084011 startColumnIndex: 14629947 startRowIndex: -20515355 textFormat: bold: false fontFamily: ut sunt fontSize: -35201641 foregroundColor: alpha: -94278432.48688364 blue: -63588026.126646824 green: -20463414.283255383 red: 48171810.31969905 foregroundColorStyle: rgbColor: alpha: -41440237.64087299 blue: 85189591.08992493 green: -20000077.710908532 red: 15296983.031435743 themeColor: ACCENT1 italic: false link: uri: Lorem tempo strikethrough: true underline: true waterfallChart: connectorLineStyle: type: MEDIUM_DASHED width: 20320648 domain: data: aggregateType: MAX columnReference: name: deseru groupRule: dateTimeRule: type: SECOND histogramRule: intervalSize: 86760765.78905803 maxValue: 5305433.656956509 minValue: -75171557.66032615 sourceRange: sources: - endColumnIndex: 51877618 endRowIndex: 40320525 sheetId: 56359334 startColumnIndex: -5364191 startRowIndex: -62128845 reversed: true firstValueIsTotal: true hideConnectorLines: false series: - customSubtotals: - dataIsSubtotal: false label: ad sit consequat exercitation subtotalIndex: 21627474 data: aggregateType: MAX columnReference: name: fugiat groupRule: dateTimeRule: type: HOUR histogramRule: intervalSize: -86172941.4966451 maxValue: -30639866.86549498 minValue: -38795739.96309489 sourceRange: sources: - endColumnIndex: -27247840 endRowIndex: 36821519 sheetId: 77411222 startColumnIndex: 67875131 startRowIndex: 41098630 dataLabel: customLabelData: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: Duis sunt groupRule: dateTimeRule: type: HOUR_MINUTE histogramRule: intervalSize: 19564201.770708054 maxValue: -16648343.70710811 minValue: 24281608.492682233 sourceRange: sources: - endColumnIndex: 29768862 endRowIndex: -37969810 sheetId: -44087576 startColumnIndex: 35789649 startRowIndex: 33693671 placement: CENTER textFormat: bold: false fontFamily: dolor quis fontSize: -40327592 foregroundColor: alpha: -92305964.46019806 blue: 41764178.692697406 green: 4341323.698441401 red: 94530488.20776337 foregroundColorStyle: rgbColor: alpha: -25797716.605266124 blue: -33603002.378911294 green: 50854133.31138152 red: 20121345.028139308 themeColor: LINK italic: true link: uri: nostrud strikethrough: true underline: true type: DATA_LABEL_TYPE_UNSPECIFIED hideTrailingSubtotal: true negativeColumnsStyle: color: alpha: -43139445.953923024 blue: 57711416.60128677 green: 40022444.19989854 red: 46273028.2518788 colorStyle: rgbColor: alpha: 57819589.90490046 blue: 92523222.32820892 green: 1131289.751197651 red: -38793367.02818557 themeColor: ACCENT4 label: reprehenderit eiusmod ex ut positiveColumnsStyle: color: alpha: -33684473.433511466 blue: 47421967.97235504 green: 61485931.39422411 red: 86964213.93143621 colorStyle: rgbColor: alpha: -91575506.62353389 blue: 48932954.386547506 green: 87439439.0248324 red: -92230734.4690994 themeColor: ACCENT4 label: ullamco quis ipsum qui subtotalColumnsStyle: color: alpha: 15682056.821042463 blue: -10132205.608376756 green: 63461460.64753729 red: 4771751.812094882 colorStyle: rgbColor: alpha: 92124248.13654628 blue: -51944586.383404315 green: 77172108.68174008 red: 22212738.56704147 themeColor: ACCENT2 label: nostrud dolore exercitation stackedType: WATERFALL_STACKED_TYPE_UNSPECIFIED totalDataLabel: customLabelData: aggregateType: MIN columnReference: name: aliqua voluptate amet no groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: -13262467.511420175 maxValue: -40456078.32104912 minValue: -78313230.16158862 sourceRange: sources: - endColumnIndex: -79457181 endRowIndex: 15754126 sheetId: -67859274 startColumnIndex: 21830512 startRowIndex: 61101925 placement: LEFT textFormat: bold: false fontFamily: dolor fontSize: 73390401 foregroundColor: alpha: 84556313.01613939 blue: -42099750.8689013 green: 66684186.11342633 red: -5976877.88054651 foregroundColorStyle: rgbColor: alpha: -53960989.89776843 blue: -18442235.36373377 green: -55305533.3459997 red: -85411857.99655175 themeColor: ACCENT5 italic: false link: uri: ullamco dolor consectetur dolor strikethrough: true underline: false type: NONE columnGroups: - collapsed: true depth: 18374754 range: dimension: COLUMNS endIndex: 64005365 sheetId: -23981058 startIndex: -32057668 conditionalFormats: - booleanRule: condition: type: DATE_IS_VALID values: - relativeDate: PAST_YEAR userEnteredValue: nostrud sed occaecat format: backgroundColor: alpha: -33696071.38050195 blue: 15037619.425577775 green: 5387136.656987175 red: 23675355.83419293 backgroundColorStyle: rgbColor: alpha: -71452563.07219623 blue: -44775926.694522105 green: -74123652.41325536 red: 93407629.04067361 themeColor: ACCENT5 borders: bottom: color: alpha: 11713632.41502203 blue: 10612383.080546424 green: -10731370.42296195 red: 85766312.12907669 colorStyle: rgbColor: alpha: -65098789.404307134 blue: 87659842.74322918 green: 55812981.82029432 red: -69790904.97943807 themeColor: ACCENT4 style: DASHED width: 97871266 left: color: alpha: 20601198.911095336 blue: 29841479.57745242 green: 9092286.33986476 red: 40934378.194180965 colorStyle: rgbColor: alpha: -28138053.097323194 blue: -71672715.97565582 green: 25554084.377339065 red: -28855421.117769316 themeColor: ACCENT5 style: SOLID_THICK width: -69936940 right: color: alpha: 43989936.684245825 blue: 34329817.85070273 green: -97595714.19915205 red: 83020651.84483784 colorStyle: rgbColor: alpha: -69997276.90040971 blue: 36711991.453406304 green: -11937914.337869376 red: 1142599.3258616775 themeColor: ACCENT4 style: DOUBLE width: -63493261 top: color: alpha: 51867248.317953914 blue: 16173933.168091908 green: 30261508.495030716 red: 18478551.68641144 colorStyle: rgbColor: alpha: 8724031.323282585 blue: -56047238.0663839 green: 54871971.990857065 red: 74762519.29785281 themeColor: ACCENT1 style: DASHED width: 90290532 horizontalAlignment: LEFT hyperlinkDisplayType: LINKED numberFormat: pattern: Duis Lorem type: SCIENTIFIC padding: bottom: -45258047 left: 79501126 right: -88560792 top: 18715229 textDirection: LEFT_TO_RIGHT textFormat: bold: true fontFamily: laborum Lorem aute anim fontSize: -54695866 foregroundColor: alpha: -96715819.03853346 blue: 51262618.51935482 green: 47100542.15011147 red: 72744837.8586438 foregroundColorStyle: rgbColor: alpha: 5077246.416933745 blue: 94924185.87944713 green: -79044590.47108224 red: -48855092.19125601 themeColor: THEME_COLOR_TYPE_UNSPECIFIED italic: false link: uri: enim strikethrough: true underline: false textRotation: angle: 15272087 vertical: true verticalAlignment: BOTTOM wrapStrategy: WRAP_STRATEGY_UNSPECIFIED gradientRule: maxpoint: color: alpha: -44582503.76789694 blue: 84725439.36743551 green: -70597214.37194546 red: -73157025.11586607 colorStyle: rgbColor: alpha: 27296064.52745354 blue: 96221099.65039742 green: 41166760.45432234 red: -5116491.946219787 themeColor: ACCENT5 type: NUMBER value: aliquip esse exe midpoint: color: alpha: -49603195.91381302 blue: -32125023.898420498 green: -78188899.89219734 red: -57892755.206260785 colorStyle: rgbColor: alpha: -82792542.42318083 blue: -58087470.74477996 green: -82430007.61734551 red: -97877882.06454743 themeColor: BACKGROUND type: INTERPOLATION_POINT_TYPE_UNSPECIFIED value: dolor officia minpoint: color: alpha: -99629648.8521859 blue: 21301662.241155967 green: 64155347.91908571 red: -61658800.72800576 colorStyle: rgbColor: alpha: -41052112.6239356 blue: 95533010.45308128 green: -15564682.62086548 red: -21968581.755773365 themeColor: ACCENT1 type: PERCENTILE value: 'incididunt quis sint ' ranges: - endColumnIndex: 74659565 endRowIndex: -88771425 sheetId: 74303660 startColumnIndex: -21044297 startRowIndex: -18392721 data: - columnMetadata: - dataSourceColumnReference: name: labore reprehenderit culpa ad developerMetadata: - location: dimensionRange: dimension: DIMENSION_UNSPECIFIED endIndex: -87933162 sheetId: 47670262 startIndex: -47295049 locationType: SHEET sheetId: -24764939 spreadsheet: true metadataId: 76194147 metadataKey: consequat in metadataValue: mollit aliquip ad visibility: PROJECT hiddenByFilter: false hiddenByUser: true pixelSize: 88073830 rowData: - values: - dataSourceFormula: dataExecutionStatus: errorCode: DATA_EXECUTION_ERROR_CODE_UNSPECIFIED errorMessage: tempor dolore officia veniam lastRefreshTime: culpa proident dolor state: RUNNING dataSourceId: ipsum sit reprehenderit in dataSourceTable: columnSelectionType: SELECTED columns: - name: nisi in irure dataExecutionStatus: errorCode: CONCURRENT_QUERY errorMessage: nisi lastRefreshTime: irure reprehenderit state: RUNNING dataSourceId: veniam sunt aliquip sit filterSpecs: - columnIndex: -99579434 dataSourceColumnReference: name: sunt velit dolore magna filterCriteria: condition: type: NUMBER_BETWEEN values: - relativeDate: PAST_MONTH userEnteredValue: aliquip Duis hiddenValues: - deserunt sed visibleBackgroundColor: alpha: 55398560.65484887 blue: -34173072.032416485 green: -97673278.36096938 red: 67170455.83319402 visibleBackgroundColorStyle: rgbColor: alpha: -33292060.616818644 blue: 69704544.72822353 green: 63635833.17909995 red: 59984200.48429686 themeColor: ACCENT6 visibleForegroundColor: alpha: 27696114.333764046 blue: -58617972.98879745 green: 86459807.99078384 red: -28686752.592930764 visibleForegroundColorStyle: rgbColor: alpha: -60354093.75723786 blue: 73983121.74659374 green: -41247335.40207526 red: -92048880.71548022 themeColor: THEME_COLOR_TYPE_UNSPECIFIED rowLimit: 68396451 sortSpecs: - backgroundColor: alpha: 15017235.123969331 blue: -9033293.91994965 green: 77916247.7642985 red: -16689793.954687998 backgroundColorStyle: rgbColor: alpha: 69138969.14693648 blue: 86509695.95040658 green: -90003248.09829107 red: 9140276.879808739 themeColor: ACCENT4 dataSourceColumnReference: name: dolor voluptate dimensionIndex: 96521710 foregroundColor: alpha: -99202387.1050502 blue: -59191122.74421856 green: 73019757.29999626 red: -24441230.725797743 foregroundColorStyle: rgbColor: alpha: -10796247.60116689 blue: -11355089.479209468 green: -29729478.459359586 red: 49766593.97480062 themeColor: ACCENT4 sortOrder: ASCENDING dataValidation: condition: type: NUMBER_EQ values: - relativeDate: YESTERDAY userEnteredValue: et inputMessage: id Duis showCustomUi: true strict: false effectiveFormat: backgroundColor: alpha: -75165906.87639546 blue: 31437318.769427687 green: -25133229.664263457 red: -73598153.15391107 backgroundColorStyle: rgbColor: alpha: 73284162.59540677 blue: 80348581.55412823 green: 83304070.27409178 red: 28015158.098887578 themeColor: ACCENT4 borders: bottom: color: alpha: 87561132.5655073 blue: -32232656.67089477 green: -70787822.84402739 red: 76420690.66282183 colorStyle: rgbColor: alpha: 21204111.585098535 blue: -5189404.144321725 green: -28696708.174476355 red: 14501358.597405821 themeColor: ACCENT2 style: SOLID_THICK width: -21459940 left: color: alpha: -72669838.59894718 blue: 18652029.719697267 green: -77277200.42718627 red: -9658050.436916187 colorStyle: rgbColor: alpha: -9822871.180133492 blue: -45876765.68401129 green: -28517314.345187068 red: -33708821.58251196 themeColor: ACCENT5 style: NONE width: -77939700 right: color: alpha: -92112658.48853767 blue: -7633934.965055779 green: 91208642.66715351 red: 35480546.31778875 colorStyle: rgbColor: alpha: -38575607.829158634 blue: 55951475.3930189 green: 25867680.686059162 red: 20304526.938570917 themeColor: TEXT style: DASHED width: -63237809 top: color: alpha: -56954813.58897112 blue: 88612165.95023671 green: 10714099.928762838 red: 82593997.34483165 colorStyle: rgbColor: alpha: 31699946.670475304 blue: -88050254.85500804 green: 73138556.05160445 red: 90773299.82631132 themeColor: ACCENT6 style: NONE width: 9174193 horizontalAlignment: RIGHT hyperlinkDisplayType: LINKED numberFormat: pattern: 'ullamco aute ' type: PERCENT padding: bottom: 86665013 left: 48041536 right: -74666208 top: -54673629 textDirection: RIGHT_TO_LEFT textFormat: bold: false fontFamily: in amet aliqua tempor fontSize: -85109807 foregroundColor: alpha: -29969706.666835055 blue: -71459984.88710994 green: -17699409.167820737 red: -43227880.60569085 foregroundColorStyle: rgbColor: alpha: -15886756.891549066 blue: -26993248.489153564 green: 18984824.729538634 red: -27602564.702234656 themeColor: ACCENT5 italic: false link: uri: ad tempor consectet strikethrough: true underline: true textRotation: angle: -19008652 vertical: true verticalAlignment: TOP wrapStrategy: WRAP_STRATEGY_UNSPECIFIED effectiveValue: boolValue: true errorValue: message: quis Lorem dolore nostrud type: LOADING formulaValue: mollit deserunt eiusmod non numberValue: 65393364.65626028 stringValue: amet c formattedValue: minim velit hyperlink: est magna pariatur note: tem pivotTable: columns: - dataSourceColumnReference: name: in laboris groupLimit: applyOrder: 86894586 countLimit: -95189988 groupRule: dateTimeRule: type: SECOND histogramRule: end: 73388672.70205921 interval: -29611396.371270522 start: -736558.7482237965 manualRule: groups: - groupName: boolValue: false errorValue: message: aliquip eiusmod irure nisi type: NUM formulaValue: quis deserunt nulla numberValue: 65941239.132365406 stringValue: culpa mollit ipsum velit items: - boolValue: true errorValue: message: tempor elit incididunt type: DIVIDE_BY_ZERO formulaValue: Lorem proident numberValue: 85929252.08708397 stringValue: velit dolore in label: ipsum cupidat repeatHeadings: true showTotals: false sortOrder: DESCENDING sourceColumnOffset: -93231206 valueBucket: buckets: - boolValue: true errorValue: message: ut dol type: DIVIDE_BY_ZERO formulaValue: amet nisi exerc numberValue: 46380282.57440895 stringValue: enim Lorem magna valuesIndex: 81769487 valueMetadata: - collapsed: true value: boolValue: true errorValue: message: Duis type: N_A formulaValue: dolor eiusmod anim voluptate pari numberValue: -26844411.7826768 stringValue: elit occaecat criteria: consequat_c15: condition: type: ONE_OF_RANGE values: - relativeDate: YESTERDAY userEnteredValue: tempor aliqua officia visibleByDefault: false visibleValues: - quis ea deserunt in dolor_aa: condition: type: DATE_BETWEEN values: - relativeDate: PAST_YEAR userEnteredValue: sit sint visibleByDefault: true visibleValues: - dolore eiusmod elit occaecat dataExecutionStatus: errorCode: TOO_MANY_COLUMNS errorMessage: nulla ut deserunt lastRefreshTime: eiusmod fugiat dolor state: SUCCEEDED dataSourceId: Duis occaecat Lorem mollit filterSpecs: - columnOffsetIndex: 68390305 dataSourceColumnReference: name: nisi est filterCriteria: condition: type: NUMBER_NOT_EQ values: - relativeDate: PAST_MONTH userEnteredValue: Lorem officia velit aliqua visibleByDefault: false visibleValues: - Ut est rows: - dataSourceColumnReference: name: et Duis groupLimit: applyOrder: -87421783 countLimit: 97455878 groupRule: dateTimeRule: type: YEAR_MONTH histogramRule: end: -45430317.88629501 interval: 19112464.14861214 start: -601118.3269306868 manualRule: groups: - groupName: boolValue: true errorValue: message: in proident do deserunt amet type: LOADING formulaValue: ip numberValue: -78375600.73544556 stringValue: labore est voluptate officia items: - boolValue: true errorValue: message: reprehenderit ex type: ERROR formulaValue: nisi id numberValue: 87183800.10702923 stringValue: officia label: consequat ullamco aute voluptate ad repeatHeadings: true showTotals: false sortOrder: DESCENDING sourceColumnOffset: -44411710 valueBucket: buckets: - boolValue: false errorValue: message: cillum nostrud type: DIVIDE_BY_ZERO formulaValue: est anim nulla numberValue: 62541937.02901471 stringValue: non Excepteur valuesIndex: -98790945 valueMetadata: - collapsed: false value: boolValue: true errorValue: message: dolo type: ERROR_TYPE_UNSPECIFIED formulaValue: qui numberValue: 70999832.1996871 stringValue: Excepteur cillum nostrud sit source: endColumnIndex: -52966387 endRowIndex: 73464648 sheetId: 26197423 startColumnIndex: 65892321 startRowIndex: 73328951 valueLayout: HORIZONTAL values: - calculatedDisplayType: PERCENT_OF_COLUMN_TOTAL dataSourceColumnReference: name: elit veniam mollit formula: in qui u name: dolor ad magna dolor sourceColumnOffset: 37969168 summarizeFunction: STDEVP textFormatRuns: - format: bold: false fontFamily: in aute fontSize: -32005442 foregroundColor: alpha: -41451009.7751632 blue: 50352423.90654141 green: 53143325.43411711 red: -85457268.54885384 foregroundColorStyle: rgbColor: alpha: 57441892.294582576 blue: -56261494.03466365 green: -20070334.48529367 red: -44818422.94338132 themeColor: ACCENT6 italic: true link: uri: laborum mo strikethrough: false underline: true startIndex: -44697679 userEnteredFormat: backgroundColor: alpha: 16235958.11779435 blue: 72798167.68336585 green: 52013078.54701626 red: 30373130.672796294 backgroundColorStyle: rgbColor: alpha: 16486518.285981506 blue: -39751287.05494741 green: 21619706.9985601 red: -71330440.49013782 themeColor: ACCENT1 borders: bottom: color: alpha: -36555151.42781356 blue: -74208683.55784705 green: 57746540.27194807 red: 29994710.88130851 colorStyle: rgbColor: alpha: 54516165.652094096 blue: 77027668.19738951 green: 63962014.416650295 red: 70087936.93838301 themeColor: ACCENT2 style: DOUBLE width: -14473424 left: color: alpha: -39789231.24171487 blue: -89708072.39761886 green: 45571135.52069461 red: 72494046.39968094 colorStyle: rgbColor: alpha: -60007140.78625395 blue: -446046.0255649537 green: 86990245.45480078 red: 29958676.957075655 themeColor: ACCENT1 style: DOUBLE width: -30082634 right: color: alpha: -9393032.849586368 blue: -83153669.34595625 green: -71624949.31064041 red: -80968641.75605151 colorStyle: rgbColor: alpha: 71824702.21632546 blue: -35043582.97587431 green: 59238675.52873051 red: 21344980.42260109 themeColor: BACKGROUND style: STYLE_UNSPECIFIED width: 4357643 top: color: alpha: -25307587.924525306 blue: 43166994.75238925 green: -54168585.88518769 red: 30895917.19349292 colorStyle: rgbColor: alpha: -80787203.7284075 blue: -17541923.775853038 green: 6712843.9920782745 red: 25491278.090904996 themeColor: THEME_COLOR_TYPE_UNSPECIFIED style: DOUBLE width: 72172146 horizontalAlignment: LEFT hyperlinkDisplayType: LINKED numberFormat: pattern: incididunt ut type: SCIENTIFIC padding: bottom: -65902242 left: 29002485 right: 53944408 top: -31004637 textDirection: TEXT_DIRECTION_UNSPECIFIED textFormat: bold: false fontFamily: sed eu fontSize: 215982 foregroundColor: alpha: -2639320.204084024 blue: 79218091.42426041 green: -18156892.879986137 red: -9248773.390694961 foregroundColorStyle: rgbColor: alpha: 26279239.217041582 blue: 34797003.40519014 green: 80077070.73050928 red: 95727232.5388664 themeColor: THEME_COLOR_TYPE_UNSPECIFIED italic: false link: uri: ullamc strikethrough: false underline: false textRotation: angle: -55192093 vertical: false verticalAlignment: VERTICAL_ALIGN_UNSPECIFIED wrapStrategy: CLIP userEnteredValue: boolValue: false errorValue: message: culpa est id nisi type: REF formulaValue: amet est sint dolor numberValue: 65088564.28292459 stringValue: officia mollit anim rowMetadata: - dataSourceColumnReference: name: qui aliquip do developerMetadata: - location: dimensionRange: dimension: ROWS endIndex: -44951718 sheetId: 97483151 startIndex: -43420977 locationType: SHEET sheetId: -29429824 spreadsheet: false metadataId: 65352796 metadataKey: officia metadataValue: nostrud Ut visibility: PROJECT hiddenByFilter: false hiddenByUser: true pixelSize: 38087355 startColumn: 99299073 startRow: 16142545 developerMetadata: - location: dimensionRange: dimension: COLUMNS endIndex: -14106255 sheetId: 18692779 startIndex: 39297711 locationType: DEVELOPER_METADATA_LOCATION_TYPE_UNSPECIFIED sheetId: -96663531 spreadsheet: false metadataId: 26526962 metadataKey: labore dolor aliqua metadataValue: Excepteur consequat visibility: DOCUMENT filterViews: - criteria: laborum_5: condition: type: DATE_BETWEEN values: - relativeDate: TODAY userEnteredValue: consequat Excepteur laboris minim sed hiddenValues: - exerc visibleBackgroundColor: alpha: 26587630.051572695 blue: -46399136.4885628 green: -40440691.767909564 red: 30692845.781372428 visibleBackgroundColorStyle: rgbColor: alpha: -36273486.55584348 blue: 96392363.6100077 green: -62560571.41801041 red: -65597002.27855321 themeColor: LINK visibleForegroundColor: alpha: 29241469.066167578 blue: -30192963.9297359 green: 70180835.40378043 red: -83730703.47639975 visibleForegroundColorStyle: rgbColor: alpha: -23490395.416582018 blue: -51160629.083008 green: 13647481.536380693 red: -99523149.13434108 themeColor: ACCENT2 quis_c0: condition: type: TEXT_IS_URL values: - relativeDate: PAST_YEAR userEnteredValue: in hiddenValues: - in visibleBackgroundColor: alpha: 14028520.369448707 blue: -2007903.5193176717 green: 55691231.64105004 red: 49469530.178036004 visibleBackgroundColorStyle: rgbColor: alpha: 84001328.06996918 blue: -50333507.62282995 green: -64079464.913153216 red: 44416770.20208529 themeColor: ACCENT3 visibleForegroundColor: alpha: -12731127.634207606 blue: 41996697.90869641 green: -46579626.66862479 red: -71150296.35351284 visibleForegroundColorStyle: rgbColor: alpha: -18641126.628708497 blue: -35774654.21024848 green: -72763786.36671 red: 99095348.24340591 themeColor: LINK filterSpecs: - columnIndex: -8690044 dataSourceColumnReference: name: proident aliquip filterCriteria: condition: type: NOT_BLANK values: - relativeDate: TOMORROW userEnteredValue: officia nostrud in hiddenValues: - proident eiusmod non consectetur visibleBackgroundColor: alpha: -7995442.001775116 blue: -74968499.54806182 green: -79772789.4567942 red: -45369903.57868702 visibleBackgroundColorStyle: rgbColor: alpha: -9338751.285100594 blue: -2922536.209486857 green: -82581075.82193448 red: 39414349.65034157 themeColor: ACCENT1 visibleForegroundColor: alpha: 29826077.416628256 blue: 48191500.28130442 green: -56553429.51918874 red: 44218276.386606455 visibleForegroundColorStyle: rgbColor: alpha: -14641434.094726428 blue: 10963555.996505782 green: 17382951.727717713 red: -50522176.394069575 themeColor: ACCENT1 filterViewId: 35977611 namedRangeId: veniam sunt Excepteur anim consectetur range: endColumnIndex: -19775724 endRowIndex: 75054710 sheetId: -28503853 startColumnIndex: 19549933 startRowIndex: 1397688 sortSpecs: - backgroundColor: alpha: 22422725.21389985 blue: -88600267.43612233 green: -48137071.12259924 red: 72603692.21021366 backgroundColorStyle: rgbColor: alpha: 47557536.703449786 blue: 29954654.171645597 green: 13074032.706790864 red: 13567227.501118809 themeColor: ACCENT4 dataSourceColumnReference: name: officia Duis dimensionIndex: 64535392 foregroundColor: alpha: 9223315.989956275 blue: 43453995.384192556 green: 66577650.54409447 red: 72655687.62276167 foregroundColorStyle: rgbColor: alpha: 70826650.4811235 blue: 1195344.3883961737 green: 86670478.51519728 red: 1106016.8049707562 themeColor: BACKGROUND sortOrder: ASCENDING title: Excepteur cupidatat adipisicing ad nostrud merges: - endColumnIndex: -65646743 endRowIndex: 2370620 sheetId: 54682586 startColumnIndex: -56370214 startRowIndex: -84051334 properties: dataSourceSheetProperties: columns: - formula: sed anim Ex reference: name: non cillum in fugiat dataExecutionStatus: errorCode: TIMED_OUT errorMessage: deserunt enim pariatur sunt lastRefreshTime: ea state: NOT_STARTED dataSourceId: anim in amet cupidatat gridProperties: columnCount: -71712723 columnGroupControlAfter: true frozenColumnCount: -90124383 frozenRowCount: 74050606 hideGridlines: true rowCount: -37569744 rowGroupControlAfter: true hidden: false index: -42379632 rightToLeft: true sheetId: 88867496 sheetType: SHEET_TYPE_UNSPECIFIED tabColor: alpha: 34340021.79368842 blue: -35647903.855287574 green: 27350831.725596964 red: -29831687.798329383 tabColorStyle: rgbColor: alpha: -21095073.74059789 blue: -6546349.867675126 green: 65316494.2932547 red: 5366328.794987932 themeColor: ACCENT2 title: Excepteur pariatu protectedRanges: - description: Ut est consectetur velit in editors: domainUsersCanEdit: true groups: - velit id adipisicing users: - voluptate velit anim esse namedRangeId: ad anim ex fugiat commodo protectedRangeId: -59769653 range: endColumnIndex: 27053664 endRowIndex: 84919062 sheetId: -54029466 startColumnIndex: -17405602 startRowIndex: -92003717 requestingUserCanEdit: false unprotectedRanges: - endColumnIndex: -28613412 endRowIndex: 89307655 sheetId: 87556321 startColumnIndex: -60327341 startRowIndex: -12180076 warningOnly: false rowGroups: - collapsed: false depth: -72387551 range: dimension: COLUMNS endIndex: -78794036 sheetId: -69497049 startIndex: 61085100 slicers: - position: newSheet: false overlayPosition: anchorCell: columnIndex: 47149370 rowIndex: 27022228 sheetId: -92084491 heightPixels: 37774180 offsetXPixels: 98758649 offsetYPixels: 63656157 widthPixels: -37102689 sheetId: 31674633 slicerId: -99019864 spec: applyToPivotTables: false backgroundColor: alpha: 76611683.93311697 blue: -95457599.27911983 green: -80674015.14034791 red: 38384841.20268336 backgroundColorStyle: rgbColor: alpha: 45268035.116818696 blue: 85089391.7779136 green: -49914707.53847343 red: 12913778.751262933 themeColor: ACCENT1 columnIndex: -29725812 dataRange: endColumnIndex: 82140662 endRowIndex: -70575595 sheetId: 82466991 startColumnIndex: 94185441 startRowIndex: 7912425 filterCriteria: condition: type: TEXT_NOT_CONTAINS values: - relativeDate: RELATIVE_DATE_UNSPECIFIED userEnteredValue: in consectetur Duis Excepteur hiddenValues: - quis in ips visibleBackgroundColor: alpha: 67346716.83941466 blue: 7010293.065400258 green: -54823332.83422176 red: 43970874.32053563 visibleBackgroundColorStyle: rgbColor: alpha: 5612184.912998065 blue: 76030046.26226127 green: -34098010.12699867 red: -36420734.9640632 themeColor: ACCENT4 visibleForegroundColor: alpha: -66559976.35060133 blue: -87754127.50317453 green: 34873691.555959314 red: 62645348.243606985 visibleForegroundColorStyle: rgbColor: alpha: 74678402.3235969 blue: -59956351.77014305 green: 85501973.05161777 red: 62643824.40413025 themeColor: ACCENT3 horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED textFormat: bold: false fontFamily: nisi dolor commodo fontSize: 75678415 foregroundColor: alpha: 66042584.444209546 blue: -55648158.88610921 green: -9096621.078611419 red: -69355322.31732976 foregroundColorStyle: rgbColor: alpha: -55416053.26437509 blue: 84142785.79442164 green: 44930095.29360053 red: 94764366.94169018 themeColor: BACKGROUND italic: true link: uri: pariatur laboru strikethrough: true underline: true title: exercitation Lorem spreadsheetId: tempor qui laboris labore spreadsheetUrl: nisi ipsum eiusmod aliquip SpreadsheetsPostResponseExample: summary: Successful 200 response value: dataSourceSchedules: - dailySchedule: startTime: hours: -43266123 minutes: -65732454 nanos: -97450442 seconds: -41631562 enabled: false monthlySchedule: daysOfMonth: - 57977061 startTime: hours: 3999156 minutes: 89598075 nanos: -62818558 seconds: -7104959 nextRun: endTime: ut tempor laborum startTime: veniam do nisi in refreshScope: DATA_SOURCE_REFRESH_SCOPE_UNSPECIFIED weeklySchedule: daysOfWeek: - SUNDAY startTime: hours: -98244095 minutes: -4153534 nanos: -31897594 seconds: 83370707 dataSources: - calculatedColumns: - formula: nisi sunt reference: name: qui reprehenderit dataSourceId: sed dolore incididunt sheetId: -56661553 spec: bigQuery: projectId: aliqua velit querySpec: rawQuery: deserunt tableSpec: datasetId: culpa magna aliquip Duis tableId: occaecat deserunt tableProjectId: officia Duis ex in labore parameters: - name: Ut ad ipsum namedRangeId: magna range: endColumnIndex: 31885169 endRowIndex: -4040036 sheetId: -19707509 startColumnIndex: 5926358 startRowIndex: -24382075 developerMetadata: - location: dimensionRange: dimension: DIMENSION_UNSPECIFIED endIndex: 83564351 sheetId: 20161961 startIndex: -12299871 locationType: SHEET sheetId: 19412940 spreadsheet: true metadataId: -26483526 metadataKey: ad consectetur nulla metadataValue: cillum proident qui occaecat visibility: DEVELOPER_METADATA_VISIBILITY_UNSPECIFIED namedRanges: - name: reprehenderit sed est aliquip Ut namedRangeId: amet dolore range: endColumnIndex: -29487355 endRowIndex: 28833316 sheetId: 2554752 startColumnIndex: 75795510 startRowIndex: -72526094 properties: autoRecalc: ON_CHANGE defaultFormat: backgroundColor: alpha: -22421824.691030562 blue: 90013088.65213957 green: 24974090.92647165 red: 88011821.65105522 backgroundColorStyle: rgbColor: alpha: 51433993.220397204 blue: -34599856.361609936 green: 23834312.320355803 red: 97183505.05098599 themeColor: LINK borders: bottom: color: alpha: -46461682.392919324 blue: -39600858.47643326 green: -12885677.880025923 red: 20395982.76429157 colorStyle: rgbColor: alpha: -67713553.05349366 blue: 3075128.750359297 green: 89745091.64237362 red: 65057007.37397438 themeColor: ACCENT6 style: DOUBLE width: -83132355 left: color: alpha: 7529742.843985558 blue: 11523153.264217004 green: -83789517.69852239 red: -52273453.1840499 colorStyle: rgbColor: alpha: 23413126.31362365 blue: -89783978.4406965 green: 7478744.238987163 red: 91268984.47651386 themeColor: ACCENT4 style: SOLID_THICK width: 9587363 right: color: alpha: -68478561.90889128 blue: 86635613.318176 green: -4182434.2241241187 red: -37761525.154127404 colorStyle: rgbColor: alpha: 7564148.4709581435 blue: 46817587.00993326 green: 94604103.88139793 red: -39300118.4906812 themeColor: ACCENT4 style: STYLE_UNSPECIFIED width: -68379222 top: color: alpha: -35207179.004029274 blue: 75124743.01189193 green: -79174603.1645633 red: 69525380.65581709 colorStyle: rgbColor: alpha: 13971651.645456567 blue: 79134644.33448789 green: -8214105.3416944295 red: -55694700.72815168 themeColor: ACCENT6 style: DASHED width: -47592569 horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED hyperlinkDisplayType: HYPERLINK_DISPLAY_TYPE_UNSPECIFIED numberFormat: pattern: mollit magna ea type: TEXT padding: bottom: 3638265 left: -10421780 right: 70673792 top: 74778750 textDirection: TEXT_DIRECTION_UNSPECIFIED textFormat: bold: false fontFamily: reprehenderit cupidatat veniam Lorem do fontSize: -28113564 foregroundColor: alpha: 22027996.78423269 blue: -28716622.048885256 green: -19625308.709902182 red: -94408017.34685133 foregroundColorStyle: rgbColor: alpha: 71419372.2264759 blue: -82168243.51208629 green: -14187866.496848583 red: -65181659.34325215 themeColor: ACCENT6 italic: true link: uri: ullamco elit strikethrough: true underline: false textRotation: angle: -56348588 vertical: true verticalAlignment: VERTICAL_ALIGN_UNSPECIFIED wrapStrategy: WRAP iterativeCalculationSettings: convergenceThreshold: -28283351.56397684 maxIterations: -12335234 locale: exercitation cillum spreadsheetTheme: primaryFontFamily: ut themeColors: - color: rgbColor: alpha: -31710249.01160507 blue: 26026986.419538647 green: -43409395.90685053 red: 92736615.8684296 themeColor: THEME_COLOR_TYPE_UNSPECIFIED colorType: ACCENT5 timeZone: dolore laborum title: pariatur consectetur enim sheets: - bandedRanges: - bandedRangeId: 43139549 columnProperties: firstBandColor: alpha: -4656388.077727273 blue: -96613087.81631872 green: 4264693.804137036 red: 15111703.323823318 firstBandColorStyle: rgbColor: alpha: 99618076.90212369 blue: -49006881.50795429 green: 40319994.66356942 red: 65200542.683243126 themeColor: ACCENT6 footerColor: alpha: -33490013.551426753 blue: 32916340.128778905 green: 45262863.20501071 red: 19556816.571504414 footerColorStyle: rgbColor: alpha: -12068084.107148275 blue: -67832617.26921017 green: 22561836.25395614 red: -12142418.295326784 themeColor: LINK headerColor: alpha: -92687886.79756828 blue: -43280044.32060295 green: -23303373.12507233 red: -780389.2770115584 headerColorStyle: rgbColor: alpha: 8336086.317506105 blue: -49729232.317501724 green: -93612445.38047923 red: 31375535.857318223 themeColor: LINK secondBandColor: alpha: 99568934.50178161 blue: -91350629.81953612 green: -92964471.4278552 red: 37608193.63273704 secondBandColorStyle: rgbColor: alpha: 8970943.769093469 blue: -88201063.90158297 green: -13429353.495263636 red: 53969915.37868002 themeColor: ACCENT5 range: endColumnIndex: 87619727 endRowIndex: 20345160 sheetId: -65789249 startColumnIndex: -45948999 startRowIndex: -91737266 rowProperties: firstBandColor: alpha: 72010730.72591546 blue: 36846314.31772801 green: -96974888.03108025 red: 15421378.969790965 firstBandColorStyle: rgbColor: alpha: -22875637.799782306 blue: -73894833.409663 green: 91215030.05576509 red: -50423962.36714643 themeColor: ACCENT5 footerColor: alpha: 29168021.166943878 blue: -73831066.69786125 green: -89420542.5069429 red: 62593032.88934922 footerColorStyle: rgbColor: alpha: 43818785.12623486 blue: -45213359.909048915 green: 82881046.86449617 red: 72695904.25279978 themeColor: THEME_COLOR_TYPE_UNSPECIFIED headerColor: alpha: -60297724.716774106 blue: -89358737.19895242 green: 9563382.870461494 red: -7656815.10466139 headerColorStyle: rgbColor: alpha: -2842718.0475878417 blue: -2902275.1736353934 green: 9050794.865266055 red: -56674654.576242566 themeColor: ACCENT1 secondBandColor: alpha: -58009568.66879341 blue: 58834392.95665088 green: 55256317.50557256 red: 75550157.79389471 secondBandColorStyle: rgbColor: alpha: -30634601.267103404 blue: 55532206.36613929 green: -36562285.06917545 red: 13711659.906762823 themeColor: THEME_COLOR_TYPE_UNSPECIFIED basicFilter: criteria: doloreb_: condition: type: DATE_ON_OR_BEFORE values: - relativeDate: YESTERDAY userEnteredValue: id minim nisi elit hiddenValues: - ullamco nisi Excepteur anim visibleBackgroundColor: alpha: -81353007.03492567 blue: -38141297.090509996 green: 69154203.18882197 red: 36035439.413398474 visibleBackgroundColorStyle: rgbColor: alpha: 91173489.24772286 blue: -89346769.05947395 green: -19404805.972366154 red: -80230975.30043045 themeColor: ACCENT1 visibleForegroundColor: alpha: 57217398.74284211 blue: 74154308.04036638 green: 73016659.72982222 red: -22213180.456824318 visibleForegroundColorStyle: rgbColor: alpha: -43145436.167499796 blue: 74653537.38607502 green: 3025279.31792067 red: 79218590.71985793 themeColor: BACKGROUND filterSpecs: - columnIndex: 78389632 dataSourceColumnReference: name: in incididunt fugiat nostrud pariatur filterCriteria: condition: type: DATE_NOT_EQ values: - relativeDate: YESTERDAY userEnteredValue: laborum consectetur sit minim hiddenValues: - nulla pariatur qui ipsum visibleBackgroundColor: alpha: -91665830.15722671 blue: -99904560.26291601 green: 65347039.68829051 red: 63151914.08808029 visibleBackgroundColorStyle: rgbColor: alpha: 499116.31694211066 blue: 68604299.30482864 green: 98759492.96351925 red: 14867204.90616484 themeColor: BACKGROUND visibleForegroundColor: alpha: 50134573.64080387 blue: -87982539.28045554 green: -54603731.334672555 red: -64824031.22209801 visibleForegroundColorStyle: rgbColor: alpha: -73656646.24134824 blue: 2700641.501126051 green: 33008212.7396079 red: 16719230.552707165 themeColor: ACCENT4 range: endColumnIndex: -43877930 endRowIndex: -8809700 sheetId: 64318214 startColumnIndex: -7032303 startRowIndex: 39815904 sortSpecs: - backgroundColor: alpha: -28651638.96061036 blue: 45673855.84156752 green: 86189187.70006451 red: -74364203.78529602 backgroundColorStyle: rgbColor: alpha: -3168584.4773793966 blue: -56626033.75210678 green: 72484110.2359632 red: 692312.8745354861 themeColor: ACCENT1 dataSourceColumnReference: name: veniam sunt velit culpa dolor dimensionIndex: 11289450 foregroundColor: alpha: 96699958.53379482 blue: 76576567.97638994 green: -97320362.404836 red: -16790174.071512222 foregroundColorStyle: rgbColor: alpha: 67120313.76985142 blue: -79175402.66751315 green: 40644773.578526884 red: 84483907.11570269 themeColor: TEXT sortOrder: DESCENDING charts: - border: color: alpha: -6806672.500234127 blue: -59007826.50270249 green: 10160147.46663165 red: -20321148.950214908 colorStyle: rgbColor: alpha: 91689568.81668949 blue: 2961191.4176778793 green: 35578319.610948086 red: -5716472.749471709 themeColor: ACCENT4 chartId: -32308995 position: newSheet: true overlayPosition: anchorCell: columnIndex: -17264157 rowIndex: 17971192 sheetId: -70644812 heightPixels: 68423649 offsetXPixels: -94619858 offsetYPixels: -40214573 widthPixels: 77699500 sheetId: 63263059 spec: altText: deserunt proident nisi velit backgroundColor: alpha: -74849362.71468747 blue: -33495356.529037237 green: -62285800.332203634 red: -71890137.92690893 backgroundColorStyle: rgbColor: alpha: -79372460.55857861 blue: -95212341.51298112 green: 89931702.92362115 red: -20165241.53386876 themeColor: THEME_COLOR_TYPE_UNSPECIFIED basicChart: axis: - format: bold: false fontFamily: minim ea deserunt sed fontSize: 97507116 foregroundColor: alpha: -38999236.44546352 blue: 40553042.374115616 green: -77531909.59799339 red: 79603930.29403087 foregroundColorStyle: rgbColor: alpha: 32307950.109844625 blue: -67183178.37236509 green: -71081574.55853146 red: 98483083.22794133 themeColor: ACCENT2 italic: false link: uri: quis veniam dolor voluptate strikethrough: false underline: true position: BOTTOM_AXIS title: cupidatat esse nisi adipisicing titleTextPosition: horizontalAlignment: RIGHT viewWindowOptions: viewWindowMax: 72069702.17549679 viewWindowMin: -22257002.843773097 viewWindowMode: PRETTY chartType: STEPPED_AREA compareMode: DATUM domains: - domain: aggregateType: SUM columnReference: name: consectetur deserunt mollit groupRule: dateTimeRule: type: YEAR_MONTH histogramRule: intervalSize: -18521355.740935206 maxValue: 90158102.40211827 minValue: 87397122.90272304 sourceRange: sources: - endColumnIndex: -22668278 endRowIndex: 36123013 sheetId: 11952739 startColumnIndex: -32135218 startRowIndex: 66789128 reversed: true headerCount: 97182168 interpolateNulls: true legendPosition: BOTTOM_LEGEND lineSmoothing: true series: - color: alpha: 55722752.437729895 blue: 64477580.13592622 green: 71676688.93817422 red: -38156417.06576298 colorStyle: rgbColor: alpha: 28247526.09445946 blue: 69221968.87022421 green: 61917915.17307904 red: -17721228.542360783 themeColor: BACKGROUND dataLabel: customLabelData: aggregateType: MEDIAN columnReference: name: occaecat consequat quis groupRule: dateTimeRule: type: DAY_OF_WEEK histogramRule: intervalSize: -3857463.495657593 maxValue: -42586732.40078985 minValue: 37051651.2186895 sourceRange: sources: - endColumnIndex: -49248867 endRowIndex: -10371941 sheetId: 401546 startColumnIndex: -58085589 startRowIndex: -90982621 placement: BELOW textFormat: bold: false fontFamily: exercita fontSize: 81004203 foregroundColor: alpha: 41517003.63395324 blue: -70330186.86511676 green: -40534404.20106273 red: -31969992.615171924 foregroundColorStyle: rgbColor: alpha: 17775650.16171652 blue: -13772557.713170916 green: 27090283.845191807 red: -90047236.70280597 themeColor: ACCENT5 italic: false link: uri: in incididunt strikethrough: true underline: false type: NONE lineStyle: type: SOLID width: -84876836 pointStyle: shape: DIAMOND size: 64452898.462776005 series: aggregateType: SUM columnReference: name: magna groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: -70261025.00131163 maxValue: -30011278.55406885 minValue: 81851518.34003606 sourceRange: sources: - endColumnIndex: 44015002 endRowIndex: -98733261 sheetId: -35067209 startColumnIndex: 86137084 startRowIndex: 3077548 styleOverrides: - color: alpha: -69183513.89384103 blue: 19485706.81396036 green: 65328186.50077203 red: 12493290.07813476 colorStyle: rgbColor: alpha: -64008295.12294073 blue: -94462392.22749741 green: 88044885.24860078 red: -8836624.99906604 themeColor: ACCENT4 index: 7171408 pointStyle: shape: STAR size: -3552381.8585395366 targetAxis: BOTTOM_AXIS type: BASIC_CHART_TYPE_UNSPECIFIED stackedType: STACKED threeDimensional: true totalDataLabel: customLabelData: aggregateType: AVERAGE columnReference: name: elit ut Duis dolor groupRule: dateTimeRule: type: YEAR histogramRule: intervalSize: -5661235.146948233 maxValue: 77926629.53448138 minValue: 95577122.05968186 sourceRange: sources: - endColumnIndex: -76126877 endRowIndex: 42365670 sheetId: -76812357 startColumnIndex: 10226550 startRowIndex: 78881618 placement: RIGHT textFormat: bold: true fontFamily: et quis fontSize: 98579648 foregroundColor: alpha: 61002974.30631539 blue: 80971733.87236923 green: 68549056.98709989 red: 15343737.815225646 foregroundColorStyle: rgbColor: alpha: -91715833.91394736 blue: -56802867.72936918 green: -87612035.17797464 red: -94011753.84827228 themeColor: ACCENT5 italic: true link: uri: nulla id strikethrough: false underline: false type: CUSTOM bubbleChart: bubbleBorderColor: alpha: -84379523.96780863 blue: -22016451.819793478 green: 75200774.78312755 red: -91103521.06502111 bubbleBorderColorStyle: rgbColor: alpha: 42567298.29471606 blue: 53253070.63489702 green: 83815850.61622888 red: 53174334.26933822 themeColor: ACCENT4 bubbleLabels: aggregateType: SUM columnReference: name: commodo laboris consequat occaecat groupRule: dateTimeRule: type: YEAR_QUARTER histogramRule: intervalSize: -47029901.33041931 maxValue: -59720934.285820305 minValue: 72796472.10031083 sourceRange: sources: - endColumnIndex: -55006695 endRowIndex: -93033674 sheetId: 76677429 startColumnIndex: 23516908 startRowIndex: 36856856 bubbleMaxRadiusSize: 41144622 bubbleMinRadiusSize: -10010743 bubbleOpacity: 27400130.72438918 bubbleSizes: aggregateType: SUM columnReference: name: fugiat Except groupRule: dateTimeRule: type: DAY_OF_MONTH histogramRule: intervalSize: 8578270.545850858 maxValue: 64391065.68835834 minValue: -39435110.542253636 sourceRange: sources: - endColumnIndex: 62598857 endRowIndex: -72355329 sheetId: -45696083 startColumnIndex: 94622500 startRowIndex: 92634679 bubbleTextStyle: bold: true fontFamily: nulla commodo dolor fontSize: -5686162 foregroundColor: alpha: -794699.0987645686 blue: -54637342.35554334 green: -36289015.903600894 red: 97876618.28661105 foregroundColorStyle: rgbColor: alpha: 92888781.71785215 blue: 39613389.316816896 green: 52472776.62823087 red: -34529769.67181028 themeColor: LINK italic: true link: uri: nisi eu aliquip strikethrough: false underline: false domain: aggregateType: SUM columnReference: name: tempor cillum qui in groupRule: dateTimeRule: type: DAY_MONTH histogramRule: intervalSize: -80130275.36145376 maxValue: -94810329.47692616 minValue: 9830111.758620098 sourceRange: sources: - endColumnIndex: 25769079 endRowIndex: 48682569 sheetId: 30218238 startColumnIndex: -91964628 startRowIndex: 42746181 groupIds: aggregateType: AVERAGE columnReference: name: est anim do voluptate groupRule: dateTimeRule: type: DAY_OF_YEAR histogramRule: intervalSize: 26899146.655878693 maxValue: -98921533.26900548 minValue: -47194232.78588408 sourceRange: sources: - endColumnIndex: 21684096 endRowIndex: 25205083 sheetId: -44306216 startColumnIndex: 97302956 startRowIndex: 14760080 legendPosition: RIGHT_LEGEND series: aggregateType: SUM columnReference: name: labore laboris in culpa groupRule: dateTimeRule: type: SECOND histogramRule: intervalSize: -75300936.9657991 maxValue: -30478658.85255146 minValue: 13559461.281764477 sourceRange: sources: - endColumnIndex: 6043259 endRowIndex: 93573702 sheetId: -97142515 startColumnIndex: 49623823 startRowIndex: 76944482 candlestickChart: data: - closeSeries: data: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: qui id groupRule: dateTimeRule: type: DAY_OF_MONTH histogramRule: intervalSize: 41125538.61625695 maxValue: 97994679.49475247 minValue: 23618954.14523758 sourceRange: sources: - endColumnIndex: 60932056 endRowIndex: 55451137 sheetId: 23662228 startColumnIndex: -89409748 startRowIndex: -88671225 highSeries: data: aggregateType: SUM columnReference: name: incididunt groupRule: dateTimeRule: type: DAY_OF_YEAR histogramRule: intervalSize: -91812004.1593093 maxValue: 16850134.692005485 minValue: 66295928.31552905 sourceRange: sources: - endColumnIndex: 52635003 endRowIndex: 98820817 sheetId: -80483510 startColumnIndex: 43736501 startRowIndex: 47086604 lowSeries: data: aggregateType: MIN columnReference: name: velit sed cupidatat groupRule: dateTimeRule: type: YEAR_MONTH_DAY histogramRule: intervalSize: 66473933.83846918 maxValue: 47613686.91368076 minValue: -28069209.676522672 sourceRange: sources: - endColumnIndex: 21335855 endRowIndex: 11458701 sheetId: 95775715 startColumnIndex: 56326513 startRowIndex: 57674274 openSeries: data: aggregateType: AVERAGE columnReference: name: nostrud amet tempor dolor groupRule: dateTimeRule: type: DAY_OF_WEEK histogramRule: intervalSize: -37794263.73271777 maxValue: -4646182.705438033 minValue: -65935054.51988828 sourceRange: sources: - endColumnIndex: 54606199 endRowIndex: -76961833 sheetId: -69341559 startColumnIndex: 49818022 startRowIndex: -46883787 domain: data: aggregateType: COUNT columnReference: name: Ut cupidatat Duis groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: 6946669.7408254 maxValue: 83943171.96904132 minValue: 93424064.16476154 sourceRange: sources: - endColumnIndex: 43409596 endRowIndex: 25613295 sheetId: 24793983 startColumnIndex: -86096266 startRowIndex: 27520739 reversed: true dataSourceChartProperties: dataExecutionStatus: errorCode: DATA_EXECUTION_ERROR_CODE_UNSPECIFIED errorMessage: aliquip consectetur anim lastRefreshTime: al state: RUNNING dataSourceId: eiusmod ut consequat filterSpecs: - columnIndex: 90546677 dataSourceColumnReference: name: aute dolor laboris filterCriteria: condition: type: NUMBER_GREATER values: - relativeDate: RELATIVE_DATE_UNSPECIFIED userEnteredValue: ea c hiddenValues: - Duis proident do et visibleBackgroundColor: alpha: -36283526.30272102 blue: -1345286.881266445 green: -12026794.19154644 red: -15180752.626320705 visibleBackgroundColorStyle: rgbColor: alpha: 45116185.141209155 blue: 45489662.91515803 green: 54509241.505173504 red: -687712.9555583447 themeColor: ACCENT3 visibleForegroundColor: alpha: -28565684.45552306 blue: 81054396.77549508 green: 80240546.97687149 red: 34993376.16041127 visibleForegroundColorStyle: rgbColor: alpha: -66222367.96892498 blue: 48585075.55200243 green: -5020969.710157797 red: -46324783.9773818 themeColor: LINK fontName: do hiddenDimensionStrategy: CHART_HIDDEN_DIMENSION_STRATEGY_UNSPECIFIED histogramChart: bucketSize: -84607370.87032846 legendPosition: RIGHT_LEGEND outlierPercentile: -55914163.013332054 series: - barColor: alpha: 55040259.75877115 blue: 69737257.65370405 green: 35399131.94407421 red: 58901591.43528417 barColorStyle: rgbColor: alpha: -42943196.55535497 blue: 67372783.7021254 green: 27349397.156058505 red: -94587978.25310077 themeColor: ACCENT5 data: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: consectetur amet groupRule: dateTimeRule: type: YEAR_MONTH histogramRule: intervalSize: -30788024.641912863 maxValue: -24732732.354569674 minValue: 4681068.022945747 sourceRange: sources: - endColumnIndex: 6881824 endRowIndex: 59193013 sheetId: -78991757 startColumnIndex: -56953158 startRowIndex: -24851839 showItemDividers: true maximized: false orgChart: labels: aggregateType: MEDIAN columnReference: name: dolore sunt groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: 87979300.06759924 maxValue: -69738481.45343556 minValue: -55802864.81927726 sourceRange: sources: - endColumnIndex: 29992841 endRowIndex: -43142118 sheetId: -28375698 startColumnIndex: -72923293 startRowIndex: -33095858 nodeColor: alpha: 63129191.538889855 blue: -35920096.32508599 green: 84152512.73405561 red: -11451214.36287035 nodeColorStyle: rgbColor: alpha: -97554231.51759884 blue: -29398256.39035356 green: 97755801.09825203 red: 34052276.84180114 themeColor: ACCENT3 nodeSize: LARGE parentLabels: aggregateType: MEDIAN columnReference: name: enim est nostrud groupRule: dateTimeRule: type: QUARTER histogramRule: intervalSize: 88870422.46986204 maxValue: 71468798.485621 minValue: -57852079.24046984 sourceRange: sources: - endColumnIndex: 17055627 endRowIndex: -57134547 sheetId: 57015075 startColumnIndex: 99690712 startRowIndex: -33788216 selectedNodeColor: alpha: -29455482.56013368 blue: -22382852.613567516 green: 8850774.5190427 red: 61466971.9064942 selectedNodeColorStyle: rgbColor: alpha: -75343847.9287142 blue: -8954102.548794523 green: -34938585.086757176 red: -19011933.398021072 themeColor: ACCENT3 tooltips: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: officia proident et Ut groupRule: dateTimeRule: type: QUARTER histogramRule: intervalSize: -94682800.43479304 maxValue: 46663800.77882236 minValue: -46526138.67756505 sourceRange: sources: - endColumnIndex: 48665731 endRowIndex: 65106729 sheetId: -86829639 startColumnIndex: -26806983 startRowIndex: -14573074 pieChart: domain: aggregateType: MAX columnReference: name: amet sunt ut groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: 67702553.569311 maxValue: -91163548.4262694 minValue: 33648414.01718235 sourceRange: sources: - endColumnIndex: 51976057 endRowIndex: 19254915 sheetId: 97191751 startColumnIndex: -18454783 startRowIndex: 33933093 legendPosition: TOP_LEGEND pieHole: -30263554.3671816 series: aggregateType: MIN columnReference: name: 'Excepteur minim ' groupRule: dateTimeRule: type: DAY_OF_MONTH histogramRule: intervalSize: -50713394.28357296 maxValue: -39606797.85202501 minValue: -11707961.734067008 sourceRange: sources: - endColumnIndex: -35582263 endRowIndex: -6114928 sheetId: 32942167 startColumnIndex: -61891345 startRowIndex: 42817793 threeDimensional: true scorecardChart: aggregateType: SUM baselineValueData: aggregateType: COUNT columnReference: name: est dol groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: -84704547.41613685 maxValue: -60029874.82360034 minValue: -85835166.9727921 sourceRange: sources: - endColumnIndex: 30967618 endRowIndex: 43348963 sheetId: 8722686 startColumnIndex: 19580190 startRowIndex: 19736578 baselineValueFormat: comparisonType: ABSOLUTE_DIFFERENCE description: exercitation ea negativeColor: alpha: 91192114.04931337 blue: 84467827.57099438 green: 13171452.879573137 red: 749918.1010410339 negativeColorStyle: rgbColor: alpha: 75322019.75364456 blue: -58339194.567314535 green: -2502404.4841341972 red: -49802225.98250763 themeColor: ACCENT4 position: horizontalAlignment: RIGHT positiveColor: alpha: 47683155.2413601 blue: -48258473.6134728 green: -79219630.28850487 red: 73135752.91313782 positiveColorStyle: rgbColor: alpha: -51811771.27181496 blue: -68431861.42049551 green: 3160043.800748363 red: -30675512.206715316 themeColor: ACCENT6 textFormat: bold: true fontFamily: aliquip culpa ut fontSize: 46805087 foregroundColor: alpha: -62924653.43184421 blue: 20943779.987398475 green: -17616130.36710909 red: -3220385.6507084817 foregroundColorStyle: rgbColor: alpha: 71779234.54589847 blue: 31177018.482527792 green: -49721861.10757293 red: 53599046.95277199 themeColor: THEME_COLOR_TYPE_UNSPECIFIED italic: false link: uri: ali strikethrough: false underline: false customFormatOptions: prefix: proident fugiat cons suffix: id aliqua keyValueData: aggregateType: COUNT columnReference: name: anim quis groupRule: dateTimeRule: type: CHART_DATE_TIME_RULE_TYPE_UNSPECIFIED histogramRule: intervalSize: 50402519.97843766 maxValue: 79630701.63392273 minValue: -72021083.7874685 sourceRange: sources: - endColumnIndex: 36860082 endRowIndex: -99459561 sheetId: -20414918 startColumnIndex: 65828 startRowIndex: 89009394 keyValueFormat: position: horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED textFormat: bold: false fontFamily: dolore fontSize: 58034460 foregroundColor: alpha: -89284965.90978332 blue: 87746540.76626381 green: 70359194.17464548 red: -15107432.094405621 foregroundColorStyle: rgbColor: alpha: 92624270.26585877 blue: 76408327.49501455 green: -26905631.18148361 red: -50289008.269739985 themeColor: ACCENT3 italic: false link: uri: velit mollit labore voluptate strikethrough: false underline: false numberFormatSource: CHART_NUMBER_FORMAT_SOURCE_UNDEFINED scaleFactor: -5359429.594352871 sortSpecs: - backgroundColor: alpha: -39930853.52848409 blue: 49080107.640369385 green: -8043835.338221729 red: -82586735.70494701 backgroundColorStyle: rgbColor: alpha: 91640696.8671143 blue: 26897959.743679762 green: -47879743.89375163 red: 93100312.27694032 themeColor: ACCENT6 dataSourceColumnReference: name: fugiat in Lorem occaecat dimensionIndex: -88840985 foregroundColor: alpha: -75857689.17465128 blue: 29787494.024613097 green: -84352396.56627944 red: -89930343.12985398 foregroundColorStyle: rgbColor: alpha: 34651137.4042612 blue: -930903.671572119 green: 1281339.8256363422 red: 3807791.214975789 themeColor: TEXT sortOrder: DESCENDING subtitle: magna velit subtitleTextFormat: bold: true fontFamily: veniam sit dolor aute fontSize: -45388084 foregroundColor: alpha: -52163753.82327558 blue: -10058404.811999738 green: -81965679.10336196 red: 32525819.75083393 foregroundColorStyle: rgbColor: alpha: 68603502.39416003 blue: -24690407.82358101 green: 61136506.37899554 red: 84241621.90678227 themeColor: ACCENT2 italic: true link: uri: tempor consectetur strikethrough: true underline: false subtitleTextPosition: horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED title: aliq titleTextFormat: bold: true fontFamily: non ullamco laboris fontSize: 73318110 foregroundColor: alpha: 30110225.536503732 blue: 38491927.4758943 green: 95094690.34997103 red: -51271996.931729145 foregroundColorStyle: rgbColor: alpha: -45286265.88793503 blue: 4883206.111387521 green: 39371167.88144383 red: -97257188.29635426 themeColor: TEXT italic: true link: uri: sed in strikethrough: true underline: true titleTextPosition: horizontalAlignment: LEFT treemapChart: colorData: aggregateType: MIN columnReference: name: est et groupRule: dateTimeRule: type: DAY_OF_YEAR histogramRule: intervalSize: -87370287.69161367 maxValue: 63694067.566963494 minValue: 65378205.29212701 sourceRange: sources: - endColumnIndex: -86832079 endRowIndex: 56378894 sheetId: 41285499 startColumnIndex: 19967088 startRowIndex: -83999042 colorScale: maxValueColor: alpha: 61322054.213629335 blue: -99123982.21827145 green: 80750735.98303589 red: 52098616.85426694 maxValueColorStyle: rgbColor: alpha: 43468410.23279801 blue: 38780059.91488701 green: 94937094.52421802 red: 5673434.052179977 themeColor: ACCENT1 midValueColor: alpha: -40893685.231944144 blue: 34050815.38297199 green: -95680096.3838476 red: -51629671.84386633 midValueColorStyle: rgbColor: alpha: 95447093.73078987 blue: -83367126.71878645 green: -58423988.25561426 red: 119657.44637519121 themeColor: ACCENT3 minValueColor: alpha: 54617885.253979415 blue: 17837783.893287316 green: 19904306.74798067 red: 61354369.22587797 minValueColorStyle: rgbColor: alpha: 47304735.15669909 blue: 82533081.71530113 green: -16093777.310446367 red: 64352116.3654238 themeColor: LINK noDataColor: alpha: 83331239.39278728 blue: -23262921.960855514 green: 65262497.94032225 red: 10048267.815709531 noDataColorStyle: rgbColor: alpha: -73179697.24343878 blue: -87528688.75965652 green: -59566691.700415395 red: -46601037.91076127 themeColor: ACCENT5 headerColor: alpha: 26994389.41218242 blue: 17093624.016673908 green: -61517646.16487689 red: 81670949.55874091 headerColorStyle: rgbColor: alpha: 2448766.8123804927 blue: -9175268.361172289 green: -69556456.81124017 red: 29179775.0721229 themeColor: ACCENT5 hideTooltips: true hintedLevels: 22972430 labels: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: tempor occa groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: -18477549.46402648 maxValue: 96611960.49759933 minValue: -64086187.69615084 sourceRange: sources: - endColumnIndex: -6007990 endRowIndex: 26304385 sheetId: 57396648 startColumnIndex: -89330295 startRowIndex: 15068429 levels: 51514916 maxValue: -24180101.332737938 minValue: 91137082.88042629 parentLabels: aggregateType: AVERAGE columnReference: name: enim ut dolore ullamco groupRule: dateTimeRule: type: YEAR histogramRule: intervalSize: 85969190.56500435 maxValue: 78955224.44921449 minValue: 79065578.98970333 sourceRange: sources: - endColumnIndex: -12853928 endRowIndex: -9638427 sheetId: -94740200 startColumnIndex: -47659673 startRowIndex: -10557056 sizeData: aggregateType: MEDIAN columnReference: name: ea elit eiusmod in groupRule: dateTimeRule: type: DAY_MONTH histogramRule: intervalSize: 43941521.313759446 maxValue: -4185782.450240046 minValue: 63424334.84402138 sourceRange: sources: - endColumnIndex: 2162496 endRowIndex: -81773720 sheetId: 62084011 startColumnIndex: 14629947 startRowIndex: -20515355 textFormat: bold: false fontFamily: ut sunt fontSize: -35201641 foregroundColor: alpha: -94278432.48688364 blue: -63588026.126646824 green: -20463414.283255383 red: 48171810.31969905 foregroundColorStyle: rgbColor: alpha: -41440237.64087299 blue: 85189591.08992493 green: -20000077.710908532 red: 15296983.031435743 themeColor: ACCENT1 italic: false link: uri: Lorem tempo strikethrough: true underline: true waterfallChart: connectorLineStyle: type: MEDIUM_DASHED width: 20320648 domain: data: aggregateType: MAX columnReference: name: deseru groupRule: dateTimeRule: type: SECOND histogramRule: intervalSize: 86760765.78905803 maxValue: 5305433.656956509 minValue: -75171557.66032615 sourceRange: sources: - endColumnIndex: 51877618 endRowIndex: 40320525 sheetId: 56359334 startColumnIndex: -5364191 startRowIndex: -62128845 reversed: true firstValueIsTotal: true hideConnectorLines: false series: - customSubtotals: - dataIsSubtotal: false label: ad sit consequat exercitation subtotalIndex: 21627474 data: aggregateType: MAX columnReference: name: fugiat groupRule: dateTimeRule: type: HOUR histogramRule: intervalSize: -86172941.4966451 maxValue: -30639866.86549498 minValue: -38795739.96309489 sourceRange: sources: - endColumnIndex: -27247840 endRowIndex: 36821519 sheetId: 77411222 startColumnIndex: 67875131 startRowIndex: 41098630 dataLabel: customLabelData: aggregateType: CHART_AGGREGATE_TYPE_UNSPECIFIED columnReference: name: Duis sunt groupRule: dateTimeRule: type: HOUR_MINUTE histogramRule: intervalSize: 19564201.770708054 maxValue: -16648343.70710811 minValue: 24281608.492682233 sourceRange: sources: - endColumnIndex: 29768862 endRowIndex: -37969810 sheetId: -44087576 startColumnIndex: 35789649 startRowIndex: 33693671 placement: CENTER textFormat: bold: false fontFamily: dolor quis fontSize: -40327592 foregroundColor: alpha: -92305964.46019806 blue: 41764178.692697406 green: 4341323.698441401 red: 94530488.20776337 foregroundColorStyle: rgbColor: alpha: -25797716.605266124 blue: -33603002.378911294 green: 50854133.31138152 red: 20121345.028139308 themeColor: LINK italic: true link: uri: nostrud strikethrough: true underline: true type: DATA_LABEL_TYPE_UNSPECIFIED hideTrailingSubtotal: true negativeColumnsStyle: color: alpha: -43139445.953923024 blue: 57711416.60128677 green: 40022444.19989854 red: 46273028.2518788 colorStyle: rgbColor: alpha: 57819589.90490046 blue: 92523222.32820892 green: 1131289.751197651 red: -38793367.02818557 themeColor: ACCENT4 label: reprehenderit eiusmod ex ut positiveColumnsStyle: color: alpha: -33684473.433511466 blue: 47421967.97235504 green: 61485931.39422411 red: 86964213.93143621 colorStyle: rgbColor: alpha: -91575506.62353389 blue: 48932954.386547506 green: 87439439.0248324 red: -92230734.4690994 themeColor: ACCENT4 label: ullamco quis ipsum qui subtotalColumnsStyle: color: alpha: 15682056.821042463 blue: -10132205.608376756 green: 63461460.64753729 red: 4771751.812094882 colorStyle: rgbColor: alpha: 92124248.13654628 blue: -51944586.383404315 green: 77172108.68174008 red: 22212738.56704147 themeColor: ACCENT2 label: nostrud dolore exercitation stackedType: WATERFALL_STACKED_TYPE_UNSPECIFIED totalDataLabel: customLabelData: aggregateType: MIN columnReference: name: aliqua voluptate amet no groupRule: dateTimeRule: type: MINUTE histogramRule: intervalSize: -13262467.511420175 maxValue: -40456078.32104912 minValue: -78313230.16158862 sourceRange: sources: - endColumnIndex: -79457181 endRowIndex: 15754126 sheetId: -67859274 startColumnIndex: 21830512 startRowIndex: 61101925 placement: LEFT textFormat: bold: false fontFamily: dolor fontSize: 73390401 foregroundColor: alpha: 84556313.01613939 blue: -42099750.8689013 green: 66684186.11342633 red: -5976877.88054651 foregroundColorStyle: rgbColor: alpha: -53960989.89776843 blue: -18442235.36373377 green: -55305533.3459997 red: -85411857.99655175 themeColor: ACCENT5 italic: false link: uri: ullamco dolor consectetur dolor strikethrough: true underline: false type: NONE columnGroups: - collapsed: true depth: 18374754 range: dimension: COLUMNS endIndex: 64005365 sheetId: -23981058 startIndex: -32057668 conditionalFormats: - booleanRule: condition: type: DATE_IS_VALID values: - relativeDate: PAST_YEAR userEnteredValue: nostrud sed occaecat format: backgroundColor: alpha: -33696071.38050195 blue: 15037619.425577775 green: 5387136.656987175 red: 23675355.83419293 backgroundColorStyle: rgbColor: alpha: -71452563.07219623 blue: -44775926.694522105 green: -74123652.41325536 red: 93407629.04067361 themeColor: ACCENT5 borders: bottom: color: alpha: 11713632.41502203 blue: 10612383.080546424 green: -10731370.42296195 red: 85766312.12907669 colorStyle: rgbColor: alpha: -65098789.404307134 blue: 87659842.74322918 green: 55812981.82029432 red: -69790904.97943807 themeColor: ACCENT4 style: DASHED width: 97871266 left: color: alpha: 20601198.911095336 blue: 29841479.57745242 green: 9092286.33986476 red: 40934378.194180965 colorStyle: rgbColor: alpha: -28138053.097323194 blue: -71672715.97565582 green: 25554084.377339065 red: -28855421.117769316 themeColor: ACCENT5 style: SOLID_THICK width: -69936940 right: color: alpha: 43989936.684245825 blue: 34329817.85070273 green: -97595714.19915205 red: 83020651.84483784 colorStyle: rgbColor: alpha: -69997276.90040971 blue: 36711991.453406304 green: -11937914.337869376 red: 1142599.3258616775 themeColor: ACCENT4 style: DOUBLE width: -63493261 top: color: alpha: 51867248.317953914 blue: 16173933.168091908 green: 30261508.495030716 red: 18478551.68641144 colorStyle: rgbColor: alpha: 8724031.323282585 blue: -56047238.0663839 green: 54871971.990857065 red: 74762519.29785281 themeColor: ACCENT1 style: DASHED width: 90290532 horizontalAlignment: LEFT hyperlinkDisplayType: LINKED numberFormat: pattern: Duis Lorem type: SCIENTIFIC padding: bottom: -45258047 left: 79501126 right: -88560792 top: 18715229 textDirection: LEFT_TO_RIGHT textFormat: bold: true fontFamily: laborum Lorem aute anim fontSize: -54695866 foregroundColor: alpha: -96715819.03853346 blue: 51262618.51935482 green: 47100542.15011147 red: 72744837.8586438 foregroundColorStyle: rgbColor: alpha: 5077246.416933745 blue: 94924185.87944713 green: -79044590.47108224 red: -48855092.19125601 themeColor: THEME_COLOR_TYPE_UNSPECIFIED italic: false link: uri: enim strikethrough: true underline: false textRotation: angle: 15272087 vertical: true verticalAlignment: BOTTOM wrapStrategy: WRAP_STRATEGY_UNSPECIFIED gradientRule: maxpoint: color: alpha: -44582503.76789694 blue: 84725439.36743551 green: -70597214.37194546 red: -73157025.11586607 colorStyle: rgbColor: alpha: 27296064.52745354 blue: 96221099.65039742 green: 41166760.45432234 red: -5116491.946219787 themeColor: ACCENT5 type: NUMBER value: aliquip esse exe midpoint: color: alpha: -49603195.91381302 blue: -32125023.898420498 green: -78188899.89219734 red: -57892755.206260785 colorStyle: rgbColor: alpha: -82792542.42318083 blue: -58087470.74477996 green: -82430007.61734551 red: -97877882.06454743 themeColor: BACKGROUND type: INTERPOLATION_POINT_TYPE_UNSPECIFIED value: dolor officia minpoint: color: alpha: -99629648.8521859 blue: 21301662.241155967 green: 64155347.91908571 red: -61658800.72800576 colorStyle: rgbColor: alpha: -41052112.6239356 blue: 95533010.45308128 green: -15564682.62086548 red: -21968581.755773365 themeColor: ACCENT1 type: PERCENTILE value: 'incididunt quis sint ' ranges: - endColumnIndex: 74659565 endRowIndex: -88771425 sheetId: 74303660 startColumnIndex: -21044297 startRowIndex: -18392721 data: - columnMetadata: - dataSourceColumnReference: name: labore reprehenderit culpa ad developerMetadata: - location: dimensionRange: dimension: DIMENSION_UNSPECIFIED endIndex: -87933162 sheetId: 47670262 startIndex: -47295049 locationType: SHEET sheetId: -24764939 spreadsheet: true metadataId: 76194147 metadataKey: consequat in metadataValue: mollit aliquip ad visibility: PROJECT hiddenByFilter: false hiddenByUser: true pixelSize: 88073830 rowData: - values: - dataSourceFormula: dataExecutionStatus: errorCode: DATA_EXECUTION_ERROR_CODE_UNSPECIFIED errorMessage: tempor dolore officia veniam lastRefreshTime: culpa proident dolor state: RUNNING dataSourceId: ipsum sit reprehenderit in dataSourceTable: columnSelectionType: SELECTED columns: - name: nisi in irure dataExecutionStatus: errorCode: CONCURRENT_QUERY errorMessage: nisi lastRefreshTime: irure reprehenderit state: RUNNING dataSourceId: veniam sunt aliquip sit filterSpecs: - columnIndex: -99579434 dataSourceColumnReference: name: sunt velit dolore magna filterCriteria: condition: type: NUMBER_BETWEEN values: - relativeDate: PAST_MONTH userEnteredValue: aliquip Duis hiddenValues: - deserunt sed visibleBackgroundColor: alpha: 55398560.65484887 blue: -34173072.032416485 green: -97673278.36096938 red: 67170455.83319402 visibleBackgroundColorStyle: rgbColor: alpha: -33292060.616818644 blue: 69704544.72822353 green: 63635833.17909995 red: 59984200.48429686 themeColor: ACCENT6 visibleForegroundColor: alpha: 27696114.333764046 blue: -58617972.98879745 green: 86459807.99078384 red: -28686752.592930764 visibleForegroundColorStyle: rgbColor: alpha: -60354093.75723786 blue: 73983121.74659374 green: -41247335.40207526 red: -92048880.71548022 themeColor: THEME_COLOR_TYPE_UNSPECIFIED rowLimit: 68396451 sortSpecs: - backgroundColor: alpha: 15017235.123969331 blue: -9033293.91994965 green: 77916247.7642985 red: -16689793.954687998 backgroundColorStyle: rgbColor: alpha: 69138969.14693648 blue: 86509695.95040658 green: -90003248.09829107 red: 9140276.879808739 themeColor: ACCENT4 dataSourceColumnReference: name: dolor voluptate dimensionIndex: 96521710 foregroundColor: alpha: -99202387.1050502 blue: -59191122.74421856 green: 73019757.29999626 red: -24441230.725797743 foregroundColorStyle: rgbColor: alpha: -10796247.60116689 blue: -11355089.479209468 green: -29729478.459359586 red: 49766593.97480062 themeColor: ACCENT4 sortOrder: ASCENDING dataValidation: condition: type: NUMBER_EQ values: - relativeDate: YESTERDAY userEnteredValue: et inputMessage: id Duis showCustomUi: true strict: false effectiveFormat: backgroundColor: alpha: -75165906.87639546 blue: 31437318.769427687 green: -25133229.664263457 red: -73598153.15391107 backgroundColorStyle: rgbColor: alpha: 73284162.59540677 blue: 80348581.55412823 green: 83304070.27409178 red: 28015158.098887578 themeColor: ACCENT4 borders: bottom: color: alpha: 87561132.5655073 blue: -32232656.67089477 green: -70787822.84402739 red: 76420690.66282183 colorStyle: rgbColor: alpha: 21204111.585098535 blue: -5189404.144321725 green: -28696708.174476355 red: 14501358.597405821 themeColor: ACCENT2 style: SOLID_THICK width: -21459940 left: color: alpha: -72669838.59894718 blue: 18652029.719697267 green: -77277200.42718627 red: -9658050.436916187 colorStyle: rgbColor: alpha: -9822871.180133492 blue: -45876765.68401129 green: -28517314.345187068 red: -33708821.58251196 themeColor: ACCENT5 style: NONE width: -77939700 right: color: alpha: -92112658.48853767 blue: -7633934.965055779 green: 91208642.66715351 red: 35480546.31778875 colorStyle: rgbColor: alpha: -38575607.829158634 blue: 55951475.3930189 green: 25867680.686059162 red: 20304526.938570917 themeColor: TEXT style: DASHED width: -63237809 top: color: alpha: -56954813.58897112 blue: 88612165.95023671 green: 10714099.928762838 red: 82593997.34483165 colorStyle: rgbColor: alpha: 31699946.670475304 blue: -88050254.85500804 green: 73138556.05160445 red: 90773299.82631132 themeColor: ACCENT6 style: NONE width: 9174193 horizontalAlignment: RIGHT hyperlinkDisplayType: LINKED numberFormat: pattern: 'ullamco aute ' type: PERCENT padding: bottom: 86665013 left: 48041536 right: -74666208 top: -54673629 textDirection: RIGHT_TO_LEFT textFormat: bold: false fontFamily: in amet aliqua tempor fontSize: -85109807 foregroundColor: alpha: -29969706.666835055 blue: -71459984.88710994 green: -17699409.167820737 red: -43227880.60569085 foregroundColorStyle: rgbColor: alpha: -15886756.891549066 blue: -26993248.489153564 green: 18984824.729538634 red: -27602564.702234656 themeColor: ACCENT5 italic: false link: uri: ad tempor consectet strikethrough: true underline: true textRotation: angle: -19008652 vertical: true verticalAlignment: TOP wrapStrategy: WRAP_STRATEGY_UNSPECIFIED effectiveValue: boolValue: true errorValue: message: quis Lorem dolore nostrud type: LOADING formulaValue: mollit deserunt eiusmod non numberValue: 65393364.65626028 stringValue: amet c formattedValue: minim velit hyperlink: est magna pariatur note: tem pivotTable: columns: - dataSourceColumnReference: name: in laboris groupLimit: applyOrder: 86894586 countLimit: -95189988 groupRule: dateTimeRule: type: SECOND histogramRule: end: 73388672.70205921 interval: -29611396.371270522 start: -736558.7482237965 manualRule: groups: - groupName: boolValue: false errorValue: message: aliquip eiusmod irure nisi type: NUM formulaValue: quis deserunt nulla numberValue: 65941239.132365406 stringValue: culpa mollit ipsum velit items: - boolValue: true errorValue: message: tempor elit incididunt type: DIVIDE_BY_ZERO formulaValue: Lorem proident numberValue: 85929252.08708397 stringValue: velit dolore in label: ipsum cupidat repeatHeadings: true showTotals: false sortOrder: DESCENDING sourceColumnOffset: -93231206 valueBucket: buckets: - boolValue: true errorValue: message: ut dol type: DIVIDE_BY_ZERO formulaValue: amet nisi exerc numberValue: 46380282.57440895 stringValue: enim Lorem magna valuesIndex: 81769487 valueMetadata: - collapsed: true value: boolValue: true errorValue: message: Duis type: N_A formulaValue: dolor eiusmod anim voluptate pari numberValue: -26844411.7826768 stringValue: elit occaecat criteria: consequat_c15: condition: type: ONE_OF_RANGE values: - relativeDate: YESTERDAY userEnteredValue: tempor aliqua officia visibleByDefault: false visibleValues: - quis ea deserunt in dolor_aa: condition: type: DATE_BETWEEN values: - relativeDate: PAST_YEAR userEnteredValue: sit sint visibleByDefault: true visibleValues: - dolore eiusmod elit occaecat dataExecutionStatus: errorCode: TOO_MANY_COLUMNS errorMessage: nulla ut deserunt lastRefreshTime: eiusmod fugiat dolor state: SUCCEEDED dataSourceId: Duis occaecat Lorem mollit filterSpecs: - columnOffsetIndex: 68390305 dataSourceColumnReference: name: nisi est filterCriteria: condition: type: NUMBER_NOT_EQ values: - relativeDate: PAST_MONTH userEnteredValue: Lorem officia velit aliqua visibleByDefault: false visibleValues: - Ut est rows: - dataSourceColumnReference: name: et Duis groupLimit: applyOrder: -87421783 countLimit: 97455878 groupRule: dateTimeRule: type: YEAR_MONTH histogramRule: end: -45430317.88629501 interval: 19112464.14861214 start: -601118.3269306868 manualRule: groups: - groupName: boolValue: true errorValue: message: in proident do deserunt amet type: LOADING formulaValue: ip numberValue: -78375600.73544556 stringValue: labore est voluptate officia items: - boolValue: true errorValue: message: reprehenderit ex type: ERROR formulaValue: nisi id numberValue: 87183800.10702923 stringValue: officia label: consequat ullamco aute voluptate ad repeatHeadings: true showTotals: false sortOrder: DESCENDING sourceColumnOffset: -44411710 valueBucket: buckets: - boolValue: false errorValue: message: cillum nostrud type: DIVIDE_BY_ZERO formulaValue: est anim nulla numberValue: 62541937.02901471 stringValue: non Excepteur valuesIndex: -98790945 valueMetadata: - collapsed: false value: boolValue: true errorValue: message: dolo type: ERROR_TYPE_UNSPECIFIED formulaValue: qui numberValue: 70999832.1996871 stringValue: Excepteur cillum nostrud sit source: endColumnIndex: -52966387 endRowIndex: 73464648 sheetId: 26197423 startColumnIndex: 65892321 startRowIndex: 73328951 valueLayout: HORIZONTAL values: - calculatedDisplayType: PERCENT_OF_COLUMN_TOTAL dataSourceColumnReference: name: elit veniam mollit formula: in qui u name: dolor ad magna dolor sourceColumnOffset: 37969168 summarizeFunction: STDEVP textFormatRuns: - format: bold: false fontFamily: in aute fontSize: -32005442 foregroundColor: alpha: -41451009.7751632 blue: 50352423.90654141 green: 53143325.43411711 red: -85457268.54885384 foregroundColorStyle: rgbColor: alpha: 57441892.294582576 blue: -56261494.03466365 green: -20070334.48529367 red: -44818422.94338132 themeColor: ACCENT6 italic: true link: uri: laborum mo strikethrough: false underline: true startIndex: -44697679 userEnteredFormat: backgroundColor: alpha: 16235958.11779435 blue: 72798167.68336585 green: 52013078.54701626 red: 30373130.672796294 backgroundColorStyle: rgbColor: alpha: 16486518.285981506 blue: -39751287.05494741 green: 21619706.9985601 red: -71330440.49013782 themeColor: ACCENT1 borders: bottom: color: alpha: -36555151.42781356 blue: -74208683.55784705 green: 57746540.27194807 red: 29994710.88130851 colorStyle: rgbColor: alpha: 54516165.652094096 blue: 77027668.19738951 green: 63962014.416650295 red: 70087936.93838301 themeColor: ACCENT2 style: DOUBLE width: -14473424 left: color: alpha: -39789231.24171487 blue: -89708072.39761886 green: 45571135.52069461 red: 72494046.39968094 colorStyle: rgbColor: alpha: -60007140.78625395 blue: -446046.0255649537 green: 86990245.45480078 red: 29958676.957075655 themeColor: ACCENT1 style: DOUBLE width: -30082634 right: color: alpha: -9393032.849586368 blue: -83153669.34595625 green: -71624949.31064041 red: -80968641.75605151 colorStyle: rgbColor: alpha: 71824702.21632546 blue: -35043582.97587431 green: 59238675.52873051 red: 21344980.42260109 themeColor: BACKGROUND style: STYLE_UNSPECIFIED width: 4357643 top: color: alpha: -25307587.924525306 blue: 43166994.75238925 green: -54168585.88518769 red: 30895917.19349292 colorStyle: rgbColor: alpha: -80787203.7284075 blue: -17541923.775853038 green: 6712843.9920782745 red: 25491278.090904996 themeColor: THEME_COLOR_TYPE_UNSPECIFIED style: DOUBLE width: 72172146 horizontalAlignment: LEFT hyperlinkDisplayType: LINKED numberFormat: pattern: incididunt ut type: SCIENTIFIC padding: bottom: -65902242 left: 29002485 right: 53944408 top: -31004637 textDirection: TEXT_DIRECTION_UNSPECIFIED textFormat: bold: false fontFamily: sed eu fontSize: 215982 foregroundColor: alpha: -2639320.204084024 blue: 79218091.42426041 green: -18156892.879986137 red: -9248773.390694961 foregroundColorStyle: rgbColor: alpha: 26279239.217041582 blue: 34797003.40519014 green: 80077070.73050928 red: 95727232.5388664 themeColor: THEME_COLOR_TYPE_UNSPECIFIED italic: false link: uri: ullamc strikethrough: false underline: false textRotation: angle: -55192093 vertical: false verticalAlignment: VERTICAL_ALIGN_UNSPECIFIED wrapStrategy: CLIP userEnteredValue: boolValue: false errorValue: message: culpa est id nisi type: REF formulaValue: amet est sint dolor numberValue: 65088564.28292459 stringValue: officia mollit anim rowMetadata: - dataSourceColumnReference: name: qui aliquip do developerMetadata: - location: dimensionRange: dimension: ROWS endIndex: -44951718 sheetId: 97483151 startIndex: -43420977 locationType: SHEET sheetId: -29429824 spreadsheet: false metadataId: 65352796 metadataKey: officia metadataValue: nostrud Ut visibility: PROJECT hiddenByFilter: false hiddenByUser: true pixelSize: 38087355 startColumn: 99299073 startRow: 16142545 developerMetadata: - location: dimensionRange: dimension: COLUMNS endIndex: -14106255 sheetId: 18692779 startIndex: 39297711 locationType: DEVELOPER_METADATA_LOCATION_TYPE_UNSPECIFIED sheetId: -96663531 spreadsheet: false metadataId: 26526962 metadataKey: labore dolor aliqua metadataValue: Excepteur consequat visibility: DOCUMENT filterViews: - criteria: laborum_5: condition: type: DATE_BETWEEN values: - relativeDate: TODAY userEnteredValue: consequat Excepteur laboris minim sed hiddenValues: - exerc visibleBackgroundColor: alpha: 26587630.051572695 blue: -46399136.4885628 green: -40440691.767909564 red: 30692845.781372428 visibleBackgroundColorStyle: rgbColor: alpha: -36273486.55584348 blue: 96392363.6100077 green: -62560571.41801041 red: -65597002.27855321 themeColor: LINK visibleForegroundColor: alpha: 29241469.066167578 blue: -30192963.9297359 green: 70180835.40378043 red: -83730703.47639975 visibleForegroundColorStyle: rgbColor: alpha: -23490395.416582018 blue: -51160629.083008 green: 13647481.536380693 red: -99523149.13434108 themeColor: ACCENT2 quis_c0: condition: type: TEXT_IS_URL values: - relativeDate: PAST_YEAR userEnteredValue: in hiddenValues: - in visibleBackgroundColor: alpha: 14028520.369448707 blue: -2007903.5193176717 green: 55691231.64105004 red: 49469530.178036004 visibleBackgroundColorStyle: rgbColor: alpha: 84001328.06996918 blue: -50333507.62282995 green: -64079464.913153216 red: 44416770.20208529 themeColor: ACCENT3 visibleForegroundColor: alpha: -12731127.634207606 blue: 41996697.90869641 green: -46579626.66862479 red: -71150296.35351284 visibleForegroundColorStyle: rgbColor: alpha: -18641126.628708497 blue: -35774654.21024848 green: -72763786.36671 red: 99095348.24340591 themeColor: LINK filterSpecs: - columnIndex: -8690044 dataSourceColumnReference: name: proident aliquip filterCriteria: condition: type: NOT_BLANK values: - relativeDate: TOMORROW userEnteredValue: officia nostrud in hiddenValues: - proident eiusmod non consectetur visibleBackgroundColor: alpha: -7995442.001775116 blue: -74968499.54806182 green: -79772789.4567942 red: -45369903.57868702 visibleBackgroundColorStyle: rgbColor: alpha: -9338751.285100594 blue: -2922536.209486857 green: -82581075.82193448 red: 39414349.65034157 themeColor: ACCENT1 visibleForegroundColor: alpha: 29826077.416628256 blue: 48191500.28130442 green: -56553429.51918874 red: 44218276.386606455 visibleForegroundColorStyle: rgbColor: alpha: -14641434.094726428 blue: 10963555.996505782 green: 17382951.727717713 red: -50522176.394069575 themeColor: ACCENT1 filterViewId: 35977611 namedRangeId: veniam sunt Excepteur anim consectetur range: endColumnIndex: -19775724 endRowIndex: 75054710 sheetId: -28503853 startColumnIndex: 19549933 startRowIndex: 1397688 sortSpecs: - backgroundColor: alpha: 22422725.21389985 blue: -88600267.43612233 green: -48137071.12259924 red: 72603692.21021366 backgroundColorStyle: rgbColor: alpha: 47557536.703449786 blue: 29954654.171645597 green: 13074032.706790864 red: 13567227.501118809 themeColor: ACCENT4 dataSourceColumnReference: name: officia Duis dimensionIndex: 64535392 foregroundColor: alpha: 9223315.989956275 blue: 43453995.384192556 green: 66577650.54409447 red: 72655687.62276167 foregroundColorStyle: rgbColor: alpha: 70826650.4811235 blue: 1195344.3883961737 green: 86670478.51519728 red: 1106016.8049707562 themeColor: BACKGROUND sortOrder: ASCENDING title: Excepteur cupidatat adipisicing ad nostrud merges: - endColumnIndex: -65646743 endRowIndex: 2370620 sheetId: 54682586 startColumnIndex: -56370214 startRowIndex: -84051334 properties: dataSourceSheetProperties: columns: - formula: sed anim Ex reference: name: non cillum in fugiat dataExecutionStatus: errorCode: TIMED_OUT errorMessage: deserunt enim pariatur sunt lastRefreshTime: ea state: NOT_STARTED dataSourceId: anim in amet cupidatat gridProperties: columnCount: -71712723 columnGroupControlAfter: true frozenColumnCount: -90124383 frozenRowCount: 74050606 hideGridlines: true rowCount: -37569744 rowGroupControlAfter: true hidden: false index: -42379632 rightToLeft: true sheetId: 88867496 sheetType: SHEET_TYPE_UNSPECIFIED tabColor: alpha: 34340021.79368842 blue: -35647903.855287574 green: 27350831.725596964 red: -29831687.798329383 tabColorStyle: rgbColor: alpha: -21095073.74059789 blue: -6546349.867675126 green: 65316494.2932547 red: 5366328.794987932 themeColor: ACCENT2 title: Excepteur pariatu protectedRanges: - description: Ut est consectetur velit in editors: domainUsersCanEdit: true groups: - velit id adipisicing users: - voluptate velit anim esse namedRangeId: ad anim ex fugiat commodo protectedRangeId: -59769653 range: endColumnIndex: 27053664 endRowIndex: 84919062 sheetId: -54029466 startColumnIndex: -17405602 startRowIndex: -92003717 requestingUserCanEdit: false unprotectedRanges: - endColumnIndex: -28613412 endRowIndex: 89307655 sheetId: 87556321 startColumnIndex: -60327341 startRowIndex: -12180076 warningOnly: false rowGroups: - collapsed: false depth: -72387551 range: dimension: COLUMNS endIndex: -78794036 sheetId: -69497049 startIndex: 61085100 slicers: - position: newSheet: false overlayPosition: anchorCell: columnIndex: 47149370 rowIndex: 27022228 sheetId: -92084491 heightPixels: 37774180 offsetXPixels: 98758649 offsetYPixels: 63656157 widthPixels: -37102689 sheetId: 31674633 slicerId: -99019864 spec: applyToPivotTables: false backgroundColor: alpha: 76611683.93311697 blue: -95457599.27911983 green: -80674015.14034791 red: 38384841.20268336 backgroundColorStyle: rgbColor: alpha: 45268035.116818696 blue: 85089391.7779136 green: -49914707.53847343 red: 12913778.751262933 themeColor: ACCENT1 columnIndex: -29725812 dataRange: endColumnIndex: 82140662 endRowIndex: -70575595 sheetId: 82466991 startColumnIndex: 94185441 startRowIndex: 7912425 filterCriteria: condition: type: TEXT_NOT_CONTAINS values: - relativeDate: RELATIVE_DATE_UNSPECIFIED userEnteredValue: in consectetur Duis Excepteur hiddenValues: - quis in ips visibleBackgroundColor: alpha: 67346716.83941466 blue: 7010293.065400258 green: -54823332.83422176 red: 43970874.32053563 visibleBackgroundColorStyle: rgbColor: alpha: 5612184.912998065 blue: 76030046.26226127 green: -34098010.12699867 red: -36420734.9640632 themeColor: ACCENT4 visibleForegroundColor: alpha: -66559976.35060133 blue: -87754127.50317453 green: 34873691.555959314 red: 62645348.243606985 visibleForegroundColorStyle: rgbColor: alpha: 74678402.3235969 blue: -59956351.77014305 green: 85501973.05161777 red: 62643824.40413025 themeColor: ACCENT3 horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED textFormat: bold: false fontFamily: nisi dolor commodo fontSize: 75678415 foregroundColor: alpha: 66042584.444209546 blue: -55648158.88610921 green: -9096621.078611419 red: -69355322.31732976 foregroundColorStyle: rgbColor: alpha: -55416053.26437509 blue: 84142785.79442164 green: 44930095.29360053 red: 94764366.94169018 themeColor: BACKGROUND italic: true link: uri: pariatur laboru strikethrough: true underline: true title: exercitation Lorem spreadsheetId: tempor qui laboris labore spreadsheetUrl: nisi ipsum eiusmod aliquip SpreadsheetsSheetsPostResponseExample: summary: Successful 200 response value: dataSourceSheetProperties: columns: - formula: id et ex reprehenderit reference: name: minim in - formula: culpa sint et reference: name: velit dataExecutionStatus: errorCode: DATA_EXECUTION_ERROR_CODE_UNSPECIFIED errorMessage: officia incididunt ipsum lastRefreshTime: incidid state: DATA_EXECUTION_STATE_UNSPECIFIED dataSourceId: in Ut dolore sunt gridProperties: columnCount: -39728991 columnGroupControlAfter: false frozenColumnCount: -34736494 frozenRowCount: -70465816 hideGridlines: false rowCount: 14366497 rowGroupControlAfter: true hidden: true index: 34136900 rightToLeft: false sheetId: -19636375 sheetType: OBJECT tabColor: alpha: 9104888.265400872 blue: -38148126.52548318 green: -49770222.52454422 red: 11795874.261146635 tabColorStyle: rgbColor: alpha: -27908346.978851378 blue: 85938099.78494695 green: -35336997.9560505 red: -70387559.7048357 themeColor: ACCENT2 title: nisi reprehenderit cupidatat enim SpreadsheetsValuesGetResponseExample: summary: Successful 200 response value: id: example-id name: Example Name SpreadsheetsValuesPostResponse1Example: summary: Successful 200 response value: clearedRange: mollit sunt reprehenderit spreadsheetId: dolor in enim SpreadsheetsValuesPostResponseExample: summary: Successful 200 response value: id: example-id name: Example Name SpreadsheetsValuesPutResponseExample: summary: Successful 200 response value: id: example-id name: Example Name SpreadsheetsValuesbatchClearByDataFilterPostResponseExample: summary: Successful 200 response value: clearedRanges: - cillum - dolo spreadsheetId: in consequat SpreadsheetsValuesbatchClearPostResponseExample: summary: Successful 200 response value: clearedRanges: - laboris in mollit - magna adipisicing spreadsheetId: cupidatat eiusmod commodo ad SpreadsheetsValuesbatchGetByDataFilterPostResponseExample: summary: Successful 200 response value: id: example-id name: Example Name SpreadsheetsValuesbatchGetGetResponseExample: summary: Successful 200 response value: id: example-id name: Example Name SpreadsheetsValuesbatchUpdateByDataFilterPostResponseExample: summary: Successful 200 response value: id: example-id name: Example Name SpreadsheetsValuesbatchUpdatePostResponseExample: summary: Successful 200 response value: id: example-id name: Example Name securitySchemes: oauth2Auth: type: http scheme: oauth2