text
stringlengths 6
13.6M
| id
stringlengths 13
176
| metadata
dict | __index_level_0__
int64 0
1.69k
|
---|---|---|---|
import 'package:flutter/material.dart';
const brickColors = [
Color(0xfff94144),
Color(0xfff3722c),
Color(0xfff8961e),
Color(0xfff9844a),
Color(0xfff9c74f),
Color(0xff90be6d),
Color(0xff43aa8b),
Color(0xff4d908e),
Color(0xff277da1),
Color(0xff577590),
];
const gameWidth = 820.0;
const gameHeight = 1600.0;
const ballRadius = gameWidth * 0.02;
const batWidth = gameWidth * 0.2;
const batHeight = ballRadius * 2;
const batStep = gameWidth * 0.05;
const brickGutter = gameWidth * 0.015;
final brickWidth =
(gameWidth - (brickGutter * (brickColors.length + 1))) / brickColors.length;
const brickHeight = gameHeight * 0.03;
const difficultyModifier = 1.03;
| codelabs/brick_breaker/step_09/lib/src/config.dart/0 | {
"file_path": "codelabs/brick_breaker/step_09/lib/src/config.dart",
"repo_id": "codelabs",
"token_count": 270
} | 22 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/brick_breaker/step_09/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/brick_breaker/step_09/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 23 |
import 'package:flutter/material.dart';
import 'src/widgets/game_app.dart';
void main() {
runApp(const GameApp());
}
| codelabs/brick_breaker/step_10/lib/main.dart/0 | {
"file_path": "codelabs/brick_breaker/step_10/lib/main.dart",
"repo_id": "codelabs",
"token_count": 46
} | 24 |
#include "Generated.xcconfig"
| codelabs/dart-patterns-and-records/step_05/ios/Flutter/Release.xcconfig/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_05/ios/Flutter/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 25 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/dart-patterns-and-records/step_05/macos/Flutter/Flutter-Debug.xcconfig/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_05/macos/Flutter/Flutter-Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 26 |
#import "GeneratedPluginRegistrant.h"
| codelabs/dart-patterns-and-records/step_06_a/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_06_a/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 27 |
// Copyright 2023 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:convert';
class Document {
final Map<String, Object?> _json;
Document() : _json = jsonDecode(documentJson);
(String, {DateTime modified}) get metadata {
const title = 'My Document';
final now = DateTime.now();
return (title, modified: now);
}
}
const documentJson = '''
{
"metadata": {
"title": "My Document",
"modified": "2023-05-10"
},
"blocks": [
{
"type": "h1",
"text": "Chapter 1"
},
{
"type": "p",
"text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit."
},
{
"type": "checkbox",
"checked": false,
"text": "Learn Dart 3"
}
]
}
''';
| codelabs/dart-patterns-and-records/step_06_b/lib/data.dart/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_06_b/lib/data.dart",
"repo_id": "codelabs",
"token_count": 336
} | 28 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/dart-patterns-and-records/step_06_b/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_06_b/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 29 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/dart-patterns-and-records/step_08/android/gradle.properties/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_08/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 30 |
#include "Generated.xcconfig"
| codelabs/dart-patterns-and-records/step_11_a/ios/Flutter/Release.xcconfig/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_11_a/ios/Flutter/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 31 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/dart-patterns-and-records/step_11_a/macos/Flutter/Flutter-Debug.xcconfig/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_11_a/macos/Flutter/Flutter-Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 32 |
#import "GeneratedPluginRegistrant.h"
| codelabs/dart-patterns-and-records/step_11_b/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_11_b/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 33 |
// Copyright 2023 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:convert';
class Document {
final Map<String, Object?> _json;
Document() : _json = jsonDecode(documentJson);
(String, {DateTime modified}) get metadata {
if (_json
case {
'metadata': {
'title': String title,
'modified': String localModified,
}
}) {
return (title, modified: DateTime.parse(localModified));
} else {
throw const FormatException('Unexpected JSON');
}
}
List<Block> getBlocks() {
if (_json case {'blocks': List blocksJson}) {
return [for (final blockJson in blocksJson) Block.fromJson(blockJson)];
} else {
throw const FormatException('Unexpected JSON format');
}
}
}
const documentJson = '''
{
"metadata": {
"title": "My Document",
"modified": "2023-05-10"
},
"blocks": [
{
"type": "h1",
"text": "Chapter 1"
},
{
"type": "p",
"text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit."
},
{
"type": "checkbox",
"checked": false,
"text": "Learn Dart 3"
}
]
}
''';
sealed class Block {
Block();
factory Block.fromJson(Map<String, Object?> json) {
return switch (json) {
{'type': 'h1', 'text': String text} => HeaderBlock(text),
{'type': 'p', 'text': String text} => ParagraphBlock(text),
{'type': 'checkbox', 'text': String text, 'checked': bool checked} =>
CheckboxBlock(text, checked),
_ => throw const FormatException('Unexpected JSON format'),
};
}
}
class HeaderBlock extends Block {
final String text;
HeaderBlock(this.text);
}
class ParagraphBlock extends Block {
final String text;
ParagraphBlock(this.text);
}
class CheckboxBlock extends Block {
final String text;
final bool isChecked;
CheckboxBlock(this.text, this.isChecked);
}
| codelabs/dart-patterns-and-records/step_12/lib/data.dart/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_12/lib/data.dart",
"repo_id": "codelabs",
"token_count": 784
} | 34 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/dart-patterns-and-records/step_12/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_12/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 35 |
name: FFI Generator codelab rebuild script
steps:
- name: step_03
steps:
- name: Remove step_03
rmdir: step_03
- name: Create ffigen_app
flutter: create --template=plugin_ffi --platforms=android,ios,linux,macos,windows ffigen_app
- name: Strip DEVELOPMENT_TEAM
strip-lines-containing: DEVELOPMENT_TEAM =
path: ffigen_app/example/ios/Runner.xcodeproj/project.pbxproj
- name: Remove CHANGELOG
rm: ffigen_app/CHANGELOG.md
- name: Remove LICENSE
rm: ffigen_app/LICENSE
- name: Remove README
rm: ffigen_app/README.md
- name: Add .vscode directory
mkdir: ffigen_app/.vscode
- name: Add .vscode/launch.json
path: ffigen_app/.vscode/launch.json
replace-contents: |
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "example",
"cwd": "example",
"request": "launch",
"type": "dart"
}
]
}
- name: dart format
dart: format ffigen_app
- name: dart fix
path: ffigen_app
dart: fix --apply
- name: dart fix
path: ffigen_app/example
dart: fix --apply
- name: Build iOS simulator bundle
path: ffigen_app/example
platforms: [ macos ]
flutter: build ios --simulator
- name: dart analyze
path: ffigen_app
dart: analyze --fatal-infos
- name: Upgrade ffigen
path: ffigen_app
flutter: pub upgrade --major-versions
- name: Upgrade ffigen/example
path: ffigen_app/example
flutter: pub upgrade --major-versions
- name: Build macOS app
path: ffigen_app/example
platforms: [ macos ]
flutter: build macos --debug
- name: Build Android app
path: ffigen_app/example
platforms: [ macos ]
flutter: build apk --debug
- name: Build Windows app
path: ffigen_app/example
platforms: [ windows ]
flutter: build windows --debug
- name: Build Linux app
path: ffigen_app/example
platforms: [ linux ]
flutter: build linux --debug
- name: Flutter clean
path: ffigen_app/example
flutter: clean
- name: Copy step_03
copydir:
from: ffigen_app
to: step_03
- name: flutter pub get step_03
path: step_03
dart: pub get
- name: step_05
steps:
- name: Remove step_05
rmdir: step_05
- name: Retrieve duktape
path: ffigen_app/src/duktape.tar.xz
retrieve-url: https://duktape.org/duktape-2.7.0.tar.xz
- name: Unarchive duktape.tar.xz with tar
platforms: [ linux, macos ]
path: ffigen_app/src
tar: xf duktape.tar.xz
- name: Unarchive duktape.tar.xz with 7z
platforms: [ windows ]
path: ffigen_app/src
7z: x duktape.tar.xz
- name: Unarchive duktape.tar with 7z
platforms: [ windows ]
path: ffigen_app/src
7z: x duktape.tar
- name: Remove duktape.tar.xz
path: ffigen_app/src
rm: duktape.tar.xz
- name: Remove duktape.tar
platforms: [ windows ]
path: ffigen_app/src
rm: duktape.tar
- name: Copy duktape-2.7.0/src/duktape.c
path: ffigen_app/src
copy:
from: duktape-2.7.0/src/duktape.c
to: duktape.c
- name: Copy duktape-2.7.0/src/duktape.h
path: ffigen_app/src
copy:
from: duktape-2.7.0/src/duktape.h
to: duktape.h
- name: Copy duktape-2.7.0/src/duk_config.h
path: ffigen_app/src
copy:
from: duktape-2.7.0/src/duk_config.h
to: duk_config.h
- name: Remove duktape-2.7.0
path: ffigen_app/src
rmdir: duktape-2.7.0
- name: Patch ffigen.yaml
path: ffigen_app/ffigen.yaml
patch-u: |
--- b/ffigen_codelab/step_05/ffigen.yaml
+++ a/ffigen_codelab/step_05/ffigen.yaml
@@ -1,15 +1,15 @@
# Run with `flutter pub run ffigen --config ffigen.yaml`.
-name: FfigenAppBindings
+name: DuktapeBindings
description: |
- Bindings for `src/ffigen_app.h`.
+ Bindings for `src/duktape.h`.
Regenerate bindings with `flutter pub run ffigen --config ffigen.yaml`.
-output: 'lib/ffigen_app_bindings_generated.dart'
+output: 'lib/duktape_bindings_generated.dart'
headers:
entry-points:
- - 'src/ffigen_app.h'
+ - 'src/duktape.h'
include-directives:
- - 'src/ffigen_app.h'
+ - 'src/duktape.h'
preamble: |
// ignore_for_file: always_specify_types
// ignore_for_file: camel_case_types
@@ -17,3 +17,4 @@ preamble: |
comments:
style: any
length: full
+ignore-source-errors: true
- name: Replace example/lib/main.dart
path: ffigen_app/example/lib/main.dart
replace-contents: |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:ffigen_app/ffigen_app.dart';
import 'package:flutter/material.dart';
const String jsCode = '1+2';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
late Duktape duktape;
String output = '';
@override
void initState() {
super.initState();
duktape = Duktape();
setState(() {
output = 'Initialized Duktape';
});
}
@override
void dispose() {
duktape.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
const textStyle = TextStyle(fontSize: 25);
const spacerSmall = SizedBox(height: 10);
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Duktape Test'),
),
body: Center(
child: Container(
padding: const EdgeInsets.all(10),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Text(
output,
style: textStyle,
textAlign: TextAlign.center,
),
spacerSmall,
ElevatedButton(
child: const Text('Run JavaScript'),
onPressed: () {
duktape.evalString(jsCode);
setState(() {
output = '$jsCode => ${duktape.getInt(-1)}';
});
},
),
],
),
),
),
),
);
}
}
- name: Replace lib/ffigen_app.dart
path: ffigen_app/lib/ffigen_app.dart
replace-contents: |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:ffi';
import 'dart:io' show Platform;
import 'package:ffi/ffi.dart' as ffi;
import 'duktape_bindings_generated.dart';
const String _libName = 'ffigen_app';
/// The dynamic library in which the symbols for [DuktapeBindings] can be found.
final DynamicLibrary _dylib = () {
if (Platform.isMacOS || Platform.isIOS) {
return DynamicLibrary.open('$_libName.framework/$_libName');
}
if (Platform.isAndroid || Platform.isLinux) {
return DynamicLibrary.open('lib$_libName.so');
}
if (Platform.isWindows) {
return DynamicLibrary.open('$_libName.dll');
}
throw UnsupportedError('Unknown platform: ${Platform.operatingSystem}');
}();
/// The bindings to the native functions in [_dylib].
final DuktapeBindings _bindings = DuktapeBindings(_dylib);
class Duktape {
Duktape() {
ctx =
_bindings.duk_create_heap(nullptr, nullptr, nullptr, nullptr, nullptr);
}
void evalString(String jsCode) {
// From duktape.h:
// #define duk_peval_string(ctx,src) \
// (duk_eval_raw((ctx), (src), 0, 0 /*args*/ | DUK_COMPILE_EVAL | DUK_COMPILE_SAFE | DUK_COMPILE_NOSOURCE | DUK_COMPILE_STRLEN | DUK_COMPILE_NOFILENAME))
var nativeUtf8 = jsCode.toNativeUtf8();
_bindings.duk_eval_raw(
ctx,
nativeUtf8.cast<Char>(),
0,
0 /*args*/ |
DUK_COMPILE_EVAL |
DUK_COMPILE_SAFE |
DUK_COMPILE_NOSOURCE |
DUK_COMPILE_STRLEN |
DUK_COMPILE_NOFILENAME);
ffi.malloc.free(nativeUtf8);
}
int getInt(int index) {
return _bindings.duk_get_int(ctx, index);
}
void dispose() {
_bindings.duk_destroy_heap(ctx);
ctx = nullptr;
}
late Pointer<duk_hthread> ctx;
}
- name: Patch src/CMakeLists.txt
path: ffigen_app/src/CMakeLists.txt
patch-u: |
--- b/ffigen_codelab/step_05/src/CMakeLists.txt
+++ a/ffigen_codelab/step_05/src/CMakeLists.txt
@@ -6,12 +6,19 @@ cmake_minimum_required(VERSION 3.10)
project(ffigen_app_library VERSION 0.0.1 LANGUAGES C)
add_library(ffigen_app SHARED
- "ffigen_app.c"
+ duktape.c
)
set_target_properties(ffigen_app PROPERTIES
- PUBLIC_HEADER ffigen_app.h
+ PUBLIC_HEADER duktape.h
+ PRIVATE_HEADER duk_config.h
OUTPUT_NAME "ffigen_app"
)
+if (WIN32)
+set_target_properties(ffigen_app PROPERTIES
+ WINDOWS_EXPORT_ALL_SYMBOLS ON
+)
+endif (WIN32)
+
target_compile_definitions(ffigen_app PUBLIC DART_SHARED_LIB)
- name: Get deps in ffigen_app/example
path: ffigen_app/example
dart: pub get --directory .
- name: Get deps in ffigen_app
path: ffigen_app
dart: pub get --directory .
- name: Upgrade dep versions in ffigen_app/example
path: ffigen_app/example
dart: pub upgrade --major-versions --directory .
- name: Update version constraints on ffigen
path: ffigen_app
dart: pub add -d ffigen
- name: Move ffi dep from dev_deps to deps
path: ffigen_app
dart: pub add ffi
- name: flutter clean
path: ffigen_app
flutter: clean
- name: Re-get deps
path: ffigen_app
flutter: pub get
- name: Run ffigen
path: ffigen_app
dart: run ffigen --config ffigen.yaml
- name: dart analyze
path: ffigen_app
dart: analyze --fatal-infos
- name: Build Windows app
path: ffigen_app/example
platforms: [ windows ]
flutter: build windows --debug
- name: Build Linux app
path: ffigen_app/example
platforms: [ linux ]
flutter: build linux --debug
- name: Flutter clean
path: ffigen_app/example
flutter: clean
- name: Copy step_05
copydir:
from: ffigen_app
to: step_05
- name: step_06
steps:
- name: Remove step_06
rmdir: step_06
- name: Remove src/ffigen_app.c
rm: ffigen_app/src/ffigen_app.c
- name: Remove src/ffigen_app.h
rm: ffigen_app/src/ffigen_app.h
- name: Remove ios/Classes/ffigen_app.c
rm: ffigen_app/ios/Classes/ffigen_app.c
- name: Create ios/Classes/duktape.c
path: ffigen_app/ios/Classes/duktape.c
replace-contents: |
// Relative import to be able to reuse the C sources.
// See the comment in ../ffigen_app.podspec for more information.
#include "../../src/duktape.c"
- name: Remove macos/Classes/ffigen_app.c
rm: ffigen_app/macos/Classes/ffigen_app.c
- name: Create macos/Classes/duktape.c
path: ffigen_app/macos/Classes/duktape.c
replace-contents: |
// Relative import to be able to reuse the C sources.
// See the comment in ../ffigen_app.podspec for more information.
#include "../../src/duktape.c"
- name: Flutter clean
path: ffigen_app/example
flutter: clean
- name: dart analyze
path: ffigen_app
dart: analyze --fatal-infos
- name: Build iOS simulator bundle
path: ffigen_app/example
platforms: [ macos ]
flutter: build ios --simulator
- name: Build macOS app
path: ffigen_app/example
platforms: [ macos ]
flutter: build macos --debug
- name: Build Android app
path: ffigen_app/example
platforms: [ macos ]
flutter: build apk --debug
- name: Build Windows app
path: ffigen_app/example
platforms: [ windows ]
flutter: build windows --debug
- name: Build Linux app
path: ffigen_app/example
platforms: [ linux ]
flutter: build linux --debug
- name: Flutter clean
path: ffigen_app/example
flutter: clean
- name: Copy step_06
copydir:
from: ffigen_app
to: step_06
- name: step_07
steps:
- name: Remove step_07
rmdir: step_07
- name: Patch lib/ffigen_app.dart
path: ffigen_app/lib/ffigen_app.dart
patch-u: |
--- b/ffigen_codelab/step_07/lib/ffigen_app.dart
+++ a/ffigen_codelab/step_07/lib/ffigen_app.dart
@@ -5,6 +5,7 @@
import 'dart:ffi';
import 'dart:io' show Platform;
import 'package:ffi/ffi.dart' as ffi;
+import 'package:path/path.dart' as p;
import 'duktape_bindings_generated.dart';
@@ -13,12 +14,29 @@ const String _libName = 'ffigen_app';
/// The dynamic library in which the symbols for [DuktapeBindings] can be found.
final DynamicLibrary _dylib = () {
if (Platform.isMacOS || Platform.isIOS) {
+ if (Platform.environment.containsKey('FLUTTER_TEST')) {
+ return DynamicLibrary.open(
+ 'build/macos/Build/Products/Debug/$_libName/$_libName.framework/$_libName');
+ }
return DynamicLibrary.open('$_libName.framework/$_libName');
}
if (Platform.isAndroid || Platform.isLinux) {
+ if (Platform.environment.containsKey('FLUTTER_TEST')) {
+ return DynamicLibrary.open(
+ 'build/linux/x64/debug/bundle/lib/lib$_libName.so');
+ }
return DynamicLibrary.open('lib$_libName.so');
}
if (Platform.isWindows) {
+ if (Platform.environment.containsKey('FLUTTER_TEST')) {
+ return switch (Abi.current()) {
+ Abi.windowsArm64 => DynamicLibrary.open(p.canonicalize(
+ p.join(r'build\windows\arm64\runner\Debug', '$_libName.dll'))),
+ Abi.windowsX64 => DynamicLibrary.open(p.canonicalize(
+ p.join(r'build\windows\x64\runner\Debug', '$_libName.dll'))),
+ _ => throw 'Unsupported platform',
+ };
+ }
return DynamicLibrary.open('$_libName.dll');
}
throw UnsupportedError('Unknown platform: ${Platform.operatingSystem}');
@@ -33,13 +51,13 @@ class Duktape {
_bindings.duk_create_heap(nullptr, nullptr, nullptr, nullptr, nullptr);
}
- void evalString(String jsCode) {
+ String evalString(String jsCode) {
// From duktape.h:
// #define duk_peval_string(ctx,src) \
// (duk_eval_raw((ctx), (src), 0, 0 /*args*/ | DUK_COMPILE_EVAL | DUK_COMPILE_SAFE | DUK_COMPILE_NOSOURCE | DUK_COMPILE_STRLEN | DUK_COMPILE_NOFILENAME))
var nativeUtf8 = jsCode.toNativeUtf8();
- _bindings.duk_eval_raw(
+ final evalResult = _bindings.duk_eval_raw(
ctx,
nativeUtf8.cast<Char>(),
0,
@@ -50,10 +68,21 @@ class Duktape {
DUK_COMPILE_STRLEN |
DUK_COMPILE_NOFILENAME);
ffi.malloc.free(nativeUtf8);
+
+ if (evalResult != 0) {
+ throw _retrieveTopOfStackAsString();
+ }
+
+ return _retrieveTopOfStackAsString();
}
- int getInt(int index) {
- return _bindings.duk_get_int(ctx, index);
+ String _retrieveTopOfStackAsString() {
+ Pointer<Size> outLengthPtr = ffi.calloc<Size>();
+ final errorStrPtr = _bindings.duk_safe_to_lstring(ctx, -1, outLengthPtr);
+ final returnVal =
+ errorStrPtr.cast<ffi.Utf8>().toDartString(length: outLengthPtr.value);
+ ffi.calloc.free(outLengthPtr);
+ return returnVal;
}
void dispose() {
- name: Create example/lib/duktape_message.dart
path: ffigen_app/example/lib/duktape_message.dart
replace-contents: |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:freezed_annotation/freezed_annotation.dart';
part 'duktape_message.freezed.dart';
@freezed
class DuktapeMessage with _$DuktapeMessage {
factory DuktapeMessage.evaluate(String code) = DuktapeMessageCode;
factory DuktapeMessage.response(String result) = DuktapeMessageResponse;
factory DuktapeMessage.error(String log) = DuktapeMessageError;
}
- name: Replace example/lib/main.dart
path: ffigen_app/example/lib/main.dart
replace-contents: |
// Copyright 2017, 2020, 2022 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file.
import 'package:ffigen_app/ffigen_app.dart';
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:google_fonts/google_fonts.dart';
import 'duktape_message.dart';
void main() {
runApp(const ProviderScope(child: DuktapeApp()));
}
final duktapeMessagesProvider =
StateNotifierProvider<DuktapeMessageNotifier, List<DuktapeMessage>>((ref) {
return DuktapeMessageNotifier(messages: <DuktapeMessage>[]);
});
class DuktapeMessageNotifier extends StateNotifier<List<DuktapeMessage>> {
DuktapeMessageNotifier({required List<DuktapeMessage> messages})
: duktape = Duktape(),
super(messages);
final Duktape duktape;
void eval(String code) {
state = [
DuktapeMessage.evaluate(code),
...state,
];
try {
final response = duktape.evalString(code);
state = [
DuktapeMessage.response(response),
...state,
];
} catch (e) {
state = [
DuktapeMessage.error('$e'),
...state,
];
}
}
}
class DuktapeApp extends StatelessWidget {
const DuktapeApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
title: 'Duktape App',
home: DuktapeRepl(),
);
}
}
class DuktapeRepl extends ConsumerStatefulWidget {
const DuktapeRepl({
super.key,
});
@override
ConsumerState<DuktapeRepl> createState() => _DuktapeReplState();
}
class _DuktapeReplState extends ConsumerState<DuktapeRepl> {
final _controller = TextEditingController();
final _focusNode = FocusNode();
var _isComposing = false;
void _handleSubmitted(String text) {
_controller.clear();
setState(() {
_isComposing = false;
});
setState(() {
ref.read(duktapeMessagesProvider.notifier).eval(text);
});
_focusNode.requestFocus();
}
@override
Widget build(BuildContext context) {
final messages = ref.watch(duktapeMessagesProvider);
return Scaffold(
backgroundColor: Colors.white,
appBar: AppBar(
title: const Text('Duktape REPL'),
elevation: Theme.of(context).platform == TargetPlatform.iOS ? 0.0 : 4.0,
),
body: Column(
children: [
Flexible(
child: Ink(
color: Theme.of(context).scaffoldBackgroundColor,
child: SafeArea(
bottom: false,
child: ListView.builder(
padding: const EdgeInsets.all(8.0),
reverse: true,
itemBuilder: (context, idx) => messages[idx].when(
evaluate: (str) => Padding(
padding: const EdgeInsets.symmetric(vertical: 2),
child: Text(
'> $str',
style: GoogleFonts.firaCode(
textStyle: Theme.of(context).textTheme.titleMedium,
),
),
),
response: (str) => Padding(
padding: const EdgeInsets.symmetric(vertical: 2),
child: Text(
'= $str',
style: GoogleFonts.firaCode(
textStyle: Theme.of(context).textTheme.titleMedium,
color: Colors.blue[800],
),
),
),
error: (str) => Padding(
padding: const EdgeInsets.symmetric(vertical: 2),
child: Text(
str,
style: GoogleFonts.firaCode(
textStyle: Theme.of(context).textTheme.titleSmall,
color: Colors.red[800],
fontWeight: FontWeight.bold,
),
),
),
),
itemCount: messages.length,
),
),
),
),
const Divider(height: 1.0),
SafeArea(
top: false,
child: Container(
decoration: BoxDecoration(color: Theme.of(context).cardColor),
child: _buildTextComposer(),
),
),
],
),
);
}
Widget _buildTextComposer() {
return IconTheme(
data: IconThemeData(color: Theme.of(context).colorScheme.secondary),
child: Container(
margin: const EdgeInsets.symmetric(horizontal: 8.0),
child: Row(
children: [
Text('>', style: Theme.of(context).textTheme.titleMedium),
const SizedBox(width: 4),
Flexible(
child: TextField(
controller: _controller,
decoration: const InputDecoration(
border: InputBorder.none,
),
onChanged: (text) {
setState(() {
_isComposing = text.isNotEmpty;
});
},
onSubmitted: _isComposing ? _handleSubmitted : null,
focusNode: _focusNode,
),
),
Container(
margin: const EdgeInsets.symmetric(horizontal: 4.0),
child: IconButton(
icon: const Icon(Icons.send),
onPressed: _isComposing
? () => _handleSubmitted(_controller.text)
: null,
),
),
],
),
),
);
}
}
- name: mkdir example/test
path: ffigen_app
mkdir: example/test
- name: Create example/test/widget_test.dart
path: ffigen_app/example/test/widget_test.dart
replace-contents: |
import 'package:ffigen_app/ffigen_app.dart';
import 'package:ffigen_app_example/main.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:flutter_test/flutter_test.dart';
void main() {
testWidgets('DuktapeApp displays the title', (tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(const ProviderScope(child: DuktapeApp()));
// Verify that our app displays the title
expect(find.text('Duktape REPL'), findsOneWidget);
});
test('Duktape.evalString', () {
final duktape = Duktape();
final response = duktape.evalString('1+2');
expect(response, '3');
});
}
- name: Patch example/macos/Runner/DebugProfile.entitlements
path: ffigen_app/example/macos/Runner/DebugProfile.entitlements
patch-u: |
diff --git b/ffigen_codelab/step_07/example/macos/Runner/DebugProfile.entitlements a/ffigen_codelab/step_07/example/macos/Runner/DebugProfile.entitlements
index dddb8a30..08c3ab17 100644
--- b/ffigen_codelab/step_07/example/macos/Runner/DebugProfile.entitlements
+++ a/ffigen_codelab/step_07/example/macos/Runner/DebugProfile.entitlements
@@ -8,5 +8,7 @@
<true/>
<key>com.apple.security.network.server</key>
<true/>
+ <key>com.apple.security.network.client</key>
+ <true/>
</dict>
</plist>
- name: Patch example/macos/Runner/Release.entitlements
path: ffigen_app/example/macos/Runner/Release.entitlements
patch-u: |
diff --git b/ffigen_codelab/step_07/example/macos/Runner/Release.entitlements a/ffigen_codelab/step_07/example/macos/Runner/Release.entitlements
index 852fa1a4..ee95ab7e 100644
--- b/ffigen_codelab/step_07/example/macos/Runner/Release.entitlements
+++ a/ffigen_codelab/step_07/example/macos/Runner/Release.entitlements
@@ -4,5 +4,7 @@
<dict>
<key>com.apple.security.app-sandbox</key>
<true/>
+ <key>com.apple.security.network.client</key>
+ <true/>
</dict>
</plist>
- name: Flutter clean
path: ffigen_app/example
flutter: clean
- name: Add path
path: ffigen_app
dart: pub add path
- name: Add flutter_riverpod freezed_annotation google_fonts
path: ffigen_app/example
dart: pub add flutter_riverpod freezed_annotation google_fonts
- name: Add build_runner freezed
path: ffigen_app/example
dart: pub add -d build_runner freezed
- name: flutter clean
path: ffigen_app/example
flutter: clean
- name: build runner
path: ffigen_app/example
dart: run build_runner build --delete-conflicting-outputs
- name: dart analyze
path: ffigen_app
dart: analyze --fatal-infos
- name: Build iOS simulator bundle
path: ffigen_app/example
platforms: [ macos ]
flutter: build ios --simulator
- name: Build macOS app
path: ffigen_app/example
platforms: [ macos ]
flutter: build macos --debug
- name: Test macOS bundle
path: ffigen_app/example
platforms: [ macos ]
flutter: test
- name: Build Android app
path: ffigen_app/example
platforms: [ macos ]
flutter: build apk --debug
- name: Build Windows app
path: ffigen_app/example
platforms: [ windows ]
flutter: build windows --debug
- name: Build Linux app
path: ffigen_app/example
platforms: [ linux ]
flutter: build linux --debug
- name: Flutter clean
path: ffigen_app/example
flutter: clean
- name: Copy step_07
copydir:
from: ffigen_app
to: step_07
- name: Cleanup ffigen_app
rmdir: ffigen_app | codelabs/ffigen_codelab/codelab_rebuild.yaml/0 | {
"file_path": "codelabs/ffigen_codelab/codelab_rebuild.yaml",
"repo_id": "codelabs",
"token_count": 17843
} | 36 |
# Run with `flutter pub run ffigen --config ffigen.yaml`.
name: FfigenAppBindings
description: |
Bindings for `src/ffigen_app.h`.
Regenerate bindings with `flutter pub run ffigen --config ffigen.yaml`.
output: 'lib/ffigen_app_bindings_generated.dart'
headers:
entry-points:
- 'src/ffigen_app.h'
include-directives:
- 'src/ffigen_app.h'
preamble: |
// ignore_for_file: always_specify_types
// ignore_for_file: camel_case_types
// ignore_for_file: non_constant_identifier_names
comments:
style: any
length: full
| codelabs/ffigen_codelab/step_03/ffigen.yaml/0 | {
"file_path": "codelabs/ffigen_codelab/step_03/ffigen.yaml",
"repo_id": "codelabs",
"token_count": 203
} | 37 |
include: package:flutter_lints/flutter.yaml
# Additional information about this file can be found at
# https://dart.dev/guides/language/analysis-options
| codelabs/ffigen_codelab/step_05/analysis_options.yaml/0 | {
"file_path": "codelabs/ffigen_codelab/step_05/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 45
} | 38 |
// ignore_for_file: always_specify_types
// ignore_for_file: camel_case_types
// ignore_for_file: non_constant_identifier_names
// AUTO GENERATED FILE, DO NOT EDIT.
//
// Generated by `package:ffigen`.
// ignore_for_file: type=lint
import 'dart:ffi' as ffi;
/// Bindings for `src/duktape.h`.
///
/// Regenerate bindings with `flutter pub run ffigen --config ffigen.yaml`.
///
class DuktapeBindings {
/// Holds the symbol lookup function.
final ffi.Pointer<T> Function<T extends ffi.NativeType>(String symbolName)
_lookup;
/// The symbols are looked up in [dynamicLibrary].
DuktapeBindings(ffi.DynamicLibrary dynamicLibrary)
: _lookup = dynamicLibrary.lookup;
/// The symbols are looked up with [lookup].
DuktapeBindings.fromLookup(
ffi.Pointer<T> Function<T extends ffi.NativeType>(String symbolName)
lookup)
: _lookup = lookup;
/// Context management
ffi.Pointer<duk_context> duk_create_heap(
duk_alloc_function alloc_func,
duk_realloc_function realloc_func,
duk_free_function free_func,
ffi.Pointer<ffi.Void> heap_udata,
duk_fatal_function fatal_handler,
) {
return _duk_create_heap(
alloc_func,
realloc_func,
free_func,
heap_udata,
fatal_handler,
);
}
late final _duk_create_heapPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<duk_context> Function(
duk_alloc_function,
duk_realloc_function,
duk_free_function,
ffi.Pointer<ffi.Void>,
duk_fatal_function)>>('duk_create_heap');
late final _duk_create_heap = _duk_create_heapPtr.asFunction<
ffi.Pointer<duk_context> Function(
duk_alloc_function,
duk_realloc_function,
duk_free_function,
ffi.Pointer<ffi.Void>,
duk_fatal_function)>();
void duk_destroy_heap(
ffi.Pointer<duk_context> ctx,
) {
return _duk_destroy_heap(
ctx,
);
}
late final _duk_destroy_heapPtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_destroy_heap');
late final _duk_destroy_heap = _duk_destroy_heapPtr
.asFunction<void Function(ffi.Pointer<duk_context>)>();
void duk_suspend(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<duk_thread_state> state,
) {
return _duk_suspend(
ctx,
state,
);
}
late final _duk_suspendPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>,
ffi.Pointer<duk_thread_state>)>>('duk_suspend');
late final _duk_suspend = _duk_suspendPtr.asFunction<
void Function(ffi.Pointer<duk_context>, ffi.Pointer<duk_thread_state>)>();
void duk_resume(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<duk_thread_state> state,
) {
return _duk_resume(
ctx,
state,
);
}
late final _duk_resumePtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>,
ffi.Pointer<duk_thread_state>)>>('duk_resume');
late final _duk_resume = _duk_resumePtr.asFunction<
void Function(ffi.Pointer<duk_context>, ffi.Pointer<duk_thread_state>)>();
/// Memory management
///
/// Raw functions have no side effects (cannot trigger GC).
ffi.Pointer<ffi.Void> duk_alloc_raw(
ffi.Pointer<duk_context> ctx,
int size,
) {
return _duk_alloc_raw(
ctx,
size,
);
}
late final _duk_alloc_rawPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(
ffi.Pointer<duk_context>, duk_size_t)>>('duk_alloc_raw');
late final _duk_alloc_raw = _duk_alloc_rawPtr.asFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, int)>();
void duk_free_raw(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Void> ptr,
) {
return _duk_free_raw(
ctx,
ptr,
);
}
late final _duk_free_rawPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>,
ffi.Pointer<ffi.Void>)>>('duk_free_raw');
late final _duk_free_raw = _duk_free_rawPtr.asFunction<
void Function(ffi.Pointer<duk_context>, ffi.Pointer<ffi.Void>)>();
ffi.Pointer<ffi.Void> duk_realloc_raw(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Void> ptr,
int size,
) {
return _duk_realloc_raw(
ctx,
ptr,
size,
);
}
late final _duk_realloc_rawPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>,
ffi.Pointer<ffi.Void>, duk_size_t)>>('duk_realloc_raw');
late final _duk_realloc_raw = _duk_realloc_rawPtr.asFunction<
ffi.Pointer<ffi.Void> Function(
ffi.Pointer<duk_context>, ffi.Pointer<ffi.Void>, int)>();
ffi.Pointer<ffi.Void> duk_alloc(
ffi.Pointer<duk_context> ctx,
int size,
) {
return _duk_alloc(
ctx,
size,
);
}
late final _duk_allocPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(
ffi.Pointer<duk_context>, duk_size_t)>>('duk_alloc');
late final _duk_alloc = _duk_allocPtr.asFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, int)>();
void duk_free(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Void> ptr,
) {
return _duk_free(
ctx,
ptr,
);
}
late final _duk_freePtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, ffi.Pointer<ffi.Void>)>>('duk_free');
late final _duk_free = _duk_freePtr.asFunction<
void Function(ffi.Pointer<duk_context>, ffi.Pointer<ffi.Void>)>();
ffi.Pointer<ffi.Void> duk_realloc(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Void> ptr,
int size,
) {
return _duk_realloc(
ctx,
ptr,
size,
);
}
late final _duk_reallocPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>,
ffi.Pointer<ffi.Void>, duk_size_t)>>('duk_realloc');
late final _duk_realloc = _duk_reallocPtr.asFunction<
ffi.Pointer<ffi.Void> Function(
ffi.Pointer<duk_context>, ffi.Pointer<ffi.Void>, int)>();
void duk_get_memory_functions(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<duk_memory_functions> out_funcs,
) {
return _duk_get_memory_functions(
ctx,
out_funcs,
);
}
late final _duk_get_memory_functionsPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>,
ffi.Pointer<duk_memory_functions>)>>('duk_get_memory_functions');
late final _duk_get_memory_functions =
_duk_get_memory_functionsPtr.asFunction<
void Function(
ffi.Pointer<duk_context>, ffi.Pointer<duk_memory_functions>)>();
void duk_gc(
ffi.Pointer<duk_context> ctx,
int flags,
) {
return _duk_gc(
ctx,
flags,
);
}
late final _duk_gcPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_uint_t)>>('duk_gc');
late final _duk_gc =
_duk_gcPtr.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_throw_raw(
ffi.Pointer<duk_context> ctx,
) {
return _duk_throw_raw(
ctx,
);
}
late final _duk_throw_rawPtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_throw_raw');
late final _duk_throw_raw =
_duk_throw_rawPtr.asFunction<void Function(ffi.Pointer<duk_context>)>();
void duk_fatal_raw(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Char> err_msg,
) {
return _duk_fatal_raw(
ctx,
err_msg,
);
}
late final _duk_fatal_rawPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>,
ffi.Pointer<ffi.Char>)>>('duk_fatal_raw');
late final _duk_fatal_raw = _duk_fatal_rawPtr.asFunction<
void Function(ffi.Pointer<duk_context>, ffi.Pointer<ffi.Char>)>();
void duk_error_raw(
ffi.Pointer<duk_context> ctx,
int err_code,
ffi.Pointer<ffi.Char> filename,
int line,
ffi.Pointer<ffi.Char> fmt,
) {
return _duk_error_raw(
ctx,
err_code,
filename,
line,
fmt,
);
}
late final _duk_error_rawPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>,
duk_errcode_t,
ffi.Pointer<ffi.Char>,
duk_int_t,
ffi.Pointer<ffi.Char>)>>('duk_error_raw');
late final _duk_error_raw = _duk_error_rawPtr.asFunction<
void Function(ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Char>, int,
ffi.Pointer<ffi.Char>)>();
void duk_error_va_raw(
ffi.Pointer<duk_context> ctx,
int err_code,
ffi.Pointer<ffi.Char> filename,
int line,
ffi.Pointer<ffi.Char> fmt,
va_list ap,
) {
return _duk_error_va_raw(
ctx,
err_code,
filename,
line,
fmt,
ap,
);
}
late final _duk_error_va_rawPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>,
duk_errcode_t,
ffi.Pointer<ffi.Char>,
duk_int_t,
ffi.Pointer<ffi.Char>,
va_list)>>('duk_error_va_raw');
late final _duk_error_va_raw = _duk_error_va_rawPtr.asFunction<
void Function(ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Char>, int,
ffi.Pointer<ffi.Char>, va_list)>();
/// Other state related functions
int duk_is_strict_call(
ffi.Pointer<duk_context> ctx,
) {
return _duk_is_strict_call(
ctx,
);
}
late final _duk_is_strict_callPtr = _lookup<
ffi.NativeFunction<duk_bool_t Function(ffi.Pointer<duk_context>)>>(
'duk_is_strict_call');
late final _duk_is_strict_call = _duk_is_strict_callPtr
.asFunction<int Function(ffi.Pointer<duk_context>)>();
int duk_is_constructor_call(
ffi.Pointer<duk_context> ctx,
) {
return _duk_is_constructor_call(
ctx,
);
}
late final _duk_is_constructor_callPtr = _lookup<
ffi.NativeFunction<duk_bool_t Function(ffi.Pointer<duk_context>)>>(
'duk_is_constructor_call');
late final _duk_is_constructor_call = _duk_is_constructor_callPtr
.asFunction<int Function(ffi.Pointer<duk_context>)>();
/// Stack management
int duk_normalize_index(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_normalize_index(
ctx,
idx,
);
}
late final _duk_normalize_indexPtr = _lookup<
ffi.NativeFunction<
duk_idx_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_normalize_index');
late final _duk_normalize_index = _duk_normalize_indexPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_require_normalize_index(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_require_normalize_index(
ctx,
idx,
);
}
late final _duk_require_normalize_indexPtr = _lookup<
ffi.NativeFunction<
duk_idx_t Function(ffi.Pointer<duk_context>,
duk_idx_t)>>('duk_require_normalize_index');
late final _duk_require_normalize_index = _duk_require_normalize_indexPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_is_valid_index(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_is_valid_index(
ctx,
idx,
);
}
late final _duk_is_valid_indexPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_is_valid_index');
late final _duk_is_valid_index = _duk_is_valid_indexPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
void duk_require_valid_index(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_require_valid_index(
ctx,
idx,
);
}
late final _duk_require_valid_indexPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_require_valid_index');
late final _duk_require_valid_index = _duk_require_valid_indexPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
int duk_get_top(
ffi.Pointer<duk_context> ctx,
) {
return _duk_get_top(
ctx,
);
}
late final _duk_get_topPtr =
_lookup<ffi.NativeFunction<duk_idx_t Function(ffi.Pointer<duk_context>)>>(
'duk_get_top');
late final _duk_get_top =
_duk_get_topPtr.asFunction<int Function(ffi.Pointer<duk_context>)>();
void duk_set_top(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_set_top(
ctx,
idx,
);
}
late final _duk_set_topPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_set_top');
late final _duk_set_top = _duk_set_topPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
int duk_get_top_index(
ffi.Pointer<duk_context> ctx,
) {
return _duk_get_top_index(
ctx,
);
}
late final _duk_get_top_indexPtr =
_lookup<ffi.NativeFunction<duk_idx_t Function(ffi.Pointer<duk_context>)>>(
'duk_get_top_index');
late final _duk_get_top_index = _duk_get_top_indexPtr
.asFunction<int Function(ffi.Pointer<duk_context>)>();
int duk_require_top_index(
ffi.Pointer<duk_context> ctx,
) {
return _duk_require_top_index(
ctx,
);
}
late final _duk_require_top_indexPtr =
_lookup<ffi.NativeFunction<duk_idx_t Function(ffi.Pointer<duk_context>)>>(
'duk_require_top_index');
late final _duk_require_top_index = _duk_require_top_indexPtr
.asFunction<int Function(ffi.Pointer<duk_context>)>();
/// Although extra/top could be an unsigned type here, using a signed type
/// makes the API more robust to calling code calculation errors or corner
/// cases (where caller might occasionally come up with negative values).
/// Negative values are treated as zero, which is better than casting them
/// to a large unsigned number. (This principle is used elsewhere in the
/// API too.)
int duk_check_stack(
ffi.Pointer<duk_context> ctx,
int extra,
) {
return _duk_check_stack(
ctx,
extra,
);
}
late final _duk_check_stackPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_check_stack');
late final _duk_check_stack = _duk_check_stackPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
void duk_require_stack(
ffi.Pointer<duk_context> ctx,
int extra,
) {
return _duk_require_stack(
ctx,
extra,
);
}
late final _duk_require_stackPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_require_stack');
late final _duk_require_stack = _duk_require_stackPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
int duk_check_stack_top(
ffi.Pointer<duk_context> ctx,
int top,
) {
return _duk_check_stack_top(
ctx,
top,
);
}
late final _duk_check_stack_topPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_check_stack_top');
late final _duk_check_stack_top = _duk_check_stack_topPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
void duk_require_stack_top(
ffi.Pointer<duk_context> ctx,
int top,
) {
return _duk_require_stack_top(
ctx,
top,
);
}
late final _duk_require_stack_topPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_require_stack_top');
late final _duk_require_stack_top = _duk_require_stack_topPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
/// Stack manipulation (other than push/pop)
void duk_swap(
ffi.Pointer<duk_context> ctx,
int idx1,
int idx2,
) {
return _duk_swap(
ctx,
idx1,
idx2,
);
}
late final _duk_swapPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t, duk_idx_t)>>('duk_swap');
late final _duk_swap = _duk_swapPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int, int)>();
void duk_swap_top(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_swap_top(
ctx,
idx,
);
}
late final _duk_swap_topPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_swap_top');
late final _duk_swap_top = _duk_swap_topPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_dup(
ffi.Pointer<duk_context> ctx,
int from_idx,
) {
return _duk_dup(
ctx,
from_idx,
);
}
late final _duk_dupPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_idx_t)>>('duk_dup');
late final _duk_dup =
_duk_dupPtr.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_dup_top(
ffi.Pointer<duk_context> ctx,
) {
return _duk_dup_top(
ctx,
);
}
late final _duk_dup_topPtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_dup_top');
late final _duk_dup_top =
_duk_dup_topPtr.asFunction<void Function(ffi.Pointer<duk_context>)>();
void duk_insert(
ffi.Pointer<duk_context> ctx,
int to_idx,
) {
return _duk_insert(
ctx,
to_idx,
);
}
late final _duk_insertPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_insert');
late final _duk_insert =
_duk_insertPtr.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_pull(
ffi.Pointer<duk_context> ctx,
int from_idx,
) {
return _duk_pull(
ctx,
from_idx,
);
}
late final _duk_pullPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_idx_t)>>('duk_pull');
late final _duk_pull =
_duk_pullPtr.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_replace(
ffi.Pointer<duk_context> ctx,
int to_idx,
) {
return _duk_replace(
ctx,
to_idx,
);
}
late final _duk_replacePtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_replace');
late final _duk_replace = _duk_replacePtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_copy(
ffi.Pointer<duk_context> ctx,
int from_idx,
int to_idx,
) {
return _duk_copy(
ctx,
from_idx,
to_idx,
);
}
late final _duk_copyPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t, duk_idx_t)>>('duk_copy');
late final _duk_copy = _duk_copyPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int, int)>();
void duk_remove(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_remove(
ctx,
idx,
);
}
late final _duk_removePtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_remove');
late final _duk_remove =
_duk_removePtr.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_xcopymove_raw(
ffi.Pointer<duk_context> to_ctx,
ffi.Pointer<duk_context> from_ctx,
int count,
int is_copy,
) {
return _duk_xcopymove_raw(
to_ctx,
from_ctx,
count,
is_copy,
);
}
late final _duk_xcopymove_rawPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, ffi.Pointer<duk_context>,
duk_idx_t, duk_bool_t)>>('duk_xcopymove_raw');
late final _duk_xcopymove_raw = _duk_xcopymove_rawPtr.asFunction<
void Function(
ffi.Pointer<duk_context>, ffi.Pointer<duk_context>, int, int)>();
/// Push operations
///
/// Push functions return the absolute (relative to bottom of frame)
/// position of the pushed value for convenience.
///
/// Note: duk_dup() is technically a push.
void duk_push_undefined(
ffi.Pointer<duk_context> ctx,
) {
return _duk_push_undefined(
ctx,
);
}
late final _duk_push_undefinedPtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_push_undefined');
late final _duk_push_undefined = _duk_push_undefinedPtr
.asFunction<void Function(ffi.Pointer<duk_context>)>();
void duk_push_null(
ffi.Pointer<duk_context> ctx,
) {
return _duk_push_null(
ctx,
);
}
late final _duk_push_nullPtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_push_null');
late final _duk_push_null =
_duk_push_nullPtr.asFunction<void Function(ffi.Pointer<duk_context>)>();
void duk_push_boolean(
ffi.Pointer<duk_context> ctx,
int val,
) {
return _duk_push_boolean(
ctx,
val,
);
}
late final _duk_push_booleanPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_bool_t)>>('duk_push_boolean');
late final _duk_push_boolean = _duk_push_booleanPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_push_true(
ffi.Pointer<duk_context> ctx,
) {
return _duk_push_true(
ctx,
);
}
late final _duk_push_truePtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_push_true');
late final _duk_push_true =
_duk_push_truePtr.asFunction<void Function(ffi.Pointer<duk_context>)>();
void duk_push_false(
ffi.Pointer<duk_context> ctx,
) {
return _duk_push_false(
ctx,
);
}
late final _duk_push_falsePtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_push_false');
late final _duk_push_false =
_duk_push_falsePtr.asFunction<void Function(ffi.Pointer<duk_context>)>();
void duk_push_number(
ffi.Pointer<duk_context> ctx,
double val,
) {
return _duk_push_number(
ctx,
val,
);
}
late final _duk_push_numberPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_double_t)>>('duk_push_number');
late final _duk_push_number = _duk_push_numberPtr
.asFunction<void Function(ffi.Pointer<duk_context>, double)>();
void duk_push_nan(
ffi.Pointer<duk_context> ctx,
) {
return _duk_push_nan(
ctx,
);
}
late final _duk_push_nanPtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_push_nan');
late final _duk_push_nan =
_duk_push_nanPtr.asFunction<void Function(ffi.Pointer<duk_context>)>();
void duk_push_int(
ffi.Pointer<duk_context> ctx,
int val,
) {
return _duk_push_int(
ctx,
val,
);
}
late final _duk_push_intPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_int_t)>>('duk_push_int');
late final _duk_push_int = _duk_push_intPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_push_uint(
ffi.Pointer<duk_context> ctx,
int val,
) {
return _duk_push_uint(
ctx,
val,
);
}
late final _duk_push_uintPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_uint_t)>>('duk_push_uint');
late final _duk_push_uint = _duk_push_uintPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
ffi.Pointer<ffi.Char> duk_push_string(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Char> str,
) {
return _duk_push_string(
ctx,
str,
);
}
late final _duk_push_stringPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Char> Function(ffi.Pointer<duk_context>,
ffi.Pointer<ffi.Char>)>>('duk_push_string');
late final _duk_push_string = _duk_push_stringPtr.asFunction<
ffi.Pointer<ffi.Char> Function(
ffi.Pointer<duk_context>, ffi.Pointer<ffi.Char>)>();
ffi.Pointer<ffi.Char> duk_push_lstring(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Char> str,
int len,
) {
return _duk_push_lstring(
ctx,
str,
len,
);
}
late final _duk_push_lstringPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Char> Function(ffi.Pointer<duk_context>,
ffi.Pointer<ffi.Char>, duk_size_t)>>('duk_push_lstring');
late final _duk_push_lstring = _duk_push_lstringPtr.asFunction<
ffi.Pointer<ffi.Char> Function(
ffi.Pointer<duk_context>, ffi.Pointer<ffi.Char>, int)>();
void duk_push_pointer(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Void> p,
) {
return _duk_push_pointer(
ctx,
p,
);
}
late final _duk_push_pointerPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>,
ffi.Pointer<ffi.Void>)>>('duk_push_pointer');
late final _duk_push_pointer = _duk_push_pointerPtr.asFunction<
void Function(ffi.Pointer<duk_context>, ffi.Pointer<ffi.Void>)>();
ffi.Pointer<ffi.Char> duk_push_sprintf(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Char> fmt,
) {
return _duk_push_sprintf(
ctx,
fmt,
);
}
late final _duk_push_sprintfPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Char> Function(ffi.Pointer<duk_context>,
ffi.Pointer<ffi.Char>)>>('duk_push_sprintf');
late final _duk_push_sprintf = _duk_push_sprintfPtr.asFunction<
ffi.Pointer<ffi.Char> Function(
ffi.Pointer<duk_context>, ffi.Pointer<ffi.Char>)>();
ffi.Pointer<ffi.Char> duk_push_vsprintf(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Char> fmt,
va_list ap,
) {
return _duk_push_vsprintf(
ctx,
fmt,
ap,
);
}
late final _duk_push_vsprintfPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Char> Function(ffi.Pointer<duk_context>,
ffi.Pointer<ffi.Char>, va_list)>>('duk_push_vsprintf');
late final _duk_push_vsprintf = _duk_push_vsprintfPtr.asFunction<
ffi.Pointer<ffi.Char> Function(
ffi.Pointer<duk_context>, ffi.Pointer<ffi.Char>, va_list)>();
ffi.Pointer<ffi.Char> duk_push_literal_raw(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Char> str,
int len,
) {
return _duk_push_literal_raw(
ctx,
str,
len,
);
}
late final _duk_push_literal_rawPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Char> Function(ffi.Pointer<duk_context>,
ffi.Pointer<ffi.Char>, duk_size_t)>>('duk_push_literal_raw');
late final _duk_push_literal_raw = _duk_push_literal_rawPtr.asFunction<
ffi.Pointer<ffi.Char> Function(
ffi.Pointer<duk_context>, ffi.Pointer<ffi.Char>, int)>();
void duk_push_this(
ffi.Pointer<duk_context> ctx,
) {
return _duk_push_this(
ctx,
);
}
late final _duk_push_thisPtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_push_this');
late final _duk_push_this =
_duk_push_thisPtr.asFunction<void Function(ffi.Pointer<duk_context>)>();
void duk_push_new_target(
ffi.Pointer<duk_context> ctx,
) {
return _duk_push_new_target(
ctx,
);
}
late final _duk_push_new_targetPtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_push_new_target');
late final _duk_push_new_target = _duk_push_new_targetPtr
.asFunction<void Function(ffi.Pointer<duk_context>)>();
void duk_push_current_function(
ffi.Pointer<duk_context> ctx,
) {
return _duk_push_current_function(
ctx,
);
}
late final _duk_push_current_functionPtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_push_current_function');
late final _duk_push_current_function = _duk_push_current_functionPtr
.asFunction<void Function(ffi.Pointer<duk_context>)>();
void duk_push_current_thread(
ffi.Pointer<duk_context> ctx,
) {
return _duk_push_current_thread(
ctx,
);
}
late final _duk_push_current_threadPtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_push_current_thread');
late final _duk_push_current_thread = _duk_push_current_threadPtr
.asFunction<void Function(ffi.Pointer<duk_context>)>();
void duk_push_global_object(
ffi.Pointer<duk_context> ctx,
) {
return _duk_push_global_object(
ctx,
);
}
late final _duk_push_global_objectPtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_push_global_object');
late final _duk_push_global_object = _duk_push_global_objectPtr
.asFunction<void Function(ffi.Pointer<duk_context>)>();
void duk_push_heap_stash(
ffi.Pointer<duk_context> ctx,
) {
return _duk_push_heap_stash(
ctx,
);
}
late final _duk_push_heap_stashPtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_push_heap_stash');
late final _duk_push_heap_stash = _duk_push_heap_stashPtr
.asFunction<void Function(ffi.Pointer<duk_context>)>();
void duk_push_global_stash(
ffi.Pointer<duk_context> ctx,
) {
return _duk_push_global_stash(
ctx,
);
}
late final _duk_push_global_stashPtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_push_global_stash');
late final _duk_push_global_stash = _duk_push_global_stashPtr
.asFunction<void Function(ffi.Pointer<duk_context>)>();
void duk_push_thread_stash(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<duk_context> target_ctx,
) {
return _duk_push_thread_stash(
ctx,
target_ctx,
);
}
late final _duk_push_thread_stashPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>,
ffi.Pointer<duk_context>)>>('duk_push_thread_stash');
late final _duk_push_thread_stash = _duk_push_thread_stashPtr.asFunction<
void Function(ffi.Pointer<duk_context>, ffi.Pointer<duk_context>)>();
int duk_push_object(
ffi.Pointer<duk_context> ctx,
) {
return _duk_push_object(
ctx,
);
}
late final _duk_push_objectPtr =
_lookup<ffi.NativeFunction<duk_idx_t Function(ffi.Pointer<duk_context>)>>(
'duk_push_object');
late final _duk_push_object =
_duk_push_objectPtr.asFunction<int Function(ffi.Pointer<duk_context>)>();
int duk_push_bare_object(
ffi.Pointer<duk_context> ctx,
) {
return _duk_push_bare_object(
ctx,
);
}
late final _duk_push_bare_objectPtr =
_lookup<ffi.NativeFunction<duk_idx_t Function(ffi.Pointer<duk_context>)>>(
'duk_push_bare_object');
late final _duk_push_bare_object = _duk_push_bare_objectPtr
.asFunction<int Function(ffi.Pointer<duk_context>)>();
int duk_push_array(
ffi.Pointer<duk_context> ctx,
) {
return _duk_push_array(
ctx,
);
}
late final _duk_push_arrayPtr =
_lookup<ffi.NativeFunction<duk_idx_t Function(ffi.Pointer<duk_context>)>>(
'duk_push_array');
late final _duk_push_array =
_duk_push_arrayPtr.asFunction<int Function(ffi.Pointer<duk_context>)>();
int duk_push_bare_array(
ffi.Pointer<duk_context> ctx,
) {
return _duk_push_bare_array(
ctx,
);
}
late final _duk_push_bare_arrayPtr =
_lookup<ffi.NativeFunction<duk_idx_t Function(ffi.Pointer<duk_context>)>>(
'duk_push_bare_array');
late final _duk_push_bare_array = _duk_push_bare_arrayPtr
.asFunction<int Function(ffi.Pointer<duk_context>)>();
int duk_push_c_function(
ffi.Pointer<duk_context> ctx,
duk_c_function func,
int nargs,
) {
return _duk_push_c_function(
ctx,
func,
nargs,
);
}
late final _duk_push_c_functionPtr = _lookup<
ffi.NativeFunction<
duk_idx_t Function(ffi.Pointer<duk_context>, duk_c_function,
duk_idx_t)>>('duk_push_c_function');
late final _duk_push_c_function = _duk_push_c_functionPtr.asFunction<
int Function(ffi.Pointer<duk_context>, duk_c_function, int)>();
int duk_push_c_lightfunc(
ffi.Pointer<duk_context> ctx,
duk_c_function func,
int nargs,
int length,
int magic,
) {
return _duk_push_c_lightfunc(
ctx,
func,
nargs,
length,
magic,
);
}
late final _duk_push_c_lightfuncPtr = _lookup<
ffi.NativeFunction<
duk_idx_t Function(ffi.Pointer<duk_context>, duk_c_function,
duk_idx_t, duk_idx_t, duk_int_t)>>('duk_push_c_lightfunc');
late final _duk_push_c_lightfunc = _duk_push_c_lightfuncPtr.asFunction<
int Function(ffi.Pointer<duk_context>, duk_c_function, int, int, int)>();
int duk_push_thread_raw(
ffi.Pointer<duk_context> ctx,
int flags,
) {
return _duk_push_thread_raw(
ctx,
flags,
);
}
late final _duk_push_thread_rawPtr = _lookup<
ffi.NativeFunction<
duk_idx_t Function(
ffi.Pointer<duk_context>, duk_uint_t)>>('duk_push_thread_raw');
late final _duk_push_thread_raw = _duk_push_thread_rawPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_push_proxy(
ffi.Pointer<duk_context> ctx,
int proxy_flags,
) {
return _duk_push_proxy(
ctx,
proxy_flags,
);
}
late final _duk_push_proxyPtr = _lookup<
ffi.NativeFunction<
duk_idx_t Function(
ffi.Pointer<duk_context>, duk_uint_t)>>('duk_push_proxy');
late final _duk_push_proxy = _duk_push_proxyPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_push_error_object_raw(
ffi.Pointer<duk_context> ctx,
int err_code,
ffi.Pointer<ffi.Char> filename,
int line,
ffi.Pointer<ffi.Char> fmt,
) {
return _duk_push_error_object_raw(
ctx,
err_code,
filename,
line,
fmt,
);
}
late final _duk_push_error_object_rawPtr = _lookup<
ffi.NativeFunction<
duk_idx_t Function(
ffi.Pointer<duk_context>,
duk_errcode_t,
ffi.Pointer<ffi.Char>,
duk_int_t,
ffi.Pointer<ffi.Char>)>>('duk_push_error_object_raw');
late final _duk_push_error_object_raw =
_duk_push_error_object_rawPtr.asFunction<
int Function(ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Char>,
int, ffi.Pointer<ffi.Char>)>();
int duk_push_error_object_va_raw(
ffi.Pointer<duk_context> ctx,
int err_code,
ffi.Pointer<ffi.Char> filename,
int line,
ffi.Pointer<ffi.Char> fmt,
va_list ap,
) {
return _duk_push_error_object_va_raw(
ctx,
err_code,
filename,
line,
fmt,
ap,
);
}
late final _duk_push_error_object_va_rawPtr = _lookup<
ffi.NativeFunction<
duk_idx_t Function(
ffi.Pointer<duk_context>,
duk_errcode_t,
ffi.Pointer<ffi.Char>,
duk_int_t,
ffi.Pointer<ffi.Char>,
va_list)>>('duk_push_error_object_va_raw');
late final _duk_push_error_object_va_raw =
_duk_push_error_object_va_rawPtr.asFunction<
int Function(ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Char>,
int, ffi.Pointer<ffi.Char>, va_list)>();
ffi.Pointer<ffi.Void> duk_push_buffer_raw(
ffi.Pointer<duk_context> ctx,
int size,
int flags,
) {
return _duk_push_buffer_raw(
ctx,
size,
flags,
);
}
late final _duk_push_buffer_rawPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, duk_size_t,
duk_small_uint_t)>>('duk_push_buffer_raw');
late final _duk_push_buffer_raw = _duk_push_buffer_rawPtr.asFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, int, int)>();
void duk_push_buffer_object(
ffi.Pointer<duk_context> ctx,
int idx_buffer,
int byte_offset,
int byte_length,
int flags,
) {
return _duk_push_buffer_object(
ctx,
idx_buffer,
byte_offset,
byte_length,
flags,
);
}
late final _duk_push_buffer_objectPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_idx_t, duk_size_t,
duk_size_t, duk_uint_t)>>('duk_push_buffer_object');
late final _duk_push_buffer_object = _duk_push_buffer_objectPtr.asFunction<
void Function(ffi.Pointer<duk_context>, int, int, int, int)>();
int duk_push_heapptr(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Void> ptr,
) {
return _duk_push_heapptr(
ctx,
ptr,
);
}
late final _duk_push_heapptrPtr = _lookup<
ffi.NativeFunction<
duk_idx_t Function(ffi.Pointer<duk_context>,
ffi.Pointer<ffi.Void>)>>('duk_push_heapptr');
late final _duk_push_heapptr = _duk_push_heapptrPtr.asFunction<
int Function(ffi.Pointer<duk_context>, ffi.Pointer<ffi.Void>)>();
/// Pop operations
void duk_pop(
ffi.Pointer<duk_context> ctx,
) {
return _duk_pop(
ctx,
);
}
late final _duk_popPtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_pop');
late final _duk_pop =
_duk_popPtr.asFunction<void Function(ffi.Pointer<duk_context>)>();
void duk_pop_n(
ffi.Pointer<duk_context> ctx,
int count,
) {
return _duk_pop_n(
ctx,
count,
);
}
late final _duk_pop_nPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_idx_t)>>('duk_pop_n');
late final _duk_pop_n =
_duk_pop_nPtr.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_pop_2(
ffi.Pointer<duk_context> ctx,
) {
return _duk_pop_2(
ctx,
);
}
late final _duk_pop_2Ptr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_pop_2');
late final _duk_pop_2 =
_duk_pop_2Ptr.asFunction<void Function(ffi.Pointer<duk_context>)>();
void duk_pop_3(
ffi.Pointer<duk_context> ctx,
) {
return _duk_pop_3(
ctx,
);
}
late final _duk_pop_3Ptr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_pop_3');
late final _duk_pop_3 =
_duk_pop_3Ptr.asFunction<void Function(ffi.Pointer<duk_context>)>();
/// Type checks
///
/// duk_is_none(), which would indicate whether index it outside of stack,
/// is not needed; duk_is_valid_index() gives the same information.
int duk_get_type(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_get_type(
ctx,
idx,
);
}
late final _duk_get_typePtr = _lookup<
ffi.NativeFunction<
duk_int_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_get_type');
late final _duk_get_type = _duk_get_typePtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_check_type(
ffi.Pointer<duk_context> ctx,
int idx,
int type,
) {
return _duk_check_type(
ctx,
idx,
type,
);
}
late final _duk_check_typePtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_int_t)>>('duk_check_type');
late final _duk_check_type = _duk_check_typePtr
.asFunction<int Function(ffi.Pointer<duk_context>, int, int)>();
int duk_get_type_mask(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_get_type_mask(
ctx,
idx,
);
}
late final _duk_get_type_maskPtr = _lookup<
ffi.NativeFunction<
duk_uint_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_get_type_mask');
late final _duk_get_type_mask = _duk_get_type_maskPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_check_type_mask(
ffi.Pointer<duk_context> ctx,
int idx,
int mask,
) {
return _duk_check_type_mask(
ctx,
idx,
mask,
);
}
late final _duk_check_type_maskPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_uint_t)>>('duk_check_type_mask');
late final _duk_check_type_mask = _duk_check_type_maskPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int, int)>();
int duk_is_undefined(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_is_undefined(
ctx,
idx,
);
}
late final _duk_is_undefinedPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_is_undefined');
late final _duk_is_undefined = _duk_is_undefinedPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_is_null(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_is_null(
ctx,
idx,
);
}
late final _duk_is_nullPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_is_null');
late final _duk_is_null =
_duk_is_nullPtr.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_is_boolean(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_is_boolean(
ctx,
idx,
);
}
late final _duk_is_booleanPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_is_boolean');
late final _duk_is_boolean = _duk_is_booleanPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_is_number(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_is_number(
ctx,
idx,
);
}
late final _duk_is_numberPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_is_number');
late final _duk_is_number = _duk_is_numberPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_is_nan(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_is_nan(
ctx,
idx,
);
}
late final _duk_is_nanPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_is_nan');
late final _duk_is_nan =
_duk_is_nanPtr.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_is_string(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_is_string(
ctx,
idx,
);
}
late final _duk_is_stringPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_is_string');
late final _duk_is_string = _duk_is_stringPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_is_object(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_is_object(
ctx,
idx,
);
}
late final _duk_is_objectPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_is_object');
late final _duk_is_object = _duk_is_objectPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_is_buffer(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_is_buffer(
ctx,
idx,
);
}
late final _duk_is_bufferPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_is_buffer');
late final _duk_is_buffer = _duk_is_bufferPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_is_buffer_data(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_is_buffer_data(
ctx,
idx,
);
}
late final _duk_is_buffer_dataPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_is_buffer_data');
late final _duk_is_buffer_data = _duk_is_buffer_dataPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_is_pointer(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_is_pointer(
ctx,
idx,
);
}
late final _duk_is_pointerPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_is_pointer');
late final _duk_is_pointer = _duk_is_pointerPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_is_lightfunc(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_is_lightfunc(
ctx,
idx,
);
}
late final _duk_is_lightfuncPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_is_lightfunc');
late final _duk_is_lightfunc = _duk_is_lightfuncPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_is_symbol(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_is_symbol(
ctx,
idx,
);
}
late final _duk_is_symbolPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_is_symbol');
late final _duk_is_symbol = _duk_is_symbolPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_is_array(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_is_array(
ctx,
idx,
);
}
late final _duk_is_arrayPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_is_array');
late final _duk_is_array = _duk_is_arrayPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_is_function(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_is_function(
ctx,
idx,
);
}
late final _duk_is_functionPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_is_function');
late final _duk_is_function = _duk_is_functionPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_is_c_function(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_is_c_function(
ctx,
idx,
);
}
late final _duk_is_c_functionPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_is_c_function');
late final _duk_is_c_function = _duk_is_c_functionPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_is_ecmascript_function(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_is_ecmascript_function(
ctx,
idx,
);
}
late final _duk_is_ecmascript_functionPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>,
duk_idx_t)>>('duk_is_ecmascript_function');
late final _duk_is_ecmascript_function = _duk_is_ecmascript_functionPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_is_bound_function(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_is_bound_function(
ctx,
idx,
);
}
late final _duk_is_bound_functionPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_is_bound_function');
late final _duk_is_bound_function = _duk_is_bound_functionPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_is_thread(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_is_thread(
ctx,
idx,
);
}
late final _duk_is_threadPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_is_thread');
late final _duk_is_thread = _duk_is_threadPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_is_constructable(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_is_constructable(
ctx,
idx,
);
}
late final _duk_is_constructablePtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_is_constructable');
late final _duk_is_constructable = _duk_is_constructablePtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_is_dynamic_buffer(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_is_dynamic_buffer(
ctx,
idx,
);
}
late final _duk_is_dynamic_bufferPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_is_dynamic_buffer');
late final _duk_is_dynamic_buffer = _duk_is_dynamic_bufferPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_is_fixed_buffer(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_is_fixed_buffer(
ctx,
idx,
);
}
late final _duk_is_fixed_bufferPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_is_fixed_buffer');
late final _duk_is_fixed_buffer = _duk_is_fixed_bufferPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_is_external_buffer(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_is_external_buffer(
ctx,
idx,
);
}
late final _duk_is_external_bufferPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_is_external_buffer');
late final _duk_is_external_buffer = _duk_is_external_bufferPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_get_error_code(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_get_error_code(
ctx,
idx,
);
}
late final _duk_get_error_codePtr = _lookup<
ffi.NativeFunction<
duk_errcode_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_get_error_code');
late final _duk_get_error_code = _duk_get_error_codePtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
/// Get operations: no coercion, returns default value for invalid
/// indices and invalid value types.
///
/// duk_get_undefined() and duk_get_null() would be pointless and
/// are not included.
int duk_get_boolean(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_get_boolean(
ctx,
idx,
);
}
late final _duk_get_booleanPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_get_boolean');
late final _duk_get_boolean = _duk_get_booleanPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
double duk_get_number(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_get_number(
ctx,
idx,
);
}
late final _duk_get_numberPtr = _lookup<
ffi.NativeFunction<
duk_double_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_get_number');
late final _duk_get_number = _duk_get_numberPtr
.asFunction<double Function(ffi.Pointer<duk_context>, int)>();
int duk_get_int(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_get_int(
ctx,
idx,
);
}
late final _duk_get_intPtr = _lookup<
ffi.NativeFunction<
duk_int_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_get_int');
late final _duk_get_int =
_duk_get_intPtr.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_get_uint(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_get_uint(
ctx,
idx,
);
}
late final _duk_get_uintPtr = _lookup<
ffi.NativeFunction<
duk_uint_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_get_uint');
late final _duk_get_uint = _duk_get_uintPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
ffi.Pointer<ffi.Char> duk_get_string(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_get_string(
ctx,
idx,
);
}
late final _duk_get_stringPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Char> Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_get_string');
late final _duk_get_string = _duk_get_stringPtr.asFunction<
ffi.Pointer<ffi.Char> Function(ffi.Pointer<duk_context>, int)>();
ffi.Pointer<ffi.Char> duk_get_lstring(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<duk_size_t> out_len,
) {
return _duk_get_lstring(
ctx,
idx,
out_len,
);
}
late final _duk_get_lstringPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Char> Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<duk_size_t>)>>('duk_get_lstring');
late final _duk_get_lstring = _duk_get_lstringPtr.asFunction<
ffi.Pointer<ffi.Char> Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<duk_size_t>)>();
ffi.Pointer<ffi.Void> duk_get_buffer(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<duk_size_t> out_size,
) {
return _duk_get_buffer(
ctx,
idx,
out_size,
);
}
late final _duk_get_bufferPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<duk_size_t>)>>('duk_get_buffer');
late final _duk_get_buffer = _duk_get_bufferPtr.asFunction<
ffi.Pointer<ffi.Void> Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<duk_size_t>)>();
ffi.Pointer<ffi.Void> duk_get_buffer_data(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<duk_size_t> out_size,
) {
return _duk_get_buffer_data(
ctx,
idx,
out_size,
);
}
late final _duk_get_buffer_dataPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<duk_size_t>)>>('duk_get_buffer_data');
late final _duk_get_buffer_data = _duk_get_buffer_dataPtr.asFunction<
ffi.Pointer<ffi.Void> Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<duk_size_t>)>();
ffi.Pointer<ffi.Void> duk_get_pointer(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_get_pointer(
ctx,
idx,
);
}
late final _duk_get_pointerPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_get_pointer');
late final _duk_get_pointer = _duk_get_pointerPtr.asFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, int)>();
duk_c_function duk_get_c_function(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_get_c_function(
ctx,
idx,
);
}
late final _duk_get_c_functionPtr = _lookup<
ffi.NativeFunction<
duk_c_function Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_get_c_function');
late final _duk_get_c_function = _duk_get_c_functionPtr
.asFunction<duk_c_function Function(ffi.Pointer<duk_context>, int)>();
ffi.Pointer<duk_context> duk_get_context(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_get_context(
ctx,
idx,
);
}
late final _duk_get_contextPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<duk_context> Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_get_context');
late final _duk_get_context = _duk_get_contextPtr.asFunction<
ffi.Pointer<duk_context> Function(ffi.Pointer<duk_context>, int)>();
ffi.Pointer<ffi.Void> duk_get_heapptr(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_get_heapptr(
ctx,
idx,
);
}
late final _duk_get_heapptrPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_get_heapptr');
late final _duk_get_heapptr = _duk_get_heapptrPtr.asFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, int)>();
/// Get-with-explicit default operations: like get operations but with an
/// explicit default value.
int duk_get_boolean_default(
ffi.Pointer<duk_context> ctx,
int idx,
int def_value,
) {
return _duk_get_boolean_default(
ctx,
idx,
def_value,
);
}
late final _duk_get_boolean_defaultPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_bool_t)>>('duk_get_boolean_default');
late final _duk_get_boolean_default = _duk_get_boolean_defaultPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int, int)>();
double duk_get_number_default(
ffi.Pointer<duk_context> ctx,
int idx,
double def_value,
) {
return _duk_get_number_default(
ctx,
idx,
def_value,
);
}
late final _duk_get_number_defaultPtr = _lookup<
ffi.NativeFunction<
duk_double_t Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_double_t)>>('duk_get_number_default');
late final _duk_get_number_default = _duk_get_number_defaultPtr
.asFunction<double Function(ffi.Pointer<duk_context>, int, double)>();
int duk_get_int_default(
ffi.Pointer<duk_context> ctx,
int idx,
int def_value,
) {
return _duk_get_int_default(
ctx,
idx,
def_value,
);
}
late final _duk_get_int_defaultPtr = _lookup<
ffi.NativeFunction<
duk_int_t Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_int_t)>>('duk_get_int_default');
late final _duk_get_int_default = _duk_get_int_defaultPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int, int)>();
int duk_get_uint_default(
ffi.Pointer<duk_context> ctx,
int idx,
int def_value,
) {
return _duk_get_uint_default(
ctx,
idx,
def_value,
);
}
late final _duk_get_uint_defaultPtr = _lookup<
ffi.NativeFunction<
duk_uint_t Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_uint_t)>>('duk_get_uint_default');
late final _duk_get_uint_default = _duk_get_uint_defaultPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int, int)>();
ffi.Pointer<ffi.Char> duk_get_string_default(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<ffi.Char> def_value,
) {
return _duk_get_string_default(
ctx,
idx,
def_value,
);
}
late final _duk_get_string_defaultPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Char> Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<ffi.Char>)>>('duk_get_string_default');
late final _duk_get_string_default = _duk_get_string_defaultPtr.asFunction<
ffi.Pointer<ffi.Char> Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Char>)>();
ffi.Pointer<ffi.Char> duk_get_lstring_default(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<duk_size_t> out_len,
ffi.Pointer<ffi.Char> def_ptr,
int def_len,
) {
return _duk_get_lstring_default(
ctx,
idx,
out_len,
def_ptr,
def_len,
);
}
late final _duk_get_lstring_defaultPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Char> Function(
ffi.Pointer<duk_context>,
duk_idx_t,
ffi.Pointer<duk_size_t>,
ffi.Pointer<ffi.Char>,
duk_size_t)>>('duk_get_lstring_default');
late final _duk_get_lstring_default = _duk_get_lstring_defaultPtr.asFunction<
ffi.Pointer<ffi.Char> Function(ffi.Pointer<duk_context>, int,
ffi.Pointer<duk_size_t>, ffi.Pointer<ffi.Char>, int)>();
ffi.Pointer<ffi.Void> duk_get_buffer_default(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<duk_size_t> out_size,
ffi.Pointer<ffi.Void> def_ptr,
int def_len,
) {
return _duk_get_buffer_default(
ctx,
idx,
out_size,
def_ptr,
def_len,
);
}
late final _duk_get_buffer_defaultPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(
ffi.Pointer<duk_context>,
duk_idx_t,
ffi.Pointer<duk_size_t>,
ffi.Pointer<ffi.Void>,
duk_size_t)>>('duk_get_buffer_default');
late final _duk_get_buffer_default = _duk_get_buffer_defaultPtr.asFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, int,
ffi.Pointer<duk_size_t>, ffi.Pointer<ffi.Void>, int)>();
ffi.Pointer<ffi.Void> duk_get_buffer_data_default(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<duk_size_t> out_size,
ffi.Pointer<ffi.Void> def_ptr,
int def_len,
) {
return _duk_get_buffer_data_default(
ctx,
idx,
out_size,
def_ptr,
def_len,
);
}
late final _duk_get_buffer_data_defaultPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(
ffi.Pointer<duk_context>,
duk_idx_t,
ffi.Pointer<duk_size_t>,
ffi.Pointer<ffi.Void>,
duk_size_t)>>('duk_get_buffer_data_default');
late final _duk_get_buffer_data_default =
_duk_get_buffer_data_defaultPtr.asFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, int,
ffi.Pointer<duk_size_t>, ffi.Pointer<ffi.Void>, int)>();
ffi.Pointer<ffi.Void> duk_get_pointer_default(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<ffi.Void> def_value,
) {
return _duk_get_pointer_default(
ctx,
idx,
def_value,
);
}
late final _duk_get_pointer_defaultPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<ffi.Void>)>>('duk_get_pointer_default');
late final _duk_get_pointer_default = _duk_get_pointer_defaultPtr.asFunction<
ffi.Pointer<ffi.Void> Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Void>)>();
duk_c_function duk_get_c_function_default(
ffi.Pointer<duk_context> ctx,
int idx,
duk_c_function def_value,
) {
return _duk_get_c_function_default(
ctx,
idx,
def_value,
);
}
late final _duk_get_c_function_defaultPtr = _lookup<
ffi.NativeFunction<
duk_c_function Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_c_function)>>('duk_get_c_function_default');
late final _duk_get_c_function_default =
_duk_get_c_function_defaultPtr.asFunction<
duk_c_function Function(
ffi.Pointer<duk_context>, int, duk_c_function)>();
ffi.Pointer<duk_context> duk_get_context_default(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<duk_context> def_value,
) {
return _duk_get_context_default(
ctx,
idx,
def_value,
);
}
late final _duk_get_context_defaultPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<duk_context> Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<duk_context>)>>('duk_get_context_default');
late final _duk_get_context_default = _duk_get_context_defaultPtr.asFunction<
ffi.Pointer<duk_context> Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<duk_context>)>();
ffi.Pointer<ffi.Void> duk_get_heapptr_default(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<ffi.Void> def_value,
) {
return _duk_get_heapptr_default(
ctx,
idx,
def_value,
);
}
late final _duk_get_heapptr_defaultPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<ffi.Void>)>>('duk_get_heapptr_default');
late final _duk_get_heapptr_default = _duk_get_heapptr_defaultPtr.asFunction<
ffi.Pointer<ffi.Void> Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Void>)>();
/// Opt operations: like require operations but with an explicit default value
/// when value is undefined or index is invalid, null and non-matching types
/// cause a TypeError.
int duk_opt_boolean(
ffi.Pointer<duk_context> ctx,
int idx,
int def_value,
) {
return _duk_opt_boolean(
ctx,
idx,
def_value,
);
}
late final _duk_opt_booleanPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_bool_t)>>('duk_opt_boolean');
late final _duk_opt_boolean = _duk_opt_booleanPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int, int)>();
double duk_opt_number(
ffi.Pointer<duk_context> ctx,
int idx,
double def_value,
) {
return _duk_opt_number(
ctx,
idx,
def_value,
);
}
late final _duk_opt_numberPtr = _lookup<
ffi.NativeFunction<
duk_double_t Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_double_t)>>('duk_opt_number');
late final _duk_opt_number = _duk_opt_numberPtr
.asFunction<double Function(ffi.Pointer<duk_context>, int, double)>();
int duk_opt_int(
ffi.Pointer<duk_context> ctx,
int idx,
int def_value,
) {
return _duk_opt_int(
ctx,
idx,
def_value,
);
}
late final _duk_opt_intPtr = _lookup<
ffi.NativeFunction<
duk_int_t Function(
ffi.Pointer<duk_context>, duk_idx_t, duk_int_t)>>('duk_opt_int');
late final _duk_opt_int = _duk_opt_intPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int, int)>();
int duk_opt_uint(
ffi.Pointer<duk_context> ctx,
int idx,
int def_value,
) {
return _duk_opt_uint(
ctx,
idx,
def_value,
);
}
late final _duk_opt_uintPtr = _lookup<
ffi.NativeFunction<
duk_uint_t Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_uint_t)>>('duk_opt_uint');
late final _duk_opt_uint = _duk_opt_uintPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int, int)>();
ffi.Pointer<ffi.Char> duk_opt_string(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<ffi.Char> def_ptr,
) {
return _duk_opt_string(
ctx,
idx,
def_ptr,
);
}
late final _duk_opt_stringPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Char> Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<ffi.Char>)>>('duk_opt_string');
late final _duk_opt_string = _duk_opt_stringPtr.asFunction<
ffi.Pointer<ffi.Char> Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Char>)>();
ffi.Pointer<ffi.Char> duk_opt_lstring(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<duk_size_t> out_len,
ffi.Pointer<ffi.Char> def_ptr,
int def_len,
) {
return _duk_opt_lstring(
ctx,
idx,
out_len,
def_ptr,
def_len,
);
}
late final _duk_opt_lstringPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Char> Function(
ffi.Pointer<duk_context>,
duk_idx_t,
ffi.Pointer<duk_size_t>,
ffi.Pointer<ffi.Char>,
duk_size_t)>>('duk_opt_lstring');
late final _duk_opt_lstring = _duk_opt_lstringPtr.asFunction<
ffi.Pointer<ffi.Char> Function(ffi.Pointer<duk_context>, int,
ffi.Pointer<duk_size_t>, ffi.Pointer<ffi.Char>, int)>();
ffi.Pointer<ffi.Void> duk_opt_buffer(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<duk_size_t> out_size,
ffi.Pointer<ffi.Void> def_ptr,
int def_size,
) {
return _duk_opt_buffer(
ctx,
idx,
out_size,
def_ptr,
def_size,
);
}
late final _duk_opt_bufferPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(
ffi.Pointer<duk_context>,
duk_idx_t,
ffi.Pointer<duk_size_t>,
ffi.Pointer<ffi.Void>,
duk_size_t)>>('duk_opt_buffer');
late final _duk_opt_buffer = _duk_opt_bufferPtr.asFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, int,
ffi.Pointer<duk_size_t>, ffi.Pointer<ffi.Void>, int)>();
ffi.Pointer<ffi.Void> duk_opt_buffer_data(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<duk_size_t> out_size,
ffi.Pointer<ffi.Void> def_ptr,
int def_size,
) {
return _duk_opt_buffer_data(
ctx,
idx,
out_size,
def_ptr,
def_size,
);
}
late final _duk_opt_buffer_dataPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(
ffi.Pointer<duk_context>,
duk_idx_t,
ffi.Pointer<duk_size_t>,
ffi.Pointer<ffi.Void>,
duk_size_t)>>('duk_opt_buffer_data');
late final _duk_opt_buffer_data = _duk_opt_buffer_dataPtr.asFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, int,
ffi.Pointer<duk_size_t>, ffi.Pointer<ffi.Void>, int)>();
ffi.Pointer<ffi.Void> duk_opt_pointer(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<ffi.Void> def_value,
) {
return _duk_opt_pointer(
ctx,
idx,
def_value,
);
}
late final _duk_opt_pointerPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<ffi.Void>)>>('duk_opt_pointer');
late final _duk_opt_pointer = _duk_opt_pointerPtr.asFunction<
ffi.Pointer<ffi.Void> Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Void>)>();
duk_c_function duk_opt_c_function(
ffi.Pointer<duk_context> ctx,
int idx,
duk_c_function def_value,
) {
return _duk_opt_c_function(
ctx,
idx,
def_value,
);
}
late final _duk_opt_c_functionPtr = _lookup<
ffi.NativeFunction<
duk_c_function Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_c_function)>>('duk_opt_c_function');
late final _duk_opt_c_function = _duk_opt_c_functionPtr.asFunction<
duk_c_function Function(ffi.Pointer<duk_context>, int, duk_c_function)>();
ffi.Pointer<duk_context> duk_opt_context(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<duk_context> def_value,
) {
return _duk_opt_context(
ctx,
idx,
def_value,
);
}
late final _duk_opt_contextPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<duk_context> Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<duk_context>)>>('duk_opt_context');
late final _duk_opt_context = _duk_opt_contextPtr.asFunction<
ffi.Pointer<duk_context> Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<duk_context>)>();
ffi.Pointer<ffi.Void> duk_opt_heapptr(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<ffi.Void> def_value,
) {
return _duk_opt_heapptr(
ctx,
idx,
def_value,
);
}
late final _duk_opt_heapptrPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<ffi.Void>)>>('duk_opt_heapptr');
late final _duk_opt_heapptr = _duk_opt_heapptrPtr.asFunction<
ffi.Pointer<ffi.Void> Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Void>)>();
void duk_require_undefined(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_require_undefined(
ctx,
idx,
);
}
late final _duk_require_undefinedPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_require_undefined');
late final _duk_require_undefined = _duk_require_undefinedPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_require_null(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_require_null(
ctx,
idx,
);
}
late final _duk_require_nullPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_require_null');
late final _duk_require_null = _duk_require_nullPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
int duk_require_boolean(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_require_boolean(
ctx,
idx,
);
}
late final _duk_require_booleanPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_require_boolean');
late final _duk_require_boolean = _duk_require_booleanPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
double duk_require_number(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_require_number(
ctx,
idx,
);
}
late final _duk_require_numberPtr = _lookup<
ffi.NativeFunction<
duk_double_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_require_number');
late final _duk_require_number = _duk_require_numberPtr
.asFunction<double Function(ffi.Pointer<duk_context>, int)>();
int duk_require_int(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_require_int(
ctx,
idx,
);
}
late final _duk_require_intPtr = _lookup<
ffi.NativeFunction<
duk_int_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_require_int');
late final _duk_require_int = _duk_require_intPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_require_uint(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_require_uint(
ctx,
idx,
);
}
late final _duk_require_uintPtr = _lookup<
ffi.NativeFunction<
duk_uint_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_require_uint');
late final _duk_require_uint = _duk_require_uintPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
ffi.Pointer<ffi.Char> duk_require_string(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_require_string(
ctx,
idx,
);
}
late final _duk_require_stringPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Char> Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_require_string');
late final _duk_require_string = _duk_require_stringPtr.asFunction<
ffi.Pointer<ffi.Char> Function(ffi.Pointer<duk_context>, int)>();
ffi.Pointer<ffi.Char> duk_require_lstring(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<duk_size_t> out_len,
) {
return _duk_require_lstring(
ctx,
idx,
out_len,
);
}
late final _duk_require_lstringPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Char> Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<duk_size_t>)>>('duk_require_lstring');
late final _duk_require_lstring = _duk_require_lstringPtr.asFunction<
ffi.Pointer<ffi.Char> Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<duk_size_t>)>();
void duk_require_object(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_require_object(
ctx,
idx,
);
}
late final _duk_require_objectPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_require_object');
late final _duk_require_object = _duk_require_objectPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
ffi.Pointer<ffi.Void> duk_require_buffer(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<duk_size_t> out_size,
) {
return _duk_require_buffer(
ctx,
idx,
out_size,
);
}
late final _duk_require_bufferPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<duk_size_t>)>>('duk_require_buffer');
late final _duk_require_buffer = _duk_require_bufferPtr.asFunction<
ffi.Pointer<ffi.Void> Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<duk_size_t>)>();
ffi.Pointer<ffi.Void> duk_require_buffer_data(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<duk_size_t> out_size,
) {
return _duk_require_buffer_data(
ctx,
idx,
out_size,
);
}
late final _duk_require_buffer_dataPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<duk_size_t>)>>('duk_require_buffer_data');
late final _duk_require_buffer_data = _duk_require_buffer_dataPtr.asFunction<
ffi.Pointer<ffi.Void> Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<duk_size_t>)>();
ffi.Pointer<ffi.Void> duk_require_pointer(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_require_pointer(
ctx,
idx,
);
}
late final _duk_require_pointerPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_require_pointer');
late final _duk_require_pointer = _duk_require_pointerPtr.asFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, int)>();
duk_c_function duk_require_c_function(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_require_c_function(
ctx,
idx,
);
}
late final _duk_require_c_functionPtr = _lookup<
ffi.NativeFunction<
duk_c_function Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_require_c_function');
late final _duk_require_c_function = _duk_require_c_functionPtr
.asFunction<duk_c_function Function(ffi.Pointer<duk_context>, int)>();
ffi.Pointer<duk_context> duk_require_context(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_require_context(
ctx,
idx,
);
}
late final _duk_require_contextPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<duk_context> Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_require_context');
late final _duk_require_context = _duk_require_contextPtr.asFunction<
ffi.Pointer<duk_context> Function(ffi.Pointer<duk_context>, int)>();
void duk_require_function(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_require_function(
ctx,
idx,
);
}
late final _duk_require_functionPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_require_function');
late final _duk_require_function = _duk_require_functionPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_require_constructor_call(
ffi.Pointer<duk_context> ctx,
) {
return _duk_require_constructor_call(
ctx,
);
}
late final _duk_require_constructor_callPtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_require_constructor_call');
late final _duk_require_constructor_call = _duk_require_constructor_callPtr
.asFunction<void Function(ffi.Pointer<duk_context>)>();
void duk_require_constructable(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_require_constructable(
ctx,
idx,
);
}
late final _duk_require_constructablePtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>,
duk_idx_t)>>('duk_require_constructable');
late final _duk_require_constructable = _duk_require_constructablePtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
ffi.Pointer<ffi.Void> duk_require_heapptr(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_require_heapptr(
ctx,
idx,
);
}
late final _duk_require_heapptrPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_require_heapptr');
late final _duk_require_heapptr = _duk_require_heapptrPtr.asFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, int)>();
/// Coercion operations: in-place coercion, return coerced value where
/// applicable. If index is invalid, throw error. Some coercions may
/// throw an expected error (e.g. from a toString() or valueOf() call)
/// or an internal error (e.g. from out of memory).
void duk_to_undefined(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_to_undefined(
ctx,
idx,
);
}
late final _duk_to_undefinedPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_to_undefined');
late final _duk_to_undefined = _duk_to_undefinedPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_to_null(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_to_null(
ctx,
idx,
);
}
late final _duk_to_nullPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_to_null');
late final _duk_to_null = _duk_to_nullPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
int duk_to_boolean(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_to_boolean(
ctx,
idx,
);
}
late final _duk_to_booleanPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_to_boolean');
late final _duk_to_boolean = _duk_to_booleanPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
double duk_to_number(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_to_number(
ctx,
idx,
);
}
late final _duk_to_numberPtr = _lookup<
ffi.NativeFunction<
duk_double_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_to_number');
late final _duk_to_number = _duk_to_numberPtr
.asFunction<double Function(ffi.Pointer<duk_context>, int)>();
int duk_to_int(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_to_int(
ctx,
idx,
);
}
late final _duk_to_intPtr = _lookup<
ffi.NativeFunction<
duk_int_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_to_int');
late final _duk_to_int =
_duk_to_intPtr.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_to_uint(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_to_uint(
ctx,
idx,
);
}
late final _duk_to_uintPtr = _lookup<
ffi.NativeFunction<
duk_uint_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_to_uint');
late final _duk_to_uint =
_duk_to_uintPtr.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_to_int32(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_to_int32(
ctx,
idx,
);
}
late final _duk_to_int32Ptr = _lookup<
ffi.NativeFunction<
duk_int32_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_to_int32');
late final _duk_to_int32 = _duk_to_int32Ptr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_to_uint32(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_to_uint32(
ctx,
idx,
);
}
late final _duk_to_uint32Ptr = _lookup<
ffi.NativeFunction<
duk_uint32_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_to_uint32');
late final _duk_to_uint32 = _duk_to_uint32Ptr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_to_uint16(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_to_uint16(
ctx,
idx,
);
}
late final _duk_to_uint16Ptr = _lookup<
ffi.NativeFunction<
duk_uint16_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_to_uint16');
late final _duk_to_uint16 = _duk_to_uint16Ptr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
ffi.Pointer<ffi.Char> duk_to_string(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_to_string(
ctx,
idx,
);
}
late final _duk_to_stringPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Char> Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_to_string');
late final _duk_to_string = _duk_to_stringPtr.asFunction<
ffi.Pointer<ffi.Char> Function(ffi.Pointer<duk_context>, int)>();
ffi.Pointer<ffi.Char> duk_to_lstring(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<duk_size_t> out_len,
) {
return _duk_to_lstring(
ctx,
idx,
out_len,
);
}
late final _duk_to_lstringPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Char> Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<duk_size_t>)>>('duk_to_lstring');
late final _duk_to_lstring = _duk_to_lstringPtr.asFunction<
ffi.Pointer<ffi.Char> Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<duk_size_t>)>();
ffi.Pointer<ffi.Void> duk_to_buffer_raw(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<duk_size_t> out_size,
int flags,
) {
return _duk_to_buffer_raw(
ctx,
idx,
out_size,
flags,
);
}
late final _duk_to_buffer_rawPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<duk_size_t>, duk_uint_t)>>('duk_to_buffer_raw');
late final _duk_to_buffer_raw = _duk_to_buffer_rawPtr.asFunction<
ffi.Pointer<ffi.Void> Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<duk_size_t>, int)>();
ffi.Pointer<ffi.Void> duk_to_pointer(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_to_pointer(
ctx,
idx,
);
}
late final _duk_to_pointerPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_to_pointer');
late final _duk_to_pointer = _duk_to_pointerPtr.asFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, int)>();
void duk_to_object(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_to_object(
ctx,
idx,
);
}
late final _duk_to_objectPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_to_object');
late final _duk_to_object = _duk_to_objectPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_to_primitive(
ffi.Pointer<duk_context> ctx,
int idx,
int hint,
) {
return _duk_to_primitive(
ctx,
idx,
hint,
);
}
late final _duk_to_primitivePtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_int_t)>>('duk_to_primitive');
late final _duk_to_primitive = _duk_to_primitivePtr
.asFunction<void Function(ffi.Pointer<duk_context>, int, int)>();
/// safe variants of a few coercion operations
ffi.Pointer<ffi.Char> duk_safe_to_lstring(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<duk_size_t> out_len,
) {
return _duk_safe_to_lstring(
ctx,
idx,
out_len,
);
}
late final _duk_safe_to_lstringPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Char> Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<duk_size_t>)>>('duk_safe_to_lstring');
late final _duk_safe_to_lstring = _duk_safe_to_lstringPtr.asFunction<
ffi.Pointer<ffi.Char> Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<duk_size_t>)>();
ffi.Pointer<ffi.Char> duk_to_stacktrace(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_to_stacktrace(
ctx,
idx,
);
}
late final _duk_to_stacktracePtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Char> Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_to_stacktrace');
late final _duk_to_stacktrace = _duk_to_stacktracePtr.asFunction<
ffi.Pointer<ffi.Char> Function(ffi.Pointer<duk_context>, int)>();
ffi.Pointer<ffi.Char> duk_safe_to_stacktrace(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_safe_to_stacktrace(
ctx,
idx,
);
}
late final _duk_safe_to_stacktracePtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Char> Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_safe_to_stacktrace');
late final _duk_safe_to_stacktrace = _duk_safe_to_stacktracePtr.asFunction<
ffi.Pointer<ffi.Char> Function(ffi.Pointer<duk_context>, int)>();
/// Value length
int duk_get_length(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_get_length(
ctx,
idx,
);
}
late final _duk_get_lengthPtr = _lookup<
ffi.NativeFunction<
duk_size_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_get_length');
late final _duk_get_length = _duk_get_lengthPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
void duk_set_length(
ffi.Pointer<duk_context> ctx,
int idx,
int len,
) {
return _duk_set_length(
ctx,
idx,
len,
);
}
late final _duk_set_lengthPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_size_t)>>('duk_set_length');
late final _duk_set_length = _duk_set_lengthPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int, int)>();
/// Misc conversion
ffi.Pointer<ffi.Char> duk_base64_encode(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_base64_encode(
ctx,
idx,
);
}
late final _duk_base64_encodePtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Char> Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_base64_encode');
late final _duk_base64_encode = _duk_base64_encodePtr.asFunction<
ffi.Pointer<ffi.Char> Function(ffi.Pointer<duk_context>, int)>();
void duk_base64_decode(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_base64_decode(
ctx,
idx,
);
}
late final _duk_base64_decodePtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_base64_decode');
late final _duk_base64_decode = _duk_base64_decodePtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
ffi.Pointer<ffi.Char> duk_hex_encode(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_hex_encode(
ctx,
idx,
);
}
late final _duk_hex_encodePtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Char> Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_hex_encode');
late final _duk_hex_encode = _duk_hex_encodePtr.asFunction<
ffi.Pointer<ffi.Char> Function(ffi.Pointer<duk_context>, int)>();
void duk_hex_decode(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_hex_decode(
ctx,
idx,
);
}
late final _duk_hex_decodePtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_hex_decode');
late final _duk_hex_decode = _duk_hex_decodePtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
ffi.Pointer<ffi.Char> duk_json_encode(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_json_encode(
ctx,
idx,
);
}
late final _duk_json_encodePtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Char> Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_json_encode');
late final _duk_json_encode = _duk_json_encodePtr.asFunction<
ffi.Pointer<ffi.Char> Function(ffi.Pointer<duk_context>, int)>();
void duk_json_decode(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_json_decode(
ctx,
idx,
);
}
late final _duk_json_decodePtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_json_decode');
late final _duk_json_decode = _duk_json_decodePtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_cbor_encode(
ffi.Pointer<duk_context> ctx,
int idx,
int encode_flags,
) {
return _duk_cbor_encode(
ctx,
idx,
encode_flags,
);
}
late final _duk_cbor_encodePtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_uint_t)>>('duk_cbor_encode');
late final _duk_cbor_encode = _duk_cbor_encodePtr
.asFunction<void Function(ffi.Pointer<duk_context>, int, int)>();
void duk_cbor_decode(
ffi.Pointer<duk_context> ctx,
int idx,
int decode_flags,
) {
return _duk_cbor_decode(
ctx,
idx,
decode_flags,
);
}
late final _duk_cbor_decodePtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_uint_t)>>('duk_cbor_decode');
late final _duk_cbor_decode = _duk_cbor_decodePtr
.asFunction<void Function(ffi.Pointer<duk_context>, int, int)>();
ffi.Pointer<ffi.Char> duk_buffer_to_string(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_buffer_to_string(
ctx,
idx,
);
}
late final _duk_buffer_to_stringPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Char> Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_buffer_to_string');
late final _duk_buffer_to_string = _duk_buffer_to_stringPtr.asFunction<
ffi.Pointer<ffi.Char> Function(ffi.Pointer<duk_context>, int)>();
/// Buffer
ffi.Pointer<ffi.Void> duk_resize_buffer(
ffi.Pointer<duk_context> ctx,
int idx,
int new_size,
) {
return _duk_resize_buffer(
ctx,
idx,
new_size,
);
}
late final _duk_resize_bufferPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_size_t)>>('duk_resize_buffer');
late final _duk_resize_buffer = _duk_resize_bufferPtr.asFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, int, int)>();
ffi.Pointer<ffi.Void> duk_steal_buffer(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<duk_size_t> out_size,
) {
return _duk_steal_buffer(
ctx,
idx,
out_size,
);
}
late final _duk_steal_bufferPtr = _lookup<
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<duk_size_t>)>>('duk_steal_buffer');
late final _duk_steal_buffer = _duk_steal_bufferPtr.asFunction<
ffi.Pointer<ffi.Void> Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<duk_size_t>)>();
void duk_config_buffer(
ffi.Pointer<duk_context> ctx,
int idx,
ffi.Pointer<ffi.Void> ptr,
int len,
) {
return _duk_config_buffer(
ctx,
idx,
ptr,
len,
);
}
late final _duk_config_bufferPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<ffi.Void>, duk_size_t)>>('duk_config_buffer');
late final _duk_config_buffer = _duk_config_bufferPtr.asFunction<
void Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Void>, int)>();
/// Property access
///
/// The basic function assumes key is on stack. The _(l)string variant takes
/// a C string as a property name; the _literal variant takes a C literal.
/// The _index variant takes an array index as a property name (e.g. 123 is
/// equivalent to the key "123"). The _heapptr variant takes a raw, borrowed
/// heap pointer.
int duk_get_prop(
ffi.Pointer<duk_context> ctx,
int obj_idx,
) {
return _duk_get_prop(
ctx,
obj_idx,
);
}
late final _duk_get_propPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_get_prop');
late final _duk_get_prop = _duk_get_propPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_get_prop_string(
ffi.Pointer<duk_context> ctx,
int obj_idx,
ffi.Pointer<ffi.Char> key,
) {
return _duk_get_prop_string(
ctx,
obj_idx,
key,
);
}
late final _duk_get_prop_stringPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<ffi.Char>)>>('duk_get_prop_string');
late final _duk_get_prop_string = _duk_get_prop_stringPtr.asFunction<
int Function(ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Char>)>();
int duk_get_prop_lstring(
ffi.Pointer<duk_context> ctx,
int obj_idx,
ffi.Pointer<ffi.Char> key,
int key_len,
) {
return _duk_get_prop_lstring(
ctx,
obj_idx,
key,
key_len,
);
}
late final _duk_get_prop_lstringPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<ffi.Char>, duk_size_t)>>('duk_get_prop_lstring');
late final _duk_get_prop_lstring = _duk_get_prop_lstringPtr.asFunction<
int Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Char>, int)>();
int duk_get_prop_literal_raw(
ffi.Pointer<duk_context> ctx,
int obj_idx,
ffi.Pointer<ffi.Char> key,
int key_len,
) {
return _duk_get_prop_literal_raw(
ctx,
obj_idx,
key,
key_len,
);
}
late final _duk_get_prop_literal_rawPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<ffi.Char>, duk_size_t)>>('duk_get_prop_literal_raw');
late final _duk_get_prop_literal_raw =
_duk_get_prop_literal_rawPtr.asFunction<
int Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Char>, int)>();
int duk_get_prop_index(
ffi.Pointer<duk_context> ctx,
int obj_idx,
int arr_idx,
) {
return _duk_get_prop_index(
ctx,
obj_idx,
arr_idx,
);
}
late final _duk_get_prop_indexPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_uarridx_t)>>('duk_get_prop_index');
late final _duk_get_prop_index = _duk_get_prop_indexPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int, int)>();
int duk_get_prop_heapptr(
ffi.Pointer<duk_context> ctx,
int obj_idx,
ffi.Pointer<ffi.Void> ptr,
) {
return _duk_get_prop_heapptr(
ctx,
obj_idx,
ptr,
);
}
late final _duk_get_prop_heapptrPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<ffi.Void>)>>('duk_get_prop_heapptr');
late final _duk_get_prop_heapptr = _duk_get_prop_heapptrPtr.asFunction<
int Function(ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Void>)>();
int duk_put_prop(
ffi.Pointer<duk_context> ctx,
int obj_idx,
) {
return _duk_put_prop(
ctx,
obj_idx,
);
}
late final _duk_put_propPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_put_prop');
late final _duk_put_prop = _duk_put_propPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_put_prop_string(
ffi.Pointer<duk_context> ctx,
int obj_idx,
ffi.Pointer<ffi.Char> key,
) {
return _duk_put_prop_string(
ctx,
obj_idx,
key,
);
}
late final _duk_put_prop_stringPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<ffi.Char>)>>('duk_put_prop_string');
late final _duk_put_prop_string = _duk_put_prop_stringPtr.asFunction<
int Function(ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Char>)>();
int duk_put_prop_lstring(
ffi.Pointer<duk_context> ctx,
int obj_idx,
ffi.Pointer<ffi.Char> key,
int key_len,
) {
return _duk_put_prop_lstring(
ctx,
obj_idx,
key,
key_len,
);
}
late final _duk_put_prop_lstringPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<ffi.Char>, duk_size_t)>>('duk_put_prop_lstring');
late final _duk_put_prop_lstring = _duk_put_prop_lstringPtr.asFunction<
int Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Char>, int)>();
int duk_put_prop_literal_raw(
ffi.Pointer<duk_context> ctx,
int obj_idx,
ffi.Pointer<ffi.Char> key,
int key_len,
) {
return _duk_put_prop_literal_raw(
ctx,
obj_idx,
key,
key_len,
);
}
late final _duk_put_prop_literal_rawPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<ffi.Char>, duk_size_t)>>('duk_put_prop_literal_raw');
late final _duk_put_prop_literal_raw =
_duk_put_prop_literal_rawPtr.asFunction<
int Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Char>, int)>();
int duk_put_prop_index(
ffi.Pointer<duk_context> ctx,
int obj_idx,
int arr_idx,
) {
return _duk_put_prop_index(
ctx,
obj_idx,
arr_idx,
);
}
late final _duk_put_prop_indexPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_uarridx_t)>>('duk_put_prop_index');
late final _duk_put_prop_index = _duk_put_prop_indexPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int, int)>();
int duk_put_prop_heapptr(
ffi.Pointer<duk_context> ctx,
int obj_idx,
ffi.Pointer<ffi.Void> ptr,
) {
return _duk_put_prop_heapptr(
ctx,
obj_idx,
ptr,
);
}
late final _duk_put_prop_heapptrPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<ffi.Void>)>>('duk_put_prop_heapptr');
late final _duk_put_prop_heapptr = _duk_put_prop_heapptrPtr.asFunction<
int Function(ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Void>)>();
int duk_del_prop(
ffi.Pointer<duk_context> ctx,
int obj_idx,
) {
return _duk_del_prop(
ctx,
obj_idx,
);
}
late final _duk_del_propPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_del_prop');
late final _duk_del_prop = _duk_del_propPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_del_prop_string(
ffi.Pointer<duk_context> ctx,
int obj_idx,
ffi.Pointer<ffi.Char> key,
) {
return _duk_del_prop_string(
ctx,
obj_idx,
key,
);
}
late final _duk_del_prop_stringPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<ffi.Char>)>>('duk_del_prop_string');
late final _duk_del_prop_string = _duk_del_prop_stringPtr.asFunction<
int Function(ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Char>)>();
int duk_del_prop_lstring(
ffi.Pointer<duk_context> ctx,
int obj_idx,
ffi.Pointer<ffi.Char> key,
int key_len,
) {
return _duk_del_prop_lstring(
ctx,
obj_idx,
key,
key_len,
);
}
late final _duk_del_prop_lstringPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<ffi.Char>, duk_size_t)>>('duk_del_prop_lstring');
late final _duk_del_prop_lstring = _duk_del_prop_lstringPtr.asFunction<
int Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Char>, int)>();
int duk_del_prop_literal_raw(
ffi.Pointer<duk_context> ctx,
int obj_idx,
ffi.Pointer<ffi.Char> key,
int key_len,
) {
return _duk_del_prop_literal_raw(
ctx,
obj_idx,
key,
key_len,
);
}
late final _duk_del_prop_literal_rawPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<ffi.Char>, duk_size_t)>>('duk_del_prop_literal_raw');
late final _duk_del_prop_literal_raw =
_duk_del_prop_literal_rawPtr.asFunction<
int Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Char>, int)>();
int duk_del_prop_index(
ffi.Pointer<duk_context> ctx,
int obj_idx,
int arr_idx,
) {
return _duk_del_prop_index(
ctx,
obj_idx,
arr_idx,
);
}
late final _duk_del_prop_indexPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_uarridx_t)>>('duk_del_prop_index');
late final _duk_del_prop_index = _duk_del_prop_indexPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int, int)>();
int duk_del_prop_heapptr(
ffi.Pointer<duk_context> ctx,
int obj_idx,
ffi.Pointer<ffi.Void> ptr,
) {
return _duk_del_prop_heapptr(
ctx,
obj_idx,
ptr,
);
}
late final _duk_del_prop_heapptrPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<ffi.Void>)>>('duk_del_prop_heapptr');
late final _duk_del_prop_heapptr = _duk_del_prop_heapptrPtr.asFunction<
int Function(ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Void>)>();
int duk_has_prop(
ffi.Pointer<duk_context> ctx,
int obj_idx,
) {
return _duk_has_prop(
ctx,
obj_idx,
);
}
late final _duk_has_propPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_has_prop');
late final _duk_has_prop = _duk_has_propPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_has_prop_string(
ffi.Pointer<duk_context> ctx,
int obj_idx,
ffi.Pointer<ffi.Char> key,
) {
return _duk_has_prop_string(
ctx,
obj_idx,
key,
);
}
late final _duk_has_prop_stringPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<ffi.Char>)>>('duk_has_prop_string');
late final _duk_has_prop_string = _duk_has_prop_stringPtr.asFunction<
int Function(ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Char>)>();
int duk_has_prop_lstring(
ffi.Pointer<duk_context> ctx,
int obj_idx,
ffi.Pointer<ffi.Char> key,
int key_len,
) {
return _duk_has_prop_lstring(
ctx,
obj_idx,
key,
key_len,
);
}
late final _duk_has_prop_lstringPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<ffi.Char>, duk_size_t)>>('duk_has_prop_lstring');
late final _duk_has_prop_lstring = _duk_has_prop_lstringPtr.asFunction<
int Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Char>, int)>();
int duk_has_prop_literal_raw(
ffi.Pointer<duk_context> ctx,
int obj_idx,
ffi.Pointer<ffi.Char> key,
int key_len,
) {
return _duk_has_prop_literal_raw(
ctx,
obj_idx,
key,
key_len,
);
}
late final _duk_has_prop_literal_rawPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<ffi.Char>, duk_size_t)>>('duk_has_prop_literal_raw');
late final _duk_has_prop_literal_raw =
_duk_has_prop_literal_rawPtr.asFunction<
int Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Char>, int)>();
int duk_has_prop_index(
ffi.Pointer<duk_context> ctx,
int obj_idx,
int arr_idx,
) {
return _duk_has_prop_index(
ctx,
obj_idx,
arr_idx,
);
}
late final _duk_has_prop_indexPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_uarridx_t)>>('duk_has_prop_index');
late final _duk_has_prop_index = _duk_has_prop_indexPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int, int)>();
int duk_has_prop_heapptr(
ffi.Pointer<duk_context> ctx,
int obj_idx,
ffi.Pointer<ffi.Void> ptr,
) {
return _duk_has_prop_heapptr(
ctx,
obj_idx,
ptr,
);
}
late final _duk_has_prop_heapptrPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<ffi.Void>)>>('duk_has_prop_heapptr');
late final _duk_has_prop_heapptr = _duk_has_prop_heapptrPtr.asFunction<
int Function(ffi.Pointer<duk_context>, int, ffi.Pointer<ffi.Void>)>();
void duk_get_prop_desc(
ffi.Pointer<duk_context> ctx,
int obj_idx,
int flags,
) {
return _duk_get_prop_desc(
ctx,
obj_idx,
flags,
);
}
late final _duk_get_prop_descPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_uint_t)>>('duk_get_prop_desc');
late final _duk_get_prop_desc = _duk_get_prop_descPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int, int)>();
void duk_def_prop(
ffi.Pointer<duk_context> ctx,
int obj_idx,
int flags,
) {
return _duk_def_prop(
ctx,
obj_idx,
flags,
);
}
late final _duk_def_propPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_uint_t)>>('duk_def_prop');
late final _duk_def_prop = _duk_def_propPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int, int)>();
int duk_get_global_string(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Char> key,
) {
return _duk_get_global_string(
ctx,
key,
);
}
late final _duk_get_global_stringPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>,
ffi.Pointer<ffi.Char>)>>('duk_get_global_string');
late final _duk_get_global_string = _duk_get_global_stringPtr.asFunction<
int Function(ffi.Pointer<duk_context>, ffi.Pointer<ffi.Char>)>();
int duk_get_global_lstring(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Char> key,
int key_len,
) {
return _duk_get_global_lstring(
ctx,
key,
key_len,
);
}
late final _duk_get_global_lstringPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, ffi.Pointer<ffi.Char>,
duk_size_t)>>('duk_get_global_lstring');
late final _duk_get_global_lstring = _duk_get_global_lstringPtr.asFunction<
int Function(ffi.Pointer<duk_context>, ffi.Pointer<ffi.Char>, int)>();
int duk_get_global_literal_raw(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Char> key,
int key_len,
) {
return _duk_get_global_literal_raw(
ctx,
key,
key_len,
);
}
late final _duk_get_global_literal_rawPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, ffi.Pointer<ffi.Char>,
duk_size_t)>>('duk_get_global_literal_raw');
late final _duk_get_global_literal_raw =
_duk_get_global_literal_rawPtr.asFunction<
int Function(ffi.Pointer<duk_context>, ffi.Pointer<ffi.Char>, int)>();
int duk_get_global_heapptr(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Void> ptr,
) {
return _duk_get_global_heapptr(
ctx,
ptr,
);
}
late final _duk_get_global_heapptrPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>,
ffi.Pointer<ffi.Void>)>>('duk_get_global_heapptr');
late final _duk_get_global_heapptr = _duk_get_global_heapptrPtr.asFunction<
int Function(ffi.Pointer<duk_context>, ffi.Pointer<ffi.Void>)>();
int duk_put_global_string(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Char> key,
) {
return _duk_put_global_string(
ctx,
key,
);
}
late final _duk_put_global_stringPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>,
ffi.Pointer<ffi.Char>)>>('duk_put_global_string');
late final _duk_put_global_string = _duk_put_global_stringPtr.asFunction<
int Function(ffi.Pointer<duk_context>, ffi.Pointer<ffi.Char>)>();
int duk_put_global_lstring(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Char> key,
int key_len,
) {
return _duk_put_global_lstring(
ctx,
key,
key_len,
);
}
late final _duk_put_global_lstringPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, ffi.Pointer<ffi.Char>,
duk_size_t)>>('duk_put_global_lstring');
late final _duk_put_global_lstring = _duk_put_global_lstringPtr.asFunction<
int Function(ffi.Pointer<duk_context>, ffi.Pointer<ffi.Char>, int)>();
int duk_put_global_literal_raw(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Char> key,
int key_len,
) {
return _duk_put_global_literal_raw(
ctx,
key,
key_len,
);
}
late final _duk_put_global_literal_rawPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, ffi.Pointer<ffi.Char>,
duk_size_t)>>('duk_put_global_literal_raw');
late final _duk_put_global_literal_raw =
_duk_put_global_literal_rawPtr.asFunction<
int Function(ffi.Pointer<duk_context>, ffi.Pointer<ffi.Char>, int)>();
int duk_put_global_heapptr(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Void> ptr,
) {
return _duk_put_global_heapptr(
ctx,
ptr,
);
}
late final _duk_put_global_heapptrPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>,
ffi.Pointer<ffi.Void>)>>('duk_put_global_heapptr');
late final _duk_put_global_heapptr = _duk_put_global_heapptrPtr.asFunction<
int Function(ffi.Pointer<duk_context>, ffi.Pointer<ffi.Void>)>();
/// Inspection
void duk_inspect_value(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_inspect_value(
ctx,
idx,
);
}
late final _duk_inspect_valuePtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_inspect_value');
late final _duk_inspect_value = _duk_inspect_valuePtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_inspect_callstack_entry(
ffi.Pointer<duk_context> ctx,
int level,
) {
return _duk_inspect_callstack_entry(
ctx,
level,
);
}
late final _duk_inspect_callstack_entryPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>,
duk_int_t)>>('duk_inspect_callstack_entry');
late final _duk_inspect_callstack_entry = _duk_inspect_callstack_entryPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
/// Object prototype
void duk_get_prototype(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_get_prototype(
ctx,
idx,
);
}
late final _duk_get_prototypePtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_get_prototype');
late final _duk_get_prototype = _duk_get_prototypePtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_set_prototype(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_set_prototype(
ctx,
idx,
);
}
late final _duk_set_prototypePtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_set_prototype');
late final _duk_set_prototype = _duk_set_prototypePtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
/// Object finalizer
void duk_get_finalizer(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_get_finalizer(
ctx,
idx,
);
}
late final _duk_get_finalizerPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_get_finalizer');
late final _duk_get_finalizer = _duk_get_finalizerPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_set_finalizer(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_set_finalizer(
ctx,
idx,
);
}
late final _duk_set_finalizerPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_set_finalizer');
late final _duk_set_finalizer = _duk_set_finalizerPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
/// Global object
void duk_set_global_object(
ffi.Pointer<duk_context> ctx,
) {
return _duk_set_global_object(
ctx,
);
}
late final _duk_set_global_objectPtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_set_global_object');
late final _duk_set_global_object = _duk_set_global_objectPtr
.asFunction<void Function(ffi.Pointer<duk_context>)>();
/// Duktape/C function magic value
int duk_get_magic(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_get_magic(
ctx,
idx,
);
}
late final _duk_get_magicPtr = _lookup<
ffi.NativeFunction<
duk_int_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_get_magic');
late final _duk_get_magic = _duk_get_magicPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
void duk_set_magic(
ffi.Pointer<duk_context> ctx,
int idx,
int magic,
) {
return _duk_set_magic(
ctx,
idx,
magic,
);
}
late final _duk_set_magicPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_int_t)>>('duk_set_magic');
late final _duk_set_magic = _duk_set_magicPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int, int)>();
int duk_get_current_magic(
ffi.Pointer<duk_context> ctx,
) {
return _duk_get_current_magic(
ctx,
);
}
late final _duk_get_current_magicPtr =
_lookup<ffi.NativeFunction<duk_int_t Function(ffi.Pointer<duk_context>)>>(
'duk_get_current_magic');
late final _duk_get_current_magic = _duk_get_current_magicPtr
.asFunction<int Function(ffi.Pointer<duk_context>)>();
/// Module helpers: put multiple function or constant properties
void duk_put_function_list(
ffi.Pointer<duk_context> ctx,
int obj_idx,
ffi.Pointer<duk_function_list_entry> funcs,
) {
return _duk_put_function_list(
ctx,
obj_idx,
funcs,
);
}
late final _duk_put_function_listPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<duk_function_list_entry>)>>('duk_put_function_list');
late final _duk_put_function_list = _duk_put_function_listPtr.asFunction<
void Function(ffi.Pointer<duk_context>, int,
ffi.Pointer<duk_function_list_entry>)>();
void duk_put_number_list(
ffi.Pointer<duk_context> ctx,
int obj_idx,
ffi.Pointer<duk_number_list_entry> numbers,
) {
return _duk_put_number_list(
ctx,
obj_idx,
numbers,
);
}
late final _duk_put_number_listPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_idx_t,
ffi.Pointer<duk_number_list_entry>)>>('duk_put_number_list');
late final _duk_put_number_list = _duk_put_number_listPtr.asFunction<
void Function(
ffi.Pointer<duk_context>, int, ffi.Pointer<duk_number_list_entry>)>();
/// Object operations
void duk_compact(
ffi.Pointer<duk_context> ctx,
int obj_idx,
) {
return _duk_compact(
ctx,
obj_idx,
);
}
late final _duk_compactPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_compact');
late final _duk_compact = _duk_compactPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_enum(
ffi.Pointer<duk_context> ctx,
int obj_idx,
int enum_flags,
) {
return _duk_enum(
ctx,
obj_idx,
enum_flags,
);
}
late final _duk_enumPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t, duk_uint_t)>>('duk_enum');
late final _duk_enum = _duk_enumPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int, int)>();
int duk_next(
ffi.Pointer<duk_context> ctx,
int enum_idx,
int get_value,
) {
return _duk_next(
ctx,
enum_idx,
get_value,
);
}
late final _duk_nextPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t, duk_bool_t)>>('duk_next');
late final _duk_next = _duk_nextPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int, int)>();
void duk_seal(
ffi.Pointer<duk_context> ctx,
int obj_idx,
) {
return _duk_seal(
ctx,
obj_idx,
);
}
late final _duk_sealPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_idx_t)>>('duk_seal');
late final _duk_seal =
_duk_sealPtr.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_freeze(
ffi.Pointer<duk_context> ctx,
int obj_idx,
) {
return _duk_freeze(
ctx,
obj_idx,
);
}
late final _duk_freezePtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_freeze');
late final _duk_freeze =
_duk_freezePtr.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
/// String manipulation
void duk_concat(
ffi.Pointer<duk_context> ctx,
int count,
) {
return _duk_concat(
ctx,
count,
);
}
late final _duk_concatPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_concat');
late final _duk_concat =
_duk_concatPtr.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_join(
ffi.Pointer<duk_context> ctx,
int count,
) {
return _duk_join(
ctx,
count,
);
}
late final _duk_joinPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_idx_t)>>('duk_join');
late final _duk_join =
_duk_joinPtr.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_decode_string(
ffi.Pointer<duk_context> ctx,
int idx,
duk_decode_char_function callback,
ffi.Pointer<ffi.Void> udata,
) {
return _duk_decode_string(
ctx,
idx,
callback,
udata,
);
}
late final _duk_decode_stringPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>,
duk_idx_t,
duk_decode_char_function,
ffi.Pointer<ffi.Void>)>>('duk_decode_string');
late final _duk_decode_string = _duk_decode_stringPtr.asFunction<
void Function(ffi.Pointer<duk_context>, int, duk_decode_char_function,
ffi.Pointer<ffi.Void>)>();
void duk_map_string(
ffi.Pointer<duk_context> ctx,
int idx,
duk_map_char_function callback,
ffi.Pointer<ffi.Void> udata,
) {
return _duk_map_string(
ctx,
idx,
callback,
udata,
);
}
late final _duk_map_stringPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_map_char_function, ffi.Pointer<ffi.Void>)>>('duk_map_string');
late final _duk_map_string = _duk_map_stringPtr.asFunction<
void Function(ffi.Pointer<duk_context>, int, duk_map_char_function,
ffi.Pointer<ffi.Void>)>();
void duk_substring(
ffi.Pointer<duk_context> ctx,
int idx,
int start_char_offset,
int end_char_offset,
) {
return _duk_substring(
ctx,
idx,
start_char_offset,
end_char_offset,
);
}
late final _duk_substringPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_idx_t, duk_size_t,
duk_size_t)>>('duk_substring');
late final _duk_substring = _duk_substringPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int, int, int)>();
void duk_trim(
ffi.Pointer<duk_context> ctx,
int idx,
) {
return _duk_trim(
ctx,
idx,
);
}
late final _duk_trimPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_idx_t)>>('duk_trim');
late final _duk_trim =
_duk_trimPtr.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
int duk_char_code_at(
ffi.Pointer<duk_context> ctx,
int idx,
int char_offset,
) {
return _duk_char_code_at(
ctx,
idx,
char_offset,
);
}
late final _duk_char_code_atPtr = _lookup<
ffi.NativeFunction<
duk_codepoint_t Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_size_t)>>('duk_char_code_at');
late final _duk_char_code_at = _duk_char_code_atPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int, int)>();
/// ECMAScript operators
int duk_equals(
ffi.Pointer<duk_context> ctx,
int idx1,
int idx2,
) {
return _duk_equals(
ctx,
idx1,
idx2,
);
}
late final _duk_equalsPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t, duk_idx_t)>>('duk_equals');
late final _duk_equals = _duk_equalsPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int, int)>();
int duk_strict_equals(
ffi.Pointer<duk_context> ctx,
int idx1,
int idx2,
) {
return _duk_strict_equals(
ctx,
idx1,
idx2,
);
}
late final _duk_strict_equalsPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_idx_t)>>('duk_strict_equals');
late final _duk_strict_equals = _duk_strict_equalsPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int, int)>();
int duk_samevalue(
ffi.Pointer<duk_context> ctx,
int idx1,
int idx2,
) {
return _duk_samevalue(
ctx,
idx1,
idx2,
);
}
late final _duk_samevaluePtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_idx_t)>>('duk_samevalue');
late final _duk_samevalue = _duk_samevaluePtr
.asFunction<int Function(ffi.Pointer<duk_context>, int, int)>();
int duk_instanceof(
ffi.Pointer<duk_context> ctx,
int idx1,
int idx2,
) {
return _duk_instanceof(
ctx,
idx1,
idx2,
);
}
late final _duk_instanceofPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_idx_t)>>('duk_instanceof');
late final _duk_instanceof = _duk_instanceofPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int, int)>();
/// Random
double duk_random(
ffi.Pointer<duk_context> ctx,
) {
return _duk_random(
ctx,
);
}
late final _duk_randomPtr = _lookup<
ffi.NativeFunction<duk_double_t Function(ffi.Pointer<duk_context>)>>(
'duk_random');
late final _duk_random =
_duk_randomPtr.asFunction<double Function(ffi.Pointer<duk_context>)>();
/// Function (method) calls
void duk_call(
ffi.Pointer<duk_context> ctx,
int nargs,
) {
return _duk_call(
ctx,
nargs,
);
}
late final _duk_callPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_idx_t)>>('duk_call');
late final _duk_call =
_duk_callPtr.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_call_method(
ffi.Pointer<duk_context> ctx,
int nargs,
) {
return _duk_call_method(
ctx,
nargs,
);
}
late final _duk_call_methodPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_call_method');
late final _duk_call_method = _duk_call_methodPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
void duk_call_prop(
ffi.Pointer<duk_context> ctx,
int obj_idx,
int nargs,
) {
return _duk_call_prop(
ctx,
obj_idx,
nargs,
);
}
late final _duk_call_propPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_idx_t)>>('duk_call_prop');
late final _duk_call_prop = _duk_call_propPtr
.asFunction<void Function(ffi.Pointer<duk_context>, int, int)>();
int duk_pcall(
ffi.Pointer<duk_context> ctx,
int nargs,
) {
return _duk_pcall(
ctx,
nargs,
);
}
late final _duk_pcallPtr = _lookup<
ffi.NativeFunction<
duk_int_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_pcall');
late final _duk_pcall =
_duk_pcallPtr.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_pcall_method(
ffi.Pointer<duk_context> ctx,
int nargs,
) {
return _duk_pcall_method(
ctx,
nargs,
);
}
late final _duk_pcall_methodPtr = _lookup<
ffi.NativeFunction<
duk_int_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_pcall_method');
late final _duk_pcall_method = _duk_pcall_methodPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_pcall_prop(
ffi.Pointer<duk_context> ctx,
int obj_idx,
int nargs,
) {
return _duk_pcall_prop(
ctx,
obj_idx,
nargs,
);
}
late final _duk_pcall_propPtr = _lookup<
ffi.NativeFunction<
duk_int_t Function(ffi.Pointer<duk_context>, duk_idx_t,
duk_idx_t)>>('duk_pcall_prop');
late final _duk_pcall_prop = _duk_pcall_propPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int, int)>();
void duk_new(
ffi.Pointer<duk_context> ctx,
int nargs,
) {
return _duk_new(
ctx,
nargs,
);
}
late final _duk_newPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_idx_t)>>('duk_new');
late final _duk_new =
_duk_newPtr.asFunction<void Function(ffi.Pointer<duk_context>, int)>();
int duk_pnew(
ffi.Pointer<duk_context> ctx,
int nargs,
) {
return _duk_pnew(
ctx,
nargs,
);
}
late final _duk_pnewPtr = _lookup<
ffi.NativeFunction<
duk_int_t Function(ffi.Pointer<duk_context>, duk_idx_t)>>('duk_pnew');
late final _duk_pnew =
_duk_pnewPtr.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
int duk_safe_call(
ffi.Pointer<duk_context> ctx,
duk_safe_call_function func,
ffi.Pointer<ffi.Void> udata,
int nargs,
int nrets,
) {
return _duk_safe_call(
ctx,
func,
udata,
nargs,
nrets,
);
}
late final _duk_safe_callPtr = _lookup<
ffi.NativeFunction<
duk_int_t Function(ffi.Pointer<duk_context>, duk_safe_call_function,
ffi.Pointer<ffi.Void>, duk_idx_t, duk_idx_t)>>('duk_safe_call');
late final _duk_safe_call = _duk_safe_callPtr.asFunction<
int Function(ffi.Pointer<duk_context>, duk_safe_call_function,
ffi.Pointer<ffi.Void>, int, int)>();
/// Compilation and evaluation
int duk_eval_raw(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Char> src_buffer,
int src_length,
int flags,
) {
return _duk_eval_raw(
ctx,
src_buffer,
src_length,
flags,
);
}
late final _duk_eval_rawPtr = _lookup<
ffi.NativeFunction<
duk_int_t Function(ffi.Pointer<duk_context>, ffi.Pointer<ffi.Char>,
duk_size_t, duk_uint_t)>>('duk_eval_raw');
late final _duk_eval_raw = _duk_eval_rawPtr.asFunction<
int Function(
ffi.Pointer<duk_context>, ffi.Pointer<ffi.Char>, int, int)>();
int duk_compile_raw(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Char> src_buffer,
int src_length,
int flags,
) {
return _duk_compile_raw(
ctx,
src_buffer,
src_length,
flags,
);
}
late final _duk_compile_rawPtr = _lookup<
ffi.NativeFunction<
duk_int_t Function(ffi.Pointer<duk_context>, ffi.Pointer<ffi.Char>,
duk_size_t, duk_uint_t)>>('duk_compile_raw');
late final _duk_compile_raw = _duk_compile_rawPtr.asFunction<
int Function(
ffi.Pointer<duk_context>, ffi.Pointer<ffi.Char>, int, int)>();
/// Bytecode load/dump
void duk_dump_function(
ffi.Pointer<duk_context> ctx,
) {
return _duk_dump_function(
ctx,
);
}
late final _duk_dump_functionPtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_dump_function');
late final _duk_dump_function = _duk_dump_functionPtr
.asFunction<void Function(ffi.Pointer<duk_context>)>();
void duk_load_function(
ffi.Pointer<duk_context> ctx,
) {
return _duk_load_function(
ctx,
);
}
late final _duk_load_functionPtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_load_function');
late final _duk_load_function = _duk_load_functionPtr
.asFunction<void Function(ffi.Pointer<duk_context>)>();
/// Debugging
void duk_push_context_dump(
ffi.Pointer<duk_context> ctx,
) {
return _duk_push_context_dump(
ctx,
);
}
late final _duk_push_context_dumpPtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_push_context_dump');
late final _duk_push_context_dump = _duk_push_context_dumpPtr
.asFunction<void Function(ffi.Pointer<duk_context>)>();
/// Debugger (debug protocol)
void duk_debugger_attach(
ffi.Pointer<duk_context> ctx,
duk_debug_read_function read_cb,
duk_debug_write_function write_cb,
duk_debug_peek_function peek_cb,
duk_debug_read_flush_function read_flush_cb,
duk_debug_write_flush_function write_flush_cb,
duk_debug_request_function request_cb,
duk_debug_detached_function detached_cb,
ffi.Pointer<ffi.Void> udata,
) {
return _duk_debugger_attach(
ctx,
read_cb,
write_cb,
peek_cb,
read_flush_cb,
write_flush_cb,
request_cb,
detached_cb,
udata,
);
}
late final _duk_debugger_attachPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<duk_context>,
duk_debug_read_function,
duk_debug_write_function,
duk_debug_peek_function,
duk_debug_read_flush_function,
duk_debug_write_flush_function,
duk_debug_request_function,
duk_debug_detached_function,
ffi.Pointer<ffi.Void>)>>('duk_debugger_attach');
late final _duk_debugger_attach = _duk_debugger_attachPtr.asFunction<
void Function(
ffi.Pointer<duk_context>,
duk_debug_read_function,
duk_debug_write_function,
duk_debug_peek_function,
duk_debug_read_flush_function,
duk_debug_write_flush_function,
duk_debug_request_function,
duk_debug_detached_function,
ffi.Pointer<ffi.Void>)>();
void duk_debugger_detach(
ffi.Pointer<duk_context> ctx,
) {
return _duk_debugger_detach(
ctx,
);
}
late final _duk_debugger_detachPtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_debugger_detach');
late final _duk_debugger_detach = _duk_debugger_detachPtr
.asFunction<void Function(ffi.Pointer<duk_context>)>();
void duk_debugger_cooperate(
ffi.Pointer<duk_context> ctx,
) {
return _duk_debugger_cooperate(
ctx,
);
}
late final _duk_debugger_cooperatePtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_debugger_cooperate');
late final _duk_debugger_cooperate = _duk_debugger_cooperatePtr
.asFunction<void Function(ffi.Pointer<duk_context>)>();
int duk_debugger_notify(
ffi.Pointer<duk_context> ctx,
int nvalues,
) {
return _duk_debugger_notify(
ctx,
nvalues,
);
}
late final _duk_debugger_notifyPtr = _lookup<
ffi.NativeFunction<
duk_bool_t Function(
ffi.Pointer<duk_context>, duk_idx_t)>>('duk_debugger_notify');
late final _duk_debugger_notify = _duk_debugger_notifyPtr
.asFunction<int Function(ffi.Pointer<duk_context>, int)>();
void duk_debugger_pause(
ffi.Pointer<duk_context> ctx,
) {
return _duk_debugger_pause(
ctx,
);
}
late final _duk_debugger_pausePtr =
_lookup<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<duk_context>)>>(
'duk_debugger_pause');
late final _duk_debugger_pause = _duk_debugger_pausePtr
.asFunction<void Function(ffi.Pointer<duk_context>)>();
/// Time handling
double duk_get_now(
ffi.Pointer<duk_context> ctx,
) {
return _duk_get_now(
ctx,
);
}
late final _duk_get_nowPtr = _lookup<
ffi.NativeFunction<duk_double_t Function(ffi.Pointer<duk_context>)>>(
'duk_get_now');
late final _duk_get_now =
_duk_get_nowPtr.asFunction<double Function(ffi.Pointer<duk_context>)>();
void duk_time_to_components(
ffi.Pointer<duk_context> ctx,
double timeval,
ffi.Pointer<duk_time_components> comp,
) {
return _duk_time_to_components(
ctx,
timeval,
comp,
);
}
late final _duk_time_to_componentsPtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<duk_context>, duk_double_t,
ffi.Pointer<duk_time_components>)>>('duk_time_to_components');
late final _duk_time_to_components = _duk_time_to_componentsPtr.asFunction<
void Function(ffi.Pointer<duk_context>, double,
ffi.Pointer<duk_time_components>)>();
double duk_components_to_time(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<duk_time_components> comp,
) {
return _duk_components_to_time(
ctx,
comp,
);
}
late final _duk_components_to_timePtr = _lookup<
ffi.NativeFunction<
duk_double_t Function(ffi.Pointer<duk_context>,
ffi.Pointer<duk_time_components>)>>('duk_components_to_time');
late final _duk_components_to_time = _duk_components_to_timePtr.asFunction<
double Function(
ffi.Pointer<duk_context>, ffi.Pointer<duk_time_components>)>();
}
/// Public API specific typedefs
///
/// Many types are wrapped by Duktape for portability to rare platforms
/// where e.g. 'int' is a 16-bit type. See practical typing discussion
/// in Duktape web documentation.
final class duk_thread_state extends ffi.Struct {
/// XXX: Enough space to hold internal suspend/resume structure.
/// This is rather awkward and to be fixed when the internal
/// structure is visible for the public API header.
@ffi.Array.multi([128])
external ffi.Array<ffi.Char> data;
}
final class duk_memory_functions extends ffi.Struct {
external duk_alloc_function alloc_func;
external duk_realloc_function realloc_func;
external duk_free_function free_func;
external ffi.Pointer<ffi.Void> udata;
}
typedef duk_alloc_function
= ffi.Pointer<ffi.NativeFunction<duk_alloc_functionFunction>>;
typedef duk_alloc_functionFunction = ffi.Pointer<ffi.Void> Function(
ffi.Pointer<ffi.Void> udata, duk_size_t size);
typedef Dartduk_alloc_functionFunction = ffi.Pointer<ffi.Void> Function(
ffi.Pointer<ffi.Void> udata, Dartduk_size_t size);
/// A few types are assumed to always exist.
typedef duk_size_t = ffi.Size;
typedef Dartduk_size_t = int;
typedef duk_realloc_function
= ffi.Pointer<ffi.NativeFunction<duk_realloc_functionFunction>>;
typedef duk_realloc_functionFunction = ffi.Pointer<ffi.Void> Function(
ffi.Pointer<ffi.Void> udata, ffi.Pointer<ffi.Void> ptr, duk_size_t size);
typedef Dartduk_realloc_functionFunction = ffi.Pointer<ffi.Void> Function(
ffi.Pointer<ffi.Void> udata,
ffi.Pointer<ffi.Void> ptr,
Dartduk_size_t size);
typedef duk_free_function
= ffi.Pointer<ffi.NativeFunction<duk_free_functionFunction>>;
typedef duk_free_functionFunction = ffi.Void Function(
ffi.Pointer<ffi.Void> udata, ffi.Pointer<ffi.Void> ptr);
typedef Dartduk_free_functionFunction = void Function(
ffi.Pointer<ffi.Void> udata, ffi.Pointer<ffi.Void> ptr);
final class duk_function_list_entry extends ffi.Struct {
external ffi.Pointer<ffi.Char> key;
external duk_c_function value;
@duk_idx_t()
external int nargs;
}
typedef duk_c_function
= ffi.Pointer<ffi.NativeFunction<duk_c_functionFunction>>;
typedef duk_c_functionFunction = duk_ret_t Function(
ffi.Pointer<duk_context> ctx);
typedef Dartduk_c_functionFunction = Dartduk_small_int_t Function(
ffi.Pointer<duk_context> ctx);
/// Duktape/C function return value, platform int is enough for now to
/// represent 0, 1, or negative error code. Must be compatible with
/// assigning truth values (e.g. duk_ret_t rc = (foo == bar);).
typedef duk_ret_t = duk_small_int_t;
/// Small integers (16 bits or more) can fall back to the 'int' type, but
/// have a typedef so they are marked "small" explicitly.
typedef duk_small_int_t = ffi.Int;
typedef Dartduk_small_int_t = int;
/// Type used in public API declarations and user code. Typedef maps to
/// 'struct duk_hthread' like the 'duk_hthread' typedef which is used
/// exclusively in internals.
typedef duk_context = duk_hthread;
final class duk_hthread extends ffi.Opaque {}
/// Index values must have at least 32-bit signed range.
typedef duk_idx_t = duk_int_t;
typedef duk_int_t = ffi.Int;
typedef Dartduk_int_t = int;
final class duk_number_list_entry extends ffi.Struct {
external ffi.Pointer<ffi.Char> key;
@duk_double_t()
external double value;
}
typedef duk_double_t = ffi.Double;
typedef Dartduk_double_t = double;
final class duk_time_components extends ffi.Struct {
/// year, e.g. 2016, ECMAScript year range
@duk_double_t()
external double year;
/// month: 1-12
@duk_double_t()
external double month;
/// day: 1-31
@duk_double_t()
external double day;
/// hour: 0-59
@duk_double_t()
external double hours;
/// minute: 0-59
@duk_double_t()
external double minutes;
/// second: 0-59 (in POSIX time no leap second)
@duk_double_t()
external double seconds;
/// may contain sub-millisecond fractions
@duk_double_t()
external double milliseconds;
/// weekday: 0-6, 0=Sunday, 1=Monday, ..., 6=Saturday
@duk_double_t()
external double weekday;
}
typedef duk_fatal_function
= ffi.Pointer<ffi.NativeFunction<duk_fatal_functionFunction>>;
typedef duk_fatal_functionFunction = ffi.Void Function(
ffi.Pointer<ffi.Void> udata, ffi.Pointer<ffi.Char> msg);
typedef Dartduk_fatal_functionFunction = void Function(
ffi.Pointer<ffi.Void> udata, ffi.Pointer<ffi.Char> msg);
typedef duk_uint_t = ffi.UnsignedInt;
typedef Dartduk_uint_t = int;
/// Error codes are represented with platform int. High bits are used
/// for flags and such, so 32 bits are needed.
typedef duk_errcode_t = duk_int_t;
typedef va_list = __builtin_va_list;
typedef __builtin_va_list = ffi.Pointer<ffi.Char>;
/// Boolean values are represented with the platform 'unsigned int'.
typedef duk_bool_t = duk_small_uint_t;
typedef duk_small_uint_t = ffi.UnsignedInt;
typedef Dartduk_small_uint_t = int;
typedef duk_int32_t = ffi.Int32;
typedef Dartduk_int32_t = int;
typedef duk_uint32_t = ffi.Uint32;
typedef Dartduk_uint32_t = int;
typedef duk_uint16_t = ffi.Uint16;
typedef Dartduk_uint16_t = int;
/// Array index values, could be exact 32 bits.
/// Currently no need for signed duk_arridx_t.
typedef duk_uarridx_t = duk_uint_t;
typedef duk_decode_char_function
= ffi.Pointer<ffi.NativeFunction<duk_decode_char_functionFunction>>;
typedef duk_decode_char_functionFunction = ffi.Void Function(
ffi.Pointer<ffi.Void> udata, duk_codepoint_t codepoint);
typedef Dartduk_decode_char_functionFunction = void Function(
ffi.Pointer<ffi.Void> udata, Dartduk_int_t codepoint);
/// Codepoint type. Must be 32 bits or more because it is used also for
/// internal codepoints. The type is signed because negative codepoints
/// are used as internal markers (e.g. to mark EOF or missing argument).
/// (X)UTF-8/CESU-8 encode/decode take and return an unsigned variant to
/// ensure duk_uint32_t casts back and forth nicely. Almost everything
/// else uses the signed one.
typedef duk_codepoint_t = duk_int_t;
typedef duk_map_char_function
= ffi.Pointer<ffi.NativeFunction<duk_map_char_functionFunction>>;
typedef duk_map_char_functionFunction = duk_codepoint_t Function(
ffi.Pointer<ffi.Void> udata, duk_codepoint_t codepoint);
typedef Dartduk_map_char_functionFunction = Dartduk_int_t Function(
ffi.Pointer<ffi.Void> udata, Dartduk_int_t codepoint);
typedef duk_safe_call_function
= ffi.Pointer<ffi.NativeFunction<duk_safe_call_functionFunction>>;
typedef duk_safe_call_functionFunction = duk_ret_t Function(
ffi.Pointer<duk_context> ctx, ffi.Pointer<ffi.Void> udata);
typedef Dartduk_safe_call_functionFunction = Dartduk_small_int_t Function(
ffi.Pointer<duk_context> ctx, ffi.Pointer<ffi.Void> udata);
typedef duk_debug_read_function
= ffi.Pointer<ffi.NativeFunction<duk_debug_read_functionFunction>>;
typedef duk_debug_read_functionFunction = duk_size_t Function(
ffi.Pointer<ffi.Void> udata,
ffi.Pointer<ffi.Char> buffer,
duk_size_t length);
typedef Dartduk_debug_read_functionFunction = Dartduk_size_t Function(
ffi.Pointer<ffi.Void> udata,
ffi.Pointer<ffi.Char> buffer,
Dartduk_size_t length);
typedef duk_debug_write_function
= ffi.Pointer<ffi.NativeFunction<duk_debug_write_functionFunction>>;
typedef duk_debug_write_functionFunction = duk_size_t Function(
ffi.Pointer<ffi.Void> udata,
ffi.Pointer<ffi.Char> buffer,
duk_size_t length);
typedef Dartduk_debug_write_functionFunction = Dartduk_size_t Function(
ffi.Pointer<ffi.Void> udata,
ffi.Pointer<ffi.Char> buffer,
Dartduk_size_t length);
typedef duk_debug_peek_function
= ffi.Pointer<ffi.NativeFunction<duk_debug_peek_functionFunction>>;
typedef duk_debug_peek_functionFunction = duk_size_t Function(
ffi.Pointer<ffi.Void> udata);
typedef Dartduk_debug_peek_functionFunction = Dartduk_size_t Function(
ffi.Pointer<ffi.Void> udata);
typedef duk_debug_read_flush_function
= ffi.Pointer<ffi.NativeFunction<duk_debug_read_flush_functionFunction>>;
typedef duk_debug_read_flush_functionFunction = ffi.Void Function(
ffi.Pointer<ffi.Void> udata);
typedef Dartduk_debug_read_flush_functionFunction = void Function(
ffi.Pointer<ffi.Void> udata);
typedef duk_debug_write_flush_function
= ffi.Pointer<ffi.NativeFunction<duk_debug_write_flush_functionFunction>>;
typedef duk_debug_write_flush_functionFunction = ffi.Void Function(
ffi.Pointer<ffi.Void> udata);
typedef Dartduk_debug_write_flush_functionFunction = void Function(
ffi.Pointer<ffi.Void> udata);
typedef duk_debug_request_function
= ffi.Pointer<ffi.NativeFunction<duk_debug_request_functionFunction>>;
typedef duk_debug_request_functionFunction = duk_idx_t Function(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Void> udata,
duk_idx_t nvalues);
typedef Dartduk_debug_request_functionFunction = Dartduk_int_t Function(
ffi.Pointer<duk_context> ctx,
ffi.Pointer<ffi.Void> udata,
Dartduk_int_t nvalues);
typedef duk_debug_detached_function
= ffi.Pointer<ffi.NativeFunction<duk_debug_detached_functionFunction>>;
typedef duk_debug_detached_functionFunction = ffi.Void Function(
ffi.Pointer<duk_context> ctx, ffi.Pointer<ffi.Void> udata);
typedef Dartduk_debug_detached_functionFunction = void Function(
ffi.Pointer<duk_context> ctx, ffi.Pointer<ffi.Void> udata);
const int DUK_VERSION = 20700;
const String DUK_GIT_COMMIT = '03d4d728f8365021de6955c649e6dcd05dcca99f';
const String DUK_GIT_DESCRIBE = '03d4d72-dirty';
const String DUK_GIT_BRANCH = 'HEAD';
const int DUK_DEBUG_PROTOCOL_VERSION = 2;
const int DUK_INVALID_INDEX = -2147483648;
const int DUK_VARARGS = -1;
const int DUK_API_ENTRY_STACK = 64;
const int DUK_TYPE_MIN = 0;
const int DUK_TYPE_NONE = 0;
const int DUK_TYPE_UNDEFINED = 1;
const int DUK_TYPE_NULL = 2;
const int DUK_TYPE_BOOLEAN = 3;
const int DUK_TYPE_NUMBER = 4;
const int DUK_TYPE_STRING = 5;
const int DUK_TYPE_OBJECT = 6;
const int DUK_TYPE_BUFFER = 7;
const int DUK_TYPE_POINTER = 8;
const int DUK_TYPE_LIGHTFUNC = 9;
const int DUK_TYPE_MAX = 9;
const int DUK_TYPE_MASK_NONE = 1;
const int DUK_TYPE_MASK_UNDEFINED = 2;
const int DUK_TYPE_MASK_NULL = 4;
const int DUK_TYPE_MASK_BOOLEAN = 8;
const int DUK_TYPE_MASK_NUMBER = 16;
const int DUK_TYPE_MASK_STRING = 32;
const int DUK_TYPE_MASK_OBJECT = 64;
const int DUK_TYPE_MASK_BUFFER = 128;
const int DUK_TYPE_MASK_POINTER = 256;
const int DUK_TYPE_MASK_LIGHTFUNC = 512;
const int DUK_TYPE_MASK_THROW = 1024;
const int DUK_TYPE_MASK_PROMOTE = 2048;
const int DUK_HINT_NONE = 0;
const int DUK_HINT_STRING = 1;
const int DUK_HINT_NUMBER = 2;
const int DUK_ENUM_INCLUDE_NONENUMERABLE = 1;
const int DUK_ENUM_INCLUDE_HIDDEN = 2;
const int DUK_ENUM_INCLUDE_SYMBOLS = 4;
const int DUK_ENUM_EXCLUDE_STRINGS = 8;
const int DUK_ENUM_OWN_PROPERTIES_ONLY = 16;
const int DUK_ENUM_ARRAY_INDICES_ONLY = 32;
const int DUK_ENUM_SORT_ARRAY_INDICES = 64;
const int DUK_ENUM_NO_PROXY_BEHAVIOR = 128;
const int DUK_COMPILE_EVAL = 8;
const int DUK_COMPILE_FUNCTION = 16;
const int DUK_COMPILE_STRICT = 32;
const int DUK_COMPILE_SHEBANG = 64;
const int DUK_COMPILE_SAFE = 128;
const int DUK_COMPILE_NORESULT = 256;
const int DUK_COMPILE_NOSOURCE = 512;
const int DUK_COMPILE_STRLEN = 1024;
const int DUK_COMPILE_NOFILENAME = 2048;
const int DUK_COMPILE_FUNCEXPR = 4096;
const int DUK_DEFPROP_WRITABLE = 1;
const int DUK_DEFPROP_ENUMERABLE = 2;
const int DUK_DEFPROP_CONFIGURABLE = 4;
const int DUK_DEFPROP_HAVE_WRITABLE = 8;
const int DUK_DEFPROP_HAVE_ENUMERABLE = 16;
const int DUK_DEFPROP_HAVE_CONFIGURABLE = 32;
const int DUK_DEFPROP_HAVE_VALUE = 64;
const int DUK_DEFPROP_HAVE_GETTER = 128;
const int DUK_DEFPROP_HAVE_SETTER = 256;
const int DUK_DEFPROP_FORCE = 512;
const int DUK_DEFPROP_SET_WRITABLE = 9;
const int DUK_DEFPROP_CLEAR_WRITABLE = 8;
const int DUK_DEFPROP_SET_ENUMERABLE = 18;
const int DUK_DEFPROP_CLEAR_ENUMERABLE = 16;
const int DUK_DEFPROP_SET_CONFIGURABLE = 36;
const int DUK_DEFPROP_CLEAR_CONFIGURABLE = 32;
const int DUK_DEFPROP_W = 1;
const int DUK_DEFPROP_E = 2;
const int DUK_DEFPROP_C = 4;
const int DUK_DEFPROP_WE = 3;
const int DUK_DEFPROP_WC = 5;
const int DUK_DEFPROP_EC = 6;
const int DUK_DEFPROP_WEC = 7;
const int DUK_DEFPROP_HAVE_W = 8;
const int DUK_DEFPROP_HAVE_E = 16;
const int DUK_DEFPROP_HAVE_C = 32;
const int DUK_DEFPROP_HAVE_WE = 24;
const int DUK_DEFPROP_HAVE_WC = 40;
const int DUK_DEFPROP_HAVE_EC = 48;
const int DUK_DEFPROP_HAVE_WEC = 56;
const int DUK_DEFPROP_SET_W = 9;
const int DUK_DEFPROP_SET_E = 18;
const int DUK_DEFPROP_SET_C = 36;
const int DUK_DEFPROP_SET_WE = 27;
const int DUK_DEFPROP_SET_WC = 45;
const int DUK_DEFPROP_SET_EC = 54;
const int DUK_DEFPROP_SET_WEC = 63;
const int DUK_DEFPROP_CLEAR_W = 8;
const int DUK_DEFPROP_CLEAR_E = 16;
const int DUK_DEFPROP_CLEAR_C = 32;
const int DUK_DEFPROP_CLEAR_WE = 24;
const int DUK_DEFPROP_CLEAR_WC = 40;
const int DUK_DEFPROP_CLEAR_EC = 48;
const int DUK_DEFPROP_CLEAR_WEC = 56;
const int DUK_DEFPROP_ATTR_W = 57;
const int DUK_DEFPROP_ATTR_E = 58;
const int DUK_DEFPROP_ATTR_C = 60;
const int DUK_DEFPROP_ATTR_WE = 59;
const int DUK_DEFPROP_ATTR_WC = 61;
const int DUK_DEFPROP_ATTR_EC = 62;
const int DUK_DEFPROP_ATTR_WEC = 63;
const int DUK_THREAD_NEW_GLOBAL_ENV = 1;
const int DUK_GC_COMPACT = 1;
const int DUK_ERR_NONE = 0;
const int DUK_ERR_ERROR = 1;
const int DUK_ERR_EVAL_ERROR = 2;
const int DUK_ERR_RANGE_ERROR = 3;
const int DUK_ERR_REFERENCE_ERROR = 4;
const int DUK_ERR_SYNTAX_ERROR = 5;
const int DUK_ERR_TYPE_ERROR = 6;
const int DUK_ERR_URI_ERROR = 7;
const int DUK_RET_ERROR = -1;
const int DUK_RET_EVAL_ERROR = -2;
const int DUK_RET_RANGE_ERROR = -3;
const int DUK_RET_REFERENCE_ERROR = -4;
const int DUK_RET_SYNTAX_ERROR = -5;
const int DUK_RET_TYPE_ERROR = -6;
const int DUK_RET_URI_ERROR = -7;
const int DUK_EXEC_SUCCESS = 0;
const int DUK_EXEC_ERROR = 1;
const int DUK_LEVEL_DEBUG = 0;
const int DUK_LEVEL_DDEBUG = 1;
const int DUK_LEVEL_DDDEBUG = 2;
const int DUK_BUF_FLAG_DYNAMIC = 1;
const int DUK_BUF_FLAG_EXTERNAL = 2;
const int DUK_BUF_FLAG_NOZERO = 4;
const int DUK_BUFOBJ_ARRAYBUFFER = 0;
const int DUK_BUFOBJ_NODEJS_BUFFER = 1;
const int DUK_BUFOBJ_DATAVIEW = 2;
const int DUK_BUFOBJ_INT8ARRAY = 3;
const int DUK_BUFOBJ_UINT8ARRAY = 4;
const int DUK_BUFOBJ_UINT8CLAMPEDARRAY = 5;
const int DUK_BUFOBJ_INT16ARRAY = 6;
const int DUK_BUFOBJ_UINT16ARRAY = 7;
const int DUK_BUFOBJ_INT32ARRAY = 8;
const int DUK_BUFOBJ_UINT32ARRAY = 9;
const int DUK_BUFOBJ_FLOAT32ARRAY = 10;
const int DUK_BUFOBJ_FLOAT64ARRAY = 11;
const int DUK_BUF_MODE_FIXED = 0;
const int DUK_BUF_MODE_DYNAMIC = 1;
const int DUK_BUF_MODE_DONTCARE = 2;
const int DUK_DATE_MSEC_SECOND = 1000;
const int DUK_DATE_MSEC_MINUTE = 60000;
const int DUK_DATE_MSEC_HOUR = 3600000;
const int DUK_DATE_MSEC_DAY = 86400000;
const double DUK_DATE_MSEC_100M_DAYS = 8640000000000000.0;
const double DUK_DATE_MSEC_100M_DAYS_LEEWAY = 8640000086400000.0;
const int DUK_DATE_MIN_ECMA_YEAR = -271821;
const int DUK_DATE_MAX_ECMA_YEAR = 275760;
const int DUK_DATE_IDX_YEAR = 0;
const int DUK_DATE_IDX_MONTH = 1;
const int DUK_DATE_IDX_DAY = 2;
const int DUK_DATE_IDX_HOUR = 3;
const int DUK_DATE_IDX_MINUTE = 4;
const int DUK_DATE_IDX_SECOND = 5;
const int DUK_DATE_IDX_MILLISECOND = 6;
const int DUK_DATE_IDX_WEEKDAY = 7;
const int DUK_DATE_IDX_NUM_PARTS = 8;
const int DUK_DATE_FLAG_NAN_TO_ZERO = 1;
const int DUK_DATE_FLAG_NAN_TO_RANGE_ERROR = 2;
const int DUK_DATE_FLAG_ONEBASED = 4;
const int DUK_DATE_FLAG_EQUIVYEAR = 8;
const int DUK_DATE_FLAG_LOCALTIME = 16;
const int DUK_DATE_FLAG_SUB1900 = 32;
const int DUK_DATE_FLAG_TOSTRING_DATE = 64;
const int DUK_DATE_FLAG_TOSTRING_TIME = 128;
const int DUK_DATE_FLAG_TOSTRING_LOCALE = 256;
const int DUK_DATE_FLAG_TIMESETTER = 512;
const int DUK_DATE_FLAG_YEAR_FIXUP = 1024;
const int DUK_DATE_FLAG_SEP_T = 2048;
const int DUK_DATE_FLAG_VALUE_SHIFT = 12;
| codelabs/ffigen_codelab/step_05/lib/duktape_bindings_generated.dart/0 | {
"file_path": "codelabs/ffigen_codelab/step_05/lib/duktape_bindings_generated.dart",
"repo_id": "codelabs",
"token_count": 77866
} | 39 |
# Firebase Auth with FlutterFire UI
This code supports the [Firebase Auth with FlutterFire UI][] codelab.
The [`/complete`](./complete) directory is the state that the
app should be in at the end of the codelab.
[Firebase Auth with FlutterFire UI]: https://firebase.google.com/codelabs/firebase-auth-in-flutter-apps
| codelabs/firebase-auth-flutterfire-ui/README.md/0 | {
"file_path": "codelabs/firebase-auth-flutterfire-ui/README.md",
"repo_id": "codelabs",
"token_count": 100
} | 40 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/firebase-auth-flutterfire-ui/complete/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/firebase-auth-flutterfire-ui/complete/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 41 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/firebase-auth-flutterfire-ui/start/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/firebase-auth-flutterfire-ui/start/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 42 |
name: Firebase Emulator Suite
steps:
- name: complete
steps:
- name: Remove complete
rmdir: complete
- name: Create project
flutter: create complete --platforms android,ios,macos,web
- name: Strip DEVELOPMENT_TEAM
strip-lines-containing: DEVELOPMENT_TEAM =
path: complete/ios/Runner.xcodeproj/project.pbxproj
- name: Update deps
path: complete
flutter: pub upgrade --major-versions
- name: Configure analysis_options.yaml
path: complete/analysis_options.yaml
replace-contents: |
include: ../../analysis_options.yaml
linter:
rules:
avoid_print: false
prefer_const_constructors: false
prefer_const_declarations: false
- name: Add dependencies
path: complete
flutter: pub add go_router
- name: Remove tests
path: complete
rmdir: test
- name: Mkdir android/app/src/main/res/xml
path: complete
mkdir: android/app/src/main/res/xml
- name: Add android/app/src/main/res/xml/network_config.xml
path: complete/android/app/src/main/res/xml/network_config.xml
replace-contents: |
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<domain-config cleartextTrafficPermitted="true">
<domain includeSubdomains="true">10.0.2.2</domain>
</domain-config>
</network-security-config>
- name: Add lib/app_state.dart
path: complete/lib/app_state.dart
replace-contents: |
import 'dart:async';
import 'entry.dart';
class AppState {
AppState() {
_entriesStreamController = StreamController.broadcast(onListen: () {
_entriesStreamController.add([
Entry(
date: '10/09/2022',
text: lorem,
title: '[Example] My Journal Entry',
)
]);
});
}
// This will change to the type User from the Firebase Authentication package
// Changing itβs type now would cause the app to throw an error
Object? user;
late StreamController<List<Entry>> _entriesStreamController;
Stream<List<Entry>> get entries =>
_entriesStreamController.stream.asBroadcastStream();
Future<void> logIn(String email, String password) async {
print('TODO: AppState.login');
user = Object();
await _listenForEntries();
}
void writeEntryToFirebase(Entry entry) {
print('TODO: AppState.writeEntryToFirebase');
}
Future<void> _listenForEntries() async {
print('TODO: AppState._listenForEntries');
}
}
const lorem =
'''Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum
''';
- name: Add lib/entry.dart
path: complete/lib/entry.dart
replace-contents: |
class Entry {
final String date;
final String text;
final String title;
Entry({
required this.date,
required this.text,
required this.title,
});
}
- name: Add lib/journal_entry_form.dart
path: complete/lib/journal_entry_form.dart
replace-contents: |
import 'package:flutter/material.dart';
import 'entry.dart';
typedef SubmitCallback = void Function(Entry);
class EntryForm extends StatefulWidget {
final SubmitCallback onSubmit;
const EntryForm({super.key, required this.onSubmit});
@override
State<EntryForm> createState() => _EntryFormState();
}
class _EntryFormState extends State<EntryForm> {
final _formKey = GlobalKey<FormState>();
late String title;
late String text;
late String date;
@override
Widget build(BuildContext context) {
return Card(
elevation: 6,
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Form(
key: _formKey,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
TextFormField(
decoration: const InputDecoration(labelText: 'Title'),
// The validator receives the text that the user has entered.
validator: (value) {
if (value == null || value.isEmpty) {
return 'Please enter some text';
}
title = value;
return null;
},
),
TextFormField(
decoration:
const InputDecoration(labelText: 'Date (DD/MM/YYYY):'),
validator: (value) {
if (value == null || value.isEmpty) {
return 'Please enter some text';
}
date = value;
return null;
},
),
TextFormField(
decoration: const InputDecoration(labelText: 'Text'),
maxLines: 10,
minLines: 5,
validator: (value) {
if (value == null || value.isEmpty) {
return 'Please enter some text';
}
text = value;
return null;
},
),
Center(
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 16.0),
child: FilledButton(
onPressed: () {
// Validate returns true if the form is valid, or false otherwise.
if (_formKey.currentState!.validate()) {
final entry = Entry(
title: title,
text: text,
date: date,
);
widget.onSubmit(entry);
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text('Submitting Entry')),
);
}
},
child: const Text('Submit'),
),
),
),
],
),
),
),
);
}
}
- name: Add lib/journal_entry_widget.dart
path: complete/lib/journal_entry_widget.dart
replace-contents: |
import 'package:flutter/material.dart';
import 'entry.dart';
class EntryView extends StatelessWidget {
final Entry entry;
const EntryView({super.key, required this.entry});
@override
Widget build(BuildContext context) {
return Card(
elevation: 6,
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Padding(
padding: const EdgeInsets.only(top: 16.0),
child: Text(
entry.title,
style: Theme.of(context).textTheme.titleLarge,
),
),
Padding(
padding: const EdgeInsets.symmetric(vertical: 8.0),
child: Text(
'Date: ${entry.date}',
style: Theme.of(context).textTheme.labelMedium,
),
),
const Divider(),
Expanded(
child: Text(
entry.text,
style: Theme.of(context).textTheme.bodyLarge!.copyWith(
height: 1.3,
wordSpacing: 1.2,
letterSpacing: 1.05,
),
),
),
],
),
),
);
}
}
- name: Add lib/logged_in_view.dart
path: complete/lib/logged_in_view.dart
replace-contents: |
import 'dart:math';
import 'package:flutter/material.dart';
import 'app_state.dart';
import 'entry.dart';
import 'journal_entry_form.dart';
import 'journal_entry_widget.dart';
class LoggedInView extends StatelessWidget {
final AppState state;
LoggedInView({super.key, required this.state});
final PageController _controller = PageController(initialPage: 1);
@override
Widget build(BuildContext context) {
// TODO: get name from Firebase User
final name = 'Person';
return Scaffold(
body: Column(
children: [
Center(
child: Padding(
padding: const EdgeInsets.symmetric(
vertical: 16.0,
),
child: Text(
'Welcome back, $name!',
style: Theme.of(context).textTheme.headlineSmall!.copyWith(),
),
),
),
Flexible(
child: Padding(
padding: const EdgeInsets.all(16.0),
child: StreamBuilder<List<Entry>>(
stream: state.entries,
initialData: const [],
builder: (context, snapshot) {
final allEntries = snapshot.data;
return PageView(
controller: _controller,
scrollDirection: Axis.horizontal,
children: [
EntryForm(
key: Key('${Random().nextDouble()}'),
onSubmit: (e) {
state.writeEntryToFirebase(e);
},
),
for (var entry in allEntries!)
EntryView(
entry: entry,
)
],
);
},
),
),
)
],
),
);
}
}
- name: Add lib/logged_out_view.dart
path: complete/lib/logged_out_view.dart
replace-contents: |
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
import 'app_state.dart';
class LoggedOutView extends StatelessWidget {
final AppState state;
const LoggedOutView({super.key, required this.state});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Firebase Emulator Suite Codelab'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
'Please log in',
style: Theme.of(context).textTheme.displaySmall,
),
Padding(
padding: const EdgeInsets.all(8.0),
child: FilledButton(
onPressed: () async {
// TODO: update email and password
await state.logIn('TODO', 'TODO').then((_) {
// TODO: update to check that state.user is not null
if (true) {
context.go('/');
}
});
},
child: const Text('Log In'),
),
),
],
),
),
);
}
}
- name: Add lib/main.dart
path: complete/lib/main.dart
replace-contents: |
import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
import 'app_state.dart';
import 'logged_in_view.dart';
import 'logged_out_view.dart';
void main() async {
// TODO: Initialize Firebase
runApp(MyApp());
}
class MyApp extends StatelessWidget {
final state = AppState();
MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp.router(
scrollBehavior: AppScrollBehavior(),
routerConfig: _router(),
theme: ThemeData(useMaterial3: true),
);
}
GoRouter _router() {
return GoRouter(
redirect: (context, routerState) => state.user == null ? '/login' : null,
routes: [
GoRoute(
path: '/',
builder: (context, routerState) => LoggedInView(state: state),
),
GoRoute(
path: '/login',
builder: (context, routerState) => LoggedOutView(state: state),
),
],
);
}
}
class AppScrollBehavior extends MaterialScrollBehavior {
@override
Set<PointerDeviceKind> get dragDevices => {
PointerDeviceKind.touch,
PointerDeviceKind.mouse,
};
}
- name: Build web
path: complete
flutter: build web
- name: Remove start
rmdir: start
- name: Copy to start
copydir:
from: complete
to: start
- name: Flutter clean
path: start
flutter: clean
- name: complete
steps:
- name: Add dependencies
path: complete
flutter: pub add firebase_core firebase_auth cloud_firestore
- name: Add .firebaserc
path: complete/.firebaserc
replace-contents: |
{
"projects": {
"default": "flutter-firebase-codelab-d6b79"
}
}
- name: Add firebase.json
path: complete/firebase.json
replace-contents: |
{
"firestore": {
"rules": "firestore.rules",
"indexes": "firestore.indexes.json"
},
"emulators": {
"auth": {
"port": 9099
},
"firestore": {
"port": 8080
},
"ui": {
"enabled": true
}
}
}
- name: firestore.indexes.json
path: complete/firestore.indexes.json
replace-contents: |
{
"indexes": [],
"fieldOverrides": []
}
- name: firestore.rules
path: complete/firestore.rules
replace-contents: |
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read, write: if
request.time < timestamp.date(2022, 8, 9);
}
}
}
- name: Patch android/app/build.gradle
path: complete/android/app/build.gradle
patch-u: |
--- b/firebase-emulator-suite/complete/android/app/build.gradle
+++ a/firebase-emulator-suite/complete/android/app/build.gradle
@@ -45,7 +45,7 @@ android {
applicationId "com.example.complete"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
- minSdkVersion flutter.minSdkVersion
+ minSdkVersion 19
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
- name: Patch lib/app_state.dart
path: complete/lib/app_state.dart
patch-u: |
--- b/firebase-emulator-suite/complete/lib/app_state.dart
+++ a/firebase-emulator-suite/complete/lib/app_state.dart
@@ -1,5 +1,8 @@
import 'dart:async';
+import 'package:cloud_firestore/cloud_firestore.dart';
+import 'package:firebase_auth/firebase_auth.dart';
+
import 'entry.dart';
class AppState {
@@ -15,28 +18,51 @@ class AppState {
});
}
- // This will change to the type User from the Firebase Authentication package
- // Changing itβs type now would cause the app to throw an error
- Object? user;
- late StreamController<List<Entry>> _entriesStreamController;
- Stream<List<Entry>> get entries =>
- _entriesStreamController.stream.asBroadcastStream();
+ User? user;
+ Stream<List<Entry>> get entries => _entriesStreamController.stream;
+ late final StreamController<List<Entry>> _entriesStreamController;
Future<void> logIn(String email, String password) async {
- print('TODO: AppState.login');
- user = Object();
- await _listenForEntries();
+ final credential = await FirebaseAuth.instance
+ .signInWithEmailAndPassword(email: email, password: password);
+ if (credential.user != null) {
+ user = credential.user!;
+ _listenForEntries();
+ } else {
+ print('no user!');
+ }
}
void writeEntryToFirebase(Entry entry) {
- print('TODO: AppState.writeEntryToFirebase');
+ FirebaseFirestore.instance.collection('Entries').add(<String, String>{
+ 'title': entry.title,
+ 'date': entry.date.toString(),
+ 'text': entry.text,
+ });
+ }
+
+ void _listenForEntries() {
+ FirebaseFirestore.instance
+ .collection('Entries')
+ .snapshots()
+ .listen((event) {
+ final entries = event.docs.map((doc) {
+ final data = doc.data();
+ return Entry(
+ date: data['date'] as String,
+ text: data['text'] as String,
+ title: data['title'] as String,
+ );
+ }).toList();
+
+ _entriesStreamController.add(entries);
+ });
}
- Future<void> _listenForEntries() async {
- print('TODO: AppState._listenForEntries');
+ void dispose() {
+ _entriesStreamController.close();
}
}
const lorem =
- '''Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum
- ''';
+ 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.';
- name: Patch lib/journal_entry_form.dart
path: complete/lib/journal_entry_form.dart
patch-u: |
--- b/firebase-emulator-suite/complete/lib/journal_entry_form.dart
+++ a/firebase-emulator-suite/complete/lib/journal_entry_form.dart
@@ -80,7 +80,7 @@ class _EntryFormState extends State<EntryForm> {
widget.onSubmit(entry);
ScaffoldMessenger.of(context).showSnackBar(
- const SnackBar(content: Text('Submitting Entry')),
+ const SnackBar(content: Text('Processing Data')),
);
}
},
- name: Patch lib/logged_in_view.dart
path: complete/lib/logged_in_view.dart
patch-u: |
--- b/firebase-emulator-suite/complete/lib/logged_in_view.dart
+++ a/firebase-emulator-suite/complete/lib/logged_in_view.dart
@@ -15,20 +15,14 @@ class LoggedInView extends StatelessWidget {
@override
Widget build(BuildContext context) {
- // TODO: get name from Firebase User
- final name = 'Person';
+ final name = state.user!.displayName ?? 'No Name';
return Scaffold(
body: Column(
children: [
Center(
- child: Padding(
- padding: const EdgeInsets.symmetric(
- vertical: 16.0,
- ),
- child: Text(
- 'Welcome back, $name!',
- style: Theme.of(context).textTheme.headlineSmall!.copyWith(),
- ),
+ child: Text(
+ 'Welcome back, $name!',
+ style: Theme.of(context).textTheme.headlineSmall!.copyWith(),
),
),
Flexible(
@@ -36,25 +30,29 @@ class LoggedInView extends StatelessWidget {
padding: const EdgeInsets.all(16.0),
child: StreamBuilder<List<Entry>>(
stream: state.entries,
- initialData: const [],
builder: (context, snapshot) {
- final allEntries = snapshot.data;
- return PageView(
- controller: _controller,
- scrollDirection: Axis.horizontal,
- children: [
- EntryForm(
- key: Key('${Random().nextDouble()}'),
- onSubmit: (e) {
- state.writeEntryToFirebase(e);
- },
- ),
- for (var entry in allEntries!)
- EntryView(
- entry: entry,
- )
- ],
- );
+ if (snapshot.hasData) {
+ final allEntries = snapshot.data;
+ return PageView(
+ controller: _controller,
+ scrollDirection: Axis.horizontal,
+ children: [
+ EntryForm(
+ key: Key('${Random().nextDouble()}'),
+ onSubmit: (e) {
+ state.writeEntryToFirebase(e);
+ },
+ ),
+ for (var entry in allEntries!)
+ EntryView(
+ key: Key('${Random().nextDouble()}'),
+ entry: entry,
+ )
+ ],
+ );
+ } else {
+ return const CircularProgressIndicator();
+ }
},
),
),
- name: Patch lib/logged_out_view.dart
path: complete/lib/logged_out_view.dart
patch-u: |
--- b/firebase-emulator-suite/complete/lib/logged_out_view.dart
+++ a/firebase-emulator-suite/complete/lib/logged_out_view.dart
@@ -24,10 +24,8 @@ class LoggedOutView extends StatelessWidget {
padding: const EdgeInsets.all(8.0),
child: FilledButton(
onPressed: () async {
- // TODO: update email and password
- await state.logIn('TODO', 'TODO').then((_) {
- // TODO: update to check that state.user is not null
- if (true) {
+ await state.logIn('[email protected]', 'dashword').then((_) {
+ if (state.user != null) {
context.go('/');
}
});
- name: Patch lib/main.dart
path: complete/lib/main.dart
patch-u: |
--- b/firebase-emulator-suite/complete/lib/main.dart
+++ a/firebase-emulator-suite/complete/lib/main.dart
@@ -1,13 +1,32 @@
+import 'package:cloud_firestore/cloud_firestore.dart';
+import 'package:firebase_auth/firebase_auth.dart';
+import 'package:firebase_core/firebase_core.dart';
+import 'package:flutter/foundation.dart';
import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
import 'app_state.dart';
+import 'firebase_options.dart';
import 'logged_in_view.dart';
import 'logged_out_view.dart';
void main() async {
- // TODO: Initialize Firebase
+ WidgetsFlutterBinding.ensureInitialized();
+ await Firebase.initializeApp(
+ options: DefaultFirebaseOptions.currentPlatform,
+ );
+
+ if (kDebugMode) {
+ try {
+ FirebaseFirestore.instance.useFirestoreEmulator('localhost', 8080);
+ await FirebaseAuth.instance.useAuthEmulator('localhost', 9099);
+ } catch (e) {
+ // ignore: avoid_print
+ print(e);
+ }
+ }
+
runApp(MyApp());
}
- name: Create lib/firebase_options.dart
path: complete/lib/firebase_options.dart
replace-contents: |
// File generated by FlutterFire CLI.
// ignore_for_file: lines_longer_than_80_chars
import 'package:firebase_core/firebase_core.dart' show FirebaseOptions;
import 'package:flutter/foundation.dart'
show defaultTargetPlatform, kIsWeb, TargetPlatform;
/// Default [FirebaseOptions] for use with your Firebase apps.
///
/// Example:
/// ```dart
/// import 'firebase_options.dart';
/// // ...
/// await Firebase.initializeApp(
/// options: DefaultFirebaseOptions.currentPlatform,
/// );
/// ```
class DefaultFirebaseOptions {
static FirebaseOptions get currentPlatform {
if (kIsWeb) {
return web;
}
switch (defaultTargetPlatform) {
case TargetPlatform.android:
return android;
case TargetPlatform.iOS:
return ios;
case TargetPlatform.macOS:
return macos;
default:
throw UnsupportedError(
'DefaultFirebaseOptions are not supported for this platform.');
}
}
static const FirebaseOptions web = FirebaseOptions(
apiKey: 'AIzaSyBqTAGMEPyYPrraQColhTWE3gpBCHwBHaY',
appId: '1:249605288217:web:f8441e30c5cc335b089588',
messagingSenderId: '249605288217',
projectId: 'flutter-firebase-codelab-d6b79',
authDomain: 'flutter-firebase-codelab-d6b79.firebaseapp.com',
storageBucket: 'flutter-firebase-codelab-d6b79.appspot.com',
);
static const FirebaseOptions android = FirebaseOptions(
apiKey: 'AIzaSyDOhizxfIPR8Qs4_isZnE_AnteC0zOxod4',
appId: '1:249605288217:android:27c0f0a1ef464773089588',
messagingSenderId: '249605288217',
projectId: 'flutter-firebase-codelab-d6b79',
storageBucket: 'flutter-firebase-codelab-d6b79.appspot.com',
);
static const FirebaseOptions ios = FirebaseOptions(
apiKey: 'AIzaSyCvSrqVklmfWxE_SM8HNHvxqOLZTQCsUtk',
appId: '1:249605288217:ios:ef9f4946a0d08a35089588',
messagingSenderId: '249605288217',
projectId: 'flutter-firebase-codelab-d6b79',
storageBucket: 'flutter-firebase-codelab-d6b79.appspot.com',
iosClientId:
'249605288217-9sn136tgsd0vg7nae831gahubpoph3ih.apps.googleusercontent.com',
iosBundleId: 'com.example.complete',
);
static const FirebaseOptions macos = FirebaseOptions(
apiKey: 'AIzaSyCvSrqVklmfWxE_SM8HNHvxqOLZTQCsUtk',
appId: '1:249605288217:ios:ef9f4946a0d08a35089588',
messagingSenderId: '249605288217',
projectId: 'flutter-firebase-codelab-d6b79',
storageBucket: 'flutter-firebase-codelab-d6b79.appspot.com',
iosClientId:
'249605288217-9sn136tgsd0vg7nae831gahubpoph3ih.apps.googleusercontent.com',
iosBundleId: 'com.example.complete',
);
}
- name: Mkdir android/app/src/main/java/io/flutter/app
path: complete
mkdir: android/app/src/main/java/io/flutter/app
- name: Create android/app/src/main/java/io/flutter/app/FlutterMultiDexApplication.java
path: complete/android/app/src/main/java/io/flutter/app/FlutterMultiDexApplication.java
replace-contents: |
// Generated file.
//
// If you wish to remove Flutter's multidex support, delete this entire file.
//
// Modifications to this file should be done in a copy under a different name
// as this file may be regenerated.
package io.flutter.app;
import android.app.Application;
import android.content.Context;
import androidx.annotation.CallSuper;
import androidx.multidex.MultiDex;
/**
* Extension of {@link android.app.Application}, adding multidex support.
*/
public class FlutterMultiDexApplication extends Application {
@Override
@CallSuper
protected void attachBaseContext(Context base) {
super.attachBaseContext(base);
MultiDex.install(this);
}
}
- name: Mkdir emulators_data/auth_export
path: complete
mkdir: emulators_data/auth_export
- name: Create emulators_data/auth_export/accounts.json
path: complete/emulators_data/auth_export/accounts.json
replace-contents: |
{"kind":"identitytoolkit#DownloadAccountResponse","users":[]}
- name: Create emulators_data/auth_export/config.json
path: complete/emulators_data/auth_export/config.json
replace-contents: |
{"signIn":{"allowDuplicateEmails":false},"usageMode":"DEFAULT"}
- name: Create emulators_data/firebase-export-metadata.json
path: complete/emulators_data/firebase-export-metadata.json
replace-contents: |
{
"version": "10.6.0",
"firestore": {
"version": "1.14.1",
"path": "firestore_export",
"metadata_file": "firestore_export/firestore_export.overall_export_metadata"
},
"auth": {
"version": "10.6.0",
"path": "auth_export"
}
}
- name: Mkdir emulators_data/firestore_export
path: complete
mkdir: emulators_data/firestore_export
- name: Create emulators_data/firestore_export/firestore_export.overall_export_metadata
path: complete/emulators_data/firestore_export/firestore_export.overall_export_metadata
base64-contents: |
uG1ETgEAATMFKyhDAAAB
- name: Build web
path: complete
flutter: build web
- name: Flutter clean
path: complete
flutter: clean
| codelabs/firebase-emulator-suite/codelab_rebuild.yaml/0 | {
"file_path": "codelabs/firebase-emulator-suite/codelab_rebuild.yaml",
"repo_id": "codelabs",
"token_count": 20815
} | 43 |
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read, write: if
request.time < timestamp.date(2022, 8, 9);
}
}
}
| codelabs/firebase-emulator-suite/complete/firestore.rules/0 | {
"file_path": "codelabs/firebase-emulator-suite/complete/firestore.rules",
"repo_id": "codelabs",
"token_count": 88
} | 44 |
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:firebase_core/firebase_core.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
import 'app_state.dart';
import 'firebase_options.dart';
import 'logged_in_view.dart';
import 'logged_out_view.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
await Firebase.initializeApp(
options: DefaultFirebaseOptions.currentPlatform,
);
if (kDebugMode) {
try {
FirebaseFirestore.instance.useFirestoreEmulator('localhost', 8080);
await FirebaseAuth.instance.useAuthEmulator('localhost', 9099);
} catch (e) {
// ignore: avoid_print
print(e);
}
}
runApp(MyApp());
}
class MyApp extends StatelessWidget {
final state = AppState();
MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp.router(
scrollBehavior: AppScrollBehavior(),
routerConfig: _router(),
theme: ThemeData(useMaterial3: true),
);
}
GoRouter _router() {
return GoRouter(
redirect: (context, routerState) => state.user == null ? '/login' : null,
routes: [
GoRoute(
path: '/',
builder: (context, routerState) => LoggedInView(state: state),
),
GoRoute(
path: '/login',
builder: (context, routerState) => LoggedOutView(state: state),
),
],
);
}
}
class AppScrollBehavior extends MaterialScrollBehavior {
@override
Set<PointerDeviceKind> get dragDevices => {
PointerDeviceKind.touch,
PointerDeviceKind.mouse,
};
}
| codelabs/firebase-emulator-suite/complete/lib/main.dart/0 | {
"file_path": "codelabs/firebase-emulator-suite/complete/lib/main.dart",
"repo_id": "codelabs",
"token_count": 693
} | 45 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/firebase-emulator-suite/start/android/gradle.properties/0 | {
"file_path": "codelabs/firebase-emulator-suite/start/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 46 |
import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
import 'app_state.dart';
import 'logged_in_view.dart';
import 'logged_out_view.dart';
void main() async {
// TODO: Initialize Firebase
runApp(MyApp());
}
class MyApp extends StatelessWidget {
final state = AppState();
MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp.router(
scrollBehavior: AppScrollBehavior(),
routerConfig: _router(),
theme: ThemeData(useMaterial3: true),
);
}
GoRouter _router() {
return GoRouter(
redirect: (context, routerState) => state.user == null ? '/login' : null,
routes: [
GoRoute(
path: '/',
builder: (context, routerState) => LoggedInView(state: state),
),
GoRoute(
path: '/login',
builder: (context, routerState) => LoggedOutView(state: state),
),
],
);
}
}
class AppScrollBehavior extends MaterialScrollBehavior {
@override
Set<PointerDeviceKind> get dragDevices => {
PointerDeviceKind.touch,
PointerDeviceKind.mouse,
};
}
| codelabs/firebase-emulator-suite/start/lib/main.dart/0 | {
"file_path": "codelabs/firebase-emulator-suite/start/lib/main.dart",
"repo_id": "codelabs",
"token_count": 483
} | 47 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/firebase-get-to-know-flutter/step_02/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/firebase-get-to-know-flutter/step_02/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 48 |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import 'src/widgets.dart';
class HomePage extends StatelessWidget {
const HomePage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Firebase Meetup'),
),
body: ListView(
children: <Widget>[
Image.asset('assets/codelab.png'),
const SizedBox(height: 8),
const IconAndDetail(Icons.calendar_today, 'October 30'),
const IconAndDetail(Icons.location_city, 'San Francisco'),
const Divider(
height: 8,
thickness: 1,
indent: 8,
endIndent: 8,
color: Colors.grey,
),
const Header("What we'll be doing"),
const Paragraph(
'Join us for a day full of Firebase Workshops and Pizza!',
),
],
),
);
}
}
| codelabs/firebase-get-to-know-flutter/step_04/lib/home_page.dart/0 | {
"file_path": "codelabs/firebase-get-to-know-flutter/step_04/lib/home_page.dart",
"repo_id": "codelabs",
"token_count": 477
} | 49 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/firebase-get-to-know-flutter/step_06/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/firebase-get-to-know-flutter/step_06/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 50 |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_auth/firebase_auth.dart'
hide EmailAuthProvider, PhoneAuthProvider;
import 'package:firebase_core/firebase_core.dart';
import 'package:firebase_ui_auth/firebase_ui_auth.dart';
import 'package:flutter/material.dart';
import 'firebase_options.dart';
import 'guest_book_message.dart';
class ApplicationState extends ChangeNotifier {
ApplicationState() {
init();
}
bool _loggedIn = false;
bool get loggedIn => _loggedIn;
StreamSubscription<QuerySnapshot>? _guestBookSubscription;
List<GuestBookMessage> _guestBookMessages = [];
List<GuestBookMessage> get guestBookMessages => _guestBookMessages;
Future<void> init() async {
await Firebase.initializeApp(
options: DefaultFirebaseOptions.currentPlatform);
FirebaseUIAuth.configureProviders([
EmailAuthProvider(),
]);
FirebaseAuth.instance.userChanges().listen((user) {
if (user != null) {
_loggedIn = true;
_guestBookSubscription = FirebaseFirestore.instance
.collection('guestbook')
.orderBy('timestamp', descending: true)
.snapshots()
.listen((snapshot) {
_guestBookMessages = [];
for (final document in snapshot.docs) {
_guestBookMessages.add(
GuestBookMessage(
name: document.data()['name'] as String,
message: document.data()['text'] as String,
),
);
}
notifyListeners();
});
} else {
_loggedIn = false;
_guestBookMessages = [];
_guestBookSubscription?.cancel();
}
notifyListeners();
});
}
Future<DocumentReference> addMessageToGuestBook(String message) {
if (!_loggedIn) {
throw Exception('Must be logged in');
}
return FirebaseFirestore.instance
.collection('guestbook')
.add(<String, dynamic>{
'text': message,
'timestamp': DateTime.now().millisecondsSinceEpoch,
'name': FirebaseAuth.instance.currentUser!.displayName,
'userId': FirebaseAuth.instance.currentUser!.uid,
});
}
}
| codelabs/firebase-get-to-know-flutter/step_07/lib/app_state.dart/0 | {
"file_path": "codelabs/firebase-get-to-know-flutter/step_07/lib/app_state.dart",
"repo_id": "codelabs",
"token_count": 953
} | 51 |
include: ../../analysis_options.yaml
| codelabs/firebase-get-to-know-flutter/step_09/analysis_options.yaml/0 | {
"file_path": "codelabs/firebase-get-to-know-flutter/step_09/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 12
} | 52 |
/*
* Copyright 2019 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'locations.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
LatLng _$LatLngFromJson(Map<String, dynamic> json) => LatLng(
lat: (json['lat'] as num).toDouble(),
lng: (json['lng'] as num).toDouble(),
);
Map<String, dynamic> _$LatLngToJson(LatLng instance) => <String, dynamic>{
'lat': instance.lat,
'lng': instance.lng,
};
Region _$RegionFromJson(Map<String, dynamic> json) => Region(
coords: LatLng.fromJson(json['coords'] as Map<String, dynamic>),
id: json['id'] as String,
name: json['name'] as String,
zoom: (json['zoom'] as num).toDouble(),
);
Map<String, dynamic> _$RegionToJson(Region instance) => <String, dynamic>{
'coords': instance.coords,
'id': instance.id,
'name': instance.name,
'zoom': instance.zoom,
};
Office _$OfficeFromJson(Map<String, dynamic> json) => Office(
address: json['address'] as String,
id: json['id'] as String,
image: json['image'] as String,
lat: (json['lat'] as num).toDouble(),
lng: (json['lng'] as num).toDouble(),
name: json['name'] as String,
phone: json['phone'] as String,
region: json['region'] as String,
);
Map<String, dynamic> _$OfficeToJson(Office instance) => <String, dynamic>{
'address': instance.address,
'id': instance.id,
'image': instance.image,
'lat': instance.lat,
'lng': instance.lng,
'name': instance.name,
'phone': instance.phone,
'region': instance.region,
};
Locations _$LocationsFromJson(Map<String, dynamic> json) => Locations(
offices: (json['offices'] as List<dynamic>)
.map((e) => Office.fromJson(e as Map<String, dynamic>))
.toList(),
regions: (json['regions'] as List<dynamic>)
.map((e) => Region.fromJson(e as Map<String, dynamic>))
.toList(),
);
Map<String, dynamic> _$LocationsToJson(Locations instance) => <String, dynamic>{
'offices': instance.offices,
'regions': instance.regions,
};
| codelabs/google-maps-in-flutter/step_5/lib/src/locations.g.dart/0 | {
"file_path": "codelabs/google-maps-in-flutter/step_5/lib/src/locations.g.dart",
"repo_id": "codelabs",
"token_count": 1040
} | 53 |
import 'package:flutter/material.dart';
class Shimmer extends StatefulWidget {
const Shimmer({
super.key,
required this.linearGradient,
this.child,
});
static ShimmerState? of(BuildContext context) {
return context.findAncestorStateOfType<ShimmerState>();
}
final LinearGradient linearGradient;
final Widget? child;
@override
ShimmerState createState() => ShimmerState();
}
class ShimmerState extends State<Shimmer> with SingleTickerProviderStateMixin {
late AnimationController shimmerController;
@override
void initState() {
super.initState();
shimmerController = AnimationController.unbounded(vsync: this)
..repeat(min: -0.5, max: 1.5, period: const Duration(milliseconds: 1000));
}
@override
void dispose() {
shimmerController.dispose();
super.dispose();
}
LinearGradient get gradient => LinearGradient(
colors: widget.linearGradient.colors,
stops: widget.linearGradient.stops,
begin: widget.linearGradient.begin,
end: widget.linearGradient.end,
transform:
SlidingGradientTransform(slidePercent: shimmerController.value),
);
bool get isSized {
if (context.findRenderObject() != null) {
return (context.findRenderObject()! as RenderBox).hasSize;
} else {
return false;
}
}
Size get size => (context.findRenderObject()! as RenderBox).size;
Offset getDescendantOffset({
required RenderBox descendant,
Offset offset = Offset.zero,
}) {
final RenderBox shimmerBox = context.findRenderObject()! as RenderBox;
return descendant.localToGlobal(offset, ancestor: shimmerBox);
}
Listenable get shimmerChanges => shimmerController;
@override
Widget build(BuildContext context) {
return widget.child ?? const SizedBox();
}
}
class SlidingGradientTransform extends GradientTransform {
const SlidingGradientTransform({
required this.slidePercent,
});
final double slidePercent;
@override
Matrix4? transform(Rect bounds, {TextDirection? textDirection}) {
return Matrix4.translationValues(bounds.width * slidePercent, 0.0, 0.0);
}
}
class ShimmerLoading extends StatefulWidget {
const ShimmerLoading({
super.key,
required this.isLoading,
required this.child,
});
final bool isLoading;
final Widget child;
@override
State<ShimmerLoading> createState() => ShimmerLoadingState();
}
class ShimmerLoadingState extends State<ShimmerLoading> {
Listenable? shimmerChanges;
@override
void didChangeDependencies() {
super.didChangeDependencies();
if (shimmerChanges != null) {
shimmerChanges!.removeListener(onShimmerChange);
}
shimmerChanges = Shimmer.of(context)?.shimmerChanges;
if (shimmerChanges != null) {
shimmerChanges!.addListener(onShimmerChange);
}
}
@override
void dispose() {
shimmerChanges?.removeListener(onShimmerChange);
super.dispose();
}
void onShimmerChange() {
if (widget.isLoading) {
setState(() {
// update the shimmer painting.
});
}
}
@override
Widget build(BuildContext context) {
if (!widget.isLoading) {
return widget.child;
}
// Collect ancestor shimmer info.
final ShimmerState shimmer = Shimmer.of(context)!;
if (!shimmer.isSized) {
// The ancestor Shimmer widget has not laid
// itself out yet. Return an empty box.
return const SizedBox();
}
final Size shimmerSize = shimmer.size;
final LinearGradient gradient = shimmer.gradient;
final Offset offsetWithinShimmer = shimmer.getDescendantOffset(
descendant: context.findRenderObject()! as RenderBox,
);
return ShaderMask(
blendMode: BlendMode.srcATop,
shaderCallback: (Rect bounds) {
return gradient.createShader(
Rect.fromLTWH(
-offsetWithinShimmer.dx,
-offsetWithinShimmer.dy,
shimmerSize.width,
shimmerSize.height,
),
);
},
child: widget.child,
);
}
}
| codelabs/haiku_generator/finished/lib/widgets/shimmer_loading.dart/0 | {
"file_path": "codelabs/haiku_generator/finished/lib/widgets/shimmer_loading.dart",
"repo_id": "codelabs",
"token_count": 1440
} | 54 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/haiku_generator/finished/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/haiku_generator/finished/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 55 |
import '../data/repositories/product_repository_impl.dart';
import '../domain/models/product.dart';
import '../domain/repositories/abstract/product_repository.dart';
class ProductController {
final ProductRepository productRepository = ProductRepositoryImpl();
Future<List<Product>> getProducts() {
return productRepository.getAllProducts();
}
}
| codelabs/haiku_generator/step0/lib/controller/product_controller.dart/0 | {
"file_path": "codelabs/haiku_generator/step0/lib/controller/product_controller.dart",
"repo_id": "codelabs",
"token_count": 109
} | 56 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/haiku_generator/step1/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/haiku_generator/step1/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 57 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/haiku_generator/step3/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/haiku_generator/step3/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 58 |
import 'package:flutter/material.dart';
import 'news_data.dart';
class ArticleScreen extends StatefulWidget {
final NewsArticle article;
const ArticleScreen({
super.key,
required this.article,
});
@override
State<ArticleScreen> createState() => _ArticleScreenState();
}
class _ArticleScreenState extends State<ArticleScreen> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.article.title),
titleTextStyle: const TextStyle(
fontSize: 16, fontWeight: FontWeight.bold, color: Colors.black)),
floatingActionButton: FloatingActionButton.extended(
onPressed: () {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text('Updating home screen widget...'),
),
);
},
label: const Text('Update Homescreen'),
),
body: ListView(
padding: const EdgeInsets.all(16.0),
children: [
Text(
widget.article.description,
style: Theme.of(context).textTheme.titleMedium,
),
const SizedBox(height: 20.0),
Text(widget.article.articleText!),
const SizedBox(height: 20.0),
const Center(child: LineChart()),
const SizedBox(height: 20.0),
Text(widget.article.articleText!),
],
),
);
}
}
class LineChart extends StatelessWidget {
const LineChart({
super.key,
});
@override
Widget build(BuildContext context) {
return CustomPaint(
painter: LineChartPainter(),
child: const SizedBox(
height: 200,
width: 200,
),
);
}
}
class LineChartPainter extends CustomPainter {
@override
void paint(Canvas canvas, Size size) {
final axisPaint = Paint()
..color = Colors.black
..strokeWidth = 2
..style = PaintingStyle.stroke;
final dataPaint = Paint()
..color = Colors.blue
..strokeWidth = 2
..style = PaintingStyle.stroke;
final markingLinePaint = Paint()
..color = Colors.red
..strokeWidth = 2
..style = PaintingStyle.stroke;
final mockDataPoints = [
const Offset(15, 155),
const Offset(20, 133),
const Offset(34, 125),
const Offset(40, 105),
const Offset(70, 85),
const Offset(80, 95),
const Offset(90, 60),
const Offset(120, 54),
const Offset(160, 60),
const Offset(200, -10),
];
final axis = Path()
..moveTo(0, 0)
..lineTo(0, size.height)
..lineTo(size.width, size.height);
final markingLine = Path()
..moveTo(-10, 50)
..lineTo(size.width + 10, 50);
final data = Path()..moveTo(1, 180);
for (var dataPoint in mockDataPoints) {
data.lineTo(dataPoint.dx, dataPoint.dy);
}
canvas.drawPath(axis, axisPaint);
canvas.drawPath(data, dataPaint);
canvas.drawPath(markingLine, markingLinePaint);
}
@override
bool shouldRepaint(CustomPainter oldDelegate) => false;
}
| codelabs/homescreen_codelab/step_03/lib/article_screen.dart/0 | {
"file_path": "codelabs/homescreen_codelab/step_03/lib/article_screen.dart",
"repo_id": "codelabs",
"token_count": 1305
} | 59 |
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="appwidget_text">EXAMPLE</string>
<string name="add_widget">Add widget</string>
<string name="app_widget_description">This is an app widget description</string>
</resources> | codelabs/homescreen_codelab/step_04/android/app/src/main/res/values/strings.xml/0 | {
"file_path": "codelabs/homescreen_codelab/step_04/android/app/src/main/res/values/strings.xml",
"repo_id": "codelabs",
"token_count": 82
} | 60 |
include: ../../analysis_options.yaml
linter:
rules:
avoid_print: false | codelabs/homescreen_codelab/step_05/analysis_options.yaml/0 | {
"file_path": "codelabs/homescreen_codelab/step_05/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 29
} | 61 |
<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:description="@string/app_widget_description"
android:initialKeyguardLayout="@layout/news_widget"
android:initialLayout="@layout/news_widget"
android:minWidth="180dp"
android:minHeight="180dp"
android:previewImage="@drawable/example_appwidget_preview"
android:previewLayout="@layout/news_widget"
android:resizeMode="horizontal|vertical"
android:targetCellWidth="3"
android:targetCellHeight="3"
android:updatePeriodMillis="1000"
android:widgetCategory="home_screen" /> | codelabs/homescreen_codelab/step_05/android/app/src/main/res/xml/news_widget_info.xml/0 | {
"file_path": "codelabs/homescreen_codelab/step_05/android/app/src/main/res/xml/news_widget_info.xml",
"repo_id": "codelabs",
"token_count": 226
} | 62 |
import WidgetKit
import SwiftUI
struct Provider: TimelineProvider {
func placeholder(in context: Context) -> NewsArticleEntry {
NewsArticleEntry(date: Date(), title: "Placholder Title", description: "Placholder description")
}
func getSnapshot(in context: Context, completion: @escaping (NewsArticleEntry) -> ()) {
let entry: NewsArticleEntry
if context.isPreview{
entry = placeholder(in: context)
}
else{
// TO DO: Add your app group ID
let userDefaults = UserDefaults(suiteName: "<YOUR APP GROUP>")
let title = userDefaults?.string(forKey: "headline_title") ?? "No Title Set"
let description = userDefaults?.string(forKey: "headline_description") ?? "No Description Set"
entry = NewsArticleEntry(date: Date(), title: title, description: description)
}
completion(entry)
}
func getTimeline(in context: Context, completion: @escaping (Timeline<Entry>) -> ()) {
getSnapshot(in: context) { (entry) in
let timeline = Timeline(entries: [entry], policy: .atEnd)
completion(timeline)
}
}
}
struct NewsArticleEntry: TimelineEntry {
let date: Date
let title: String
let description:String
}
struct NewsWidgetsEntryView : View {
var entry: Provider.Entry
// New: Register the font.
init(entry: Provider.Entry){
self.entry = entry
CTFontManagerRegisterFontsForURL(bundle.appending(path: "/fonts/Chewy-Regular.ttf") as CFURL, CTFontManagerScope.process, nil)
}
// New: Add the helper function.
var bundle: URL {
let bundle = Bundle.main
if bundle.bundleURL.pathExtension == "appex" {
// Peel off two directory levels - MY_APP.app/PlugIns/MY_APP_EXTENSION.appex
var url = bundle.bundleURL.deletingLastPathComponent().deletingLastPathComponent()
url.append(component: "Frameworks/App.framework/flutter_assets")
return url
}
return bundle.bundleURL
}
var body: some View {
VStack {
// Update the following line.
Text(entry.title).font(Font.custom("Chewy", size: 13))
Text(entry.description)
}
}
}
struct NewsWidgets: Widget {
let kind: String = "NewsWidgets"
var body: some WidgetConfiguration {
StaticConfiguration(kind: kind, provider: Provider()) { entry in
NewsWidgetsEntryView(entry: entry)
}
.configurationDisplayName("My Widget")
.description("This is an example widget.")
}
}
| codelabs/homescreen_codelab/step_05/ios/NewsWidgets/NewsWidgets.swift/0 | {
"file_path": "codelabs/homescreen_codelab/step_05/ios/NewsWidgets/NewsWidgets.swift",
"repo_id": "codelabs",
"token_count": 1056
} | 63 |
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.application-groups</key>
<array>
<string>YOUR_APP_GROUP</string>
</array>
</dict>
</plist>
| codelabs/homescreen_codelab/step_06/ios/Runner/Runner.entitlements/0 | {
"file_path": "codelabs/homescreen_codelab/step_06/ios/Runner/Runner.entitlements",
"repo_id": "codelabs",
"token_count": 128
} | 64 |
import 'package:flutter/material.dart';
import 'package:in_app_purchase/in_app_purchase.dart';
import 'package:provider/provider.dart';
import 'logic/dash_counter.dart';
import 'logic/dash_purchases.dart';
import 'logic/dash_upgrades.dart';
import 'logic/firebase_notifier.dart';
import 'pages/home_page.dart';
import 'pages/purchase_page.dart';
import 'repo/iap_repo.dart';
// Gives the option to override in tests.
class IAPConnection {
static InAppPurchase? _instance;
static set instance(InAppPurchase value) {
_instance = value;
}
static InAppPurchase get instance {
_instance ??= InAppPurchase.instance;
return _instance!;
}
}
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Dash Clicker',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(title: 'Dash Clicker'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
typedef PageBuilder = Widget Function();
class _MyHomePageState extends State<MyHomePage> {
int _selectedIndex = 0;
static final List<Widget> _widgetOptions = [
const HomePage(),
const PurchasePage(),
];
@override
Widget build(BuildContext context) {
return MultiProvider(
providers: [
ChangeNotifierProvider<FirebaseNotifier>(
create: (_) => FirebaseNotifier()),
ChangeNotifierProvider<DashCounter>(create: (_) => DashCounter()),
ChangeNotifierProvider<DashUpgrades>(
create: (context) => DashUpgrades(
context.read<DashCounter>(),
context.read<FirebaseNotifier>(),
),
),
ChangeNotifierProvider<IAPRepo>(
create: (context) => IAPRepo(context.read<FirebaseNotifier>()),
),
ChangeNotifierProvider<DashPurchases>(
create: (context) => DashPurchases(
context.read<DashCounter>(),
context.read<FirebaseNotifier>(),
context.read<IAPRepo>(),
),
lazy: false,
),
],
child: Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: _widgetOptions[_selectedIndex],
bottomNavigationBar: BottomNavigationBar(
items: const <BottomNavigationBarItem>[
BottomNavigationBarItem(
icon: Icon(Icons.home),
label: 'Home',
),
BottomNavigationBarItem(
icon: Icon(Icons.shop),
label: 'Purchase',
),
],
currentIndex: _selectedIndex,
selectedItemColor: Colors.amber[800],
onTap: (index) => setState(() => _selectedIndex = index),
),
),
);
}
}
| codelabs/in_app_purchases/complete/app/lib/main.dart/0 | {
"file_path": "codelabs/in_app_purchases/complete/app/lib/main.dart",
"repo_id": "codelabs",
"token_count": 1283
} | 65 |
Copy here the service account keys for Firebase and Google Play as:
- `service-account-firebase.json`: With permissions for Firestore
- `service-account-google-play.json`: with permissions for Google Play Developer API | codelabs/in_app_purchases/complete/dart-backend/assets/README.md/0 | {
"file_path": "codelabs/in_app_purchases/complete/dart-backend/assets/README.md",
"repo_id": "codelabs",
"token_count": 54
} | 66 |
#import "AppDelegate.h"
#import "GeneratedPluginRegistrant.h"
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[GeneratedPluginRegistrant registerWithRegistry:self];
// Override point for customization after application launch.
return [super application:application didFinishLaunchingWithOptions:launchOptions];
}
@end
| codelabs/in_app_purchases/step_00/app/ios/Runner/AppDelegate.m/0 | {
"file_path": "codelabs/in_app_purchases/step_00/app/ios/Runner/AppDelegate.m",
"repo_id": "codelabs",
"token_count": 116
} | 67 |
import 'dart:async';
import 'package:flutter/widgets.dart';
import 'package:intl/intl.dart';
const updatesPerSecond = 10;
class DashCounter extends ChangeNotifier {
final numberFormatter = NumberFormat.compactLong();
int get count => _count.floor();
String get countString => _countString;
String _countString = '0';
double _count = 0;
late Timer timer;
double _autoIncrementCount = 0;
int _multiplier = 1;
DashCounter() {
timer = Timer.periodic(
const Duration(milliseconds: 1000 ~/ updatesPerSecond),
(timer) => _updateWithAutoIncrement(),
);
}
@override
void dispose() {
timer.cancel();
super.dispose();
}
void increment() {
_increment(1);
}
void addAutoIncrement({
required double incrementPerSecond,
required int costs,
}) {
_count -= costs;
_autoIncrementCount += incrementPerSecond;
notifyListeners();
}
void _updateWithAutoIncrement() {
_increment(_autoIncrementCount * _multiplier / updatesPerSecond);
}
void _increment(double increment) {
var oldCount = _countString;
_count += increment;
_countString = numberFormatter.format(count);
if (_countString != oldCount) {
notifyListeners();
}
}
void applyPaidMultiplier() {
_multiplier = 10;
}
void removePaidMultiplier() {
_multiplier = 1;
}
void addBoughtDashes(int amount) {
_increment(amount.toDouble());
}
}
| codelabs/in_app_purchases/step_00/app/lib/logic/dash_counter.dart/0 | {
"file_path": "codelabs/in_app_purchases/step_00/app/lib/logic/dash_counter.dart",
"repo_id": "codelabs",
"token_count": 508
} | 68 |
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true
| codelabs/in_app_purchases/step_10/app/android/gradle.properties/0 | {
"file_path": "codelabs/in_app_purchases/step_10/app/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 31
} | 69 |
#import <Flutter/Flutter.h>
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char* argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
| codelabs/in_app_purchases/step_10/app/ios/Runner/main.m/0 | {
"file_path": "codelabs/in_app_purchases/step_10/app/ios/Runner/main.m",
"repo_id": "codelabs",
"token_count": 95
} | 70 |
name: dashclicker
description: A codelab for in-app purchases
publish_to: "none"
version: 1.0.0+1
environment:
sdk: ^3.2.0
dependencies:
cloud_firestore: ^4.0.3
cupertino_icons: ^1.0.2
firebase_auth: ^4.2.2
firebase_core: ^2.5.0
flutter:
sdk: flutter
google_sign_in: ^6.0.1
http: ^1.0.0
in_app_purchase: ^3.0.1
in_app_purchase_platform_interface: ^1.3.1
intl: ^0.18.0
provider: ^6.0.2
dev_dependencies:
flutter_lints: ^3.0.0
flutter_test:
sdk: flutter
flutter:
uses-material-design: true
assets:
- assets/
| codelabs/in_app_purchases/step_10/app/pubspec.yaml/0 | {
"file_path": "codelabs/in_app_purchases/step_10/app/pubspec.yaml",
"repo_id": "codelabs",
"token_count": 265
} | 71 |
name: firebase_backend_dart
description: A sample command-line application.
version: 1.0.0
# homepage: https://www.example.com
environment:
sdk: ^3.2.0
dependencies:
googleapis: ^11.0.0
googleapis_auth: ^1.3.0
http: ^1.1.0
shelf: ^1.3.0
shelf_router: ^1.1.2
app_store_server_sdk: ^1.2.5
dev_dependencies:
lints: ^3.0.0
test: ^1.16.0
| codelabs/in_app_purchases/step_10/dart-backend/pubspec.yaml/0 | {
"file_path": "codelabs/in_app_purchases/step_10/dart-backend/pubspec.yaml",
"repo_id": "codelabs",
"token_count": 164
} | 72 |
#include "Generated.xcconfig"
| codelabs/namer/step_05_a_pair/ios/Flutter/Debug.xcconfig/0 | {
"file_path": "codelabs/namer/step_05_a_pair/ios/Flutter/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 73 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/namer/step_05_a_pair/macos/Flutter/Flutter-Debug.xcconfig/0 | {
"file_path": "codelabs/namer/step_05_a_pair/macos/Flutter/Flutter-Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 74 |
#import "GeneratedPluginRegistrant.h"
| codelabs/namer/step_05_b_extract/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/namer/step_05_b_extract/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 75 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/namer/step_05_b_extract/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/namer/step_05_b_extract/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 76 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/namer/step_06_a_business_logic/android/gradle.properties/0 | {
"file_path": "codelabs/namer/step_06_a_business_logic/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 77 |
#include "Generated.xcconfig"
| codelabs/namer/step_06_c_add_like_button/ios/Flutter/Release.xcconfig/0 | {
"file_path": "codelabs/namer/step_06_c_add_like_button/ios/Flutter/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 78 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/namer/step_06_c_add_like_button/macos/Flutter/Flutter-Release.xcconfig/0 | {
"file_path": "codelabs/namer/step_06_c_add_like_button/macos/Flutter/Flutter-Release.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 79 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/namer/step_07_a_split_my_home_page/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/namer/step_07_a_split_my_home_page/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 80 |
#include "Generated.xcconfig"
| codelabs/namer/step_07_e_add_layout_builder/ios/Flutter/Debug.xcconfig/0 | {
"file_path": "codelabs/namer/step_07_e_add_layout_builder/ios/Flutter/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 81 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/namer/step_07_e_add_layout_builder/macos/Flutter/Flutter-Debug.xcconfig/0 | {
"file_path": "codelabs/namer/step_07_e_add_layout_builder/macos/Flutter/Flutter-Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 82 |
#import "GeneratedPluginRegistrant.h"
| codelabs/namer/step_08/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/namer/step_08/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 83 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/namer/step_08/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/namer/step_08/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 84 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/next-gen-ui/step_01/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/next-gen-ui/step_01/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 85 |
#import "GeneratedPluginRegistrant.h"
| codelabs/next-gen-ui/step_02_a/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/next-gen-ui/step_02_a/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 86 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/next-gen-ui/step_03_c/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/next-gen-ui/step_03_c/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 87 |
// Copyright 2023 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:math';
import 'package:flutter/material.dart';
import 'package:particle_field/particle_field.dart';
import 'package:rnd/rnd.dart';
class ParticleOverlay extends StatelessWidget {
const ParticleOverlay({super.key, required this.color, required this.energy});
final Color color;
final double energy;
@override
Widget build(BuildContext context) {
return ParticleField(
spriteSheet: SpriteSheet(
image: const AssetImage('assets/images/particle-wave.png'),
),
// blend the image's alpha with the specified color:
blendMode: BlendMode.dstIn,
// this runs every tick:
onTick: (controller, _, size) {
List<Particle> particles = controller.particles;
// add a new particle with random angle, distance & velocity:
double a = rnd(pi * 2);
double dist = rnd(1, 4) * 35 + 150 * energy;
double vel = rnd(1, 2) * (1 + energy * 1.8);
particles.add(Particle(
// how many ticks this particle will live:
lifespan: rnd(1, 2) * 20 + energy * 15,
// starting distance from center:
x: cos(a) * dist,
y: sin(a) * dist,
// starting velocity:
vx: cos(a) * vel,
vy: sin(a) * vel,
// other starting values:
rotation: a,
scale: rnd(1, 2) * 0.6 + energy * 0.5,
));
// update all of the particles:
for (int i = particles.length - 1; i >= 0; i--) {
Particle p = particles[i];
if (p.lifespan <= 0) {
// particle is expired, remove it:
particles.removeAt(i);
continue;
}
p.update(
scale: p.scale * 1.025,
vx: p.vx * 1.025,
vy: p.vy * 1.025,
color: color.withOpacity(p.lifespan * 0.001 + 0.01),
lifespan: p.lifespan - 1,
);
}
},
);
}
}
| codelabs/next-gen-ui/step_06/lib/title_screen/particle_overlay.dart/0 | {
"file_path": "codelabs/next-gen-ui/step_06/lib/title_screen/particle_overlay.dart",
"repo_id": "codelabs",
"token_count": 946
} | 88 |
#import "GeneratedPluginRegistrant.h"
| codelabs/testing_codelab/step_04/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/testing_codelab/step_04/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 89 |
// Copyright 2020 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:test/test.dart';
import 'package:testing_app/models/favorites.dart';
void main() {
group('Testing App Provider', () {
var favorites = Favorites();
test('A new item should be added', () {
var number = 35;
favorites.add(number);
expect(favorites.items.contains(number), true);
});
test('An item should be removed', () {
var number = 45;
favorites.add(number);
expect(favorites.items.contains(number), true);
favorites.remove(number);
expect(favorites.items.contains(number), false);
});
});
}
| codelabs/testing_codelab/step_05/test/models/favorites_test.dart/0 | {
"file_path": "codelabs/testing_codelab/step_05/test/models/favorites_test.dart",
"repo_id": "codelabs",
"token_count": 263
} | 90 |
// Copyright 2020 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
import 'package:provider/provider.dart';
import 'models/favorites.dart';
import 'screens/favorites.dart';
import 'screens/home.dart';
void main() {
runApp(const TestingApp());
}
final _router = GoRouter(
routes: [
GoRoute(
path: HomePage.routeName,
builder: (context, state) {
return const HomePage();
},
routes: [
GoRoute(
path: FavoritesPage.routeName,
builder: (context, state) {
return const FavoritesPage();
},
),
],
),
],
);
class TestingApp extends StatelessWidget {
const TestingApp({super.key});
@override
Widget build(BuildContext context) {
return ChangeNotifierProvider<Favorites>(
create: (context) => Favorites(),
child: MaterialApp.router(
title: 'Testing Sample',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
routerConfig: _router,
),
);
}
}
| codelabs/testing_codelab/step_07/lib/main.dart/0 | {
"file_path": "codelabs/testing_codelab/step_07/lib/main.dart",
"repo_id": "codelabs",
"token_count": 517
} | 91 |
#include "Generated.xcconfig"
| codelabs/tfagents-flutter/finished/frontend/ios/Flutter/Debug.xcconfig/0 | {
"file_path": "codelabs/tfagents-flutter/finished/frontend/ios/Flutter/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 92 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/tfagents-flutter/finished/frontend/macos/Flutter/Flutter-Debug.xcconfig/0 | {
"file_path": "codelabs/tfagents-flutter/finished/frontend/macos/Flutter/Flutter-Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 93 |
#include "Generated.xcconfig"
| codelabs/tfagents-flutter/step1/frontend/ios/Flutter/Debug.xcconfig/0 | {
"file_path": "codelabs/tfagents-flutter/step1/frontend/ios/Flutter/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 94 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/tfagents-flutter/step1/frontend/macos/Flutter/Flutter-Debug.xcconfig/0 | {
"file_path": "codelabs/tfagents-flutter/step1/frontend/macos/Flutter/Flutter-Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 95 |
#include "Generated.xcconfig"
| codelabs/tfagents-flutter/step2/frontend/ios/Flutter/Release.xcconfig/0 | {
"file_path": "codelabs/tfagents-flutter/step2/frontend/ios/Flutter/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 96 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/tfagents-flutter/step2/frontend/macos/Flutter/Flutter-Release.xcconfig/0 | {
"file_path": "codelabs/tfagents-flutter/step2/frontend/macos/Flutter/Flutter-Release.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 97 |
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true
| codelabs/tfagents-flutter/step4/frontend/android/gradle.properties/0 | {
"file_path": "codelabs/tfagents-flutter/step4/frontend/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 31
} | 98 |
import 'dart:async';
import 'dart:math';
import 'package:flutter/material.dart';
import 'game_agent.dart';
// Hidden board cell statuses; 'occupied' means it's part of the plane
const double hiddenBoardCellOccupied = 1;
const double hiddenBoardCellUnoccupied = 0;
// Visible board cell statuses
const double visibleBoardCellHit = 1;
const double visibleBoardCellMiss = -1;
const double visibleBoardCellUntried = 0;
void main() {
runApp(const PlaneStrike());
}
class PlaneStrike extends StatefulWidget {
const PlaneStrike({super.key});
// This widget is the root of your application.
@override
State<PlaneStrike> createState() => _PlaneStrikeState();
}
class _PlaneStrikeState extends State<PlaneStrike>
with SingleTickerProviderStateMixin {
// The board should be in square shape so we only need one size
final _boardSize = 8;
// Number of pieces needed to form a 'plane'
final _planePieceCount = 8;
late int _agentHitCount;
late int _playerHitCount;
late TFAgentsAgent _policyGradientAgent;
late List<List<double>> _agentVisibleBoardState;
late List<List<double>> _agentHiddenBoardState;
late List<List<double>> _playerVisibleBoardState;
late List<List<double>> _playerHiddenBoardState;
late int _agentActionX;
late int _agentActionY;
@override
void initState() {
super.initState();
_resetGame();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'TFAgents Flutter Sample App',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: _buildGameBody(),
);
}
List<List<double>> _initEmptyBoard() =>
List.generate(_boardSize, (_) => List.filled(_boardSize, 0));
void _resetGame() {
_agentHitCount = 0;
_playerHitCount = 0;
_policyGradientAgent = TFAgentsAgent();
// We keep track of 4 sets of boards (2 for each player):
// - _*BoardState is the visible board that tracks the game progress
// - _*HiddentBoardState is the secret board that records the true plane location
_agentVisibleBoardState = _initEmptyBoard();
_agentHiddenBoardState = _setHiddenBoardState();
_playerVisibleBoardState = _initEmptyBoard();
_playerHiddenBoardState = _setHiddenBoardState();
}
List<List<double>> _setHiddenBoardState() {
var hiddenBoardState = _initEmptyBoard();
// Place the plane on the board
// First, decide the plane's orientation
// 0: heading right
// 1: heading up
// 2: heading left
// 3: heading down
var rng = Random();
int planeOrientation = rng.nextInt(4);
// Figrue out the location of plane core as the '*' below
// | | | | | ---
// |-*- -*- -*-| |
// | | | | | -*-
// --- |
int planeCoreX, planeCoreY;
switch (planeOrientation) {
case 0:
planeCoreX = rng.nextInt(_boardSize - 2) + 1;
planeCoreY = rng.nextInt(_boardSize - 3) + 2;
// Populate the tail
hiddenBoardState[planeCoreX][planeCoreY - 2] = hiddenBoardCellOccupied;
hiddenBoardState[planeCoreX - 1][planeCoreY - 2] =
hiddenBoardCellOccupied;
hiddenBoardState[planeCoreX + 1][planeCoreY - 2] =
hiddenBoardCellOccupied;
break;
case 1:
planeCoreX = rng.nextInt(_boardSize - 3) + 1;
planeCoreY = rng.nextInt(_boardSize - 2) + 1;
// Populate the tail
hiddenBoardState[planeCoreX + 2][planeCoreY] = hiddenBoardCellOccupied;
hiddenBoardState[planeCoreX + 2][planeCoreY + 1] =
hiddenBoardCellOccupied;
hiddenBoardState[planeCoreX + 2][planeCoreY - 1] =
hiddenBoardCellOccupied;
break;
case 2:
planeCoreX = rng.nextInt(_boardSize - 2) + 1;
planeCoreY = rng.nextInt(_boardSize - 3) + 1;
// Populate the tail
hiddenBoardState[planeCoreX][planeCoreY + 2] = hiddenBoardCellOccupied;
hiddenBoardState[planeCoreX - 1][planeCoreY + 2] =
hiddenBoardCellOccupied;
hiddenBoardState[planeCoreX + 1][planeCoreY + 2] =
hiddenBoardCellOccupied;
break;
default:
planeCoreX = rng.nextInt(_boardSize - 3) + 2;
planeCoreY = rng.nextInt(_boardSize - 2) + 1;
// Populate the tail
hiddenBoardState[planeCoreX - 2][planeCoreY] = hiddenBoardCellOccupied;
hiddenBoardState[planeCoreX - 2][planeCoreY + 1] =
hiddenBoardCellOccupied;
hiddenBoardState[planeCoreX - 2][planeCoreY - 1] =
hiddenBoardCellOccupied;
}
// Populate the 'cross' in the plane
hiddenBoardState[planeCoreX][planeCoreY] = hiddenBoardCellOccupied;
hiddenBoardState[planeCoreX + 1][planeCoreY] = hiddenBoardCellOccupied;
hiddenBoardState[planeCoreX - 1][planeCoreY] = hiddenBoardCellOccupied;
hiddenBoardState[planeCoreX][planeCoreY + 1] = hiddenBoardCellOccupied;
hiddenBoardState[planeCoreX][planeCoreY - 1] = hiddenBoardCellOccupied;
return hiddenBoardState;
}
Widget _buildGameBody() {
return Scaffold(
appBar: AppBar(
// Here we take the value from the MyHomePage object that was created by
// the App.build method, and use it to set our appbar title.
title: const Text('Plane Strike game based on TF Agents and Flutter'),
),
body: SingleChildScrollView(
child: Column(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Container(
width: 265,
height: 265,
margin: const EdgeInsets.only(
left: 0, top: 10, right: 0, bottom: 0),
decoration: BoxDecoration(
border: Border.all(color: Colors.black, width: 2.0)),
child: GridView.builder(
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: _boardSize,
),
itemBuilder: _buildAgentBoardItems,
itemCount: _boardSize * _boardSize,
physics: const NeverScrollableScrollPhysics()),
),
Text(
"Agent's board (hits: $_playerHitCount)",
style: const TextStyle(
fontSize: 18,
color: Colors.blue,
fontWeight: FontWeight.bold),
),
const Divider(
height: 20,
thickness: 5,
indent: 20,
endIndent: 20,
),
Text(
'Your board (hits: $_agentHitCount)',
style: const TextStyle(
fontSize: 18,
color: Colors.purple,
fontWeight: FontWeight.bold),
),
Container(
width: 265,
height: 265,
decoration: BoxDecoration(
border: Border.all(color: Colors.black, width: 2.0)),
child: GridView.builder(
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: _boardSize,
),
itemBuilder: _buildPlayerBoardItems,
itemCount: _boardSize * _boardSize,
physics: const NeverScrollableScrollPhysics(),
),
),
Padding(
padding: const EdgeInsets.only(
left: 0, top: 20, right: 0, bottom: 0),
child: FilledButton(
onPressed: () {
_resetGame();
setState(() {});
},
child: const Text('Reset game'),
),
)
]),
));
}
Widget _buildAgentBoardItems(BuildContext context, int index) {
int x, y = 0;
x = (index / _boardSize).floor();
y = (index % _boardSize);
return GestureDetector(
onTap: () {
_gridItemTapped(context, x, y);
},
child: GridTile(
child: Container(
decoration: BoxDecoration(
border: Border.all(color: Colors.black, width: 0.5)),
child: Center(
child: _buildGridItem(x, y, 'agent'),
),
),
),
);
}
Widget _buildPlayerBoardItems(BuildContext context, int index) {
int x, y = 0;
x = (index / _boardSize).floor();
y = (index % _boardSize);
return GridTile(
child: Container(
decoration:
BoxDecoration(border: Border.all(color: Colors.black, width: 0.5)),
child: Center(
child: _buildGridItem(x, y, 'player'),
),
),
);
}
Widget _buildGridItem(int x, int y, String agentOrPlayer) {
var boardState = _agentVisibleBoardState;
var hiddenBoardState = _agentHiddenBoardState;
if (agentOrPlayer == 'player') {
boardState = _playerVisibleBoardState;
hiddenBoardState = _playerHiddenBoardState;
}
Color gridItemColor;
switch ((boardState[x][y]).toInt()) {
// hit
case 1:
gridItemColor = Colors.red;
break;
// miss
case -1:
gridItemColor = Colors.yellow;
break;
default:
if (hiddenBoardState[x][y] == hiddenBoardCellOccupied &&
agentOrPlayer == 'player') {
gridItemColor = Colors.green;
} else {
gridItemColor = Colors.white;
}
}
return Container(
color: gridItemColor,
);
}
Future<void> _gridItemTapped(BuildContext context, int x, int y) async {
if (_agentHiddenBoardState[x][y] == hiddenBoardCellOccupied) {
// Non-repeat move
if (_agentVisibleBoardState[x][y] == visibleBoardCellUntried) {
_playerHitCount++;
}
_agentVisibleBoardState[x][y] = visibleBoardCellHit;
} else {
_agentVisibleBoardState[x][y] = visibleBoardCellMiss;
}
// Agent takes action
int agentAction =
await _policyGradientAgent.predict(_playerVisibleBoardState);
_agentActionX = agentAction ~/ _boardSize;
_agentActionY = agentAction % _boardSize;
if (_playerHiddenBoardState[_agentActionX][_agentActionY] ==
hiddenBoardCellOccupied) {
// Non-repeat move
if (_playerVisibleBoardState[_agentActionX][_agentActionY] ==
visibleBoardCellUntried) {
_agentHitCount++;
}
_playerVisibleBoardState[_agentActionX][_agentActionY] =
visibleBoardCellHit;
} else {
_playerVisibleBoardState[_agentActionX][_agentActionY] =
visibleBoardCellMiss;
}
setState(() {});
String userPrompt = '';
if (_playerHitCount == _planePieceCount &&
_agentHitCount == _planePieceCount) {
userPrompt = 'Draw game!';
} else if (_agentHitCount == _planePieceCount) {
userPrompt = 'Agent wins!';
} else if (_playerHitCount == _planePieceCount) {
userPrompt = 'You win!';
}
if (userPrompt != '') {
Future.delayed(const Duration(seconds: 2), () => setState(_resetGame));
if (!context.mounted) return;
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
content: Text(
userPrompt,
textAlign: TextAlign.center,
),
duration: const Duration(seconds: 2),
));
}
}
}
| codelabs/tfagents-flutter/step6/frontend/lib/main.dart/0 | {
"file_path": "codelabs/tfagents-flutter/step6/frontend/lib/main.dart",
"repo_id": "codelabs",
"token_count": 5298
} | 99 |
# Fullstack demo of a recommendation engine
This folder contains the code for [TensorFlow Recommenders](https://www.tensorflow.org/recommenders) + Flutter codelab. It is broken down into 5 steps:
1. Create the retrieval and ranking models for the recommendation engine
2. Create the recommendation engine backend
3. Create the Flutter app for Android and iOS
4. Run the Flutter app on the desktop platforms
5. Run the Flutter app on the web platform | codelabs/tfrs-flutter/README.md/0 | {
"file_path": "codelabs/tfrs-flutter/README.md",
"repo_id": "codelabs",
"token_count": 109
} | 100 |
#include "Generated.xcconfig"
| codelabs/tfrs-flutter/step3/frontend/ios/Flutter/Debug.xcconfig/0 | {
"file_path": "codelabs/tfrs-flutter/step3/frontend/ios/Flutter/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 101 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/tfrs-flutter/step3/frontend/macos/Flutter/Flutter-Release.xcconfig/0 | {
"file_path": "codelabs/tfrs-flutter/step3/frontend/macos/Flutter/Flutter-Release.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 102 |
# Flutter frontend of a recommendation engine demo
This Flutter app is the frontend to consume the data feed from a backend recommender. | codelabs/tfrs-flutter/step4/frontend/README.md/0 | {
"file_path": "codelabs/tfrs-flutter/step4/frontend/README.md",
"repo_id": "codelabs",
"token_count": 31
} | 103 |
<jupyter_start><jupyter_text>Copyright 2022 The TensorFlow Authors.<jupyter_code>#@title Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.<jupyter_output><empty_output><jupyter_text>Recommending movies: rankingThis tutorial is a slightly adapted version of the [basic ranking tutorial](https://www.tensorflow.org/recommenders/examples/basic_ranking) from TensorFlow Recommenders documentation. ImportsLet's first get our imports out of the way.<jupyter_code>!pip install -q tensorflow-recommenders
!pip install -q --upgrade tensorflow-datasets
import os
import pprint
import tempfile
from typing import Dict, Text
import numpy as np
import tensorflow as tf
import tensorflow_datasets as tfds
import tensorflow_recommenders as tfrs<jupyter_output><empty_output><jupyter_text>Preparing the datasetWe're continuing to use the MovieLens dataset. This time, we're also going to keep the ratings: these are the objectives we are trying to predict.<jupyter_code>ratings = tfds.load("movielens/100k-ratings", split="train")
ratings = ratings.map(lambda x: {
"movie_title": x["movie_title"],
"user_id": x["user_id"],
"user_rating": x["user_rating"]
})<jupyter_output><empty_output><jupyter_text>We'll split the data by putting 80% of the ratings in the train set, and 20% in the test set.<jupyter_code>tf.random.set_seed(42)
shuffled = ratings.shuffle(100_000, seed=42, reshuffle_each_iteration=False)
train = shuffled.take(80_000)
test = shuffled.skip(80_000).take(20_000)<jupyter_output><empty_output><jupyter_text>Next we figure out unique user ids and movie titles present in the data so that we can create the embedding user and movie embedding tables.<jupyter_code>movie_titles = ratings.batch(1_000_000).map(lambda x: x["movie_title"])
user_ids = ratings.batch(1_000_000).map(lambda x: x["user_id"])
unique_movie_titles = np.unique(np.concatenate(list(movie_titles)))
unique_user_ids = np.unique(np.concatenate(list(user_ids)))<jupyter_output><empty_output><jupyter_text>Implementing a model ArchitectureRanking models do not face the same efficiency constraints as retrieval models do, and so we have a little bit more freedom in our choice of architectures. We can implement our ranking model as follows:<jupyter_code>class RankingModel(tf.keras.Model):
def __init__(self):
super().__init__()
embedding_dimension = 32
# Compute embeddings for users.
self.user_embeddings = tf.keras.Sequential([
tf.keras.layers.StringLookup(
vocabulary=unique_user_ids, mask_token=None),
tf.keras.layers.Embedding(len(unique_user_ids) + 1, embedding_dimension)
])
# Compute embeddings for movies.
self.movie_embeddings = tf.keras.Sequential([
tf.keras.layers.StringLookup(
vocabulary=unique_movie_titles, mask_token=None),
tf.keras.layers.Embedding(len(unique_movie_titles) + 1, embedding_dimension)
])
# Compute predictions.
self.ratings = tf.keras.Sequential([
# Learn multiple dense layers.
tf.keras.layers.Dense(256, activation="relu"),
tf.keras.layers.Dense(64, activation="relu"),
# Make rating predictions in the final layer.
tf.keras.layers.Dense(1)
])
def call(self, inputs):
user_id, movie_title = inputs
user_embedding = self.user_embeddings(user_id)
movie_embedding = self.movie_embeddings(movie_title)
return self.ratings(tf.concat([user_embedding, movie_embedding], axis=1))<jupyter_output><empty_output><jupyter_text>Loss and metricsWe'll make use of the `Ranking` task object: a convenience wrapper that bundles together the loss function and metric computation. We'll use it together with the `MeanSquaredError` Keras loss in order to predict the ratings.<jupyter_code>task = tfrs.tasks.Ranking(
loss = tf.keras.losses.MeanSquaredError(),
metrics=[tf.keras.metrics.RootMeanSquaredError()]
)<jupyter_output><empty_output><jupyter_text>The full modelWe can now put it all together into a model.<jupyter_code>class MovielensModel(tfrs.models.Model):
def __init__(self):
super().__init__()
self.ranking_model: tf.keras.Model = RankingModel()
self.task: tf.keras.layers.Layer = tfrs.tasks.Ranking(
loss = tf.keras.losses.MeanSquaredError(),
metrics=[tf.keras.metrics.RootMeanSquaredError()]
)
def call(self, features: Dict[str, tf.Tensor]) -> tf.Tensor:
return self.ranking_model(
(features["user_id"], features["movie_title"]))
def compute_loss(self, features: Dict[Text, tf.Tensor], training=False) -> tf.Tensor:
labels = features.pop("user_rating")
rating_predictions = self(features)
# The task computes the loss and the metrics.
return self.task(labels=labels, predictions=rating_predictions)<jupyter_output><empty_output><jupyter_text>Fitting and evaluatingAfter defining the model, we can use standard Keras fitting and evaluation routines to fit and evaluate the model.Let's first instantiate the model.<jupyter_code>model = MovielensModel()
model.compile(optimizer=tf.keras.optimizers.Adagrad(learning_rate=0.1))<jupyter_output><empty_output><jupyter_text>Then shuffle, batch, and cache the training and evaluation data.<jupyter_code>cached_train = train.shuffle(100_000).batch(8192).cache()
cached_test = test.batch(4096).cache()<jupyter_output><empty_output><jupyter_text>Then train the model:<jupyter_code>model.fit(cached_train, epochs=3)<jupyter_output><empty_output><jupyter_text>As the model trains, the loss is falling and the RMSE metric is improving. Finally, we can evaluate our model on the test set:<jupyter_code>model.evaluate(cached_test, return_dict=True)<jupyter_output><empty_output><jupyter_text>The lower the RMSE metric, the more accurate our model is at predicting ratings. Exporting for servingThe model can be easily exported for serving:<jupyter_code>tf.saved_model.save(model, "exported-ranking/123")<jupyter_output><empty_output><jupyter_text>We will deploy the model with TensorFlow Serving soon.<jupyter_code># Zip the SavedModel folder for easier download
!zip -r exported-ranking.zip exported-ranking/<jupyter_output><empty_output> | codelabs/tfrs-flutter/step5/backend/ranking/ranking.ipynb/0 | {
"file_path": "codelabs/tfrs-flutter/step5/backend/ranking/ranking.ipynb",
"repo_id": "codelabs",
"token_count": 2224
} | 104 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/tfrs-flutter/step5/frontend/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/tfrs-flutter/step5/frontend/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 105 |
///
// Generated code. Do not modify.
// source: google/protobuf/wrappers.proto
//
// @dart = 2.12
// ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields,deprecated_member_use_from_same_package
import 'dart:core' as $core;
import 'dart:convert' as $convert;
import 'dart:typed_data' as $typed_data;
@$core.Deprecated('Use doubleValueDescriptor instead')
const DoubleValue$json = const {
'1': 'DoubleValue',
'2': const [
const {'1': 'value', '3': 1, '4': 1, '5': 1, '10': 'value'},
],
};
/// Descriptor for `DoubleValue`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List doubleValueDescriptor =
$convert.base64Decode('CgtEb3VibGVWYWx1ZRIUCgV2YWx1ZRgBIAEoAVIFdmFsdWU=');
@$core.Deprecated('Use floatValueDescriptor instead')
const FloatValue$json = const {
'1': 'FloatValue',
'2': const [
const {'1': 'value', '3': 1, '4': 1, '5': 2, '10': 'value'},
],
};
/// Descriptor for `FloatValue`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List floatValueDescriptor =
$convert.base64Decode('CgpGbG9hdFZhbHVlEhQKBXZhbHVlGAEgASgCUgV2YWx1ZQ==');
@$core.Deprecated('Use int64ValueDescriptor instead')
const Int64Value$json = const {
'1': 'Int64Value',
'2': const [
const {'1': 'value', '3': 1, '4': 1, '5': 3, '10': 'value'},
],
};
/// Descriptor for `Int64Value`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List int64ValueDescriptor =
$convert.base64Decode('CgpJbnQ2NFZhbHVlEhQKBXZhbHVlGAEgASgDUgV2YWx1ZQ==');
@$core.Deprecated('Use uInt64ValueDescriptor instead')
const UInt64Value$json = const {
'1': 'UInt64Value',
'2': const [
const {'1': 'value', '3': 1, '4': 1, '5': 4, '10': 'value'},
],
};
/// Descriptor for `UInt64Value`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List uInt64ValueDescriptor =
$convert.base64Decode('CgtVSW50NjRWYWx1ZRIUCgV2YWx1ZRgBIAEoBFIFdmFsdWU=');
@$core.Deprecated('Use int32ValueDescriptor instead')
const Int32Value$json = const {
'1': 'Int32Value',
'2': const [
const {'1': 'value', '3': 1, '4': 1, '5': 5, '10': 'value'},
],
};
/// Descriptor for `Int32Value`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List int32ValueDescriptor =
$convert.base64Decode('CgpJbnQzMlZhbHVlEhQKBXZhbHVlGAEgASgFUgV2YWx1ZQ==');
@$core.Deprecated('Use uInt32ValueDescriptor instead')
const UInt32Value$json = const {
'1': 'UInt32Value',
'2': const [
const {'1': 'value', '3': 1, '4': 1, '5': 13, '10': 'value'},
],
};
/// Descriptor for `UInt32Value`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List uInt32ValueDescriptor =
$convert.base64Decode('CgtVSW50MzJWYWx1ZRIUCgV2YWx1ZRgBIAEoDVIFdmFsdWU=');
@$core.Deprecated('Use boolValueDescriptor instead')
const BoolValue$json = const {
'1': 'BoolValue',
'2': const [
const {'1': 'value', '3': 1, '4': 1, '5': 8, '10': 'value'},
],
};
/// Descriptor for `BoolValue`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List boolValueDescriptor =
$convert.base64Decode('CglCb29sVmFsdWUSFAoFdmFsdWUYASABKAhSBXZhbHVl');
@$core.Deprecated('Use stringValueDescriptor instead')
const StringValue$json = const {
'1': 'StringValue',
'2': const [
const {'1': 'value', '3': 1, '4': 1, '5': 9, '10': 'value'},
],
};
/// Descriptor for `StringValue`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List stringValueDescriptor =
$convert.base64Decode('CgtTdHJpbmdWYWx1ZRIUCgV2YWx1ZRgBIAEoCVIFdmFsdWU=');
@$core.Deprecated('Use bytesValueDescriptor instead')
const BytesValue$json = const {
'1': 'BytesValue',
'2': const [
const {'1': 'value', '3': 1, '4': 1, '5': 12, '10': 'value'},
],
};
/// Descriptor for `BytesValue`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List bytesValueDescriptor =
$convert.base64Decode('CgpCeXRlc1ZhbHVlEhQKBXZhbHVlGAEgASgMUgV2YWx1ZQ==');
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/google/protobuf/wrappers.pbjson.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/google/protobuf/wrappers.pbjson.dart",
"repo_id": "codelabs",
"token_count": 1807
} | 106 |
///
// Generated code. Do not modify.
// source: tensorflow/core/framework/graph.proto
//
// @dart = 2.12
// ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
import 'node_def.pb.dart' as $0;
import 'function.pb.dart' as $1;
import 'versions.pb.dart' as $2;
class GraphDef extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'GraphDef',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow'),
createEmptyInstance: create)
..pc<$0.NodeDef>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'node',
$pb.PbFieldType.PM,
subBuilder: $0.NodeDef.create)
..aOM<$1.FunctionDefLibrary>(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'library',
subBuilder: $1.FunctionDefLibrary.create)
..a<$core.int>(
3,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'version',
$pb.PbFieldType.O3)
..aOM<$2.VersionDef>(
4,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'versions',
subBuilder: $2.VersionDef.create)
..hasRequiredFields = false;
GraphDef._() : super();
factory GraphDef({
$core.Iterable<$0.NodeDef>? node,
$1.FunctionDefLibrary? library,
@$core.Deprecated('This field is deprecated.') $core.int? version,
$2.VersionDef? versions,
}) {
final _result = create();
if (node != null) {
_result.node.addAll(node);
}
if (library != null) {
_result.library = library;
}
if (version != null) {
// ignore: deprecated_member_use_from_same_package
_result.version = version;
}
if (versions != null) {
_result.versions = versions;
}
return _result;
}
factory GraphDef.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory GraphDef.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
GraphDef clone() => GraphDef()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
GraphDef copyWith(void Function(GraphDef) updates) =>
super.copyWith((message) => updates(message as GraphDef))
as GraphDef; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static GraphDef create() => GraphDef._();
GraphDef createEmptyInstance() => create();
static $pb.PbList<GraphDef> createRepeated() => $pb.PbList<GraphDef>();
@$core.pragma('dart2js:noInline')
static GraphDef getDefault() =>
_defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GraphDef>(create);
static GraphDef? _defaultInstance;
@$pb.TagNumber(1)
$core.List<$0.NodeDef> get node => $_getList(0);
@$pb.TagNumber(2)
$1.FunctionDefLibrary get library => $_getN(1);
@$pb.TagNumber(2)
set library($1.FunctionDefLibrary v) {
setField(2, v);
}
@$pb.TagNumber(2)
$core.bool hasLibrary() => $_has(1);
@$pb.TagNumber(2)
void clearLibrary() => clearField(2);
@$pb.TagNumber(2)
$1.FunctionDefLibrary ensureLibrary() => $_ensure(1);
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(3)
$core.int get version => $_getIZ(2);
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(3)
set version($core.int v) {
$_setSignedInt32(2, v);
}
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(3)
$core.bool hasVersion() => $_has(2);
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(3)
void clearVersion() => clearField(3);
@$pb.TagNumber(4)
$2.VersionDef get versions => $_getN(3);
@$pb.TagNumber(4)
set versions($2.VersionDef v) {
setField(4, v);
}
@$pb.TagNumber(4)
$core.bool hasVersions() => $_has(3);
@$pb.TagNumber(4)
void clearVersions() => clearField(4);
@$pb.TagNumber(4)
$2.VersionDef ensureVersions() => $_ensure(3);
}
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/graph.pb.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/graph.pb.dart",
"repo_id": "codelabs",
"token_count": 2023
} | 107 |
///
// Generated code. Do not modify.
// source: tensorflow/core/framework/tensor_shape.proto
//
// @dart = 2.12
// ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/tensor_shape.pbenum.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/tensor_shape.pbenum.dart",
"repo_id": "codelabs",
"token_count": 118
} | 108 |
///
// Generated code. Do not modify.
// source: tensorflow_serving/apis/inference.proto
//
// @dart = 2.12
// ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
import 'model.pb.dart' as $0;
import 'classification.pb.dart' as $1;
import 'regression.pb.dart' as $2;
import 'input.pb.dart' as $3;
class InferenceTask extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'InferenceTask',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow.serving'),
createEmptyInstance: create)
..aOM<$0.ModelSpec>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'modelSpec',
subBuilder: $0.ModelSpec.create)
..aOS(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'methodName')
..hasRequiredFields = false;
InferenceTask._() : super();
factory InferenceTask({
$0.ModelSpec? modelSpec,
$core.String? methodName,
}) {
final _result = create();
if (modelSpec != null) {
_result.modelSpec = modelSpec;
}
if (methodName != null) {
_result.methodName = methodName;
}
return _result;
}
factory InferenceTask.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory InferenceTask.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
InferenceTask clone() => InferenceTask()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
InferenceTask copyWith(void Function(InferenceTask) updates) =>
super.copyWith((message) => updates(message as InferenceTask))
as InferenceTask; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static InferenceTask create() => InferenceTask._();
InferenceTask createEmptyInstance() => create();
static $pb.PbList<InferenceTask> createRepeated() =>
$pb.PbList<InferenceTask>();
@$core.pragma('dart2js:noInline')
static InferenceTask getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<InferenceTask>(create);
static InferenceTask? _defaultInstance;
@$pb.TagNumber(1)
$0.ModelSpec get modelSpec => $_getN(0);
@$pb.TagNumber(1)
set modelSpec($0.ModelSpec v) {
setField(1, v);
}
@$pb.TagNumber(1)
$core.bool hasModelSpec() => $_has(0);
@$pb.TagNumber(1)
void clearModelSpec() => clearField(1);
@$pb.TagNumber(1)
$0.ModelSpec ensureModelSpec() => $_ensure(0);
@$pb.TagNumber(2)
$core.String get methodName => $_getSZ(1);
@$pb.TagNumber(2)
set methodName($core.String v) {
$_setString(1, v);
}
@$pb.TagNumber(2)
$core.bool hasMethodName() => $_has(1);
@$pb.TagNumber(2)
void clearMethodName() => clearField(2);
}
enum InferenceResult_Result { classificationResult, regressionResult, notSet }
class InferenceResult extends $pb.GeneratedMessage {
static const $core.Map<$core.int, InferenceResult_Result>
_InferenceResult_ResultByTag = {
2: InferenceResult_Result.classificationResult,
3: InferenceResult_Result.regressionResult,
0: InferenceResult_Result.notSet
};
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'InferenceResult',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow.serving'),
createEmptyInstance: create)
..oo(0, [2, 3])
..aOM<$0.ModelSpec>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'modelSpec',
subBuilder: $0.ModelSpec.create)
..aOM<$1.ClassificationResult>(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'classificationResult',
subBuilder: $1.ClassificationResult.create)
..aOM<$2.RegressionResult>(
3,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'regressionResult',
subBuilder: $2.RegressionResult.create)
..hasRequiredFields = false;
InferenceResult._() : super();
factory InferenceResult({
$0.ModelSpec? modelSpec,
$1.ClassificationResult? classificationResult,
$2.RegressionResult? regressionResult,
}) {
final _result = create();
if (modelSpec != null) {
_result.modelSpec = modelSpec;
}
if (classificationResult != null) {
_result.classificationResult = classificationResult;
}
if (regressionResult != null) {
_result.regressionResult = regressionResult;
}
return _result;
}
factory InferenceResult.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory InferenceResult.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
InferenceResult clone() => InferenceResult()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
InferenceResult copyWith(void Function(InferenceResult) updates) =>
super.copyWith((message) => updates(message as InferenceResult))
as InferenceResult; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static InferenceResult create() => InferenceResult._();
InferenceResult createEmptyInstance() => create();
static $pb.PbList<InferenceResult> createRepeated() =>
$pb.PbList<InferenceResult>();
@$core.pragma('dart2js:noInline')
static InferenceResult getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<InferenceResult>(create);
static InferenceResult? _defaultInstance;
InferenceResult_Result whichResult() =>
_InferenceResult_ResultByTag[$_whichOneof(0)]!;
void clearResult() => clearField($_whichOneof(0));
@$pb.TagNumber(1)
$0.ModelSpec get modelSpec => $_getN(0);
@$pb.TagNumber(1)
set modelSpec($0.ModelSpec v) {
setField(1, v);
}
@$pb.TagNumber(1)
$core.bool hasModelSpec() => $_has(0);
@$pb.TagNumber(1)
void clearModelSpec() => clearField(1);
@$pb.TagNumber(1)
$0.ModelSpec ensureModelSpec() => $_ensure(0);
@$pb.TagNumber(2)
$1.ClassificationResult get classificationResult => $_getN(1);
@$pb.TagNumber(2)
set classificationResult($1.ClassificationResult v) {
setField(2, v);
}
@$pb.TagNumber(2)
$core.bool hasClassificationResult() => $_has(1);
@$pb.TagNumber(2)
void clearClassificationResult() => clearField(2);
@$pb.TagNumber(2)
$1.ClassificationResult ensureClassificationResult() => $_ensure(1);
@$pb.TagNumber(3)
$2.RegressionResult get regressionResult => $_getN(2);
@$pb.TagNumber(3)
set regressionResult($2.RegressionResult v) {
setField(3, v);
}
@$pb.TagNumber(3)
$core.bool hasRegressionResult() => $_has(2);
@$pb.TagNumber(3)
void clearRegressionResult() => clearField(3);
@$pb.TagNumber(3)
$2.RegressionResult ensureRegressionResult() => $_ensure(2);
}
class MultiInferenceRequest extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'MultiInferenceRequest',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow.serving'),
createEmptyInstance: create)
..pc<InferenceTask>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'tasks',
$pb.PbFieldType.PM,
subBuilder: InferenceTask.create)
..aOM<$3.Input>(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'input',
subBuilder: $3.Input.create)
..hasRequiredFields = false;
MultiInferenceRequest._() : super();
factory MultiInferenceRequest({
$core.Iterable<InferenceTask>? tasks,
$3.Input? input,
}) {
final _result = create();
if (tasks != null) {
_result.tasks.addAll(tasks);
}
if (input != null) {
_result.input = input;
}
return _result;
}
factory MultiInferenceRequest.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory MultiInferenceRequest.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
MultiInferenceRequest clone() =>
MultiInferenceRequest()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
MultiInferenceRequest copyWith(
void Function(MultiInferenceRequest) updates) =>
super.copyWith((message) => updates(message as MultiInferenceRequest))
as MultiInferenceRequest; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static MultiInferenceRequest create() => MultiInferenceRequest._();
MultiInferenceRequest createEmptyInstance() => create();
static $pb.PbList<MultiInferenceRequest> createRepeated() =>
$pb.PbList<MultiInferenceRequest>();
@$core.pragma('dart2js:noInline')
static MultiInferenceRequest getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<MultiInferenceRequest>(create);
static MultiInferenceRequest? _defaultInstance;
@$pb.TagNumber(1)
$core.List<InferenceTask> get tasks => $_getList(0);
@$pb.TagNumber(2)
$3.Input get input => $_getN(1);
@$pb.TagNumber(2)
set input($3.Input v) {
setField(2, v);
}
@$pb.TagNumber(2)
$core.bool hasInput() => $_has(1);
@$pb.TagNumber(2)
void clearInput() => clearField(2);
@$pb.TagNumber(2)
$3.Input ensureInput() => $_ensure(1);
}
class MultiInferenceResponse extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'MultiInferenceResponse',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow.serving'),
createEmptyInstance: create)
..pc<InferenceResult>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'results',
$pb.PbFieldType.PM,
subBuilder: InferenceResult.create)
..hasRequiredFields = false;
MultiInferenceResponse._() : super();
factory MultiInferenceResponse({
$core.Iterable<InferenceResult>? results,
}) {
final _result = create();
if (results != null) {
_result.results.addAll(results);
}
return _result;
}
factory MultiInferenceResponse.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory MultiInferenceResponse.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
MultiInferenceResponse clone() =>
MultiInferenceResponse()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
MultiInferenceResponse copyWith(
void Function(MultiInferenceResponse) updates) =>
super.copyWith((message) => updates(message as MultiInferenceResponse))
as MultiInferenceResponse; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static MultiInferenceResponse create() => MultiInferenceResponse._();
MultiInferenceResponse createEmptyInstance() => create();
static $pb.PbList<MultiInferenceResponse> createRepeated() =>
$pb.PbList<MultiInferenceResponse>();
@$core.pragma('dart2js:noInline')
static MultiInferenceResponse getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<MultiInferenceResponse>(create);
static MultiInferenceResponse? _defaultInstance;
@$pb.TagNumber(1)
$core.List<InferenceResult> get results => $_getList(0);
}
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow_serving/apis/inference.pb.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow_serving/apis/inference.pb.dart",
"repo_id": "codelabs",
"token_count": 5499
} | 109 |
///
// Generated code. Do not modify.
// source: tensorflow_serving/apis/regression.proto
//
// @dart = 2.12
// ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
import 'model.pb.dart' as $0;
import 'input.pb.dart' as $1;
class Regression extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'Regression',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow.serving'),
createEmptyInstance: create)
..a<$core.double>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'value',
$pb.PbFieldType.OF)
..hasRequiredFields = false;
Regression._() : super();
factory Regression({
$core.double? value,
}) {
final _result = create();
if (value != null) {
_result.value = value;
}
return _result;
}
factory Regression.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory Regression.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
Regression clone() => Regression()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
Regression copyWith(void Function(Regression) updates) =>
super.copyWith((message) => updates(message as Regression))
as Regression; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static Regression create() => Regression._();
Regression createEmptyInstance() => create();
static $pb.PbList<Regression> createRepeated() => $pb.PbList<Regression>();
@$core.pragma('dart2js:noInline')
static Regression getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<Regression>(create);
static Regression? _defaultInstance;
@$pb.TagNumber(1)
$core.double get value => $_getN(0);
@$pb.TagNumber(1)
set value($core.double v) {
$_setFloat(0, v);
}
@$pb.TagNumber(1)
$core.bool hasValue() => $_has(0);
@$pb.TagNumber(1)
void clearValue() => clearField(1);
}
class RegressionResult extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'RegressionResult',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow.serving'),
createEmptyInstance: create)
..pc<Regression>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'regressions',
$pb.PbFieldType.PM,
subBuilder: Regression.create)
..hasRequiredFields = false;
RegressionResult._() : super();
factory RegressionResult({
$core.Iterable<Regression>? regressions,
}) {
final _result = create();
if (regressions != null) {
_result.regressions.addAll(regressions);
}
return _result;
}
factory RegressionResult.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory RegressionResult.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
RegressionResult clone() => RegressionResult()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
RegressionResult copyWith(void Function(RegressionResult) updates) =>
super.copyWith((message) => updates(message as RegressionResult))
as RegressionResult; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static RegressionResult create() => RegressionResult._();
RegressionResult createEmptyInstance() => create();
static $pb.PbList<RegressionResult> createRepeated() =>
$pb.PbList<RegressionResult>();
@$core.pragma('dart2js:noInline')
static RegressionResult getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<RegressionResult>(create);
static RegressionResult? _defaultInstance;
@$pb.TagNumber(1)
$core.List<Regression> get regressions => $_getList(0);
}
class RegressionRequest extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'RegressionRequest',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow.serving'),
createEmptyInstance: create)
..aOM<$0.ModelSpec>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'modelSpec',
subBuilder: $0.ModelSpec.create)
..aOM<$1.Input>(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'input',
subBuilder: $1.Input.create)
..hasRequiredFields = false;
RegressionRequest._() : super();
factory RegressionRequest({
$0.ModelSpec? modelSpec,
$1.Input? input,
}) {
final _result = create();
if (modelSpec != null) {
_result.modelSpec = modelSpec;
}
if (input != null) {
_result.input = input;
}
return _result;
}
factory RegressionRequest.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory RegressionRequest.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
RegressionRequest clone() => RegressionRequest()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
RegressionRequest copyWith(void Function(RegressionRequest) updates) =>
super.copyWith((message) => updates(message as RegressionRequest))
as RegressionRequest; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static RegressionRequest create() => RegressionRequest._();
RegressionRequest createEmptyInstance() => create();
static $pb.PbList<RegressionRequest> createRepeated() =>
$pb.PbList<RegressionRequest>();
@$core.pragma('dart2js:noInline')
static RegressionRequest getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<RegressionRequest>(create);
static RegressionRequest? _defaultInstance;
@$pb.TagNumber(1)
$0.ModelSpec get modelSpec => $_getN(0);
@$pb.TagNumber(1)
set modelSpec($0.ModelSpec v) {
setField(1, v);
}
@$pb.TagNumber(1)
$core.bool hasModelSpec() => $_has(0);
@$pb.TagNumber(1)
void clearModelSpec() => clearField(1);
@$pb.TagNumber(1)
$0.ModelSpec ensureModelSpec() => $_ensure(0);
@$pb.TagNumber(2)
$1.Input get input => $_getN(1);
@$pb.TagNumber(2)
set input($1.Input v) {
setField(2, v);
}
@$pb.TagNumber(2)
$core.bool hasInput() => $_has(1);
@$pb.TagNumber(2)
void clearInput() => clearField(2);
@$pb.TagNumber(2)
$1.Input ensureInput() => $_ensure(1);
}
class RegressionResponse extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'RegressionResponse',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow.serving'),
createEmptyInstance: create)
..aOM<RegressionResult>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'result',
subBuilder: RegressionResult.create)
..aOM<$0.ModelSpec>(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'modelSpec',
subBuilder: $0.ModelSpec.create)
..hasRequiredFields = false;
RegressionResponse._() : super();
factory RegressionResponse({
RegressionResult? result,
$0.ModelSpec? modelSpec,
}) {
final _result = create();
if (result != null) {
_result.result = result;
}
if (modelSpec != null) {
_result.modelSpec = modelSpec;
}
return _result;
}
factory RegressionResponse.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory RegressionResponse.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
RegressionResponse clone() => RegressionResponse()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
RegressionResponse copyWith(void Function(RegressionResponse) updates) =>
super.copyWith((message) => updates(message as RegressionResponse))
as RegressionResponse; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static RegressionResponse create() => RegressionResponse._();
RegressionResponse createEmptyInstance() => create();
static $pb.PbList<RegressionResponse> createRepeated() =>
$pb.PbList<RegressionResponse>();
@$core.pragma('dart2js:noInline')
static RegressionResponse getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<RegressionResponse>(create);
static RegressionResponse? _defaultInstance;
@$pb.TagNumber(1)
RegressionResult get result => $_getN(0);
@$pb.TagNumber(1)
set result(RegressionResult v) {
setField(1, v);
}
@$pb.TagNumber(1)
$core.bool hasResult() => $_has(0);
@$pb.TagNumber(1)
void clearResult() => clearField(1);
@$pb.TagNumber(1)
RegressionResult ensureResult() => $_ensure(0);
@$pb.TagNumber(2)
$0.ModelSpec get modelSpec => $_getN(1);
@$pb.TagNumber(2)
set modelSpec($0.ModelSpec v) {
setField(2, v);
}
@$pb.TagNumber(2)
$core.bool hasModelSpec() => $_has(1);
@$pb.TagNumber(2)
void clearModelSpec() => clearField(2);
@$pb.TagNumber(2)
$0.ModelSpec ensureModelSpec() => $_ensure(1);
}
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow_serving/apis/regression.pb.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow_serving/apis/regression.pb.dart",
"repo_id": "codelabs",
"token_count": 4683
} | 110 |
syntax = "proto3";
package tensorflow;
option cc_enable_arenas = true;
option java_outer_classname = "TypesProtos";
option java_multiple_files = true;
option java_package = "org.tensorflow.framework";
option go_package = "github.com/tensorflow/tensorflow/tensorflow/go/core/framework/types_go_proto";
// (== suppress_warning documentation-presence ==)
// LINT.IfChange
enum DataType {
// Not a legal value for DataType. Used to indicate a DataType field
// has not been set.
DT_INVALID = 0;
// Data types that all computation devices are expected to be
// capable to support.
DT_FLOAT = 1;
DT_DOUBLE = 2;
DT_INT32 = 3;
DT_UINT8 = 4;
DT_INT16 = 5;
DT_INT8 = 6;
DT_STRING = 7;
DT_COMPLEX64 = 8; // Single-precision complex
DT_INT64 = 9;
DT_BOOL = 10;
DT_QINT8 = 11; // Quantized int8
DT_QUINT8 = 12; // Quantized uint8
DT_QINT32 = 13; // Quantized int32
DT_BFLOAT16 = 14; // Float32 truncated to 16 bits. Only for cast ops.
DT_QINT16 = 15; // Quantized int16
DT_QUINT16 = 16; // Quantized uint16
DT_UINT16 = 17;
DT_COMPLEX128 = 18; // Double-precision complex
DT_HALF = 19;
DT_RESOURCE = 20;
DT_VARIANT = 21; // Arbitrary C++ data types
DT_UINT32 = 22;
DT_UINT64 = 23;
// Do not use! These are only for parameters. Every enum above
// should have a corresponding value below (verified by types_test).
DT_FLOAT_REF = 101;
DT_DOUBLE_REF = 102;
DT_INT32_REF = 103;
DT_UINT8_REF = 104;
DT_INT16_REF = 105;
DT_INT8_REF = 106;
DT_STRING_REF = 107;
DT_COMPLEX64_REF = 108;
DT_INT64_REF = 109;
DT_BOOL_REF = 110;
DT_QINT8_REF = 111;
DT_QUINT8_REF = 112;
DT_QINT32_REF = 113;
DT_BFLOAT16_REF = 114;
DT_QINT16_REF = 115;
DT_QUINT16_REF = 116;
DT_UINT16_REF = 117;
DT_COMPLEX128_REF = 118;
DT_HALF_REF = 119;
DT_RESOURCE_REF = 120;
DT_VARIANT_REF = 121;
DT_UINT32_REF = 122;
DT_UINT64_REF = 123;
}
// LINT.ThenChange(
// https://www.tensorflow.org/code/tensorflow/c/tf_datatype.h,
// https://www.tensorflow.org/code/tensorflow/go/tensor.go,
// https://www.tensorflow.org/code/tensorflow/core/framework/tensor.cc,
// https://www.tensorflow.org/code/tensorflow/core/framework/types.h,
// https://www.tensorflow.org/code/tensorflow/core/framework/types.cc,
// https://www.tensorflow.org/code/tensorflow/python/framework/dtypes.py,
// https://www.tensorflow.org/code/tensorflow/python/framework/function.py)
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/tensorflow/core/framework/types.proto/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/tensorflow/core/framework/types.proto",
"repo_id": "codelabs",
"token_count": 1010
} | 111 |
{
"body": {
"content": [
{
"endIndex": 1,
"sectionBreak": {
"sectionStyle": {
"columnSeparatorStyle": "NONE",
"contentDirection": "LEFT_TO_RIGHT",
"sectionType": "CONTINUOUS"
}
}
},
{
"endIndex": 39,
"paragraph": {
"elements": [
{
"endIndex": 38,
"startIndex": 1,
"textRun": {
"content": "Dive into Dartβs patterns and records",
"textStyle": {}
}
},
{
"endIndex": 39,
"startIndex": 38,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 14.0,
"unit": "PT"
}
}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"headingId": "h.8s8krlrp7f4l",
"namedStyleType": "TITLE",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 1
},
{
"endIndex": 40,
"paragraph": {
"elements": [
{
"endIndex": 40,
"startIndex": 39,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 39
},
{
"endIndex": 551,
"startIndex": 40,
"table": {
"columns": 2,
"rows": 11,
"tableRows": [
{
"endIndex": 156,
"startIndex": 41,
"tableCells": [
{
"content": [
{
"endIndex": 51,
"paragraph": {
"elements": [
{
"endIndex": 51,
"startIndex": 43,
"textRun": {
"content": "Summary\n",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 43
}
],
"endIndex": 51,
"startIndex": 42,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.9529412,
"green": 0.9529412,
"red": 0.9529412
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
},
{
"content": [
{
"endIndex": 156,
"paragraph": {
"elements": [
{
"endIndex": 156,
"startIndex": 52,
"textRun": {
"content": "Use patterns, records, and other new features of Dart 3 to rearchitect your UI design style in Flutter.\n",
"textStyle": {
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 52
}
],
"endIndex": 156,
"startIndex": 51,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
},
{
"endIndex": 194,
"startIndex": 156,
"tableCells": [
{
"content": [
{
"endIndex": 162,
"paragraph": {
"elements": [
{
"endIndex": 162,
"startIndex": 158,
"textRun": {
"content": "URL\n",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 158
}
],
"endIndex": 162,
"startIndex": 157,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.9529412,
"green": 0.9529412,
"red": 0.9529412
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
},
{
"content": [
{
"endIndex": 194,
"paragraph": {
"elements": [
{
"endIndex": 194,
"startIndex": 163,
"textRun": {
"content": "codelabs/dart-patterns-records\n",
"textStyle": {
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 163
}
],
"endIndex": 194,
"startIndex": 162,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
},
{
"endIndex": 214,
"startIndex": 194,
"tableCells": [
{
"content": [
{
"endIndex": 205,
"paragraph": {
"elements": [
{
"endIndex": 205,
"startIndex": 196,
"textRun": {
"content": "Category\n",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 196
}
],
"endIndex": 205,
"startIndex": 195,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.9529412,
"green": 0.9529412,
"red": 0.9529412
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
},
{
"content": [
{
"endIndex": 214,
"paragraph": {
"elements": [
{
"endIndex": 214,
"startIndex": 206,
"textRun": {
"content": "Flutter\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 206
}
],
"endIndex": 214,
"startIndex": 205,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
},
{
"endIndex": 253,
"startIndex": 214,
"tableCells": [
{
"content": [
{
"endIndex": 228,
"paragraph": {
"elements": [
{
"endIndex": 228,
"startIndex": 216,
"textRun": {
"content": "Environment\n",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 216
}
],
"endIndex": 228,
"startIndex": 215,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.9529412,
"green": 0.9529412,
"red": 0.9529412
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
},
{
"content": [
{
"endIndex": 253,
"paragraph": {
"elements": [
{
"endIndex": 253,
"startIndex": 229,
"textRun": {
"content": "web, kiosk, tag-flutter\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 229
}
],
"endIndex": 253,
"startIndex": 228,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
},
{
"endIndex": 312,
"startIndex": 253,
"tableCells": [
{
"content": [
{
"endIndex": 269,
"paragraph": {
"elements": [
{
"endIndex": 269,
"startIndex": 255,
"textRun": {
"content": "Feedback Link\n",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 255
}
],
"endIndex": 269,
"startIndex": 254,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.9529412,
"green": 0.9529412,
"red": 0.9529412
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
},
{
"content": [
{
"endIndex": 312,
"paragraph": {
"elements": [
{
"endIndex": 312,
"startIndex": 270,
"textRun": {
"content": "https://github.com/flutter/flutter/issues\n",
"textStyle": {
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 270
}
],
"endIndex": 312,
"startIndex": 269,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
},
{
"endIndex": 348,
"startIndex": 312,
"tableCells": [
{
"content": [
{
"endIndex": 321,
"paragraph": {
"elements": [
{
"endIndex": 321,
"startIndex": 314,
"textRun": {
"content": "Author\n",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 314
}
],
"endIndex": 321,
"startIndex": 313,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.9529412,
"green": 0.9529412,
"red": 0.9529412
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
},
{
"content": [
{
"endIndex": 348,
"paragraph": {
"elements": [
{
"endIndex": 348,
"startIndex": 322,
"textRun": {
"content": "John Ryan, Marya Belanger\n",
"textStyle": {
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 322
}
],
"endIndex": 348,
"startIndex": 321,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
},
{
"endIndex": 381,
"startIndex": 348,
"tableCells": [
{
"content": [
{
"endIndex": 362,
"paragraph": {
"elements": [
{
"endIndex": 362,
"startIndex": 350,
"textRun": {
"content": "Author LDAP\n",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 350
}
],
"endIndex": 362,
"startIndex": 349,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.9529412,
"green": 0.9529412,
"red": 0.9529412
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
},
{
"content": [
{
"endIndex": 381,
"paragraph": {
"elements": [
{
"endIndex": 381,
"startIndex": 363,
"textRun": {
"content": "ryjohn, mbelanger\n",
"textStyle": {
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 363
}
],
"endIndex": 381,
"startIndex": 362,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
},
{
"endIndex": 469,
"startIndex": 381,
"tableCells": [
{
"content": [
{
"endIndex": 398,
"paragraph": {
"elements": [
{
"endIndex": 398,
"startIndex": 383,
"textRun": {
"content": "Directory path\n",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 383
}
],
"endIndex": 398,
"startIndex": 382,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.9529412,
"green": 0.9529412,
"red": 0.9529412
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
},
{
"content": [
{
"endIndex": 469,
"paragraph": {
"elements": [
{
"endIndex": 469,
"startIndex": 399,
"textRun": {
"content": "google3/third_party/devsite/codelabs/en/codelabs/diving-in-to-dart-3/\n",
"textStyle": {
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 399
}
],
"endIndex": 469,
"startIndex": 398,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
},
{
"endIndex": 504,
"startIndex": 469,
"tableCells": [
{
"content": [
{
"endIndex": 489,
"paragraph": {
"elements": [
{
"endIndex": 489,
"startIndex": 471,
"textRun": {
"content": "Analytics Account\n",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 471
}
],
"endIndex": 489,
"startIndex": 470,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.9529412,
"green": 0.9529412,
"red": 0.9529412
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
},
{
"content": [
{
"endIndex": 504,
"paragraph": {
"elements": [
{
"endIndex": 504,
"startIndex": 490,
"textRun": {
"content": "UA-52746336-1\n",
"textStyle": {
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 490
}
],
"endIndex": 504,
"startIndex": 489,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
},
{
"endIndex": 530,
"startIndex": 504,
"tableCells": [
{
"content": [
{
"endIndex": 514,
"paragraph": {
"elements": [
{
"endIndex": 514,
"startIndex": 506,
"textRun": {
"content": "Project\n",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 506
}
],
"endIndex": 514,
"startIndex": 505,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.9529412,
"green": 0.9529412,
"red": 0.9529412
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
},
{
"content": [
{
"endIndex": 530,
"paragraph": {
"elements": [
{
"endIndex": 530,
"startIndex": 515,
"textRun": {
"content": "/_project.yaml\n",
"textStyle": {
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 515
}
],
"endIndex": 530,
"startIndex": 514,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
},
{
"endIndex": 550,
"startIndex": 530,
"tableCells": [
{
"content": [
{
"endIndex": 537,
"paragraph": {
"elements": [
{
"endIndex": 537,
"startIndex": 532,
"textRun": {
"content": "Book\n",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 532
}
],
"endIndex": 537,
"startIndex": 531,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.9529412,
"green": 0.9529412,
"red": 0.9529412
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
},
{
"content": [
{
"endIndex": 550,
"paragraph": {
"elements": [
{
"endIndex": 550,
"startIndex": 538,
"textRun": {
"content": "/_book.yaml\n",
"textStyle": {
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 538
}
],
"endIndex": 550,
"startIndex": 537,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"width": {
"magnitude": 101.25,
"unit": "PT"
},
"widthType": "FIXED_WIDTH"
},
{
"width": {
"magnitude": 366.75,
"unit": "PT"
},
"widthType": "FIXED_WIDTH"
}
]
}
}
},
{
"endIndex": 552,
"paragraph": {
"elements": [
{
"endIndex": 552,
"startIndex": 551,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 551
},
{
"endIndex": 553,
"paragraph": {
"elements": [
{
"endIndex": 553,
"startIndex": 552,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 552
},
{
"endIndex": 1907,
"startIndex": 553,
"tableOfContents": {
"content": [
{
"endIndex": 567,
"paragraph": {
"elements": [
{
"endIndex": 566,
"startIndex": 554,
"textRun": {
"content": "Introduction",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.hzcz072cgix0"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 567,
"startIndex": 566,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 554
},
{
"endIndex": 585,
"paragraph": {
"elements": [
{
"endIndex": 584,
"startIndex": 567,
"textRun": {
"content": "What you'll build",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.ohez9ifqj67k"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 585,
"startIndex": 584,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 567
},
{
"endIndex": 603,
"paragraph": {
"elements": [
{
"endIndex": 602,
"startIndex": 585,
"textRun": {
"content": "What you'll learn",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.2ww7b2q8ih95"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 603,
"startIndex": 602,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 585
},
{
"endIndex": 627,
"paragraph": {
"elements": [
{
"endIndex": 626,
"startIndex": 603,
"textRun": {
"content": "Set up your environment",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.2zyyznhvjezk"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 627,
"startIndex": 626,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 603
},
{
"endIndex": 646,
"paragraph": {
"elements": [
{
"endIndex": 645,
"startIndex": 627,
"textRun": {
"content": "Create the project",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.bwo0af2iwk90"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 646,
"startIndex": 645,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 627
},
{
"endIndex": 655,
"paragraph": {
"elements": [
{
"endIndex": 654,
"startIndex": 646,
"textRun": {
"content": "Get Dart",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.hz1dqd64dfk8"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 655,
"startIndex": 654,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 646
},
{
"endIndex": 680,
"paragraph": {
"elements": [
{
"endIndex": 679,
"startIndex": 655,
"textRun": {
"content": "Create a Flutter project",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.puul27u3qcal"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 680,
"startIndex": 679,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 655
},
{
"endIndex": 708,
"paragraph": {
"elements": [
{
"endIndex": 707,
"startIndex": 680,
"textRun": {
"content": "Set the minimum SDK version",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.fn7r4ym5936q"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 708,
"startIndex": 707,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 680
},
{
"endIndex": 721,
"paragraph": {
"elements": [
{
"endIndex": 720,
"startIndex": 708,
"textRun": {
"content": "pubspec.yaml",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.wxfg1yyhggp8"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 721,
"startIndex": 720,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 708
},
{
"endIndex": 740,
"paragraph": {
"elements": [
{
"endIndex": 739,
"startIndex": 721,
"textRun": {
"content": "Set up the project",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.tofj7jijs3a4"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 740,
"startIndex": 739,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 721
},
{
"endIndex": 768,
"paragraph": {
"elements": [
{
"endIndex": 767,
"startIndex": 740,
"textRun": {
"content": "Define the data for the app",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.al2qhdvxmiug"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 768,
"startIndex": 767,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 740
},
{
"endIndex": 782,
"paragraph": {
"elements": [
{
"endIndex": 781,
"startIndex": 768,
"textRun": {
"content": "lib/data.dart",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.re3z7mxbljy8"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 782,
"startIndex": 781,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 768
},
{
"endIndex": 794,
"paragraph": {
"elements": [
{
"endIndex": 793,
"startIndex": 782,
"textRun": {
"content": "Run the app",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.k5wrikjay60s"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 794,
"startIndex": 793,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 782
},
{
"endIndex": 808,
"paragraph": {
"elements": [
{
"endIndex": 807,
"startIndex": 794,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.pfkw4b2rwt18"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 808,
"startIndex": 807,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 794
},
{
"endIndex": 834,
"paragraph": {
"elements": [
{
"endIndex": 833,
"startIndex": 808,
"textRun": {
"content": "Create and return records",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.3kiny5cugr9k"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 834,
"startIndex": 833,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 808
},
{
"endIndex": 861,
"paragraph": {
"elements": [
{
"endIndex": 860,
"startIndex": 834,
"textRun": {
"content": "Create and return a record",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.8sr849kjw46b"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 861,
"startIndex": 860,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 834
},
{
"endIndex": 875,
"paragraph": {
"elements": [
{
"endIndex": 874,
"startIndex": 861,
"textRun": {
"content": "lib/data.dart",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.cvgunwoh6oqy"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 875,
"startIndex": 874,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 861
},
{
"endIndex": 896,
"paragraph": {
"elements": [
{
"endIndex": 895,
"startIndex": 875,
"textRun": {
"content": "Access record fields",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.m7t4gd6sit79"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 896,
"startIndex": 895,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 875
},
{
"endIndex": 910,
"paragraph": {
"elements": [
{
"endIndex": 909,
"startIndex": 896,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.6k8szvspvapq"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 910,
"startIndex": 909,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 896
},
{
"endIndex": 946,
"paragraph": {
"elements": [
{
"endIndex": 945,
"startIndex": 910,
"textRun": {
"content": "Match and destructure with patterns",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.568j9pkqmod0"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 946,
"startIndex": 945,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 910
},
{
"endIndex": 988,
"paragraph": {
"elements": [
{
"endIndex": 987,
"startIndex": 946,
"textRun": {
"content": "Destructure a record into local variables",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.gpl49c2b0ub"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 988,
"startIndex": 987,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 946
},
{
"endIndex": 1002,
"paragraph": {
"elements": [
{
"endIndex": 1001,
"startIndex": 988,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.z05ke9eh3pmu"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1002,
"startIndex": 1001,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 988
},
{
"endIndex": 1016,
"paragraph": {
"elements": [
{
"endIndex": 1015,
"startIndex": 1002,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.utlztqy2hktb"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1016,
"startIndex": 1015,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1002
},
{
"endIndex": 1045,
"paragraph": {
"elements": [
{
"endIndex": 1044,
"startIndex": 1016,
"textRun": {
"content": "Use patterns to extract data",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.pycw5b4t4lns"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1045,
"startIndex": 1044,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1016
},
{
"endIndex": 1079,
"paragraph": {
"elements": [
{
"endIndex": 1078,
"startIndex": 1045,
"textRun": {
"content": "Read JSON values without patterns",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.yf61kg5owa9m"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1079,
"startIndex": 1078,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1045
},
{
"endIndex": 1093,
"paragraph": {
"elements": [
{
"endIndex": 1092,
"startIndex": 1079,
"textRun": {
"content": "lib/data.dart",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.xtpw6x4ct4ba"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1093,
"startIndex": 1092,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1079
},
{
"endIndex": 1130,
"paragraph": {
"elements": [
{
"endIndex": 1129,
"startIndex": 1093,
"textRun": {
"content": "Read JSON values using a map pattern",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.6jvsgpwu5vaj"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1130,
"startIndex": 1129,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1093
},
{
"endIndex": 1144,
"paragraph": {
"elements": [
{
"endIndex": 1143,
"startIndex": 1130,
"textRun": {
"content": "lib/data.dart",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.up9oxn6751gl"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1144,
"startIndex": 1143,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1130
},
{
"endIndex": 1178,
"paragraph": {
"elements": [
{
"endIndex": 1177,
"startIndex": 1144,
"textRun": {
"content": "Prepare the app for more patterns",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.hkoplv4js2dj"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1178,
"startIndex": 1177,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1144
},
{
"endIndex": 1210,
"paragraph": {
"elements": [
{
"endIndex": 1209,
"startIndex": 1178,
"textRun": {
"content": "Create a class that stores data",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.e2lkdi57402r"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1210,
"startIndex": 1209,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1178
},
{
"endIndex": 1224,
"paragraph": {
"elements": [
{
"endIndex": 1223,
"startIndex": 1210,
"textRun": {
"content": "lib/data.dart",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.ge9la6aiy6ve"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1224,
"startIndex": 1223,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1210
},
{
"endIndex": 1255,
"paragraph": {
"elements": [
{
"endIndex": 1254,
"startIndex": 1224,
"textRun": {
"content": "Return a list of Block objects",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.n19bd2b94m9o"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1255,
"startIndex": 1254,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1224
},
{
"endIndex": 1269,
"paragraph": {
"elements": [
{
"endIndex": 1268,
"startIndex": 1255,
"textRun": {
"content": "lib/data.dart",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.jmifchr63cwh"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1269,
"startIndex": 1268,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1255
},
{
"endIndex": 1306,
"paragraph": {
"elements": [
{
"endIndex": 1305,
"startIndex": 1269,
"textRun": {
"content": "Use patterns to display the document",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.i44naeu2u775"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1306,
"startIndex": 1305,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1269
},
{
"endIndex": 1368,
"paragraph": {
"elements": [
{
"endIndex": 1367,
"startIndex": 1306,
"textRun": {
"content": "Control whatβs rendered using patterns with switch statements",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.mrd1p7wmy500"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1368,
"startIndex": 1367,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1306
},
{
"endIndex": 1382,
"paragraph": {
"elements": [
{
"endIndex": 1381,
"startIndex": 1368,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.lfig9orpitjc"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1382,
"startIndex": 1381,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1368
},
{
"endIndex": 1411,
"paragraph": {
"elements": [
{
"endIndex": 1410,
"startIndex": 1382,
"textRun": {
"content": "Display the document content",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.m3ty4akt3v4k"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1411,
"startIndex": 1410,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1382
},
{
"endIndex": 1425,
"paragraph": {
"elements": [
{
"endIndex": 1424,
"startIndex": 1411,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.2jxf0i2gbgxq"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1425,
"startIndex": 1424,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1411
},
{
"endIndex": 1448,
"paragraph": {
"elements": [
{
"endIndex": 1447,
"startIndex": 1425,
"textRun": {
"content": "Use switch expressions",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.is937g7djrt5"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1448,
"startIndex": 1447,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1425
},
{
"endIndex": 1502,
"paragraph": {
"elements": [
{
"endIndex": 1501,
"startIndex": 1448,
"textRun": {
"content": "Convert the switch statement into a switch expression",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.ny6l3hlbb3ze"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1502,
"startIndex": 1501,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1448
},
{
"endIndex": 1516,
"paragraph": {
"elements": [
{
"endIndex": 1515,
"startIndex": 1502,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.ux4uol8rfg8y"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1516,
"startIndex": 1515,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1502
},
{
"endIndex": 1536,
"paragraph": {
"elements": [
{
"endIndex": 1535,
"startIndex": 1516,
"textRun": {
"content": "Use object patterns",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.o28rbfr3i2hm"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1536,
"startIndex": 1535,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1516
},
{
"endIndex": 1576,
"paragraph": {
"elements": [
{
"endIndex": 1575,
"startIndex": 1536,
"textRun": {
"content": "Extract properties from object patterns",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.hiek3z8bfnbt"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1576,
"startIndex": 1575,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1536
},
{
"endIndex": 1590,
"paragraph": {
"elements": [
{
"endIndex": 1589,
"startIndex": 1576,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.vivylxd16zs"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1590,
"startIndex": 1589,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1576
},
{
"endIndex": 1621,
"paragraph": {
"elements": [
{
"endIndex": 1620,
"startIndex": 1590,
"textRun": {
"content": "Add formatting logic for weeks",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.954rbgsdumm6"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1621,
"startIndex": 1620,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1590
},
{
"endIndex": 1635,
"paragraph": {
"elements": [
{
"endIndex": 1634,
"startIndex": 1621,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.io2pno42mpr0"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1635,
"startIndex": 1634,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1621
},
{
"endIndex": 1674,
"paragraph": {
"elements": [
{
"endIndex": 1673,
"startIndex": 1635,
"textRun": {
"content": "Add the newly formatted date to the UI",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.mnuqwgraocl9"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1674,
"startIndex": 1673,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1635
},
{
"endIndex": 1688,
"paragraph": {
"elements": [
{
"endIndex": 1687,
"startIndex": 1674,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.33yq3djwxg2k"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1688,
"startIndex": 1687,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1674
},
{
"endIndex": 1726,
"paragraph": {
"elements": [
{
"endIndex": 1725,
"startIndex": 1688,
"textRun": {
"content": "Seal a class for exhaustive switching",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.qhrafs2obyf8"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1726,
"startIndex": 1725,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1688
},
{
"endIndex": 1748,
"paragraph": {
"elements": [
{
"endIndex": 1747,
"startIndex": 1726,
"textRun": {
"content": "Create the subclasses",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.r3jqucu93ahb"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1748,
"startIndex": 1747,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1726
},
{
"endIndex": 1762,
"paragraph": {
"elements": [
{
"endIndex": 1761,
"startIndex": 1748,
"textRun": {
"content": "lib/data.dart",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.6y1ysytcknvf"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1762,
"startIndex": 1761,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1748
},
{
"endIndex": 1782,
"paragraph": {
"elements": [
{
"endIndex": 1781,
"startIndex": 1762,
"textRun": {
"content": "Seal the superclass",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.g3xt9adlan98"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1782,
"startIndex": 1781,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1762
},
{
"endIndex": 1796,
"paragraph": {
"elements": [
{
"endIndex": 1795,
"startIndex": 1782,
"textRun": {
"content": "lib/data.dart",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.8e7nmbgjwwar"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1796,
"startIndex": 1795,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1782
},
{
"endIndex": 1848,
"paragraph": {
"elements": [
{
"endIndex": 1847,
"startIndex": 1796,
"textRun": {
"content": "Use a switch expression in order to display widgets",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.foj9vhgbov84"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1848,
"startIndex": 1847,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1796
},
{
"endIndex": 1862,
"paragraph": {
"elements": [
{
"endIndex": 1861,
"startIndex": 1848,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.m6cm9c15guwi"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1862,
"startIndex": 1861,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1848
},
{
"endIndex": 1878,
"paragraph": {
"elements": [
{
"endIndex": 1877,
"startIndex": 1862,
"textRun": {
"content": "Congratulations",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.s22qmcj4zu61"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1878,
"startIndex": 1877,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1862
},
{
"endIndex": 1891,
"paragraph": {
"elements": [
{
"endIndex": 1890,
"startIndex": 1878,
"textRun": {
"content": "Whatβs next?",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.9mqifffit2ew"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1891,
"startIndex": 1890,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1878
},
{
"endIndex": 1906,
"paragraph": {
"elements": [
{
"endIndex": 1905,
"startIndex": 1891,
"textRun": {
"content": "Reference docs",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.an95hoqxrlhg"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1906,
"startIndex": 1905,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1891
}
]
}
},
{
"endIndex": 1908,
"paragraph": {
"elements": [
{
"endIndex": 1908,
"startIndex": 1907,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 1907
},
{
"endIndex": 1909,
"paragraph": {
"elements": [
{
"endIndex": 1909,
"startIndex": 1908,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Verdana",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 1908
},
{
"endIndex": 1922,
"paragraph": {
"elements": [
{
"endIndex": 1922,
"startIndex": 1909,
"textRun": {
"content": "Introduction\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.hzcz072cgix0",
"namedStyleType": "HEADING_1"
}
},
"startIndex": 1909
},
{
"endIndex": 1937,
"paragraph": {
"elements": [
{
"endIndex": 1936,
"startIndex": 1922,
"textRun": {
"content": "Duration: 2:00",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1937,
"startIndex": 1936,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 1922
},
{
"endIndex": 1938,
"paragraph": {
"elements": [
{
"endIndex": 1938,
"startIndex": 1937,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 1937
},
{
"endIndex": 2112,
"paragraph": {
"elements": [
{
"endIndex": 1956,
"startIndex": 1938,
"textRun": {
"content": "Dart 3 introduces ",
"textStyle": {}
}
},
{
"endIndex": 1964,
"startIndex": 1956,
"textRun": {
"content": "patterns",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 1965,
"startIndex": 1964,
"textRun": {
"content": " ",
"textStyle": {
"bold": true,
"italic": true
}
}
},
{
"endIndex": 1980,
"startIndex": 1965,
"textRun": {
"content": "to the language",
"textStyle": {}
}
},
{
"endIndex": 2112,
"startIndex": 1980,
"textRun": {
"content": ", a major new category of grammar. Beyond this new way to write Dart code, there are several other language enhancements, including\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 1938
},
{
"endIndex": 2158,
"paragraph": {
"bullet": {
"listId": "kix.29md3ly3lepf",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 2119,
"startIndex": 2112,
"textRun": {
"content": "records",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 2156,
"startIndex": 2119,
"textRun": {
"content": " for bundling data of different types",
"textStyle": {}
}
},
{
"endIndex": 2158,
"startIndex": 2156,
"textRun": {
"content": ",\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 2112
},
{
"endIndex": 2202,
"paragraph": {
"bullet": {
"listId": "kix.29md3ly3lepf",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 2173,
"startIndex": 2158,
"textRun": {
"content": "class modifiers",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 2202,
"startIndex": 2173,
"textRun": {
"content": " for controlling access, and\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 2158
},
{
"endIndex": 2249,
"paragraph": {
"bullet": {
"listId": "kix.29md3ly3lepf",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 2206,
"startIndex": 2202,
"textRun": {
"content": "new ",
"textStyle": {}
}
},
{
"endIndex": 2224,
"startIndex": 2206,
"textRun": {
"content": "switch expressions",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 2229,
"startIndex": 2224,
"textRun": {
"content": " and ",
"textStyle": {}
}
},
{
"endIndex": 2247,
"startIndex": 2229,
"textRun": {
"content": "if-case statements",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 2249,
"startIndex": 2247,
"textRun": {
"content": ".\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 2202
},
{
"endIndex": 2250,
"paragraph": {
"elements": [
{
"endIndex": 2250,
"startIndex": 2249,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 2249
},
{
"endIndex": 2419,
"paragraph": {
"elements": [
{
"endIndex": 2419,
"startIndex": 2250,
"textRun": {
"content": "These features expand the choices you have when writing Dart code. In this codelab, you learn how to use them to make your code more compact, streamlined, and flexible.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 2250
},
{
"endIndex": 2420,
"paragraph": {
"elements": [
{
"endIndex": 2420,
"startIndex": 2419,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 2419
},
{
"endIndex": 2583,
"paragraph": {
"elements": [
{
"endIndex": 2583,
"startIndex": 2420,
"textRun": {
"content": "This codelab assumes you have some familiarity with Flutter and Dart. If you feel a little rusty, consider brushing up on the basics with the following resources:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 2420
},
{
"endIndex": 2604,
"paragraph": {
"bullet": {
"listId": "kix.ys8rp5gxh2y2",
"textStyle": {}
},
"elements": [
{
"endIndex": 2603,
"startIndex": 2583,
"textRun": {
"content": "Introduction to Dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://dart.dev/language"
},
"underline": true
}
}
},
{
"endIndex": 2604,
"startIndex": 2603,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 2583
},
{
"endIndex": 2627,
"paragraph": {
"bullet": {
"listId": "kix.ys8rp5gxh2y2",
"textStyle": {
"italic": true
}
},
"elements": [
{
"endIndex": 2626,
"startIndex": 2604,
"textRun": {
"content": "Your first Flutter app",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://codelabs.developers.google.com/codelabs/flutter-codelab-first"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2627,
"startIndex": 2626,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 2604
},
{
"endIndex": 2628,
"paragraph": {
"elements": [
{
"endIndex": 2628,
"startIndex": 2627,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 2627
},
{
"endIndex": 2646,
"paragraph": {
"elements": [
{
"endIndex": 2645,
"startIndex": 2628,
"textRun": {
"content": "What you'll build",
"textStyle": {}
}
},
{
"endIndex": 2646,
"startIndex": 2645,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.ohez9ifqj67k",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 2628
},
{
"endIndex": 3012,
"paragraph": {
"elements": [
{
"endIndex": 3012,
"startIndex": 2646,
"textRun": {
"content": "This codelab creates an application that displays a JSON document in Flutter. The application simulates JSON coming from an external source. The JSON contains document data such as the modification date, title, headers, and paragraphs. You write code to neatly pack data into records so that it can be transferred and unpacked wherever your Flutter widgets need it.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 2646
},
{
"endIndex": 3013,
"paragraph": {
"elements": [
{
"endIndex": 3013,
"startIndex": 3012,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 3012
},
{
"endIndex": 3179,
"paragraph": {
"elements": [
{
"endIndex": 3179,
"startIndex": 3013,
"textRun": {
"content": "You then use patterns to build the appropriate widget when the value matches that pattern. You also see how to use patterns to destructure data into local variables.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 3013
},
{
"endIndex": 3180,
"paragraph": {
"elements": [
{
"endIndex": 3180,
"startIndex": 3179,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 3179
},
{
"endIndex": 3182,
"paragraph": {
"elements": [
{
"endIndex": 3181,
"inlineObjectElement": {
"inlineObjectId": "kix.ctv7dbuxjvub",
"textStyle": {}
},
"startIndex": 3180
},
{
"endIndex": 3182,
"startIndex": 3181,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 3180
},
{
"endIndex": 3200,
"paragraph": {
"elements": [
{
"endIndex": 3200,
"startIndex": 3182,
"textRun": {
"content": "What you'll learn\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.2ww7b2q8ih95",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 3182
},
{
"endIndex": 3273,
"paragraph": {
"bullet": {
"listId": "kix.7cnpkqyuk55g",
"textStyle": {}
},
"elements": [
{
"endIndex": 3273,
"startIndex": 3200,
"textRun": {
"content": "How to create a record that stores multiple values with different types.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 3200
},
{
"endIndex": 3336,
"paragraph": {
"bullet": {
"listId": "kix.7cnpkqyuk55g",
"textStyle": {}
},
"elements": [
{
"endIndex": 3336,
"startIndex": 3273,
"textRun": {
"content": "How to return multiple values from a function using a record. \n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 3273
},
{
"endIndex": 3429,
"paragraph": {
"bullet": {
"listId": "kix.7cnpkqyuk55g",
"textStyle": {}
},
"elements": [
{
"endIndex": 3429,
"startIndex": 3336,
"textRun": {
"content": "How to use patterns to match, validate, and destructure data from records and other objects.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 3336
},
{
"endIndex": 3494,
"paragraph": {
"bullet": {
"listId": "kix.7cnpkqyuk55g",
"textStyle": {}
},
"elements": [
{
"endIndex": 3494,
"startIndex": 3429,
"textRun": {
"content": "How to bind pattern-matched values to new or existing variables.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 3429
},
{
"endIndex": 3584,
"paragraph": {
"bullet": {
"listId": "kix.7cnpkqyuk55g",
"textStyle": {}
},
"elements": [
{
"endIndex": 3509,
"startIndex": 3494,
"textRun": {
"content": "How to use new ",
"textStyle": {}
}
},
{
"endIndex": 3559,
"startIndex": 3509,
"textRun": {
"content": "switch statement capabilities, switch expressions,",
"textStyle": {}
}
},
{
"endIndex": 3563,
"startIndex": 3559,
"textRun": {
"content": " and",
"textStyle": {}
}
},
{
"endIndex": 3567,
"startIndex": 3563,
"textRun": {
"content": " if-",
"textStyle": {}
}
},
{
"endIndex": 3583,
"startIndex": 3567,
"textRun": {
"content": "case statements.",
"textStyle": {}
}
},
{
"endIndex": 3584,
"startIndex": 3583,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 3494
},
{
"endIndex": 3714,
"paragraph": {
"bullet": {
"listId": "kix.7cnpkqyuk55g",
"textStyle": {}
},
"elements": [
{
"endIndex": 3609,
"startIndex": 3584,
"textRun": {
"content": "How to take advantage of ",
"textStyle": {}
}
},
{
"endIndex": 3632,
"startIndex": 3609,
"textRun": {
"content": "exhaustiveness checking",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 3713,
"startIndex": 3632,
"textRun": {
"content": " to ensure that every case is handled in a switch statement or switch expression.",
"textStyle": {}
}
},
{
"endIndex": 3714,
"startIndex": 3713,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 3584
},
{
"endIndex": 3715,
"paragraph": {
"elements": [
{
"endIndex": 3715,
"startIndex": 3714,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 3714
},
{
"endIndex": 3739,
"paragraph": {
"elements": [
{
"endIndex": 3739,
"startIndex": 3715,
"textRun": {
"content": "Set up your environment\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.2zyyznhvjezk",
"namedStyleType": "HEADING_1"
}
},
"startIndex": 3715
},
{
"endIndex": 3754,
"paragraph": {
"elements": [
{
"endIndex": 3754,
"startIndex": 3739,
"textRun": {
"content": "Duration: 3:00\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 3739
},
{
"endIndex": 3755,
"paragraph": {
"elements": [
{
"endIndex": 3755,
"startIndex": 3754,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 3754
},
{
"endIndex": 3780,
"paragraph": {
"bullet": {
"listId": "kix.a9n5e5f1az1v",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 3767,
"startIndex": 3755,
"textRun": {
"content": "Install the ",
"textStyle": {}
}
},
{
"endIndex": 3778,
"startIndex": 3767,
"textRun": {
"content": "Flutter SDK",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://docs.flutter.dev/get-started/install"
},
"underline": true
}
}
},
{
"endIndex": 3780,
"startIndex": 3778,
"textRun": {
"content": ".\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 3755
},
{
"endIndex": 3835,
"paragraph": {
"bullet": {
"listId": "kix.a9n5e5f1az1v",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 3796,
"startIndex": 3780,
"textRun": {
"content": "Set up an editor",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://docs.flutter.dev/get-started/editor"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 3833,
"startIndex": 3796,
"textRun": {
"content": " such as Visual Studio Code (VS Code)",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 3834,
"startIndex": 3833,
"textRun": {
"content": ".",
"textStyle": {}
}
},
{
"endIndex": 3835,
"startIndex": 3834,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 3780
},
{
"endIndex": 3947,
"paragraph": {
"bullet": {
"listId": "kix.a9n5e5f1az1v",
"textStyle": {
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 3850,
"startIndex": 3835,
"textRun": {
"content": "Go through the ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 3864,
"startIndex": 3850,
"textRun": {
"content": "Platform setup",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://docs.flutter.dev/get-started/install/macos#platform-setup"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 3946,
"startIndex": 3864,
"textRun": {
"content": " steps for at least one target platform (iOS, Android, Desktop, or a web browser).",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 3947,
"startIndex": 3946,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Verdana",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 3835
},
{
"endIndex": 3966,
"paragraph": {
"elements": [
{
"endIndex": 3965,
"startIndex": 3947,
"textRun": {
"content": "Create the project",
"textStyle": {}
}
},
{
"endIndex": 3966,
"startIndex": 3965,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.bwo0af2iwk90",
"namedStyleType": "HEADING_1",
"pageBreakBefore": false
}
},
"startIndex": 3947
},
{
"endIndex": 3981,
"paragraph": {
"elements": [
{
"endIndex": 3980,
"startIndex": 3966,
"textRun": {
"content": "Duration: 3:00",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 3981,
"startIndex": 3980,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 3966
},
{
"endIndex": 3982,
"paragraph": {
"elements": [
{
"endIndex": 3982,
"startIndex": 3981,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 3981
},
{
"endIndex": 4151,
"paragraph": {
"elements": [
{
"endIndex": 4150,
"startIndex": 3982,
"textRun": {
"content": "Before diving into patterns, records, and other new features, take a moment to set up your environment and the simple Flutter project for which you write all your code.",
"textStyle": {}
}
},
{
"endIndex": 4151,
"startIndex": 4150,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 3982
},
{
"endIndex": 4161,
"paragraph": {
"elements": [
{
"endIndex": 4160,
"startIndex": 4151,
"textRun": {
"content": "Get Dart ",
"textStyle": {}
}
},
{
"endIndex": 4161,
"startIndex": 4160,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.hz1dqd64dfk8",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 4151
},
{
"endIndex": 4220,
"paragraph": {
"bullet": {
"listId": "kix.ss5r6gmvu828",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 4219,
"startIndex": 4161,
"textRun": {
"content": "To ensure youβre using Dart 3, run the following commands:",
"textStyle": {}
}
},
{
"endIndex": 4220,
"startIndex": 4219,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4161
},
{
"endIndex": 4334,
"startIndex": 4220,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 4333,
"startIndex": 4221,
"tableCells": [
{
"content": [
{
"endIndex": 4246,
"paragraph": {
"elements": [
{
"endIndex": 4246,
"startIndex": 4223,
"textRun": {
"content": "flutter channel stable\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4223
},
{
"endIndex": 4262,
"paragraph": {
"elements": [
{
"endIndex": 4262,
"startIndex": 4246,
"textRun": {
"content": "flutter upgrade\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4246
},
{
"endIndex": 4333,
"paragraph": {
"elements": [
{
"endIndex": 4333,
"startIndex": 4262,
"textRun": {
"content": "dart --version # This should print \"Dart SDK version: 3.0.0\" or higher\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4262
}
],
"endIndex": 4333,
"startIndex": 4222,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 4335,
"paragraph": {
"elements": [
{
"endIndex": 4335,
"startIndex": 4334,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 4334
},
{
"endIndex": 4425,
"startIndex": 4335,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 4424,
"startIndex": 4336,
"tableCells": [
{
"content": [
{
"endIndex": 4424,
"paragraph": {
"elements": [
{
"endIndex": 4344,
"startIndex": 4338,
"textRun": {
"content": "Note: ",
"textStyle": {
"bold": true
}
}
},
{
"endIndex": 4407,
"startIndex": 4344,
"textRun": {
"content": "The Flutter SDK includes Dart, but Dart is also available as a ",
"textStyle": {}
}
},
{
"endIndex": 4421,
"startIndex": 4407,
"textRun": {
"content": "standalone SDK",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://dart.dev/get-dart"
},
"underline": true
}
}
},
{
"endIndex": 4424,
"startIndex": 4421,
"textRun": {
"content": ". \n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 4338
}
],
"endIndex": 4424,
"startIndex": 4337,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.827451,
"green": 0.91764706,
"red": 0.8509804
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 4426,
"paragraph": {
"elements": [
{
"endIndex": 4426,
"startIndex": 4425,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 4425
},
{
"endIndex": 4648,
"startIndex": 4426,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 4647,
"startIndex": 4427,
"tableCells": [
{
"content": [
{
"endIndex": 4647,
"paragraph": {
"elements": [
{
"endIndex": 4438,
"startIndex": 4429,
"textRun": {
"content": "Warning: ",
"textStyle": {
"bold": true
}
}
},
{
"endIndex": 4597,
"startIndex": 4438,
"textRun": {
"content": "Dart 3 only supports null safe code. If you have existing Dart projects that have not opted-in to null safety, this upgrade causes that code to break. Consult ",
"textStyle": {}
}
},
{
"endIndex": 4614,
"startIndex": 4597,
"textRun": {
"content": "Sound null safety",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://dart.dev/null-safety#dart-3-and-null-safety"
},
"underline": true
}
}
},
{
"endIndex": 4646,
"startIndex": 4614,
"textRun": {
"content": " for safeguards and precautions.",
"textStyle": {}
}
},
{
"endIndex": 4647,
"startIndex": 4646,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4429
}
],
"endIndex": 4647,
"startIndex": 4428,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.8039216,
"green": 0.8980392,
"red": 0.9882353
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 4673,
"paragraph": {
"elements": [
{
"endIndex": 4673,
"startIndex": 4648,
"textRun": {
"content": "Create a Flutter project\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.puul27u3qcal",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 4648
},
{
"endIndex": 4881,
"paragraph": {
"bullet": {
"listId": "kix.e7rm6cchwfxs",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 4681,
"startIndex": 4673,
"textRun": {
"content": "Use the ",
"textStyle": {}
}
},
{
"endIndex": 4695,
"startIndex": 4681,
"textRun": {
"content": "flutter create",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
},
{
"endIndex": 4734,
"startIndex": 4695,
"textRun": {
"content": " command to create a new project named ",
"textStyle": {}
}
},
{
"endIndex": 4750,
"startIndex": 4734,
"textRun": {
"content": "patterns_codelab",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 4756,
"startIndex": 4750,
"textRun": {
"content": ". The ",
"textStyle": {}
}
},
{
"endIndex": 4763,
"startIndex": 4756,
"textRun": {
"content": "--empty",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
},
{
"endIndex": 4826,
"startIndex": 4763,
"textRun": {
"content": " flag prevents the creation of the standard counter app in the ",
"textStyle": {}
}
},
{
"endIndex": 4839,
"startIndex": 4826,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 4881,
"startIndex": 4839,
"textRun": {
"content": " file, which youβd have to remove anyway.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4673
},
{
"endIndex": 4882,
"paragraph": {
"elements": [
{
"endIndex": 4882,
"startIndex": 4881,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 4881
},
{
"endIndex": 4926,
"startIndex": 4882,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 4925,
"startIndex": 4883,
"tableCells": [
{
"content": [
{
"endIndex": 4925,
"paragraph": {
"elements": [
{
"endIndex": 4925,
"startIndex": 4885,
"textRun": {
"content": "flutter create --empty patterns_codelab\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4885
}
],
"endIndex": 4925,
"startIndex": 4884,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 4927,
"paragraph": {
"elements": [
{
"endIndex": 4927,
"startIndex": 4926,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 4926
},
{
"endIndex": 4984,
"paragraph": {
"bullet": {
"listId": "kix.e7rm6cchwfxs",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 4942,
"startIndex": 4927,
"textRun": {
"content": "Then, open the ",
"textStyle": {}
}
},
{
"endIndex": 4958,
"startIndex": 4942,
"textRun": {
"content": "patterns_codelab",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.21960784,
"green": 0.5019608,
"red": 0.09411765
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 4983,
"startIndex": 4958,
"textRun": {
"content": " directory using VS Code.",
"textStyle": {}
}
},
{
"endIndex": 4984,
"startIndex": 4983,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4927
},
{
"endIndex": 5010,
"startIndex": 4984,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 5009,
"startIndex": 4985,
"tableCells": [
{
"content": [
{
"endIndex": 5009,
"paragraph": {
"elements": [
{
"endIndex": 5009,
"startIndex": 4987,
"textRun": {
"content": "code patterns_codelab\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4987
}
],
"endIndex": 5009,
"startIndex": 4986,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 5012,
"paragraph": {
"elements": [
{
"endIndex": 5011,
"inlineObjectElement": {
"inlineObjectId": "kix.qfmyzzrv0fkx",
"textStyle": {
"italic": true
}
},
"startIndex": 5010
},
{
"endIndex": 5012,
"startIndex": 5011,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 5.0,
"unit": "PT"
}
}
},
"startIndex": 5010
},
{
"endIndex": 5040,
"paragraph": {
"elements": [
{
"endIndex": 5040,
"startIndex": 5012,
"textRun": {
"content": "Set the minimum SDK version\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.fn7r4ym5936q",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 5012
},
{
"endIndex": 5118,
"paragraph": {
"bullet": {
"listId": "kix.odzjfc6rqek1",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 5118,
"startIndex": 5040,
"textRun": {
"content": "Set the SDK version constraint for your project to depend on Dart 3 or above.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5040
},
{
"endIndex": 5131,
"paragraph": {
"elements": [
{
"endIndex": 5130,
"startIndex": 5118,
"textRun": {
"content": "pubspec.yaml",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/dart-patterns-and-records/step_03/pubspec.yaml"
},
"underline": true
}
}
},
{
"endIndex": 5131,
"startIndex": 5130,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.wxfg1yyhggp8",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 5118
},
{
"endIndex": 5162,
"startIndex": 5131,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 5161,
"startIndex": 5132,
"tableCells": [
{
"content": [
{
"endIndex": 5147,
"paragraph": {
"elements": [
{
"endIndex": 5147,
"startIndex": 5134,
"textRun": {
"content": "environment:\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5134
},
{
"endIndex": 5161,
"paragraph": {
"elements": [
{
"endIndex": 5161,
"startIndex": 5147,
"textRun": {
"content": " sdk: ^3.0.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5147
}
],
"endIndex": 5161,
"startIndex": 5133,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 5163,
"paragraph": {
"elements": [
{
"endIndex": 5163,
"startIndex": 5162,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 5162
},
{
"endIndex": 5391,
"startIndex": 5163,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 5390,
"startIndex": 5164,
"tableCells": [
{
"content": [
{
"endIndex": 5390,
"paragraph": {
"elements": [
{
"endIndex": 5180,
"startIndex": 5166,
"textRun": {
"content": "Did you know? ",
"textStyle": {
"bold": true
}
}
},
{
"endIndex": 5192,
"startIndex": 5180,
"textRun": {
"content": "This is your",
"textStyle": {}
}
},
{
"endIndex": 5233,
"startIndex": 5192,
"textRun": {
"content": " first introduction to Dart 3! The caret ",
"textStyle": {}
}
},
{
"endIndex": 5234,
"startIndex": 5233,
"textRun": {
"content": "^",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 5374,
"startIndex": 5234,
"textRun": {
"content": " syntax can now be used for SDK constraints (although it has been supported for packages since Dart 1.8). Previously, this would be written ",
"textStyle": {}
}
},
{
"endIndex": 5388,
"startIndex": 5374,
"textRun": {
"content": ">=3.0.0 <4.0.0",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 5389,
"startIndex": 5388,
"textRun": {
"content": ".",
"textStyle": {}
}
},
{
"endIndex": 5390,
"startIndex": 5389,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5166
}
],
"endIndex": 5390,
"startIndex": 5165,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.827451,
"green": 0.91764706,
"red": 0.8509804
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 5410,
"paragraph": {
"elements": [
{
"endIndex": 5409,
"startIndex": 5391,
"textRun": {
"content": "Set up the project",
"textStyle": {}
}
},
{
"endIndex": 5410,
"startIndex": 5409,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.tofj7jijs3a4",
"namedStyleType": "HEADING_1"
}
},
"startIndex": 5391
},
{
"endIndex": 5425,
"paragraph": {
"elements": [
{
"endIndex": 5424,
"startIndex": 5410,
"textRun": {
"content": "Duration: 3:00",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 5425,
"startIndex": 5424,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 5410
},
{
"endIndex": 5426,
"paragraph": {
"elements": [
{
"endIndex": 5426,
"startIndex": 5425,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 5425
},
{
"endIndex": 5477,
"paragraph": {
"elements": [
{
"endIndex": 5477,
"startIndex": 5426,
"textRun": {
"content": "In this step, you create or update two Dart files:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 5426
},
{
"endIndex": 5535,
"paragraph": {
"bullet": {
"listId": "kix.tjxkb9tlcarv",
"textStyle": {}
},
"elements": [
{
"endIndex": 5481,
"startIndex": 5477,
"textRun": {
"content": "The ",
"textStyle": {}
}
},
{
"endIndex": 5490,
"startIndex": 5481,
"textRun": {
"content": "main.dart",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 5535,
"startIndex": 5490,
"textRun": {
"content": " file that contains widgets for the app, and\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5477
},
{
"endIndex": 5584,
"paragraph": {
"bullet": {
"listId": "kix.tjxkb9tlcarv",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 5539,
"startIndex": 5535,
"textRun": {
"content": "The ",
"textStyle": {}
}
},
{
"endIndex": 5548,
"startIndex": 5539,
"textRun": {
"content": "data.dart",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 5584,
"startIndex": 5548,
"textRun": {
"content": " file that provides the app's data.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5535
},
{
"endIndex": 5585,
"paragraph": {
"elements": [
{
"endIndex": 5585,
"startIndex": 5584,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 5584
},
{
"endIndex": 5658,
"paragraph": {
"elements": [
{
"endIndex": 5658,
"startIndex": 5585,
"textRun": {
"content": "You will continue modifying both of these files in the subsequent steps.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 5585
},
{
"endIndex": 5686,
"paragraph": {
"elements": [
{
"endIndex": 5685,
"startIndex": 5658,
"textRun": {
"content": "Define the data for the app",
"textStyle": {}
}
},
{
"endIndex": 5686,
"startIndex": 5685,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.al2qhdvxmiug",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 5658
},
{
"endIndex": 5754,
"paragraph": {
"bullet": {
"listId": "kix.sjzj7ysn5gcf",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 5705,
"startIndex": 5686,
"textRun": {
"content": "Create a new file, ",
"textStyle": {}
}
},
{
"endIndex": 5718,
"startIndex": 5705,
"textRun": {
"content": "lib/data.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.21960784,
"green": 0.5019608,
"red": 0.09411765
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 5719,
"startIndex": 5718,
"textRun": {
"content": ",",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.21960784,
"green": 0.5019608,
"red": 0.09411765
}
}
}
}
}
},
{
"endIndex": 5753,
"startIndex": 5719,
"textRun": {
"content": " and add the following code to it:",
"textStyle": {}
}
},
{
"endIndex": 5754,
"startIndex": 5753,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5686
},
{
"endIndex": 5768,
"paragraph": {
"elements": [
{
"endIndex": 5767,
"startIndex": 5754,
"textRun": {
"content": "lib/data.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/dart-patterns-and-records/step_04/lib/data.dart"
},
"underline": true
}
}
},
{
"endIndex": 5768,
"startIndex": 5767,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.re3z7mxbljy8",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 5754
},
{
"endIndex": 6286,
"startIndex": 5768,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 6285,
"startIndex": 5769,
"tableCells": [
{
"content": [
{
"endIndex": 5794,
"paragraph": {
"elements": [
{
"endIndex": 5794,
"startIndex": 5771,
"textRun": {
"content": "import 'dart:convert';\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5771
},
{
"endIndex": 5795,
"paragraph": {
"elements": [
{
"endIndex": 5795,
"startIndex": 5794,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5794
},
{
"endIndex": 5812,
"paragraph": {
"elements": [
{
"endIndex": 5812,
"startIndex": 5795,
"textRun": {
"content": "class Document {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5795
},
{
"endIndex": 5848,
"paragraph": {
"elements": [
{
"endIndex": 5848,
"startIndex": 5812,
"textRun": {
"content": " final Map<String, Object?> _json;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5812
},
{
"endIndex": 5897,
"paragraph": {
"elements": [
{
"endIndex": 5897,
"startIndex": 5848,
"textRun": {
"content": " Document() : _json = jsonDecode(documentJson);\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5848
},
{
"endIndex": 5899,
"paragraph": {
"elements": [
{
"endIndex": 5899,
"startIndex": 5897,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5897
},
{
"endIndex": 5900,
"paragraph": {
"elements": [
{
"endIndex": 5900,
"startIndex": 5899,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5899
},
{
"endIndex": 5925,
"paragraph": {
"elements": [
{
"endIndex": 5925,
"startIndex": 5900,
"textRun": {
"content": "const documentJson = '''\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5900
},
{
"endIndex": 5927,
"paragraph": {
"elements": [
{
"endIndex": 5927,
"startIndex": 5925,
"textRun": {
"content": "{\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5925
},
{
"endIndex": 5943,
"paragraph": {
"elements": [
{
"endIndex": 5943,
"startIndex": 5927,
"textRun": {
"content": " \"metadata\": {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5927
},
{
"endIndex": 5971,
"paragraph": {
"elements": [
{
"endIndex": 5971,
"startIndex": 5943,
"textRun": {
"content": " \"title\": \"My Document\",\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5943
},
{
"endIndex": 6000,
"paragraph": {
"elements": [
{
"endIndex": 6000,
"startIndex": 5971,
"textRun": {
"content": " \"modified\": \"2023-05-10\"\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5971
},
{
"endIndex": 6005,
"paragraph": {
"elements": [
{
"endIndex": 6005,
"startIndex": 6000,
"textRun": {
"content": " },\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6000
},
{
"endIndex": 6019,
"paragraph": {
"elements": [
{
"endIndex": 6019,
"startIndex": 6005,
"textRun": {
"content": " \"blocks\": [\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6005
},
{
"endIndex": 6025,
"paragraph": {
"elements": [
{
"endIndex": 6025,
"startIndex": 6019,
"textRun": {
"content": " {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6019
},
{
"endIndex": 6045,
"paragraph": {
"elements": [
{
"endIndex": 6045,
"startIndex": 6025,
"textRun": {
"content": " \"type\": \"h1\",\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6025
},
{
"endIndex": 6071,
"paragraph": {
"elements": [
{
"endIndex": 6071,
"startIndex": 6045,
"textRun": {
"content": " \"text\": \"Chapter 1\"\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6045
},
{
"endIndex": 6078,
"paragraph": {
"elements": [
{
"endIndex": 6078,
"startIndex": 6071,
"textRun": {
"content": " },\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6071
},
{
"endIndex": 6084,
"paragraph": {
"elements": [
{
"endIndex": 6084,
"startIndex": 6078,
"textRun": {
"content": " {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6078
},
{
"endIndex": 6103,
"paragraph": {
"elements": [
{
"endIndex": 6103,
"startIndex": 6084,
"textRun": {
"content": " \"type\": \"p\",\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6084
},
{
"endIndex": 6176,
"paragraph": {
"elements": [
{
"endIndex": 6176,
"startIndex": 6103,
"textRun": {
"content": " \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\"\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6103
},
{
"endIndex": 6183,
"paragraph": {
"elements": [
{
"endIndex": 6183,
"startIndex": 6176,
"textRun": {
"content": " },\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6176
},
{
"endIndex": 6189,
"paragraph": {
"elements": [
{
"endIndex": 6189,
"startIndex": 6183,
"textRun": {
"content": " {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6183
},
{
"endIndex": 6215,
"paragraph": {
"elements": [
{
"endIndex": 6215,
"startIndex": 6189,
"textRun": {
"content": " \"type\": \"checkbox\",\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6189
},
{
"endIndex": 6239,
"paragraph": {
"elements": [
{
"endIndex": 6239,
"startIndex": 6215,
"textRun": {
"content": " \"checked\": false,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6215
},
{
"endIndex": 6268,
"paragraph": {
"elements": [
{
"endIndex": 6268,
"startIndex": 6239,
"textRun": {
"content": " \"text\": \"Learn Dart 3\"\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6239
},
{
"endIndex": 6274,
"paragraph": {
"elements": [
{
"endIndex": 6274,
"startIndex": 6268,
"textRun": {
"content": " }\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6268
},
{
"endIndex": 6278,
"paragraph": {
"elements": [
{
"endIndex": 6278,
"startIndex": 6274,
"textRun": {
"content": " ]\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6274
},
{
"endIndex": 6280,
"paragraph": {
"elements": [
{
"endIndex": 6280,
"startIndex": 6278,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6278
},
{
"endIndex": 6285,
"paragraph": {
"elements": [
{
"endIndex": 6285,
"startIndex": 6280,
"textRun": {
"content": "''';\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6280
}
],
"endIndex": 6285,
"startIndex": 5770,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 6287,
"paragraph": {
"elements": [
{
"endIndex": 6287,
"startIndex": 6286,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 6286
},
{
"endIndex": 6525,
"paragraph": {
"elements": [
{
"endIndex": 6502,
"startIndex": 6287,
"textRun": {
"content": "Imagine a program receiving data from an external source, like an I/O stream or HTTP request. In this codelab, you simplify that more-realistic use case by mocking incoming JSON data with a multi-line string in the ",
"textStyle": {}
}
},
{
"endIndex": 6514,
"startIndex": 6502,
"textRun": {
"content": "documentJson",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 6525,
"startIndex": 6514,
"textRun": {
"content": " variable.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 6287
},
{
"endIndex": 6526,
"paragraph": {
"elements": [
{
"endIndex": 6526,
"startIndex": 6525,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 6525
},
{
"endIndex": 6729,
"paragraph": {
"elements": [
{
"endIndex": 6558,
"startIndex": 6526,
"textRun": {
"content": "The JSON data is defined in the ",
"textStyle": {}
}
},
{
"endIndex": 6566,
"startIndex": 6558,
"textRun": {
"content": "Document",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 6681,
"startIndex": 6566,
"textRun": {
"content": " class, and later in this codelab, you add functions that return data from the parsed JSON. This class defines and ",
"textStyle": {}
}
},
{
"endIndex": 6692,
"startIndex": 6681,
"textRun": {
"content": "initializes",
"textStyle": {}
}
},
{
"endIndex": 6697,
"startIndex": 6692,
"textRun": {
"content": " the ",
"textStyle": {}
}
},
{
"endIndex": 6702,
"startIndex": 6697,
"textRun": {
"content": "_json",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 6709,
"startIndex": 6702,
"textRun": {
"content": " field ",
"textStyle": {}
}
},
{
"endIndex": 6728,
"startIndex": 6709,
"textRun": {
"content": "in its constructor.",
"textStyle": {}
}
},
{
"endIndex": 6729,
"startIndex": 6728,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 6526
},
{
"endIndex": 6730,
"paragraph": {
"elements": [
{
"endIndex": 6730,
"startIndex": 6729,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 6729
},
{
"endIndex": 6973,
"startIndex": 6730,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 6972,
"startIndex": 6731,
"tableCells": [
{
"content": [
{
"endIndex": 6870,
"paragraph": {
"elements": [
{
"endIndex": 6747,
"startIndex": 6733,
"textRun": {
"content": "Did you know? ",
"textStyle": {
"bold": true
}
}
},
{
"endIndex": 6761,
"startIndex": 6747,
"textRun": {
"content": "You can press ",
"textStyle": {}
}
},
{
"endIndex": 6768,
"startIndex": 6761,
"textRun": {
"content": "Command",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 6772,
"startIndex": 6768,
"textRun": {
"content": " or ",
"textStyle": {}
}
},
{
"endIndex": 6779,
"startIndex": 6772,
"textRun": {
"content": "Control",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 6870,
"startIndex": 6779,
"textRun": {
"content": " and click on functions, classes, and libraries in VS Code to see where they are defined.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6733
},
{
"endIndex": 6871,
"paragraph": {
"elements": [
{
"endIndex": 6871,
"startIndex": 6870,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6870
},
{
"endIndex": 6972,
"paragraph": {
"elements": [
{
"endIndex": 6889,
"startIndex": 6871,
"textRun": {
"content": "Try doing this on ",
"textStyle": {}
}
},
{
"endIndex": 6899,
"startIndex": 6889,
"textRun": {
"content": "jsonDecode",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 6950,
"startIndex": 6899,
"textRun": {
"content": " and see the editor open to the declaration in the ",
"textStyle": {}
}
},
{
"endIndex": 6962,
"startIndex": 6950,
"textRun": {
"content": "dart:convert",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 6972,
"startIndex": 6962,
"textRun": {
"content": " library.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6871
}
],
"endIndex": 6972,
"startIndex": 6732,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.827451,
"green": 0.91764706,
"red": 0.8509804
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 6974,
"paragraph": {
"elements": [
{
"endIndex": 6974,
"startIndex": 6973,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 6973
},
{
"endIndex": 6986,
"paragraph": {
"elements": [
{
"endIndex": 6985,
"startIndex": 6974,
"textRun": {
"content": "Run the app",
"textStyle": {}
}
},
{
"endIndex": 6986,
"startIndex": 6985,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.k5wrikjay60s",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 6974
},
{
"endIndex": 6987,
"paragraph": {
"elements": [
{
"endIndex": 6987,
"startIndex": 6986,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 6986
},
{
"endIndex": 7092,
"paragraph": {
"elements": [
{
"endIndex": 6991,
"startIndex": 6987,
"textRun": {
"content": "The ",
"textStyle": {}
}
},
{
"endIndex": 7005,
"startIndex": 6991,
"textRun": {
"content": "flutter create",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
},
{
"endIndex": 7026,
"startIndex": 7005,
"textRun": {
"content": " command creates the ",
"textStyle": {}
}
},
{
"endIndex": 7030,
"startIndex": 7026,
"textRun": {
"content": "lib/",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 7039,
"startIndex": 7030,
"textRun": {
"content": "main.dart",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 7040,
"startIndex": 7039,
"textRun": {
"content": " ",
"textStyle": {}
}
},
{
"endIndex": 7044,
"startIndex": 7040,
"textRun": {
"content": "file",
"textStyle": {}
}
},
{
"endIndex": 7092,
"startIndex": 7044,
"textRun": {
"content": " as part of the default Flutter file structure.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 6987
},
{
"endIndex": 7093,
"paragraph": {
"elements": [
{
"endIndex": 7093,
"startIndex": 7092,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 7092
},
{
"endIndex": 7200,
"paragraph": {
"bullet": {
"listId": "kix.ibwufjck5e1",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 7094,
"startIndex": 7093,
"textRun": {
"content": "T",
"textStyle": {}
}
},
{
"endIndex": 7142,
"startIndex": 7094,
"textRun": {
"content": "o create a starting point for the application, r",
"textStyle": {}
}
},
{
"endIndex": 7165,
"startIndex": 7142,
"textRun": {
"content": "eplace the contents of ",
"textStyle": {}
}
},
{
"endIndex": 7174,
"startIndex": 7165,
"textRun": {
"content": "main.dart",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 7199,
"startIndex": 7174,
"textRun": {
"content": " with the following code:",
"textStyle": {}
}
},
{
"endIndex": 7200,
"startIndex": 7199,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 7093
},
{
"endIndex": 7201,
"paragraph": {
"elements": [
{
"endIndex": 7201,
"startIndex": 7200,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 7200
},
{
"endIndex": 7215,
"paragraph": {
"elements": [
{
"endIndex": 7214,
"startIndex": 7201,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/dart-patterns-and-records/step_04/lib/main.dart"
},
"underline": true
}
}
},
{
"endIndex": 7215,
"startIndex": 7214,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.pfkw4b2rwt18",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 7201
},
{
"endIndex": 8060,
"startIndex": 7215,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 8059,
"startIndex": 7216,
"tableCells": [
{
"content": [
{
"endIndex": 7258,
"paragraph": {
"elements": [
{
"endIndex": 7258,
"startIndex": 7218,
"textRun": {
"content": "import 'package:flutter/material.dart';\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7218
},
{
"endIndex": 7259,
"paragraph": {
"elements": [
{
"endIndex": 7259,
"startIndex": 7258,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7258
},
{
"endIndex": 7279,
"paragraph": {
"elements": [
{
"endIndex": 7279,
"startIndex": 7259,
"textRun": {
"content": "import 'data.dart';\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7259
},
{
"endIndex": 7280,
"paragraph": {
"elements": [
{
"endIndex": 7280,
"startIndex": 7279,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7279
},
{
"endIndex": 7294,
"paragraph": {
"elements": [
{
"endIndex": 7294,
"startIndex": 7280,
"textRun": {
"content": "void main() {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7280
},
{
"endIndex": 7325,
"paragraph": {
"elements": [
{
"endIndex": 7325,
"startIndex": 7294,
"textRun": {
"content": " runApp(const DocumentApp());\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7294
},
{
"endIndex": 7327,
"paragraph": {
"elements": [
{
"endIndex": 7327,
"startIndex": 7325,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7325
},
{
"endIndex": 7328,
"paragraph": {
"elements": [
{
"endIndex": 7328,
"startIndex": 7327,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7327
},
{
"endIndex": 7372,
"paragraph": {
"elements": [
{
"endIndex": 7372,
"startIndex": 7328,
"textRun": {
"content": "class DocumentApp extends StatelessWidget {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7328
},
{
"endIndex": 7406,
"paragraph": {
"elements": [
{
"endIndex": 7406,
"startIndex": 7372,
"textRun": {
"content": " const DocumentApp({super.key});\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7372
},
{
"endIndex": 7407,
"paragraph": {
"elements": [
{
"endIndex": 7407,
"startIndex": 7406,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7406
},
{
"endIndex": 7419,
"paragraph": {
"elements": [
{
"endIndex": 7419,
"startIndex": 7407,
"textRun": {
"content": " @override\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7407
},
{
"endIndex": 7458,
"paragraph": {
"elements": [
{
"endIndex": 7458,
"startIndex": 7419,
"textRun": {
"content": " Widget build(BuildContext context) {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7419
},
{
"endIndex": 7482,
"paragraph": {
"elements": [
{
"endIndex": 7482,
"startIndex": 7458,
"textRun": {
"content": " return MaterialApp(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7458
},
{
"endIndex": 7526,
"paragraph": {
"elements": [
{
"endIndex": 7526,
"startIndex": 7482,
"textRun": {
"content": " theme: ThemeData(useMaterial3: true),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7482
},
{
"endIndex": 7554,
"paragraph": {
"elements": [
{
"endIndex": 7554,
"startIndex": 7526,
"textRun": {
"content": " home: DocumentScreen(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7526
},
{
"endIndex": 7584,
"paragraph": {
"elements": [
{
"endIndex": 7584,
"startIndex": 7554,
"textRun": {
"content": " document: Document(),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7554
},
{
"endIndex": 7593,
"paragraph": {
"elements": [
{
"endIndex": 7593,
"startIndex": 7584,
"textRun": {
"content": " ),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7584
},
{
"endIndex": 7600,
"paragraph": {
"elements": [
{
"endIndex": 7600,
"startIndex": 7593,
"textRun": {
"content": " );\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7593
},
{
"endIndex": 7604,
"paragraph": {
"elements": [
{
"endIndex": 7604,
"startIndex": 7600,
"textRun": {
"content": " }\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7600
},
{
"endIndex": 7606,
"paragraph": {
"elements": [
{
"endIndex": 7606,
"startIndex": 7604,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7604
},
{
"endIndex": 7607,
"paragraph": {
"elements": [
{
"endIndex": 7607,
"startIndex": 7606,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7606
},
{
"endIndex": 7654,
"paragraph": {
"elements": [
{
"endIndex": 7654,
"startIndex": 7607,
"textRun": {
"content": "class DocumentScreen extends StatelessWidget {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7607
},
{
"endIndex": 7681,
"paragraph": {
"elements": [
{
"endIndex": 7681,
"startIndex": 7654,
"textRun": {
"content": " final Document document;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7654
},
{
"endIndex": 7682,
"paragraph": {
"elements": [
{
"endIndex": 7682,
"startIndex": 7681,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7681
},
{
"endIndex": 7707,
"paragraph": {
"elements": [
{
"endIndex": 7707,
"startIndex": 7682,
"textRun": {
"content": " const DocumentScreen({\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7682
},
{
"endIndex": 7735,
"paragraph": {
"elements": [
{
"endIndex": 7735,
"startIndex": 7707,
"textRun": {
"content": " required this.document,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7707
},
{
"endIndex": 7750,
"paragraph": {
"elements": [
{
"endIndex": 7750,
"startIndex": 7735,
"textRun": {
"content": " super.key,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7735
},
{
"endIndex": 7756,
"paragraph": {
"elements": [
{
"endIndex": 7756,
"startIndex": 7750,
"textRun": {
"content": " });\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7750
},
{
"endIndex": 7757,
"paragraph": {
"elements": [
{
"endIndex": 7757,
"startIndex": 7756,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7756
},
{
"endIndex": 7769,
"paragraph": {
"elements": [
{
"endIndex": 7769,
"startIndex": 7757,
"textRun": {
"content": " @override\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7757
},
{
"endIndex": 7808,
"paragraph": {
"elements": [
{
"endIndex": 7808,
"startIndex": 7769,
"textRun": {
"content": " Widget build(BuildContext context) {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7769
},
{
"endIndex": 7829,
"paragraph": {
"elements": [
{
"endIndex": 7829,
"startIndex": 7808,
"textRun": {
"content": " return Scaffold(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7808
},
{
"endIndex": 7851,
"paragraph": {
"elements": [
{
"endIndex": 7851,
"startIndex": 7829,
"textRun": {
"content": " appBar: AppBar(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7829
},
{
"endIndex": 7897,
"paragraph": {
"elements": [
{
"endIndex": 7897,
"startIndex": 7851,
"textRun": {
"content": " title: const Text('Title goes here'),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7851
},
{
"endIndex": 7906,
"paragraph": {
"elements": [
{
"endIndex": 7906,
"startIndex": 7897,
"textRun": {
"content": " ),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7897
},
{
"endIndex": 7932,
"paragraph": {
"elements": [
{
"endIndex": 7932,
"startIndex": 7906,
"textRun": {
"content": " body: const Column(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7906
},
{
"endIndex": 7952,
"paragraph": {
"elements": [
{
"endIndex": 7952,
"startIndex": 7932,
"textRun": {
"content": " children: [\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7932
},
{
"endIndex": 7970,
"paragraph": {
"elements": [
{
"endIndex": 7970,
"startIndex": 7952,
"textRun": {
"content": " Center(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7952
},
{
"endIndex": 8013,
"paragraph": {
"elements": [
{
"endIndex": 8013,
"startIndex": 7970,
"textRun": {
"content": " child: Text('Body goes here'),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7970
},
{
"endIndex": 8026,
"paragraph": {
"elements": [
{
"endIndex": 8026,
"startIndex": 8013,
"textRun": {
"content": " ),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8013
},
{
"endIndex": 8037,
"paragraph": {
"elements": [
{
"endIndex": 8037,
"startIndex": 8026,
"textRun": {
"content": " ],\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8026
},
{
"endIndex": 8046,
"paragraph": {
"elements": [
{
"endIndex": 8046,
"startIndex": 8037,
"textRun": {
"content": " ),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8037
},
{
"endIndex": 8053,
"paragraph": {
"elements": [
{
"endIndex": 8053,
"startIndex": 8046,
"textRun": {
"content": " );\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8046
},
{
"endIndex": 8057,
"paragraph": {
"elements": [
{
"endIndex": 8057,
"startIndex": 8053,
"textRun": {
"content": " }\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8053
},
{
"endIndex": 8059,
"paragraph": {
"elements": [
{
"endIndex": 8058,
"startIndex": 8057,
"textRun": {
"content": "}",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 8059,
"startIndex": 8058,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8057
}
],
"endIndex": 8059,
"startIndex": 7217,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 8061,
"paragraph": {
"elements": [
{
"endIndex": 8061,
"startIndex": 8060,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8060
},
{
"endIndex": 8109,
"paragraph": {
"elements": [
{
"endIndex": 8109,
"startIndex": 8061,
"textRun": {
"content": "You added the following two widgets to the app:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8061
},
{
"endIndex": 8187,
"paragraph": {
"bullet": {
"listId": "kix.enu2fgnbdejh",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 8120,
"startIndex": 8109,
"textRun": {
"content": "DocumentApp",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 8151,
"startIndex": 8120,
"textRun": {
"content": " sets up the latest version of ",
"textStyle": {}
}
},
{
"endIndex": 8166,
"startIndex": 8151,
"textRun": {
"content": "Material Design",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://docs.flutter.dev/development/ui/material"
},
"underline": true
}
}
},
{
"endIndex": 8187,
"startIndex": 8166,
"textRun": {
"content": " for theming the UI.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8109
},
{
"endIndex": 8269,
"paragraph": {
"bullet": {
"listId": "kix.enu2fgnbdejh",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 8201,
"startIndex": 8187,
"textRun": {
"content": "DocumentScreen",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 8251,
"startIndex": 8201,
"textRun": {
"content": " provides the visual layout of the page using the ",
"textStyle": {}
}
},
{
"endIndex": 8259,
"startIndex": 8251,
"textRun": {
"content": "Scaffold",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 8266,
"startIndex": 8259,
"textRun": {
"content": " widget",
"textStyle": {}
}
},
{
"endIndex": 8269,
"startIndex": 8266,
"textRun": {
"content": ". \n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8187
},
{
"endIndex": 8270,
"paragraph": {
"elements": [
{
"endIndex": 8270,
"startIndex": 8269,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8269
},
{
"endIndex": 8361,
"startIndex": 8270,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 8360,
"startIndex": 8271,
"tableCells": [
{
"content": [
{
"endIndex": 8360,
"paragraph": {
"elements": [
{
"endIndex": 8278,
"startIndex": 8273,
"textRun": {
"content": "Tip: ",
"textStyle": {
"bold": true
}
}
},
{
"endIndex": 8292,
"startIndex": 8278,
"textRun": {
"content": "Splitting your",
"textStyle": {}
}
},
{
"endIndex": 8343,
"startIndex": 8292,
"textRun": {
"content": " UI into separate widgets reduces the size of your ",
"textStyle": {}
}
},
{
"endIndex": 8350,
"startIndex": 8343,
"textRun": {
"content": "build()",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 8360,
"startIndex": 8350,
"textRun": {
"content": " methods.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8273
}
],
"endIndex": 8360,
"startIndex": 8272,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.827451,
"green": 0.91764706,
"red": 0.8509804
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 8362,
"paragraph": {
"elements": [
{
"endIndex": 8362,
"startIndex": 8361,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8361
},
{
"endIndex": 8467,
"paragraph": {
"bullet": {
"listId": "kix.ibwufjck5e1",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 8452,
"startIndex": 8362,
"textRun": {
"content": "To make sure everything is running smoothly, run the app on your host machine by clicking ",
"textStyle": {}
}
},
{
"endIndex": 8465,
"startIndex": 8452,
"textRun": {
"content": "Run and Debug",
"textStyle": {
"bold": true
}
}
},
{
"endIndex": 8467,
"startIndex": 8465,
"textRun": {
"content": ":\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8362
},
{
"endIndex": 8468,
"paragraph": {
"elements": [
{
"endIndex": 8468,
"startIndex": 8467,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8467
},
{
"endIndex": 8470,
"paragraph": {
"elements": [
{
"endIndex": 8469,
"inlineObjectElement": {
"inlineObjectId": "kix.nsv6tkuk1bk8",
"textStyle": {}
},
"startIndex": 8468
},
{
"endIndex": 8470,
"startIndex": 8469,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8468
},
{
"endIndex": 8471,
"paragraph": {
"elements": [
{
"endIndex": 8471,
"startIndex": 8470,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8470
},
{
"endIndex": 8617,
"paragraph": {
"bullet": {
"listId": "kix.ibwufjck5e1",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 8617,
"startIndex": 8471,
"textRun": {
"content": "By default, Flutter chooses whichever target platform is available. To change the target platform, select the current platform on the Status Bar:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8471
},
{
"endIndex": 8618,
"paragraph": {
"elements": [
{
"endIndex": 8618,
"startIndex": 8617,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8617
},
{
"endIndex": 8620,
"paragraph": {
"elements": [
{
"endIndex": 8619,
"inlineObjectElement": {
"inlineObjectId": "kix.zbxtro32lc4c",
"textStyle": {}
},
"startIndex": 8618
},
{
"endIndex": 8620,
"startIndex": 8619,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8618
},
{
"endIndex": 8621,
"paragraph": {
"elements": [
{
"endIndex": 8621,
"startIndex": 8620,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8620
},
{
"endIndex": 8722,
"paragraph": {
"elements": [
{
"endIndex": 8660,
"startIndex": 8621,
"textRun": {
"content": "You should see an empty frame with the ",
"textStyle": {}
}
},
{
"endIndex": 8665,
"startIndex": 8660,
"textRun": {
"content": "title",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 8670,
"startIndex": 8665,
"textRun": {
"content": " and ",
"textStyle": {}
}
},
{
"endIndex": 8674,
"startIndex": 8670,
"textRun": {
"content": "body",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 8699,
"startIndex": 8674,
"textRun": {
"content": " elements defined in the ",
"textStyle": {}
}
},
{
"endIndex": 8713,
"startIndex": 8699,
"textRun": {
"content": "DocumentScreen",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 8722,
"startIndex": 8713,
"textRun": {
"content": " widget:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8621
},
{
"endIndex": 8723,
"paragraph": {
"elements": [
{
"endIndex": 8723,
"startIndex": 8722,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8722
},
{
"endIndex": 8725,
"paragraph": {
"elements": [
{
"endIndex": 8724,
"inlineObjectElement": {
"inlineObjectId": "kix.bmryu6vhq6z",
"textStyle": {
"italic": true
}
},
"startIndex": 8723
},
{
"endIndex": 8725,
"startIndex": 8724,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8723
},
{
"endIndex": 8751,
"paragraph": {
"elements": [
{
"endIndex": 8750,
"startIndex": 8725,
"textRun": {
"content": "Create and return records",
"textStyle": {}
}
},
{
"endIndex": 8751,
"startIndex": 8750,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.3kiny5cugr9k",
"namedStyleType": "HEADING_1"
}
},
"startIndex": 8725
},
{
"endIndex": 8766,
"paragraph": {
"elements": [
{
"endIndex": 8765,
"startIndex": 8751,
"textRun": {
"content": "Duration: 3:00",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 8766,
"startIndex": 8765,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8751
},
{
"endIndex": 8767,
"paragraph": {
"elements": [
{
"endIndex": 8767,
"startIndex": 8766,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8766
},
{
"endIndex": 8952,
"paragraph": {
"elements": [
{
"endIndex": 8781,
"startIndex": 8767,
"textRun": {
"content": "In this step, ",
"textStyle": {}
}
},
{
"endIndex": 8844,
"startIndex": 8781,
"textRun": {
"content": "you use records to return multiple values from a function call.",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 8881,
"startIndex": 8844,
"textRun": {
"content": " Then, you call that function in the ",
"textStyle": {}
}
},
{
"endIndex": 8895,
"startIndex": 8881,
"textRun": {
"content": "DocumentScreen",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 8896,
"startIndex": 8895,
"textRun": {
"content": " ",
"textStyle": {}
}
},
{
"endIndex": 8952,
"startIndex": 8896,
"textRun": {
"content": "widget to access the values and reflect them in the UI.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8767
},
{
"endIndex": 8953,
"paragraph": {
"elements": [
{
"endIndex": 8953,
"startIndex": 8952,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8952
},
{
"endIndex": 8980,
"paragraph": {
"elements": [
{
"endIndex": 8979,
"startIndex": 8953,
"textRun": {
"content": "Create and return a record",
"textStyle": {}
}
},
{
"endIndex": 8980,
"startIndex": 8979,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.8sr849kjw46b",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 8953
},
{
"endIndex": 9079,
"paragraph": {
"bullet": {
"listId": "kix.crxhbxpwrhf5",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 8983,
"startIndex": 8980,
"textRun": {
"content": "In ",
"textStyle": {}
}
},
{
"endIndex": 8992,
"startIndex": 8983,
"textRun": {
"content": "data.dart",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 8997,
"startIndex": 8992,
"textRun": {
"content": ", add",
"textStyle": {}
}
},
{
"endIndex": 9040,
"startIndex": 8997,
"textRun": {
"content": " a new getter method to the Document class ",
"textStyle": {}
}
},
{
"endIndex": 9046,
"startIndex": 9040,
"textRun": {
"content": "called",
"textStyle": {}
}
},
{
"endIndex": 9047,
"startIndex": 9046,
"textRun": {
"content": " ",
"textStyle": {}
}
},
{
"endIndex": 9055,
"startIndex": 9047,
"textRun": {
"content": "metadata",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 9056,
"startIndex": 9055,
"textRun": {
"content": " ",
"textStyle": {}
}
},
{
"endIndex": 9078,
"startIndex": 9056,
"textRun": {
"content": "that returns a record:",
"textStyle": {}
}
},
{
"endIndex": 9079,
"startIndex": 9078,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8980
},
{
"endIndex": 9093,
"paragraph": {
"elements": [
{
"endIndex": 9092,
"startIndex": 9079,
"textRun": {
"content": "lib/data.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/dart-patterns-and-records/step_05/lib/data.dart"
},
"underline": true
}
}
},
{
"endIndex": 9093,
"startIndex": 9092,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.cvgunwoh6oqy",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 9079
},
{
"endIndex": 9473,
"startIndex": 9093,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 9472,
"startIndex": 9094,
"tableCells": [
{
"content": [
{
"endIndex": 9119,
"paragraph": {
"elements": [
{
"endIndex": 9119,
"startIndex": 9096,
"textRun": {
"content": "import 'dart:convert';\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9096
},
{
"endIndex": 9120,
"paragraph": {
"elements": [
{
"endIndex": 9120,
"startIndex": 9119,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9119
},
{
"endIndex": 9137,
"paragraph": {
"elements": [
{
"endIndex": 9137,
"startIndex": 9120,
"textRun": {
"content": "class Document {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9120
},
{
"endIndex": 9173,
"paragraph": {
"elements": [
{
"endIndex": 9173,
"startIndex": 9137,
"textRun": {
"content": " final Map<String, Object?> _json;\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9137
},
{
"endIndex": 9222,
"paragraph": {
"elements": [
{
"endIndex": 9222,
"startIndex": 9173,
"textRun": {
"content": " Document() : _json = jsonDecode(documentJson);\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9173
},
{
"endIndex": 9223,
"paragraph": {
"elements": [
{
"endIndex": 9223,
"startIndex": 9222,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9222
},
{
"endIndex": 9300,
"paragraph": {
"elements": [
{
"endIndex": 9300,
"startIndex": 9223,
"textRun": {
"content": " (String, {DateTime modified}) get metadata { // Add from here...\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9223
},
{
"endIndex": 9333,
"paragraph": {
"elements": [
{
"endIndex": 9333,
"startIndex": 9300,
"textRun": {
"content": " const title = 'My Document';\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9300
},
{
"endIndex": 9365,
"paragraph": {
"elements": [
{
"endIndex": 9365,
"startIndex": 9333,
"textRun": {
"content": " final now = DateTime.now();\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9333
},
{
"endIndex": 9366,
"paragraph": {
"elements": [
{
"endIndex": 9366,
"startIndex": 9365,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9365
},
{
"endIndex": 9401,
"paragraph": {
"elements": [
{
"endIndex": 9401,
"startIndex": 9366,
"textRun": {
"content": " return (title, modified: now);\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9366
},
{
"endIndex": 9470,
"paragraph": {
"elements": [
{
"endIndex": 9470,
"startIndex": 9401,
"textRun": {
"content": " } // to here.\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9401
},
{
"endIndex": 9472,
"paragraph": {
"elements": [
{
"endIndex": 9472,
"startIndex": 9470,
"textRun": {
"content": "}\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9470
}
],
"endIndex": 9472,
"startIndex": 9095,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 9474,
"paragraph": {
"elements": [
{
"endIndex": 9474,
"startIndex": 9473,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 9473
},
{
"endIndex": 9601,
"paragraph": {
"elements": [
{
"endIndex": 9555,
"startIndex": 9474,
"textRun": {
"content": "The return type for this function is a record with two fields, one with the type ",
"textStyle": {}
}
},
{
"endIndex": 9561,
"startIndex": 9555,
"textRun": {
"content": "String",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 9591,
"startIndex": 9561,
"textRun": {
"content": ", and the other with the type ",
"textStyle": {}
}
},
{
"endIndex": 9599,
"startIndex": 9591,
"textRun": {
"content": "DateTime",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 9601,
"startIndex": 9599,
"textRun": {
"content": ".\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 9474
},
{
"endIndex": 9602,
"paragraph": {
"elements": [
{
"endIndex": 9602,
"startIndex": 9601,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 9601
},
{
"endIndex": 9716,
"paragraph": {
"elements": [
{
"endIndex": 9692,
"startIndex": 9602,
"textRun": {
"content": "The return statement constructs a new record by enclosing the two values in parenthesis, ",
"textStyle": {}
}
},
{
"endIndex": 9714,
"startIndex": 9692,
"textRun": {
"content": "(title, modified: now)",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 9716,
"startIndex": 9714,
"textRun": {
"content": ".\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 9602
},
{
"endIndex": 9717,
"paragraph": {
"elements": [
{
"endIndex": 9717,
"startIndex": 9716,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 9716
},
{
"endIndex": 9800,
"paragraph": {
"elements": [
{
"endIndex": 9790,
"startIndex": 9717,
"textRun": {
"content": "The first field is positional and unnamed, and the second field is named ",
"textStyle": {}
}
},
{
"endIndex": 9798,
"startIndex": 9790,
"textRun": {
"content": "modified",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 9800,
"startIndex": 9798,
"textRun": {
"content": ".\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 9717
},
{
"endIndex": 9801,
"paragraph": {
"elements": [
{
"endIndex": 9801,
"startIndex": 9800,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 9800
},
{
"endIndex": 10161,
"startIndex": 9801,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 10160,
"startIndex": 9802,
"tableCells": [
{
"content": [
{
"endIndex": 9813,
"paragraph": {
"elements": [
{
"endIndex": 9813,
"startIndex": 9804,
"textRun": {
"content": "Summary:\n",
"textStyle": {
"bold": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 9804
},
{
"endIndex": 9878,
"paragraph": {
"bullet": {
"listId": "kix.y57tybes7g6b",
"textStyle": {}
},
"elements": [
{
"endIndex": 9878,
"startIndex": 9813,
"textRun": {
"content": "Records are comma-delimited field lists enclosed in parentheses.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9813
},
{
"endIndex": 9963,
"paragraph": {
"bullet": {
"listId": "kix.y57tybes7g6b",
"textStyle": {}
},
"elements": [
{
"endIndex": 9963,
"startIndex": 9878,
"textRun": {
"content": "Record fields can each have a different type, so records can collect multiple types.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9878
},
{
"endIndex": 10052,
"paragraph": {
"bullet": {
"listId": "kix.y57tybes7g6b",
"textStyle": {}
},
"elements": [
{
"endIndex": 10052,
"startIndex": 9963,
"textRun": {
"content": "Records can contain both named and positional fields, like argument lists in a function.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9963
},
{
"endIndex": 10160,
"paragraph": {
"bullet": {
"listId": "kix.y57tybes7g6b",
"textStyle": {}
},
"elements": [
{
"endIndex": 10160,
"startIndex": 10052,
"textRun": {
"content": "Records can be returned from a function, so they enable you to return multiple values from a function call.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10052
}
],
"endIndex": 10160,
"startIndex": 9803,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.827451,
"green": 0.91764706,
"red": 0.8509804
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 10182,
"paragraph": {
"elements": [
{
"endIndex": 10182,
"startIndex": 10161,
"textRun": {
"content": "Access record fields\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.m7t4gd6sit79",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 10161
},
{
"endIndex": 10319,
"paragraph": {
"bullet": {
"listId": "kix.cnamwo3k2086",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 10189,
"startIndex": 10182,
"textRun": {
"content": "In the ",
"textStyle": {}
}
},
{
"endIndex": 10203,
"startIndex": 10189,
"textRun": {
"content": "DocumentScreen",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 10221,
"startIndex": 10203,
"textRun": {
"content": " widget, call the ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 10229,
"startIndex": 10221,
"textRun": {
"content": "metadata",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 10244,
"startIndex": 10229,
"textRun": {
"content": " getter method ",
"textStyle": {}
}
},
{
"endIndex": 10251,
"startIndex": 10244,
"textRun": {
"content": "in the ",
"textStyle": {}
}
},
{
"endIndex": 10256,
"startIndex": 10251,
"textRun": {
"content": "build",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.21960784,
"green": 0.5019608,
"red": 0.09411765
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 10319,
"startIndex": 10256,
"textRun": {
"content": " method so that you can get your record and access its values:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10182
},
{
"endIndex": 10333,
"paragraph": {
"elements": [
{
"endIndex": 10332,
"startIndex": 10319,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/dart-patterns-and-records/step_05/lib/main.dart"
},
"underline": true
}
}
},
{
"endIndex": 10333,
"startIndex": 10332,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.6k8szvspvapq",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 10319
},
{
"endIndex": 10968,
"startIndex": 10333,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 10967,
"startIndex": 10334,
"tableCells": [
{
"content": [
{
"endIndex": 10383,
"paragraph": {
"elements": [
{
"endIndex": 10383,
"startIndex": 10336,
"textRun": {
"content": "class DocumentScreen extends StatelessWidget {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10336
},
{
"endIndex": 10410,
"paragraph": {
"elements": [
{
"endIndex": 10410,
"startIndex": 10383,
"textRun": {
"content": " final Document document;\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10383
},
{
"endIndex": 10411,
"paragraph": {
"elements": [
{
"endIndex": 10411,
"startIndex": 10410,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10410
},
{
"endIndex": 10436,
"paragraph": {
"elements": [
{
"endIndex": 10436,
"startIndex": 10411,
"textRun": {
"content": " const DocumentScreen({\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10411
},
{
"endIndex": 10464,
"paragraph": {
"elements": [
{
"endIndex": 10464,
"startIndex": 10436,
"textRun": {
"content": " required this.document,\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10436
},
{
"endIndex": 10479,
"paragraph": {
"elements": [
{
"endIndex": 10479,
"startIndex": 10464,
"textRun": {
"content": " super.key,\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10464
},
{
"endIndex": 10485,
"paragraph": {
"elements": [
{
"endIndex": 10485,
"startIndex": 10479,
"textRun": {
"content": " });\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10479
},
{
"endIndex": 10486,
"paragraph": {
"elements": [
{
"endIndex": 10486,
"startIndex": 10485,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10485
},
{
"endIndex": 10498,
"paragraph": {
"elements": [
{
"endIndex": 10498,
"startIndex": 10486,
"textRun": {
"content": " @override\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10486
},
{
"endIndex": 10537,
"paragraph": {
"elements": [
{
"endIndex": 10537,
"startIndex": 10498,
"textRun": {
"content": " Widget build(BuildContext context) {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10498
},
{
"endIndex": 10614,
"paragraph": {
"elements": [
{
"endIndex": 10614,
"startIndex": 10537,
"textRun": {
"content": " final metadataRecord = document.metadata; // Add this line.\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10537
},
{
"endIndex": 10615,
"paragraph": {
"elements": [
{
"endIndex": 10615,
"startIndex": 10614,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10614
},
{
"endIndex": 10636,
"paragraph": {
"elements": [
{
"endIndex": 10636,
"startIndex": 10615,
"textRun": {
"content": " return Scaffold(\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10615
},
{
"endIndex": 10658,
"paragraph": {
"elements": [
{
"endIndex": 10658,
"startIndex": 10636,
"textRun": {
"content": " appBar: AppBar(\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10636
},
{
"endIndex": 10738,
"paragraph": {
"elements": [
{
"endIndex": 10738,
"startIndex": 10658,
"textRun": {
"content": " title: Text(metadataRecord.$1), // Modify this line,\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10658
},
{
"endIndex": 10747,
"paragraph": {
"elements": [
{
"endIndex": 10747,
"startIndex": 10738,
"textRun": {
"content": " ),\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10738
},
{
"endIndex": 10767,
"paragraph": {
"elements": [
{
"endIndex": 10767,
"startIndex": 10747,
"textRun": {
"content": " body: Column(\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10747
},
{
"endIndex": 10787,
"paragraph": {
"elements": [
{
"endIndex": 10787,
"startIndex": 10767,
"textRun": {
"content": " children: [\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10767
},
{
"endIndex": 10805,
"paragraph": {
"elements": [
{
"endIndex": 10805,
"startIndex": 10787,
"textRun": {
"content": " Center(\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10787
},
{
"endIndex": 10830,
"paragraph": {
"elements": [
{
"endIndex": 10830,
"startIndex": 10805,
"textRun": {
"content": " child: Text(\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10805
},
{
"endIndex": 10906,
"paragraph": {
"elements": [
{
"endIndex": 10906,
"startIndex": 10830,
"textRun": {
"content": " 'Last modified ${metadataRecord.modified}', // And this one.\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10830
},
{
"endIndex": 10921,
"paragraph": {
"elements": [
{
"endIndex": 10921,
"startIndex": 10906,
"textRun": {
"content": " ),\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10906
},
{
"endIndex": 10934,
"paragraph": {
"elements": [
{
"endIndex": 10934,
"startIndex": 10921,
"textRun": {
"content": " ),\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10921
},
{
"endIndex": 10945,
"paragraph": {
"elements": [
{
"endIndex": 10945,
"startIndex": 10934,
"textRun": {
"content": " ],\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10934
},
{
"endIndex": 10954,
"paragraph": {
"elements": [
{
"endIndex": 10954,
"startIndex": 10945,
"textRun": {
"content": " ),\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10945
},
{
"endIndex": 10961,
"paragraph": {
"elements": [
{
"endIndex": 10961,
"startIndex": 10954,
"textRun": {
"content": " );\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10954
},
{
"endIndex": 10965,
"paragraph": {
"elements": [
{
"endIndex": 10965,
"startIndex": 10961,
"textRun": {
"content": " }\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10961
},
{
"endIndex": 10967,
"paragraph": {
"elements": [
{
"endIndex": 10967,
"startIndex": 10965,
"textRun": {
"content": "}\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10965
}
],
"endIndex": 10967,
"startIndex": 10335,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 10969,
"paragraph": {
"elements": [
{
"endIndex": 10969,
"startIndex": 10968,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 10968
},
{
"endIndex": 11188,
"paragraph": {
"elements": [
{
"endIndex": 10973,
"startIndex": 10969,
"textRun": {
"content": "The ",
"textStyle": {}
}
},
{
"endIndex": 10981,
"startIndex": 10973,
"textRun": {
"content": "metadata",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 11054,
"startIndex": 10981,
"textRun": {
"content": " getter method returns a record, which is assigned to the local variable ",
"textStyle": {}
}
},
{
"endIndex": 11068,
"startIndex": 11054,
"textRun": {
"content": "metadataRecord",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 11188,
"startIndex": 11068,
"textRun": {
"content": ". Records are a light and easy way to return multiple values from a single function call and assign them to a variable.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 10969
},
{
"endIndex": 11189,
"paragraph": {
"elements": [
{
"endIndex": 11189,
"startIndex": 11188,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 11188
},
{
"endIndex": 11291,
"paragraph": {
"elements": [
{
"endIndex": 11291,
"startIndex": 11189,
"textRun": {
"content": "To access the individual fields composed in that record, you can use recordsβ built-in getter syntax.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 11189
},
{
"endIndex": 11426,
"paragraph": {
"bullet": {
"listId": "kix.ul9cgkeua5dp",
"textStyle": {}
},
"elements": [
{
"endIndex": 11347,
"startIndex": 11291,
"textRun": {
"content": "To get a positional field (a field without a name, like ",
"textStyle": {}
}
},
{
"endIndex": 11352,
"startIndex": 11347,
"textRun": {
"content": "title",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 11370,
"startIndex": 11352,
"textRun": {
"content": "), use the getter ",
"textStyle": {}
}
},
{
"endIndex": 11376,
"startIndex": 11370,
"textRun": {
"content": "$<num>",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 11426,
"startIndex": 11376,
"textRun": {
"content": " on the record. This returns only unnamed fields.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11291
},
{
"endIndex": 11549,
"paragraph": {
"bullet": {
"listId": "kix.ul9cgkeua5dp",
"textStyle": {}
},
"elements": [
{
"endIndex": 11444,
"startIndex": 11426,
"textRun": {
"content": "Named fields like ",
"textStyle": {}
}
},
{
"endIndex": 11452,
"startIndex": 11444,
"textRun": {
"content": "modified",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 11524,
"startIndex": 11452,
"textRun": {
"content": " donβt have a positional getter, so you can use its name directly, like ",
"textStyle": {}
}
},
{
"endIndex": 11547,
"startIndex": 11524,
"textRun": {
"content": "metadataRecord.modified",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 11549,
"startIndex": 11547,
"textRun": {
"content": ".\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11426
},
{
"endIndex": 11550,
"paragraph": {
"elements": [
{
"endIndex": 11550,
"startIndex": 11549,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 11549
},
{
"endIndex": 11656,
"paragraph": {
"elements": [
{
"endIndex": 11617,
"startIndex": 11550,
"textRun": {
"content": "To determine the name of a getter for a positional field, start at ",
"textStyle": {}
}
},
{
"endIndex": 11619,
"startIndex": 11617,
"textRun": {
"content": "$1",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 11641,
"startIndex": 11619,
"textRun": {
"content": " and skip named fields",
"textStyle": {}
}
},
{
"endIndex": 11656,
"startIndex": 11641,
"textRun": {
"content": ". For example:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11550
},
{
"endIndex": 11657,
"paragraph": {
"elements": [
{
"endIndex": 11657,
"startIndex": 11656,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11656
},
{
"endIndex": 11831,
"startIndex": 11657,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 11830,
"startIndex": 11658,
"tableCells": [
{
"content": [
{
"endIndex": 11710,
"paragraph": {
"elements": [
{
"endIndex": 11710,
"startIndex": 11660,
"textRun": {
"content": "var record = (named: 'v', 'y', named2: 'x', 'z');\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11660
},
{
"endIndex": 11770,
"paragraph": {
"elements": [
{
"endIndex": 11770,
"startIndex": 11710,
"textRun": {
"content": "print(record.$1); // prints y\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11710
},
{
"endIndex": 11830,
"paragraph": {
"elements": [
{
"endIndex": 11829,
"startIndex": 11770,
"textRun": {
"content": "print(record.$2); // prints z",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 11830,
"startIndex": 11829,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11770
}
],
"endIndex": 11830,
"startIndex": 11659,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 11832,
"paragraph": {
"elements": [
{
"endIndex": 11832,
"startIndex": 11831,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 11831
},
{
"endIndex": 11952,
"paragraph": {
"bullet": {
"listId": "kix.cnamwo3k2086",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 11952,
"startIndex": 11832,
"textRun": {
"content": "Hot reload to see the JSON values displayed in the app. The VS Code Dart plugin hot-reloads every time you save a file.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11832
},
{
"endIndex": 11953,
"paragraph": {
"elements": [
{
"endIndex": 11953,
"startIndex": 11952,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 11952
},
{
"endIndex": 11955,
"paragraph": {
"elements": [
{
"endIndex": 11954,
"inlineObjectElement": {
"inlineObjectId": "kix.s1jfj82jdcu4",
"textStyle": {
"italic": true
}
},
"startIndex": 11953
},
{
"endIndex": 11955,
"startIndex": 11954,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 11953
},
{
"endIndex": 11956,
"paragraph": {
"elements": [
{
"endIndex": 11956,
"startIndex": 11955,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 11955
},
{
"endIndex": 12017,
"paragraph": {
"elements": [
{
"endIndex": 12017,
"startIndex": 11956,
"textRun": {
"content": "You can see that each field did, in fact, maintain its type.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 11956
},
{
"endIndex": 12073,
"paragraph": {
"bullet": {
"listId": "kix.43xuk7egr0s7",
"textStyle": {}
},
"elements": [
{
"endIndex": 12021,
"startIndex": 12017,
"textRun": {
"content": "The ",
"textStyle": {}
}
},
{
"endIndex": 12027,
"startIndex": 12021,
"textRun": {
"content": "Text()",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 12073,
"startIndex": 12027,
"textRun": {
"content": " method takes a String as its first argument.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12017
},
{
"endIndex": 12166,
"paragraph": {
"bullet": {
"listId": "kix.43xuk7egr0s7",
"textStyle": {}
},
"elements": [
{
"endIndex": 12077,
"startIndex": 12073,
"textRun": {
"content": "The ",
"textStyle": {}
}
},
{
"endIndex": 12085,
"startIndex": 12077,
"textRun": {
"content": "modified",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 12131,
"startIndex": 12085,
"textRun": {
"content": " field is a DateTime, and is converted into a ",
"textStyle": {}
}
},
{
"endIndex": 12137,
"startIndex": 12131,
"textRun": {
"content": "String",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 12144,
"startIndex": 12137,
"textRun": {
"content": " using ",
"textStyle": {}
}
},
{
"endIndex": 12164,
"startIndex": 12144,
"textRun": {
"content": "string interpolation",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://dart.dev/language/built-in-types#strings"
},
"underline": true
}
}
},
{
"endIndex": 12166,
"startIndex": 12164,
"textRun": {
"content": ".\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12073
},
{
"endIndex": 12167,
"paragraph": {
"elements": [
{
"endIndex": 12167,
"startIndex": 12166,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 12166
},
{
"endIndex": 12271,
"paragraph": {
"elements": [
{
"endIndex": 12270,
"startIndex": 12167,
"textRun": {
"content": "The other type-safe way to return different types of data is to define a class, which is more verbose. ",
"textStyle": {}
}
},
{
"endIndex": 12271,
"startIndex": 12270,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 12167
},
{
"endIndex": 12307,
"paragraph": {
"elements": [
{
"endIndex": 12299,
"startIndex": 12271,
"textRun": {
"content": "Match and destructure with p",
"textStyle": {}
}
},
{
"endIndex": 12307,
"startIndex": 12299,
"textRun": {
"content": "atterns\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.568j9pkqmod0",
"namedStyleType": "HEADING_1"
}
},
"startIndex": 12271
},
{
"endIndex": 12322,
"paragraph": {
"elements": [
{
"endIndex": 12321,
"startIndex": 12307,
"textRun": {
"content": "Duration: 2:00",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 12322,
"startIndex": 12321,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 12307
},
{
"endIndex": 12323,
"paragraph": {
"elements": [
{
"endIndex": 12323,
"startIndex": 12322,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 12322
},
{
"endIndex": 12445,
"paragraph": {
"elements": [
{
"endIndex": 12435,
"startIndex": 12323,
"textRun": {
"content": "Records can efficiently collect different types of data and easily pass it around. Now, improve your code using ",
"textStyle": {}
}
},
{
"endIndex": 12443,
"startIndex": 12435,
"textRun": {
"content": "patterns",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 12445,
"startIndex": 12443,
"textRun": {
"content": ".\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 12323
},
{
"endIndex": 12446,
"paragraph": {
"elements": [
{
"endIndex": 12446,
"startIndex": 12445,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 12445
},
{
"endIndex": 12599,
"paragraph": {
"elements": [
{
"endIndex": 12591,
"startIndex": 12446,
"textRun": {
"content": "A pattern represents a structure that one or more values can take, like a blueprint. Patterns compare against actual values to determine if they ",
"textStyle": {}
}
},
{
"endIndex": 12596,
"startIndex": 12591,
"textRun": {
"content": "match",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 12599,
"startIndex": 12596,
"textRun": {
"content": ". \n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 12446
},
{
"endIndex": 12600,
"paragraph": {
"elements": [
{
"endIndex": 12600,
"startIndex": 12599,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 12599
},
{
"endIndex": 12813,
"paragraph": {
"elements": [
{
"endIndex": 12632,
"startIndex": 12600,
"textRun": {
"content": "Some patterns, when they match, ",
"textStyle": {}
}
},
{
"endIndex": 12643,
"startIndex": 12632,
"textRun": {
"content": "destructure",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 12813,
"startIndex": 12643,
"textRun": {
"content": " the matched value by pulling data out of it. Destructuring lets you unpack values from an object to assign them to local variables, or perform further matching on them.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 12600
},
{
"endIndex": 12855,
"paragraph": {
"elements": [
{
"endIndex": 12854,
"startIndex": 12813,
"textRun": {
"content": "Destructure a record into local variables",
"textStyle": {}
}
},
{
"endIndex": 12855,
"startIndex": 12854,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.gpl49c2b0ub",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 12813
},
{
"endIndex": 12856,
"paragraph": {
"elements": [
{
"endIndex": 12856,
"startIndex": 12855,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 12855
},
{
"endIndex": 12974,
"paragraph": {
"bullet": {
"listId": "kix.oh906fh7glv8",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 12869,
"startIndex": 12856,
"textRun": {
"content": "Refactor the ",
"textStyle": {}
}
},
{
"endIndex": 12874,
"startIndex": 12869,
"textRun": {
"content": "build",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 12885,
"startIndex": 12874,
"textRun": {
"content": " method of ",
"textStyle": {}
}
},
{
"endIndex": 12899,
"startIndex": 12885,
"textRun": {
"content": "DocumentScreen",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 12908,
"startIndex": 12899,
"textRun": {
"content": " to call ",
"textStyle": {}
}
},
{
"endIndex": 12916,
"startIndex": 12908,
"textRun": {
"content": "metadata",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 12944,
"startIndex": 12916,
"textRun": {
"content": " and use it to initialize a ",
"textStyle": {}
}
},
{
"endIndex": 12972,
"startIndex": 12944,
"textRun": {
"content": "pattern variable declaration",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 12974,
"startIndex": 12972,
"textRun": {
"content": ":\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12856
},
{
"endIndex": 12988,
"paragraph": {
"elements": [
{
"endIndex": 12987,
"startIndex": 12974,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/dart-patterns-and-records/step_06_a/lib/main.dart"
},
"underline": true
}
}
},
{
"endIndex": 12988,
"startIndex": 12987,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.z05ke9eh3pmu",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 12974
},
{
"endIndex": 13603,
"startIndex": 12988,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 13602,
"startIndex": 12989,
"tableCells": [
{
"content": [
{
"endIndex": 13038,
"paragraph": {
"elements": [
{
"endIndex": 13038,
"startIndex": 12991,
"textRun": {
"content": "class DocumentScreen extends StatelessWidget {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12991
},
{
"endIndex": 13065,
"paragraph": {
"elements": [
{
"endIndex": 13065,
"startIndex": 13038,
"textRun": {
"content": " final Document document;\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13038
},
{
"endIndex": 13066,
"paragraph": {
"elements": [
{
"endIndex": 13066,
"startIndex": 13065,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13065
},
{
"endIndex": 13091,
"paragraph": {
"elements": [
{
"endIndex": 13091,
"startIndex": 13066,
"textRun": {
"content": " const DocumentScreen({\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13066
},
{
"endIndex": 13119,
"paragraph": {
"elements": [
{
"endIndex": 13119,
"startIndex": 13091,
"textRun": {
"content": " required this.document,\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13091
},
{
"endIndex": 13134,
"paragraph": {
"elements": [
{
"endIndex": 13134,
"startIndex": 13119,
"textRun": {
"content": " super.key,\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13119
},
{
"endIndex": 13140,
"paragraph": {
"elements": [
{
"endIndex": 13140,
"startIndex": 13134,
"textRun": {
"content": " });\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13134
},
{
"endIndex": 13141,
"paragraph": {
"elements": [
{
"endIndex": 13141,
"startIndex": 13140,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13140
},
{
"endIndex": 13153,
"paragraph": {
"elements": [
{
"endIndex": 13153,
"startIndex": 13141,
"textRun": {
"content": " @override\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13141
},
{
"endIndex": 13192,
"paragraph": {
"elements": [
{
"endIndex": 13192,
"startIndex": 13153,
"textRun": {
"content": " Widget build(BuildContext context) {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13153
},
{
"endIndex": 13263,
"paragraph": {
"elements": [
{
"endIndex": 13263,
"startIndex": 13192,
"textRun": {
"content": " final (title, modified: modified) = document.metadata; // Modify\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13192
},
{
"endIndex": 13264,
"paragraph": {
"elements": [
{
"endIndex": 13264,
"startIndex": 13263,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13263
},
{
"endIndex": 13285,
"paragraph": {
"elements": [
{
"endIndex": 13285,
"startIndex": 13264,
"textRun": {
"content": " return Scaffold(\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13264
},
{
"endIndex": 13307,
"paragraph": {
"elements": [
{
"endIndex": 13307,
"startIndex": 13285,
"textRun": {
"content": " appBar: AppBar(\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13285
},
{
"endIndex": 13378,
"paragraph": {
"elements": [
{
"endIndex": 13378,
"startIndex": 13307,
"textRun": {
"content": " title: Text(title), // Modify\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13307
},
{
"endIndex": 13387,
"paragraph": {
"elements": [
{
"endIndex": 13387,
"startIndex": 13378,
"textRun": {
"content": " ),\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13378
},
{
"endIndex": 13407,
"paragraph": {
"elements": [
{
"endIndex": 13407,
"startIndex": 13387,
"textRun": {
"content": " body: Column(\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13387
},
{
"endIndex": 13427,
"paragraph": {
"elements": [
{
"endIndex": 13427,
"startIndex": 13407,
"textRun": {
"content": " children: [\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13407
},
{
"endIndex": 13445,
"paragraph": {
"elements": [
{
"endIndex": 13445,
"startIndex": 13427,
"textRun": {
"content": " Center(\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13427
},
{
"endIndex": 13470,
"paragraph": {
"elements": [
{
"endIndex": 13470,
"startIndex": 13445,
"textRun": {
"content": " child: Text(\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13445
},
{
"endIndex": 13541,
"paragraph": {
"elements": [
{
"endIndex": 13541,
"startIndex": 13470,
"textRun": {
"content": " 'Last modified $modified', // Modify\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13470
},
{
"endIndex": 13556,
"paragraph": {
"elements": [
{
"endIndex": 13556,
"startIndex": 13541,
"textRun": {
"content": " ),\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13541
},
{
"endIndex": 13569,
"paragraph": {
"elements": [
{
"endIndex": 13569,
"startIndex": 13556,
"textRun": {
"content": " ),\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13556
},
{
"endIndex": 13580,
"paragraph": {
"elements": [
{
"endIndex": 13580,
"startIndex": 13569,
"textRun": {
"content": " ],\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13569
},
{
"endIndex": 13589,
"paragraph": {
"elements": [
{
"endIndex": 13589,
"startIndex": 13580,
"textRun": {
"content": " ),\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13580
},
{
"endIndex": 13596,
"paragraph": {
"elements": [
{
"endIndex": 13596,
"startIndex": 13589,
"textRun": {
"content": " );\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13589
},
{
"endIndex": 13600,
"paragraph": {
"elements": [
{
"endIndex": 13600,
"startIndex": 13596,
"textRun": {
"content": " }\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13596
},
{
"endIndex": 13602,
"paragraph": {
"elements": [
{
"endIndex": 13602,
"startIndex": 13600,
"textRun": {
"content": "}\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13600
}
],
"endIndex": 13602,
"startIndex": 12990,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 13604,
"paragraph": {
"elements": [
{
"endIndex": 13604,
"startIndex": 13603,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 13603
},
{
"endIndex": 13748,
"paragraph": {
"elements": [
{
"endIndex": 13622,
"startIndex": 13604,
"textRun": {
"content": "The record pattern",
"textStyle": {}
}
},
{
"endIndex": 13623,
"startIndex": 13622,
"textRun": {
"content": " ",
"textStyle": {}
}
},
{
"endIndex": 13631,
"startIndex": 13623,
"textRun": {
"content": "(title, ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 13639,
"startIndex": 13631,
"textRun": {
"content": "modified",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 13650,
"startIndex": 13639,
"textRun": {
"content": ": modified)",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 13664,
"startIndex": 13650,
"textRun": {
"content": " contains two ",
"textStyle": {}
}
},
{
"endIndex": 13681,
"startIndex": 13664,
"textRun": {
"content": "variable patterns",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 13686,
"startIndex": 13681,
"textRun": {
"content": " that",
"textStyle": {}
}
},
{
"endIndex": 13738,
"startIndex": 13686,
"textRun": {
"content": " match against the fields of the record returned by ",
"textStyle": {}
}
},
{
"endIndex": 13746,
"startIndex": 13738,
"textRun": {
"content": "metadata",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 13748,
"startIndex": 13746,
"textRun": {
"content": ".\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 13604
},
{
"endIndex": 13866,
"paragraph": {
"bullet": {
"listId": "kix.mqctj3bturgq",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 13856,
"startIndex": 13748,
"textRun": {
"content": "The expression matches the subpattern because the result is a record with two fields, one of which is named ",
"textStyle": {}
}
},
{
"endIndex": 13864,
"startIndex": 13856,
"textRun": {
"content": "modified",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 13866,
"startIndex": 13864,
"textRun": {
"content": ".\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13748
},
{
"endIndex": 14074,
"paragraph": {
"bullet": {
"listId": "kix.mqctj3bturgq",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 14038,
"startIndex": 13866,
"textRun": {
"content": "Because they match, the variable declaration pattern destructures the expression, accessing its values and binding them to new local variables of the same types and names, ",
"textStyle": {}
}
},
{
"endIndex": 14050,
"startIndex": 14038,
"textRun": {
"content": "String title",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 14055,
"startIndex": 14050,
"textRun": {
"content": " and ",
"textStyle": {}
}
},
{
"endIndex": 14072,
"startIndex": 14055,
"textRun": {
"content": "DateTime modified",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 14073,
"startIndex": 14072,
"textRun": {
"content": ".",
"textStyle": {}
}
},
{
"endIndex": 14074,
"startIndex": 14073,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13866
},
{
"endIndex": 14075,
"paragraph": {
"elements": [
{
"endIndex": 14075,
"startIndex": 14074,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14074
},
{
"endIndex": 14226,
"paragraph": {
"elements": [
{
"endIndex": 14183,
"startIndex": 14075,
"textRun": {
"content": "There is a shorthand for when the name of a field and the variable populating it are the same. Refactor the ",
"textStyle": {}
}
},
{
"endIndex": 14188,
"startIndex": 14183,
"textRun": {
"content": "build",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 14199,
"startIndex": 14188,
"textRun": {
"content": " method of ",
"textStyle": {}
}
},
{
"endIndex": 14213,
"startIndex": 14199,
"textRun": {
"content": "DocumentScreen",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 14226,
"startIndex": 14213,
"textRun": {
"content": " as follows.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14075
},
{
"endIndex": 14227,
"paragraph": {
"elements": [
{
"endIndex": 14227,
"startIndex": 14226,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14226
},
{
"endIndex": 14241,
"paragraph": {
"elements": [
{
"endIndex": 14240,
"startIndex": 14227,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/dart-patterns-and-records/step_06_b/lib/main.dart"
},
"underline": true
}
}
},
{
"endIndex": 14241,
"startIndex": 14240,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.utlztqy2hktb",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 14227
},
{
"endIndex": 14783,
"startIndex": 14241,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 14782,
"startIndex": 14242,
"tableCells": [
{
"content": [
{
"endIndex": 14291,
"paragraph": {
"elements": [
{
"endIndex": 14291,
"startIndex": 14244,
"textRun": {
"content": "class DocumentScreen extends StatelessWidget {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14244
},
{
"endIndex": 14318,
"paragraph": {
"elements": [
{
"endIndex": 14318,
"startIndex": 14291,
"textRun": {
"content": " final Document document;\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14291
},
{
"endIndex": 14319,
"paragraph": {
"elements": [
{
"endIndex": 14319,
"startIndex": 14318,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14318
},
{
"endIndex": 14344,
"paragraph": {
"elements": [
{
"endIndex": 14344,
"startIndex": 14319,
"textRun": {
"content": " const DocumentScreen({\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14319
},
{
"endIndex": 14372,
"paragraph": {
"elements": [
{
"endIndex": 14372,
"startIndex": 14344,
"textRun": {
"content": " required this.document,\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14344
},
{
"endIndex": 14387,
"paragraph": {
"elements": [
{
"endIndex": 14387,
"startIndex": 14372,
"textRun": {
"content": " super.key,\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14372
},
{
"endIndex": 14393,
"paragraph": {
"elements": [
{
"endIndex": 14393,
"startIndex": 14387,
"textRun": {
"content": " });\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14387
},
{
"endIndex": 14394,
"paragraph": {
"elements": [
{
"endIndex": 14394,
"startIndex": 14393,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14393
},
{
"endIndex": 14406,
"paragraph": {
"elements": [
{
"endIndex": 14406,
"startIndex": 14394,
"textRun": {
"content": " @override\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14394
},
{
"endIndex": 14445,
"paragraph": {
"elements": [
{
"endIndex": 14445,
"startIndex": 14406,
"textRun": {
"content": " Widget build(BuildContext context) {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14406
},
{
"endIndex": 14516,
"paragraph": {
"elements": [
{
"endIndex": 14516,
"startIndex": 14445,
"textRun": {
"content": " final (title, :modified) = document.metadata; // Modify\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14445
},
{
"endIndex": 14517,
"paragraph": {
"elements": [
{
"endIndex": 14517,
"startIndex": 14516,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14516
},
{
"endIndex": 14538,
"paragraph": {
"elements": [
{
"endIndex": 14538,
"startIndex": 14517,
"textRun": {
"content": " return Scaffold(\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14517
},
{
"endIndex": 14560,
"paragraph": {
"elements": [
{
"endIndex": 14560,
"startIndex": 14538,
"textRun": {
"content": " appBar: AppBar(\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14538
},
{
"endIndex": 14588,
"paragraph": {
"elements": [
{
"endIndex": 14588,
"startIndex": 14560,
"textRun": {
"content": " title: Text(title),\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14560
},
{
"endIndex": 14597,
"paragraph": {
"elements": [
{
"endIndex": 14597,
"startIndex": 14588,
"textRun": {
"content": " ),\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14588
},
{
"endIndex": 14617,
"paragraph": {
"elements": [
{
"endIndex": 14617,
"startIndex": 14597,
"textRun": {
"content": " body: Column(\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14597
},
{
"endIndex": 14637,
"paragraph": {
"elements": [
{
"endIndex": 14637,
"startIndex": 14617,
"textRun": {
"content": " children: [\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14617
},
{
"endIndex": 14655,
"paragraph": {
"elements": [
{
"endIndex": 14655,
"startIndex": 14637,
"textRun": {
"content": " Center(\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14637
},
{
"endIndex": 14680,
"paragraph": {
"elements": [
{
"endIndex": 14680,
"startIndex": 14655,
"textRun": {
"content": " child: Text(\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14655
},
{
"endIndex": 14721,
"paragraph": {
"elements": [
{
"endIndex": 14721,
"startIndex": 14680,
"textRun": {
"content": " 'Last modified $modified',\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14680
},
{
"endIndex": 14736,
"paragraph": {
"elements": [
{
"endIndex": 14736,
"startIndex": 14721,
"textRun": {
"content": " ),\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14721
},
{
"endIndex": 14749,
"paragraph": {
"elements": [
{
"endIndex": 14749,
"startIndex": 14736,
"textRun": {
"content": " ),\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14736
},
{
"endIndex": 14760,
"paragraph": {
"elements": [
{
"endIndex": 14760,
"startIndex": 14749,
"textRun": {
"content": " ],\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14749
},
{
"endIndex": 14769,
"paragraph": {
"elements": [
{
"endIndex": 14769,
"startIndex": 14760,
"textRun": {
"content": " ),\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14760
},
{
"endIndex": 14776,
"paragraph": {
"elements": [
{
"endIndex": 14776,
"startIndex": 14769,
"textRun": {
"content": " );\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14769
},
{
"endIndex": 14780,
"paragraph": {
"elements": [
{
"endIndex": 14780,
"startIndex": 14776,
"textRun": {
"content": " }\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14776
},
{
"endIndex": 14782,
"paragraph": {
"elements": [
{
"endIndex": 14782,
"startIndex": 14780,
"textRun": {
"content": "}\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14780
}
],
"endIndex": 14782,
"startIndex": 14243,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 14784,
"paragraph": {
"elements": [
{
"endIndex": 14784,
"startIndex": 14783,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14783
},
{
"endIndex": 14785,
"paragraph": {
"elements": [
{
"endIndex": 14785,
"startIndex": 14784,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14784
},
{
"endIndex": 14968,
"paragraph": {
"elements": [
{
"endIndex": 14820,
"startIndex": 14785,
"textRun": {
"content": "The syntax of the variable pattern ",
"textStyle": {}
}
},
{
"endIndex": 14829,
"startIndex": 14820,
"textRun": {
"content": ":modified",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 14847,
"startIndex": 14829,
"textRun": {
"content": " is shorthand for ",
"textStyle": {}
}
},
{
"endIndex": 14865,
"startIndex": 14847,
"textRun": {
"content": "modified: modified",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 14935,
"startIndex": 14865,
"textRun": {
"content": ". If you want a new local variable of a different name, you can write ",
"textStyle": {}
}
},
{
"endIndex": 14958,
"startIndex": 14935,
"textRun": {
"content": "modified: localModified",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 14966,
"startIndex": 14958,
"textRun": {
"content": " instead",
"textStyle": {}
}
},
{
"endIndex": 14968,
"startIndex": 14966,
"textRun": {
"content": ".\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14785
},
{
"endIndex": 14969,
"paragraph": {
"elements": [
{
"endIndex": 14969,
"startIndex": 14968,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14968
},
{
"endIndex": 15100,
"paragraph": {
"bullet": {
"listId": "kix.oh906fh7glv8",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 15100,
"startIndex": 14969,
"textRun": {
"content": "Hot reload to see the same result as in the previous step. The behavior is exactly the same; you just made your code more concise.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 14969
},
{
"endIndex": 15129,
"paragraph": {
"elements": [
{
"endIndex": 15129,
"startIndex": 15100,
"textRun": {
"content": "Use patterns to extract data\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.pycw5b4t4lns",
"namedStyleType": "HEADING_1"
}
},
"startIndex": 15100
},
{
"endIndex": 15144,
"paragraph": {
"elements": [
{
"endIndex": 15143,
"startIndex": 15129,
"textRun": {
"content": "Duration: 5:00",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 15144,
"startIndex": 15143,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15129
},
{
"endIndex": 15145,
"paragraph": {
"elements": [
{
"endIndex": 15145,
"startIndex": 15144,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15144
},
{
"endIndex": 15345,
"paragraph": {
"elements": [
{
"endIndex": 15228,
"startIndex": 15145,
"textRun": {
"content": "In certain contexts, patterns donβt only match and destructure but can also make a ",
"textStyle": {}
}
},
{
"endIndex": 15236,
"startIndex": 15228,
"textRun": {
"content": "decision",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 15243,
"startIndex": 15236,
"textRun": {
"content": " about ",
"textStyle": {}
}
},
{
"endIndex": 15261,
"startIndex": 15243,
"textRun": {
"content": "what the code does",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 15324,
"startIndex": 15261,
"textRun": {
"content": ", based on whether or not the pattern matches. These are called",
"textStyle": {}
}
},
{
"endIndex": 15343,
"startIndex": 15324,
"textRun": {
"content": " refutable patterns",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 15345,
"startIndex": 15343,
"textRun": {
"content": ".\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15145
},
{
"endIndex": 15346,
"paragraph": {
"elements": [
{
"endIndex": 15346,
"startIndex": 15345,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15345
},
{
"endIndex": 15632,
"paragraph": {
"elements": [
{
"endIndex": 15347,
"startIndex": 15346,
"textRun": {
"content": "T",
"textStyle": {}
}
},
{
"endIndex": 15410,
"startIndex": 15347,
"textRun": {
"content": "he variable declaration pattern you used in the last step is an",
"textStyle": {}
}
},
{
"endIndex": 15411,
"startIndex": 15410,
"textRun": {
"content": " ",
"textStyle": {}
}
},
{
"endIndex": 15430,
"startIndex": 15411,
"textRun": {
"content": "irrefutable pattern",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 15632,
"startIndex": 15430,
"textRun": {
"content": ": the value must match the pattern or itβs an error and destructuring wonβt happen. Think of any variable declaration or assignment; you canβt assign a value to a variable if theyβre not the same type.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15346
},
{
"endIndex": 15633,
"paragraph": {
"elements": [
{
"endIndex": 15633,
"startIndex": 15632,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15632
},
{
"endIndex": 15707,
"paragraph": {
"elements": [
{
"endIndex": 15707,
"startIndex": 15633,
"textRun": {
"content": "Refutable patterns, on the other hand, are used in control flow contexts:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15633
},
{
"endIndex": 15774,
"paragraph": {
"bullet": {
"listId": "kix.d8meck8mgbh6",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 15712,
"startIndex": 15707,
"textRun": {
"content": "They ",
"textStyle": {}
}
},
{
"endIndex": 15718,
"startIndex": 15712,
"textRun": {
"content": "expect",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 15774,
"startIndex": 15718,
"textRun": {
"content": " that some values they compare against will not match. \n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 15707
},
{
"endIndex": 15864,
"paragraph": {
"bullet": {
"listId": "kix.d8meck8mgbh6",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 15792,
"startIndex": 15774,
"textRun": {
"content": "They are meant to ",
"textStyle": {}
}
},
{
"endIndex": 15818,
"startIndex": 15792,
"textRun": {
"content": "influence the control flow",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 15864,
"startIndex": 15818,
"textRun": {
"content": ", based on whether or not the value matches. \n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 15774
},
{
"endIndex": 15968,
"paragraph": {
"bullet": {
"listId": "kix.d8meck8mgbh6",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 15869,
"startIndex": 15864,
"textRun": {
"content": "They ",
"textStyle": {}
}
},
{
"endIndex": 15894,
"startIndex": 15869,
"textRun": {
"content": "donβt interrupt execution",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 15968,
"startIndex": 15894,
"textRun": {
"content": " with an error if they donβt match, they just move to the next statement.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 15864
},
{
"endIndex": 16045,
"paragraph": {
"bullet": {
"listId": "kix.d8meck8mgbh6",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 16017,
"startIndex": 15968,
"textRun": {
"content": "They can destructure and bind variables that are ",
"textStyle": {}
}
},
{
"endIndex": 16028,
"startIndex": 16017,
"textRun": {
"content": "only usable",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 16045,
"startIndex": 16028,
"textRun": {
"content": " when they match\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 15968
},
{
"endIndex": 16046,
"paragraph": {
"elements": [
{
"endIndex": 16046,
"startIndex": 16045,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 16045
},
{
"endIndex": 16080,
"paragraph": {
"elements": [
{
"endIndex": 16080,
"startIndex": 16046,
"textRun": {
"content": "Read JSON values without patterns\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.yf61kg5owa9m",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 16046
},
{
"endIndex": 16190,
"paragraph": {
"elements": [
{
"endIndex": 16190,
"startIndex": 16080,
"textRun": {
"content": "In this section, you read data without pattern matching to see how patterns can help you work with JSON data.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 16080
},
{
"endIndex": 16191,
"paragraph": {
"elements": [
{
"endIndex": 16191,
"startIndex": 16190,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 16190
},
{
"endIndex": 16344,
"paragraph": {
"bullet": {
"listId": "kix.2s25y2v84mq6",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 16223,
"startIndex": 16191,
"textRun": {
"content": "Replace the previous version of ",
"textStyle": {}
}
},
{
"endIndex": 16231,
"startIndex": 16223,
"textRun": {
"content": "metadata",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 16268,
"startIndex": 16231,
"textRun": {
"content": " with one that reads values from the ",
"textStyle": {}
}
},
{
"endIndex": 16273,
"startIndex": 16268,
"textRun": {
"content": "_json",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 16310,
"startIndex": 16273,
"textRun": {
"content": " map. Copy and paste this version of ",
"textStyle": {}
}
},
{
"endIndex": 16318,
"startIndex": 16310,
"textRun": {
"content": "metadata",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 16328,
"startIndex": 16318,
"textRun": {
"content": " into the ",
"textStyle": {}
}
},
{
"endIndex": 16336,
"startIndex": 16328,
"textRun": {
"content": "Document",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 16344,
"startIndex": 16336,
"textRun": {
"content": " class:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16191
},
{
"endIndex": 16358,
"paragraph": {
"elements": [
{
"endIndex": 16357,
"startIndex": 16344,
"textRun": {
"content": "lib/data.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/dart-patterns-and-records/step_07_a/lib/data.dart"
},
"underline": true
}
}
},
{
"endIndex": 16358,
"startIndex": 16357,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.xtpw6x4ct4ba",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 16344
},
{
"endIndex": 16966,
"startIndex": 16358,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 16965,
"startIndex": 16359,
"tableCells": [
{
"content": [
{
"endIndex": 16378,
"paragraph": {
"elements": [
{
"endIndex": 16378,
"startIndex": 16361,
"textRun": {
"content": "class Document {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16361
},
{
"endIndex": 16414,
"paragraph": {
"elements": [
{
"endIndex": 16414,
"startIndex": 16378,
"textRun": {
"content": " final Map<String, Object?> _json;\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16378
},
{
"endIndex": 16463,
"paragraph": {
"elements": [
{
"endIndex": 16463,
"startIndex": 16414,
"textRun": {
"content": " Document() : _json = jsonDecode(documentJson);\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16414
},
{
"endIndex": 16464,
"paragraph": {
"elements": [
{
"endIndex": 16464,
"startIndex": 16463,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16463
},
{
"endIndex": 16511,
"paragraph": {
"elements": [
{
"endIndex": 16511,
"startIndex": 16464,
"textRun": {
"content": " (String, {DateTime modified}) get metadata {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16464
},
{
"endIndex": 16595,
"paragraph": {
"elements": [
{
"endIndex": 16595,
"startIndex": 16511,
"textRun": {
"content": " if (_json.containsKey('metadata')) { // Modify from here...\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16511
},
{
"endIndex": 16641,
"paragraph": {
"elements": [
{
"endIndex": 16641,
"startIndex": 16595,
"textRun": {
"content": " final metadataJson = _json['metadata'];\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16595
},
{
"endIndex": 16674,
"paragraph": {
"elements": [
{
"endIndex": 16674,
"startIndex": 16641,
"textRun": {
"content": " if (metadataJson is Map) {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16641
},
{
"endIndex": 16729,
"paragraph": {
"elements": [
{
"endIndex": 16729,
"startIndex": 16674,
"textRun": {
"content": " final title = metadataJson['title'] as String;\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16674
},
{
"endIndex": 16759,
"paragraph": {
"elements": [
{
"endIndex": 16759,
"startIndex": 16729,
"textRun": {
"content": " final localModified =\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16729
},
{
"endIndex": 16823,
"paragraph": {
"elements": [
{
"endIndex": 16823,
"startIndex": 16759,
"textRun": {
"content": " DateTime.parse(metadataJson['modified'] as String);\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16759
},
{
"endIndex": 16872,
"paragraph": {
"elements": [
{
"endIndex": 16872,
"startIndex": 16823,
"textRun": {
"content": " return (title, modified: localModified);\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16823
},
{
"endIndex": 16880,
"paragraph": {
"elements": [
{
"endIndex": 16880,
"startIndex": 16872,
"textRun": {
"content": " }\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16872
},
{
"endIndex": 16886,
"paragraph": {
"elements": [
{
"endIndex": 16886,
"startIndex": 16880,
"textRun": {
"content": " }\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16880
},
{
"endIndex": 16959,
"paragraph": {
"elements": [
{
"endIndex": 16959,
"startIndex": 16886,
"textRun": {
"content": " throw const FormatException('Unexpected JSON'); // to here.\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16886
},
{
"endIndex": 16963,
"paragraph": {
"elements": [
{
"endIndex": 16963,
"startIndex": 16959,
"textRun": {
"content": " }\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16959
},
{
"endIndex": 16965,
"paragraph": {
"elements": [
{
"endIndex": 16965,
"startIndex": 16963,
"textRun": {
"content": "}\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16963
}
],
"endIndex": 16965,
"startIndex": 16360,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 16967,
"paragraph": {
"elements": [
{
"endIndex": 16967,
"startIndex": 16966,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 16966
},
{
"endIndex": 17192,
"paragraph": {
"elements": [
{
"endIndex": 17192,
"startIndex": 16967,
"textRun": {
"content": "This code validates that the data is structured correctly without using patterns. In a later step, you use pattern matching to perform the same validation using less code. It performs three checks before doing anything else:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 16967
},
{
"endIndex": 17276,
"paragraph": {
"bullet": {
"listId": "kix.fxg6r2ea28qw",
"textStyle": {}
},
"elements": [
{
"endIndex": 17219,
"startIndex": 17192,
"textRun": {
"content": "The JSON contains the data ",
"textStyle": {}
}
},
{
"endIndex": 17228,
"startIndex": 17219,
"textRun": {
"content": "structure",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 17241,
"startIndex": 17228,
"textRun": {
"content": " you expect:\u000b",
"textStyle": {}
}
},
{
"endIndex": 17275,
"startIndex": 17241,
"textRun": {
"content": "if (_json.containsKey('metadata'))",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 17276,
"startIndex": 17275,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17192
},
{
"endIndex": 17335,
"paragraph": {
"bullet": {
"listId": "kix.fxg6r2ea28qw",
"textStyle": {}
},
"elements": [
{
"endIndex": 17279,
"startIndex": 17276,
"textRun": {
"content": "The",
"textStyle": {}
}
},
{
"endIndex": 17293,
"startIndex": 17279,
"textRun": {
"content": " data has the ",
"textStyle": {}
}
},
{
"endIndex": 17297,
"startIndex": 17293,
"textRun": {
"content": "type",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 17310,
"startIndex": 17297,
"textRun": {
"content": " you expect:\u000b",
"textStyle": {}
}
},
{
"endIndex": 17335,
"startIndex": 17310,
"textRun": {
"content": "if (metadataJson is Map)\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17276
},
{
"endIndex": 17415,
"paragraph": {
"bullet": {
"listId": "kix.fxg6r2ea28qw",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
}
}
},
"elements": [
{
"endIndex": 17352,
"startIndex": 17335,
"textRun": {
"content": "That the data is ",
"textStyle": {}
}
},
{
"endIndex": 17360,
"startIndex": 17352,
"textRun": {
"content": "not null",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 17414,
"startIndex": 17360,
"textRun": {
"content": ", which is implicitly confirmed in the previous check.",
"textStyle": {}
}
},
{
"endIndex": 17415,
"startIndex": 17414,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17335
},
{
"endIndex": 17452,
"paragraph": {
"elements": [
{
"endIndex": 17452,
"startIndex": 17415,
"textRun": {
"content": "Read JSON values using a map pattern\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.6jvsgpwu5vaj",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 17415
},
{
"endIndex": 17555,
"paragraph": {
"elements": [
{
"endIndex": 17542,
"startIndex": 17452,
"textRun": {
"content": "With a refutable pattern, you can verify that the JSON has the expected structure using a ",
"textStyle": {}
}
},
{
"endIndex": 17553,
"startIndex": 17542,
"textRun": {
"content": "map pattern",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 17555,
"startIndex": 17553,
"textRun": {
"content": ".\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 17452
},
{
"endIndex": 17556,
"paragraph": {
"elements": [
{
"endIndex": 17556,
"startIndex": 17555,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 17555
},
{
"endIndex": 17613,
"paragraph": {
"bullet": {
"listId": "kix.7zli105oii42",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 17588,
"startIndex": 17556,
"textRun": {
"content": "Replace the previous version of ",
"textStyle": {}
}
},
{
"endIndex": 17596,
"startIndex": 17588,
"textRun": {
"content": "metadata",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 17613,
"startIndex": 17596,
"textRun": {
"content": " with this code:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17556
},
{
"endIndex": 17627,
"paragraph": {
"elements": [
{
"endIndex": 17626,
"startIndex": 17613,
"textRun": {
"content": "lib/data.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/dart-patterns-and-records/step_07_b/lib/data.dart"
},
"underline": true
}
}
},
{
"endIndex": 17627,
"startIndex": 17626,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.up9oxn6751gl",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 17613
},
{
"endIndex": 18217,
"startIndex": 17627,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 18216,
"startIndex": 17628,
"tableCells": [
{
"content": [
{
"endIndex": 17647,
"paragraph": {
"elements": [
{
"endIndex": 17647,
"startIndex": 17630,
"textRun": {
"content": "class Document {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17630
},
{
"endIndex": 17683,
"paragraph": {
"elements": [
{
"endIndex": 17683,
"startIndex": 17647,
"textRun": {
"content": " final Map<String, Object?> _json;\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17647
},
{
"endIndex": 17732,
"paragraph": {
"elements": [
{
"endIndex": 17732,
"startIndex": 17683,
"textRun": {
"content": " Document() : _json = jsonDecode(documentJson);\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17683
},
{
"endIndex": 17733,
"paragraph": {
"elements": [
{
"endIndex": 17733,
"startIndex": 17732,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17732
},
{
"endIndex": 17780,
"paragraph": {
"elements": [
{
"endIndex": 17780,
"startIndex": 17733,
"textRun": {
"content": " (String, {DateTime modified}) get metadata {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17733
},
{
"endIndex": 17862,
"paragraph": {
"elements": [
{
"endIndex": 17862,
"startIndex": 17780,
"textRun": {
"content": " if (_json // Modify from hereβ¦\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17780
},
{
"endIndex": 17877,
"paragraph": {
"elements": [
{
"endIndex": 17877,
"startIndex": 17862,
"textRun": {
"content": " case {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17862
},
{
"endIndex": 17901,
"paragraph": {
"elements": [
{
"endIndex": 17901,
"startIndex": 17877,
"textRun": {
"content": " 'metadata': {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17877
},
{
"endIndex": 17936,
"paragraph": {
"elements": [
{
"endIndex": 17936,
"startIndex": 17901,
"textRun": {
"content": " 'title': String title,\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17901
},
{
"endIndex": 17982,
"paragraph": {
"elements": [
{
"endIndex": 17982,
"startIndex": 17936,
"textRun": {
"content": " 'modified': String localModified,\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17936
},
{
"endIndex": 17994,
"paragraph": {
"elements": [
{
"endIndex": 17994,
"startIndex": 17982,
"textRun": {
"content": " }\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17982
},
{
"endIndex": 18007,
"paragraph": {
"elements": [
{
"endIndex": 18007,
"startIndex": 17994,
"textRun": {
"content": " }) {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17994
},
{
"endIndex": 18070,
"paragraph": {
"elements": [
{
"endIndex": 18070,
"startIndex": 18007,
"textRun": {
"content": " return (title, modified: DateTime.parse(localModified));\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18007
},
{
"endIndex": 18083,
"paragraph": {
"elements": [
{
"endIndex": 18083,
"startIndex": 18070,
"textRun": {
"content": " } else {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18070
},
{
"endIndex": 18137,
"paragraph": {
"elements": [
{
"endIndex": 18137,
"startIndex": 18083,
"textRun": {
"content": " throw const FormatException('Unexpected JSON');\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18083
},
{
"endIndex": 18210,
"paragraph": {
"elements": [
{
"endIndex": 18210,
"startIndex": 18137,
"textRun": {
"content": " } // to here.\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18137
},
{
"endIndex": 18214,
"paragraph": {
"elements": [
{
"endIndex": 18214,
"startIndex": 18210,
"textRun": {
"content": " }\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18210
},
{
"endIndex": 18216,
"paragraph": {
"elements": [
{
"endIndex": 18216,
"startIndex": 18214,
"textRun": {
"content": "}\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18214
}
],
"endIndex": 18216,
"startIndex": 17629,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 18218,
"paragraph": {
"elements": [
{
"endIndex": 18218,
"startIndex": 18217,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 18217
},
{
"endIndex": 18520,
"paragraph": {
"elements": [
{
"endIndex": 18287,
"startIndex": 18218,
"textRun": {
"content": "Here, you see a new kind of if-statement (introduced in Dart 3), the ",
"textStyle": {}
}
},
{
"endIndex": 18294,
"startIndex": 18287,
"textRun": {
"content": "if-case",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 18296,
"startIndex": 18294,
"textRun": {
"content": ". ",
"textStyle": {}
}
},
{
"endIndex": 18364,
"startIndex": 18296,
"textRun": {
"content": "The case body only executes if the case pattern matches the data in ",
"textStyle": {}
}
},
{
"endIndex": 18369,
"startIndex": 18364,
"textRun": {
"content": "_json",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 18445,
"startIndex": 18369,
"textRun": {
"content": ". This match accomplishes the same checks you wrote in the first version of ",
"textStyle": {}
}
},
{
"endIndex": 18453,
"startIndex": 18445,
"textRun": {
"content": "metadata",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 18520,
"startIndex": 18453,
"textRun": {
"content": " to validate the incoming JSON. This code validates the following:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 18218
},
{
"endIndex": 18541,
"paragraph": {
"bullet": {
"listId": "kix.w3xdpsln97hm",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 18525,
"startIndex": 18520,
"textRun": {
"content": "_json",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 18541,
"startIndex": 18525,
"textRun": {
"content": " is a Map type.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18520
},
{
"endIndex": 18572,
"paragraph": {
"bullet": {
"listId": "kix.w3xdpsln97hm",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 18546,
"startIndex": 18541,
"textRun": {
"content": "_json",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 18558,
"startIndex": 18546,
"textRun": {
"content": " contains a ",
"textStyle": {}
}
},
{
"endIndex": 18566,
"startIndex": 18558,
"textRun": {
"content": "metadata",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.21960784,
"green": 0.5019608,
"red": 0.09411765
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 18571,
"startIndex": 18566,
"textRun": {
"content": " key.",
"textStyle": {}
}
},
{
"endIndex": 18572,
"startIndex": 18571,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.21960784,
"green": 0.5019608,
"red": 0.09411765
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18541
},
{
"endIndex": 18591,
"paragraph": {
"bullet": {
"listId": "kix.w3xdpsln97hm",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 18577,
"startIndex": 18572,
"textRun": {
"content": "_json",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 18591,
"startIndex": 18577,
"textRun": {
"content": " is not null.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18572
},
{
"endIndex": 18629,
"paragraph": {
"bullet": {
"listId": "kix.w3xdpsln97hm",
"textStyle": {}
},
"elements": [
{
"endIndex": 18608,
"startIndex": 18591,
"textRun": {
"content": "_json['metadata']",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 18629,
"startIndex": 18608,
"textRun": {
"content": " is also a Map type.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18591
},
{
"endIndex": 18685,
"paragraph": {
"bullet": {
"listId": "kix.w3xdpsln97hm",
"textStyle": {}
},
"elements": [
{
"endIndex": 18646,
"startIndex": 18629,
"textRun": {
"content": "_json['metadata']",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 18665,
"startIndex": 18646,
"textRun": {
"content": " contains the keys ",
"textStyle": {}
}
},
{
"endIndex": 18670,
"startIndex": 18665,
"textRun": {
"content": "title",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 18675,
"startIndex": 18670,
"textRun": {
"content": " and ",
"textStyle": {}
}
},
{
"endIndex": 18683,
"startIndex": 18675,
"textRun": {
"content": "modified",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 18685,
"startIndex": 18683,
"textRun": {
"content": ".\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18629
},
{
"endIndex": 18738,
"paragraph": {
"bullet": {
"listId": "kix.w3xdpsln97hm",
"textStyle": {}
},
"elements": [
{
"endIndex": 18690,
"startIndex": 18685,
"textRun": {
"content": "title",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 18695,
"startIndex": 18690,
"textRun": {
"content": " and ",
"textStyle": {}
}
},
{
"endIndex": 18708,
"startIndex": 18695,
"textRun": {
"content": "localModified",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 18737,
"startIndex": 18708,
"textRun": {
"content": " are strings and aren't null.",
"textStyle": {}
}
},
{
"endIndex": 18738,
"startIndex": 18737,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18685
},
{
"endIndex": 18739,
"paragraph": {
"elements": [
{
"endIndex": 18739,
"startIndex": 18738,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 18738
},
{
"endIndex": 18990,
"paragraph": {
"elements": [
{
"endIndex": 18771,
"startIndex": 18739,
"textRun": {
"content": "If the value doesnβt match, the ",
"textStyle": {}
}
},
{
"endIndex": 18786,
"startIndex": 18771,
"textRun": {
"content": "pattern refutes",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 18839,
"startIndex": 18786,
"textRun": {
"content": " (refuses to continue execution) and proceeds to the ",
"textStyle": {}
}
},
{
"endIndex": 18843,
"startIndex": 18839,
"textRun": {
"content": "else",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 18919,
"startIndex": 18843,
"textRun": {
"content": " clause. If the match is successful, the pattern destructures the values of ",
"textStyle": {}
}
},
{
"endIndex": 18924,
"startIndex": 18919,
"textRun": {
"content": "title",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 18929,
"startIndex": 18924,
"textRun": {
"content": " and ",
"textStyle": {}
}
},
{
"endIndex": 18937,
"startIndex": 18929,
"textRun": {
"content": "modified",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 18990,
"startIndex": 18937,
"textRun": {
"content": " from the map and binds them to new local variables.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 18739
},
{
"endIndex": 18991,
"paragraph": {
"elements": [
{
"endIndex": 18991,
"startIndex": 18990,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 18990
},
{
"endIndex": 19088,
"paragraph": {
"elements": [
{
"endIndex": 19028,
"startIndex": 18991,
"textRun": {
"content": "For a full list of patterns, see the ",
"textStyle": {}
}
},
{
"endIndex": 19057,
"startIndex": 19028,
"textRun": {
"content": "table in the Patterns section",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/dart-lang/language/blob/master/accepted/future-releases/0546-patterns/feature-specification.md#patterns"
},
"underline": true
}
}
},
{
"endIndex": 19088,
"startIndex": 19057,
"textRun": {
"content": " of the feature specification.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 18991
},
{
"endIndex": 19089,
"paragraph": {
"elements": [
{
"endIndex": 19089,
"startIndex": 19088,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19088
},
{
"endIndex": 19200,
"startIndex": 19089,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 19199,
"startIndex": 19090,
"tableCells": [
{
"content": [
{
"endIndex": 19199,
"paragraph": {
"elements": [
{
"endIndex": 19101,
"startIndex": 19092,
"textRun": {
"content": "Summary: ",
"textStyle": {
"bold": true
}
}
},
{
"endIndex": 19102,
"startIndex": 19101,
"textRun": {
"content": "U",
"textStyle": {}
}
},
{
"endIndex": 19199,
"startIndex": 19102,
"textRun": {
"content": "sing patterns in this step tests types, destructures, and binds values using a single statement.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19092
}
],
"endIndex": 19199,
"startIndex": 19091,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.827451,
"green": 0.91764706,
"red": 0.8509804
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 19234,
"paragraph": {
"elements": [
{
"endIndex": 19234,
"startIndex": 19200,
"textRun": {
"content": "Prepare the app for more patterns\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.hkoplv4js2dj",
"namedStyleType": "HEADING_1"
}
},
"startIndex": 19200
},
{
"endIndex": 19249,
"paragraph": {
"elements": [
{
"endIndex": 19248,
"startIndex": 19234,
"textRun": {
"content": "Duration: 2:00",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 19249,
"startIndex": 19248,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19234
},
{
"endIndex": 19250,
"paragraph": {
"elements": [
{
"endIndex": 19250,
"startIndex": 19249,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19249
},
{
"endIndex": 19438,
"paragraph": {
"elements": [
{
"endIndex": 19274,
"startIndex": 19250,
"textRun": {
"content": "So far, you address the ",
"textStyle": {}
}
},
{
"endIndex": 19282,
"startIndex": 19274,
"textRun": {
"content": "metadata",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 19397,
"startIndex": 19282,
"textRun": {
"content": " part of the JSON data. In this step, you refine your business logic a bit more in order to handle the data in the ",
"textStyle": {}
}
},
{
"endIndex": 19403,
"startIndex": 19397,
"textRun": {
"content": "blocks",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 19408,
"startIndex": 19403,
"textRun": {
"content": " list",
"textStyle": {}
}
},
{
"endIndex": 19438,
"startIndex": 19408,
"textRun": {
"content": " and render it into your app.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19250
},
{
"endIndex": 19440,
"paragraph": {
"elements": [
{
"endIndex": 19440,
"startIndex": 19438,
"textRun": {
"content": " \n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19438
},
{
"endIndex": 19568,
"startIndex": 19440,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 19567,
"startIndex": 19441,
"tableCells": [
{
"content": [
{
"endIndex": 19445,
"paragraph": {
"elements": [
{
"endIndex": 19445,
"startIndex": 19443,
"textRun": {
"content": "{\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19443
},
{
"endIndex": 19461,
"paragraph": {
"elements": [
{
"endIndex": 19461,
"startIndex": 19445,
"textRun": {
"content": " \"metadata\": {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19445
},
{
"endIndex": 19472,
"paragraph": {
"elements": [
{
"endIndex": 19472,
"startIndex": 19461,
"textRun": {
"content": " // ...\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19461
},
{
"endIndex": 19477,
"paragraph": {
"elements": [
{
"endIndex": 19477,
"startIndex": 19472,
"textRun": {
"content": " },\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19472
},
{
"endIndex": 19491,
"paragraph": {
"elements": [
{
"endIndex": 19491,
"startIndex": 19477,
"textRun": {
"content": " \"blocks\": [\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19477
},
{
"endIndex": 19497,
"paragraph": {
"elements": [
{
"endIndex": 19497,
"startIndex": 19491,
"textRun": {
"content": " {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19491
},
{
"endIndex": 19517,
"paragraph": {
"elements": [
{
"endIndex": 19517,
"startIndex": 19497,
"textRun": {
"content": " \"type\": \"h1\",\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19497
},
{
"endIndex": 19543,
"paragraph": {
"elements": [
{
"endIndex": 19543,
"startIndex": 19517,
"textRun": {
"content": " \"text\": \"Chapter 1\"\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19517
},
{
"endIndex": 19550,
"paragraph": {
"elements": [
{
"endIndex": 19550,
"startIndex": 19543,
"textRun": {
"content": " },\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19543
},
{
"endIndex": 19561,
"paragraph": {
"elements": [
{
"endIndex": 19561,
"startIndex": 19550,
"textRun": {
"content": " // ...\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19550
},
{
"endIndex": 19565,
"paragraph": {
"elements": [
{
"endIndex": 19565,
"startIndex": 19561,
"textRun": {
"content": " ]\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19561
},
{
"endIndex": 19567,
"paragraph": {
"elements": [
{
"endIndex": 19567,
"startIndex": 19565,
"textRun": {
"content": "}\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19565
}
],
"endIndex": 19567,
"startIndex": 19442,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 19569,
"paragraph": {
"elements": [
{
"endIndex": 19569,
"startIndex": 19568,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19568
},
{
"endIndex": 19601,
"paragraph": {
"elements": [
{
"endIndex": 19600,
"startIndex": 19569,
"textRun": {
"content": "Create a class that stores data",
"textStyle": {}
}
},
{
"endIndex": 19601,
"startIndex": 19600,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.e2lkdi57402r",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 19569
},
{
"endIndex": 19720,
"paragraph": {
"bullet": {
"listId": "kix.ugzokp4cwudf",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 19618,
"startIndex": 19601,
"textRun": {
"content": "Add a new class, ",
"textStyle": {}
}
},
{
"endIndex": 19623,
"startIndex": 19618,
"textRun": {
"content": "Block",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 19628,
"startIndex": 19623,
"textRun": {
"content": ", to ",
"textStyle": {}
}
},
{
"endIndex": 19637,
"startIndex": 19628,
"textRun": {
"content": "data.dart",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 19719,
"startIndex": 19637,
"textRun": {
"content": ", which is used to read and store the data for one of the blocks in the JSON data.",
"textStyle": {}
}
},
{
"endIndex": 19720,
"startIndex": 19719,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19601
},
{
"endIndex": 19734,
"paragraph": {
"elements": [
{
"endIndex": 19733,
"startIndex": 19720,
"textRun": {
"content": "lib/data.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/dart-patterns-and-records/step_08/lib/data.dart"
},
"underline": true
}
}
},
{
"endIndex": 19734,
"startIndex": 19733,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.ge9la6aiy6ve",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 19720
},
{
"endIndex": 20060,
"startIndex": 19734,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 20059,
"startIndex": 19735,
"tableCells": [
{
"content": [
{
"endIndex": 19751,
"paragraph": {
"elements": [
{
"endIndex": 19751,
"startIndex": 19737,
"textRun": {
"content": "class Block {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19737
},
{
"endIndex": 19772,
"paragraph": {
"elements": [
{
"endIndex": 19772,
"startIndex": 19751,
"textRun": {
"content": " final String type;\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19751
},
{
"endIndex": 19793,
"paragraph": {
"elements": [
{
"endIndex": 19793,
"startIndex": 19772,
"textRun": {
"content": " final String text;\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19772
},
{
"endIndex": 19824,
"paragraph": {
"elements": [
{
"endIndex": 19824,
"startIndex": 19793,
"textRun": {
"content": " Block(this.type, this.text);\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19793
},
{
"endIndex": 19825,
"paragraph": {
"elements": [
{
"endIndex": 19825,
"startIndex": 19824,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19824
},
{
"endIndex": 19879,
"paragraph": {
"elements": [
{
"endIndex": 19879,
"startIndex": 19825,
"textRun": {
"content": " factory Block.fromJson(Map<String, dynamic> json) {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19825
},
{
"endIndex": 19941,
"paragraph": {
"elements": [
{
"endIndex": 19941,
"startIndex": 19879,
"textRun": {
"content": " if (json case {'type': final type, 'text': final text}) {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19879
},
{
"endIndex": 19973,
"paragraph": {
"elements": [
{
"endIndex": 19973,
"startIndex": 19941,
"textRun": {
"content": " return Block(type, text);\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19941
},
{
"endIndex": 19986,
"paragraph": {
"elements": [
{
"endIndex": 19986,
"startIndex": 19973,
"textRun": {
"content": " } else {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19973
},
{
"endIndex": 20047,
"paragraph": {
"elements": [
{
"endIndex": 20047,
"startIndex": 19986,
"textRun": {
"content": " throw const FormatException('Unexpected JSON format');\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 19986
},
{
"endIndex": 20053,
"paragraph": {
"elements": [
{
"endIndex": 20053,
"startIndex": 20047,
"textRun": {
"content": " }\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20047
},
{
"endIndex": 20057,
"paragraph": {
"elements": [
{
"endIndex": 20057,
"startIndex": 20053,
"textRun": {
"content": " }\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20053
},
{
"endIndex": 20059,
"paragraph": {
"elements": [
{
"endIndex": 20059,
"startIndex": 20057,
"textRun": {
"content": "}\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20057
}
],
"endIndex": 20059,
"startIndex": 19736,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 20061,
"paragraph": {
"elements": [
{
"endIndex": 20061,
"startIndex": 20060,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20060
},
{
"endIndex": 20163,
"paragraph": {
"elements": [
{
"endIndex": 20085,
"startIndex": 20061,
"textRun": {
"content": "The factory constructor ",
"textStyle": {}
}
},
{
"endIndex": 20095,
"startIndex": 20085,
"textRun": {
"content": "fromJson()",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 20163,
"startIndex": 20095,
"textRun": {
"content": " uses the same if-case with a map pattern that youβve seen before. \n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20061
},
{
"endIndex": 20164,
"paragraph": {
"elements": [
{
"endIndex": 20164,
"startIndex": 20163,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20163
},
{
"endIndex": 20388,
"paragraph": {
"elements": [
{
"endIndex": 20180,
"startIndex": 20164,
"textRun": {
"content": "Notice that the ",
"textStyle": {}
}
},
{
"endIndex": 20184,
"startIndex": 20180,
"textRun": {
"content": "json",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 20239,
"startIndex": 20184,
"textRun": {
"content": " matches the map pattern, even though one of the keys, ",
"textStyle": {}
}
},
{
"endIndex": 20246,
"startIndex": 20239,
"textRun": {
"content": "checked",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 20254,
"startIndex": 20246,
"textRun": {
"content": ", is not",
"textStyle": {}
}
},
{
"endIndex": 20388,
"startIndex": 20254,
"textRun": {
"content": " accounted for in the pattern. Map patterns ignore any entries in the map object that arenβt explicitly accounted for in the pattern.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20164
},
{
"endIndex": 20419,
"paragraph": {
"elements": [
{
"endIndex": 20418,
"startIndex": 20388,
"textRun": {
"content": "Return a list of Block objects",
"textStyle": {}
}
},
{
"endIndex": 20419,
"startIndex": 20418,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.n19bd2b94m9o",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 20388
},
{
"endIndex": 20594,
"paragraph": {
"bullet": {
"listId": "kix.9k9nrzl80p49",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 20426,
"startIndex": 20419,
"textRun": {
"content": "Next, a",
"textStyle": {}
}
},
{
"endIndex": 20445,
"startIndex": 20426,
"textRun": {
"content": "dd a new function, ",
"textStyle": {}
}
},
{
"endIndex": 20456,
"startIndex": 20445,
"textRun": {
"content": "getBlocks()",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 20457,
"startIndex": 20456,
"textRun": {
"content": ",",
"textStyle": {}
}
},
{
"endIndex": 20458,
"startIndex": 20457,
"textRun": {
"content": " ",
"textStyle": {}
}
},
{
"endIndex": 20465,
"startIndex": 20458,
"textRun": {
"content": "to the ",
"textStyle": {}
}
},
{
"endIndex": 20473,
"startIndex": 20465,
"textRun": {
"content": "Document",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 20481,
"startIndex": 20473,
"textRun": {
"content": " class. ",
"textStyle": {}
}
},
{
"endIndex": 20492,
"startIndex": 20481,
"textRun": {
"content": "getBlocks()",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 20531,
"startIndex": 20492,
"textRun": {
"content": " parses the JSON into instances of the ",
"textStyle": {}
}
},
{
"endIndex": 20536,
"startIndex": 20531,
"textRun": {
"content": "Block",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 20544,
"startIndex": 20536,
"textRun": {
"content": " class a",
"textStyle": {}
}
},
{
"endIndex": 20593,
"startIndex": 20544,
"textRun": {
"content": "nd returns a list of blocks to render in your UI:",
"textStyle": {}
}
},
{
"endIndex": 20594,
"startIndex": 20593,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 20419
},
{
"endIndex": 20608,
"paragraph": {
"elements": [
{
"endIndex": 20607,
"startIndex": 20594,
"textRun": {
"content": "lib/data.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/dart-patterns-and-records/step_08/lib/data.dart"
},
"underline": true
}
}
},
{
"endIndex": 20608,
"startIndex": 20607,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.jmifchr63cwh",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 20594
},
{
"endIndex": 21425,
"startIndex": 20608,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 21424,
"startIndex": 20609,
"tableCells": [
{
"content": [
{
"endIndex": 20628,
"paragraph": {
"elements": [
{
"endIndex": 20628,
"startIndex": 20611,
"textRun": {
"content": "class Document {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20611
},
{
"endIndex": 20664,
"paragraph": {
"elements": [
{
"endIndex": 20664,
"startIndex": 20628,
"textRun": {
"content": " final Map<String, Object?> _json;\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20628
},
{
"endIndex": 20713,
"paragraph": {
"elements": [
{
"endIndex": 20713,
"startIndex": 20664,
"textRun": {
"content": " Document() : _json = jsonDecode(documentJson);\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20664
},
{
"endIndex": 20714,
"paragraph": {
"elements": [
{
"endIndex": 20714,
"startIndex": 20713,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20713
},
{
"endIndex": 20761,
"paragraph": {
"elements": [
{
"endIndex": 20761,
"startIndex": 20714,
"textRun": {
"content": " (String, {DateTime modified}) get metadata {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20714
},
{
"endIndex": 20775,
"paragraph": {
"elements": [
{
"endIndex": 20775,
"startIndex": 20761,
"textRun": {
"content": " if (_json\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20761
},
{
"endIndex": 20790,
"paragraph": {
"elements": [
{
"endIndex": 20790,
"startIndex": 20775,
"textRun": {
"content": " case {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20775
},
{
"endIndex": 20814,
"paragraph": {
"elements": [
{
"endIndex": 20814,
"startIndex": 20790,
"textRun": {
"content": " 'metadata': {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20790
},
{
"endIndex": 20849,
"paragraph": {
"elements": [
{
"endIndex": 20849,
"startIndex": 20814,
"textRun": {
"content": " 'title': String title,\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20814
},
{
"endIndex": 20895,
"paragraph": {
"elements": [
{
"endIndex": 20895,
"startIndex": 20849,
"textRun": {
"content": " 'modified': String localModified,\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20849
},
{
"endIndex": 20907,
"paragraph": {
"elements": [
{
"endIndex": 20907,
"startIndex": 20895,
"textRun": {
"content": " }\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20895
},
{
"endIndex": 20920,
"paragraph": {
"elements": [
{
"endIndex": 20920,
"startIndex": 20907,
"textRun": {
"content": " }) {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20907
},
{
"endIndex": 20983,
"paragraph": {
"elements": [
{
"endIndex": 20983,
"startIndex": 20920,
"textRun": {
"content": " return (title, modified: DateTime.parse(localModified));\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20920
},
{
"endIndex": 20996,
"paragraph": {
"elements": [
{
"endIndex": 20996,
"startIndex": 20983,
"textRun": {
"content": " } else {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20983
},
{
"endIndex": 21050,
"paragraph": {
"elements": [
{
"endIndex": 21050,
"startIndex": 20996,
"textRun": {
"content": " throw const FormatException('Unexpected JSON');\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20996
},
{
"endIndex": 21056,
"paragraph": {
"elements": [
{
"endIndex": 21056,
"startIndex": 21050,
"textRun": {
"content": " }\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 21050
},
{
"endIndex": 21060,
"paragraph": {
"elements": [
{
"endIndex": 21060,
"startIndex": 21056,
"textRun": {
"content": " }\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 21056
},
{
"endIndex": 21061,
"paragraph": {
"elements": [
{
"endIndex": 21061,
"startIndex": 21060,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 21060
},
{
"endIndex": 21141,
"paragraph": {
"elements": [
{
"endIndex": 21141,
"startIndex": 21061,
"textRun": {
"content": " List<Block> getBlocks() { // Add from here⦠\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 21061
},
{
"endIndex": 21191,
"paragraph": {
"elements": [
{
"endIndex": 21191,
"startIndex": 21141,
"textRun": {
"content": " if (_json case {'blocks': List blocksJson}) {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 21141
},
{
"endIndex": 21269,
"paragraph": {
"elements": [
{
"endIndex": 21269,
"startIndex": 21191,
"textRun": {
"content": " return [for (final blockJson in blocksJson) Block.fromJson(blockJson)];\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 21191
},
{
"endIndex": 21282,
"paragraph": {
"elements": [
{
"endIndex": 21282,
"startIndex": 21269,
"textRun": {
"content": " } else {\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 21269
},
{
"endIndex": 21343,
"paragraph": {
"elements": [
{
"endIndex": 21343,
"startIndex": 21282,
"textRun": {
"content": " throw const FormatException('Unexpected JSON format');\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 21282
},
{
"endIndex": 21349,
"paragraph": {
"elements": [
{
"endIndex": 21349,
"startIndex": 21343,
"textRun": {
"content": " }\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 21343
},
{
"endIndex": 21422,
"paragraph": {
"elements": [
{
"endIndex": 21422,
"startIndex": 21349,
"textRun": {
"content": " } // to here.\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 21349
},
{
"endIndex": 21424,
"paragraph": {
"elements": [
{
"endIndex": 21424,
"startIndex": 21422,
"textRun": {
"content": "}\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 21422
}
],
"endIndex": 21424,
"startIndex": 20610,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 21426,
"paragraph": {
"elements": [
{
"endIndex": 21426,
"startIndex": 21425,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 21425
},
{
"endIndex": 21715,
"paragraph": {
"elements": [
{
"endIndex": 21430,
"startIndex": 21426,
"textRun": {
"content": "The ",
"textStyle": {}
}
},
{
"endIndex": 21441,
"startIndex": 21430,
"textRun": {
"content": "getBlocks()",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 21469,
"startIndex": 21441,
"textRun": {
"content": " function returns a list of ",
"textStyle": {}
}
},
{
"endIndex": 21474,
"startIndex": 21469,
"textRun": {
"content": "Block",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 21606,
"startIndex": 21474,
"textRun": {
"content": " objects, which you use later in order to build the UI. A familiar if-case statement performs validation and casts the value of the ",
"textStyle": {}
}
},
{
"endIndex": 21612,
"startIndex": 21606,
"textRun": {
"content": "blocks",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 21633,
"startIndex": 21612,
"textRun": {
"content": " metadata into a new ",
"textStyle": {}
}
},
{
"endIndex": 21637,
"startIndex": 21633,
"textRun": {
"content": "List",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 21644,
"startIndex": 21637,
"textRun": {
"content": " named ",
"textStyle": {}
}
},
{
"endIndex": 21654,
"startIndex": 21644,
"textRun": {
"content": "blocksJson",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 21689,
"startIndex": 21654,
"textRun": {
"content": " (without patterns, youβd need the ",
"textStyle": {}
}
},
{
"endIndex": 21697,
"startIndex": 21689,
"textRun": {
"content": "toList()",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://api.dart.dev/stable/dart-core/Iterable/toList.html"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 21714,
"startIndex": 21697,
"textRun": {
"content": " method to cast).",
"textStyle": {}
}
},
{
"endIndex": 21715,
"startIndex": 21714,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 21426
},
{
"endIndex": 21716,
"paragraph": {
"elements": [
{
"endIndex": 21716,
"startIndex": 21715,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 21715
},
{
"endIndex": 21809,
"paragraph": {
"elements": [
{
"endIndex": 21744,
"startIndex": 21716,
"textRun": {
"content": "The list literal contains a ",
"textStyle": {}
}
},
{
"endIndex": 21758,
"startIndex": 21744,
"textRun": {
"content": "collection for",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://dart.dev/language/collections#collection-operators"
},
"underline": true
}
}
},
{
"endIndex": 21794,
"startIndex": 21758,
"textRun": {
"content": " in order to fill the new list with ",
"textStyle": {}
}
},
{
"endIndex": 21799,
"startIndex": 21794,
"textRun": {
"content": "Block",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 21808,
"startIndex": 21799,
"textRun": {
"content": " objects.",
"textStyle": {}
}
},
{
"endIndex": 21809,
"startIndex": 21808,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 21716
},
{
"endIndex": 21810,
"paragraph": {
"elements": [
{
"endIndex": 21810,
"startIndex": 21809,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 21809
},
{
"endIndex": 21980,
"paragraph": {
"elements": [
{
"endIndex": 21979,
"startIndex": 21810,
"textRun": {
"content": "This section doesnβt introduce any pattern-related features you havenβt already tried in this codelab. In the next step, you prepare to render the list items in your UI.",
"textStyle": {}
}
},
{
"endIndex": 21980,
"startIndex": 21979,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 21810
},
{
"endIndex": 22017,
"paragraph": {
"elements": [
{
"endIndex": 22017,
"startIndex": 21980,
"textRun": {
"content": "Use patterns to display the document\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.i44naeu2u775",
"namedStyleType": "HEADING_1"
}
},
"startIndex": 21980
},
{
"endIndex": 22032,
"paragraph": {
"elements": [
{
"endIndex": 22032,
"startIndex": 22017,
"textRun": {
"content": "Duration: 4:00\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 22017
},
{
"endIndex": 22316,
"paragraph": {
"elements": [
{
"endIndex": 22039,
"startIndex": 22032,
"textRun": {
"content": "You now",
"textStyle": {}
}
},
{
"endIndex": 22094,
"startIndex": 22039,
"textRun": {
"content": " successfully destructure and recompose your JSON data,",
"textStyle": {}
}
},
{
"endIndex": 22316,
"startIndex": 22094,
"textRun": {
"content": " using an if-case statement and refutable patterns. But if-case is only one of the enhancements to control flow structures that come with patterns. Now, you apply your knowledge of refutable patterns to switch statements.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 22032
},
{
"endIndex": 22378,
"paragraph": {
"elements": [
{
"endIndex": 22377,
"startIndex": 22316,
"textRun": {
"content": "Control whatβs rendered using patterns with switch statements",
"textStyle": {}
}
},
{
"endIndex": 22378,
"startIndex": 22377,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.mrd1p7wmy500",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 22316
},
{
"endIndex": 22493,
"paragraph": {
"bullet": {
"listId": "kix.a3xmjtope7n9",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 22381,
"startIndex": 22378,
"textRun": {
"content": "In ",
"textStyle": {}
}
},
{
"endIndex": 22390,
"startIndex": 22381,
"textRun": {
"content": "main.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.21960784,
"green": 0.5019608,
"red": 0.09411765
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 22413,
"startIndex": 22390,
"textRun": {
"content": ", create a new widget, ",
"textStyle": {}
}
},
{
"endIndex": 22424,
"startIndex": 22413,
"textRun": {
"content": "BlockWidget",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 22425,
"startIndex": 22424,
"textRun": {
"content": ",",
"textStyle": {}
}
},
{
"endIndex": 22481,
"startIndex": 22425,
"textRun": {
"content": " that determines the styling of each block based on its ",
"textStyle": {}
}
},
{
"endIndex": 22485,
"startIndex": 22481,
"textRun": {
"content": "type",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 22492,
"startIndex": 22485,
"textRun": {
"content": " field.",
"textStyle": {}
}
},
{
"endIndex": 22493,
"startIndex": 22492,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22378
},
{
"endIndex": 22507,
"paragraph": {
"elements": [
{
"endIndex": 22506,
"startIndex": 22493,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/dart-patterns-and-records/step_09/lib/main.dart"
},
"underline": true
}
}
},
{
"endIndex": 22507,
"startIndex": 22506,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.lfig9orpitjc",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 22493
},
{
"endIndex": 23147,
"startIndex": 22507,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 23146,
"startIndex": 22508,
"tableCells": [
{
"content": [
{
"endIndex": 22554,
"paragraph": {
"elements": [
{
"endIndex": 22554,
"startIndex": 22510,
"textRun": {
"content": "class BlockWidget extends StatelessWidget {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 22510
},
{
"endIndex": 22575,
"paragraph": {
"elements": [
{
"endIndex": 22575,
"startIndex": 22554,
"textRun": {
"content": " final Block block;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 22554
},
{
"endIndex": 22576,
"paragraph": {
"elements": [
{
"endIndex": 22576,
"startIndex": 22575,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 22575
},
{
"endIndex": 22598,
"paragraph": {
"elements": [
{
"endIndex": 22598,
"startIndex": 22576,
"textRun": {
"content": " const BlockWidget({\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 22576
},
{
"endIndex": 22623,
"paragraph": {
"elements": [
{
"endIndex": 22623,
"startIndex": 22598,
"textRun": {
"content": " required this.block,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 22598
},
{
"endIndex": 22638,
"paragraph": {
"elements": [
{
"endIndex": 22638,
"startIndex": 22623,
"textRun": {
"content": " super.key,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 22623
},
{
"endIndex": 22644,
"paragraph": {
"elements": [
{
"endIndex": 22644,
"startIndex": 22638,
"textRun": {
"content": " });\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 22638
},
{
"endIndex": 22645,
"paragraph": {
"elements": [
{
"endIndex": 22645,
"startIndex": 22644,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 22644
},
{
"endIndex": 22657,
"paragraph": {
"elements": [
{
"endIndex": 22657,
"startIndex": 22645,
"textRun": {
"content": " @override\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 22645
},
{
"endIndex": 22696,
"paragraph": {
"elements": [
{
"endIndex": 22696,
"startIndex": 22657,
"textRun": {
"content": " Widget build(BuildContext context) {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 22657
},
{
"endIndex": 22722,
"paragraph": {
"elements": [
{
"endIndex": 22722,
"startIndex": 22696,
"textRun": {
"content": " TextStyle? textStyle;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 22696
},
{
"endIndex": 22748,
"paragraph": {
"elements": [
{
"endIndex": 22748,
"startIndex": 22722,
"textRun": {
"content": " switch (block.type) {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 22722
},
{
"endIndex": 22765,
"paragraph": {
"elements": [
{
"endIndex": 22765,
"startIndex": 22748,
"textRun": {
"content": " case 'h1':\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 22748
},
{
"endIndex": 22828,
"paragraph": {
"elements": [
{
"endIndex": 22828,
"startIndex": 22765,
"textRun": {
"content": " textStyle = Theme.of(context).textTheme.displayMedium;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 22765
},
{
"endIndex": 22858,
"paragraph": {
"elements": [
{
"endIndex": 22858,
"startIndex": 22828,
"textRun": {
"content": " case 'p' || 'checkbox':\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 22828
},
{
"endIndex": 22918,
"paragraph": {
"elements": [
{
"endIndex": 22918,
"startIndex": 22858,
"textRun": {
"content": " textStyle = Theme.of(context).textTheme.bodyMedium;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 22858
},
{
"endIndex": 22932,
"paragraph": {
"elements": [
{
"endIndex": 22932,
"startIndex": 22918,
"textRun": {
"content": " case _:\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 22918
},
{
"endIndex": 22991,
"paragraph": {
"elements": [
{
"endIndex": 22991,
"startIndex": 22932,
"textRun": {
"content": " textStyle = Theme.of(context).textTheme.bodySmall;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 22932
},
{
"endIndex": 22997,
"paragraph": {
"elements": [
{
"endIndex": 22997,
"startIndex": 22991,
"textRun": {
"content": " }\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 22991
},
{
"endIndex": 22998,
"paragraph": {
"elements": [
{
"endIndex": 22998,
"startIndex": 22997,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 22997
},
{
"endIndex": 23020,
"paragraph": {
"elements": [
{
"endIndex": 23020,
"startIndex": 22998,
"textRun": {
"content": " return Container(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 22998
},
{
"endIndex": 23059,
"paragraph": {
"elements": [
{
"endIndex": 23059,
"startIndex": 23020,
"textRun": {
"content": " margin: const EdgeInsets.all(8),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 23020
},
{
"endIndex": 23078,
"paragraph": {
"elements": [
{
"endIndex": 23078,
"startIndex": 23059,
"textRun": {
"content": " child: Text(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 23059
},
{
"endIndex": 23098,
"paragraph": {
"elements": [
{
"endIndex": 23098,
"startIndex": 23078,
"textRun": {
"content": " block.text,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 23078
},
{
"endIndex": 23124,
"paragraph": {
"elements": [
{
"endIndex": 23124,
"startIndex": 23098,
"textRun": {
"content": " style: textStyle,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 23098
},
{
"endIndex": 23133,
"paragraph": {
"elements": [
{
"endIndex": 23133,
"startIndex": 23124,
"textRun": {
"content": " ),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 23124
},
{
"endIndex": 23140,
"paragraph": {
"elements": [
{
"endIndex": 23140,
"startIndex": 23133,
"textRun": {
"content": " );\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 23133
},
{
"endIndex": 23144,
"paragraph": {
"elements": [
{
"endIndex": 23144,
"startIndex": 23140,
"textRun": {
"content": " }\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 23140
},
{
"endIndex": 23146,
"paragraph": {
"elements": [
{
"endIndex": 23146,
"startIndex": 23144,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 23144
}
],
"endIndex": 23146,
"startIndex": 22509,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 23148,
"paragraph": {
"elements": [
{
"endIndex": 23148,
"startIndex": 23147,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 23147
},
{
"endIndex": 23239,
"paragraph": {
"elements": [
{
"endIndex": 23176,
"startIndex": 23148,
"textRun": {
"content": "The switch statement in the ",
"textStyle": {}
}
},
{
"endIndex": 23181,
"startIndex": 23176,
"textRun": {
"content": "build",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23205,
"startIndex": 23181,
"textRun": {
"content": " method switches on the ",
"textStyle": {}
}
},
{
"endIndex": 23209,
"startIndex": 23205,
"textRun": {
"content": "type",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23223,
"startIndex": 23209,
"textRun": {
"content": " field of the ",
"textStyle": {}
}
},
{
"endIndex": 23228,
"startIndex": 23223,
"textRun": {
"content": "block",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23235,
"startIndex": 23228,
"textRun": {
"content": " object",
"textStyle": {}
}
},
{
"endIndex": 23239,
"startIndex": 23235,
"textRun": {
"content": ". \n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 23148
},
{
"endIndex": 23240,
"paragraph": {
"elements": [
{
"endIndex": 23240,
"startIndex": 23239,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 23239
},
{
"endIndex": 23367,
"paragraph": {
"bullet": {
"listId": "kix.vjp0z582afkw",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 23272,
"startIndex": 23240,
"textRun": {
"content": "The first case statement uses a ",
"textStyle": {}
}
},
{
"endIndex": 23295,
"startIndex": 23272,
"textRun": {
"content": "constant string pattern",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 23320,
"startIndex": 23295,
"textRun": {
"content": ". The pattern matches if ",
"textStyle": {}
}
},
{
"endIndex": 23330,
"startIndex": 23320,
"textRun": {
"content": "block.type",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23362,
"startIndex": 23330,
"textRun": {
"content": " is equal to the constant value ",
"textStyle": {}
}
},
{
"endIndex": 23364,
"startIndex": 23362,
"textRun": {
"content": "h1",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23367,
"startIndex": 23364,
"textRun": {
"content": ". \n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 23240
},
{
"endIndex": 23368,
"paragraph": {
"elements": [
{
"endIndex": 23368,
"startIndex": 23367,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 23367
},
{
"endIndex": 23559,
"paragraph": {
"bullet": {
"listId": "kix.vjp0z582afkw",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 23401,
"startIndex": 23368,
"textRun": {
"content": "The second case statement uses a ",
"textStyle": {}
}
},
{
"endIndex": 23419,
"startIndex": 23401,
"textRun": {
"content": "logical-or pattern",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 23497,
"startIndex": 23419,
"textRun": {
"content": " with two constant string patterns as its subpatterns. The pattern matches if ",
"textStyle": {}
}
},
{
"endIndex": 23507,
"startIndex": 23497,
"textRun": {
"content": "block.type",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23542,
"startIndex": 23507,
"textRun": {
"content": " matches either of the subpatterns ",
"textStyle": {}
}
},
{
"endIndex": 23543,
"startIndex": 23542,
"textRun": {
"content": "p",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23547,
"startIndex": 23543,
"textRun": {
"content": " or ",
"textStyle": {}
}
},
{
"endIndex": 23555,
"startIndex": 23547,
"textRun": {
"content": "checkbox",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23559,
"startIndex": 23555,
"textRun": {
"content": ". \u000b\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 23368
},
{
"endIndex": 23621,
"startIndex": 23559,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 23620,
"startIndex": 23560,
"tableCells": [
{
"content": [
{
"endIndex": 23620,
"paragraph": {
"elements": [
{
"endIndex": 23576,
"startIndex": 23562,
"textRun": {
"content": "Did you know? ",
"textStyle": {
"bold": true
}
}
},
{
"endIndex": 23596,
"startIndex": 23576,
"textRun": {
"content": "logical-and patterns",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 23598,
"startIndex": 23596,
"textRun": {
"content": " (",
"textStyle": {}
}
},
{
"endIndex": 23600,
"startIndex": 23598,
"textRun": {
"content": "&&",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23619,
"startIndex": 23600,
"textRun": {
"content": ") can also be used.",
"textStyle": {}
}
},
{
"endIndex": 23620,
"startIndex": 23619,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 23562
}
],
"endIndex": 23620,
"startIndex": 23561,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.827451,
"green": 0.91764706,
"red": 0.8509804
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 23622,
"paragraph": {
"elements": [
{
"endIndex": 23622,
"startIndex": 23621,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 23621
},
{
"endIndex": 23984,
"paragraph": {
"bullet": {
"listId": "kix.vjp0z582afkw",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 23642,
"startIndex": 23622,
"textRun": {
"content": "The final case is a ",
"textStyle": {}
}
},
{
"endIndex": 23658,
"startIndex": 23642,
"textRun": {
"content": "wildcard pattern",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 23660,
"startIndex": 23658,
"textRun": {
"content": ", ",
"textStyle": {}
}
},
{
"endIndex": 23661,
"startIndex": 23660,
"textRun": {
"content": "_",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23736,
"startIndex": 23661,
"textRun": {
"content": ". Wildcards in switch cases match everything else. They behave the same as ",
"textStyle": {}
}
},
{
"endIndex": 23743,
"startIndex": 23736,
"textRun": {
"content": "default",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23945,
"startIndex": 23743,
"textRun": {
"content": " clauses, which are still allowed in switch statements (theyβre just a little more verbose).\u000b\u000bWildcard patterns can be used wherever a pattern is allowedβfor example, in a variable declaration pattern:\u000b",
"textStyle": {}
}
},
{
"endIndex": 23982,
"startIndex": 23945,
"textRun": {
"content": " var (title, _) = document.metadata;",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.23137255,
"green": 0.23137255,
"red": 0.23137255
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23983,
"startIndex": 23982,
"textRun": {
"content": "\u000b",
"textStyle": {}
}
},
{
"endIndex": 23984,
"startIndex": 23983,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 23622
},
{
"endIndex": 24071,
"paragraph": {
"elements": [
{
"endIndex": 24071,
"startIndex": 23984,
"textRun": {
"content": "In this context, the wildcard doesnβt bind any variable. It discards the second field.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 23984
},
{
"endIndex": 24072,
"paragraph": {
"elements": [
{
"endIndex": 24072,
"startIndex": 24071,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24071
},
{
"endIndex": 24073,
"paragraph": {
"elements": [
{
"endIndex": 24073,
"startIndex": 24072,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24072
},
{
"endIndex": 24227,
"startIndex": 24073,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 24226,
"startIndex": 24074,
"tableCells": [
{
"content": [
{
"endIndex": 24226,
"paragraph": {
"elements": [
{
"endIndex": 24081,
"startIndex": 24076,
"textRun": {
"content": "Note:",
"textStyle": {
"bold": true
}
}
},
{
"endIndex": 24082,
"startIndex": 24081,
"textRun": {
"content": " ",
"textStyle": {}
}
},
{
"endIndex": 24118,
"startIndex": 24082,
"textRun": {
"content": "Switch statements no longer require ",
"textStyle": {}
}
},
{
"endIndex": 24123,
"startIndex": 24118,
"textRun": {
"content": "break",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 24226,
"startIndex": 24123,
"textRun": {
"content": " as of Dart 3. Non-empty cases jump to the end of the statement when they reach the end of their body.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24076
}
],
"endIndex": 24226,
"startIndex": 24075,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.827451,
"green": 0.91764706,
"red": 0.8509804
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 24228,
"paragraph": {
"elements": [
{
"endIndex": 24228,
"startIndex": 24227,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24227
},
{
"endIndex": 24322,
"paragraph": {
"elements": [
{
"endIndex": 24292,
"startIndex": 24228,
"textRun": {
"content": "In the next section, you learn about more switch features after ",
"textStyle": {}
}
},
{
"endIndex": 24306,
"startIndex": 24292,
"textRun": {
"content": "displaying the",
"textStyle": {}
}
},
{
"endIndex": 24307,
"startIndex": 24306,
"textRun": {
"content": " ",
"textStyle": {}
}
},
{
"endIndex": 24312,
"startIndex": 24307,
"textRun": {
"content": "Block",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 24321,
"startIndex": 24312,
"textRun": {
"content": " objects.",
"textStyle": {}
}
},
{
"endIndex": 24322,
"startIndex": 24321,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24228
},
{
"endIndex": 24351,
"paragraph": {
"elements": [
{
"endIndex": 24350,
"startIndex": 24322,
"textRun": {
"content": "Display the document content",
"textStyle": {}
}
},
{
"endIndex": 24351,
"startIndex": 24350,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.m3ty4akt3v4k",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 24322
},
{
"endIndex": 24483,
"paragraph": {
"elements": [
{
"endIndex": 24401,
"startIndex": 24351,
"textRun": {
"content": "Create a local variable that contains the list of ",
"textStyle": {}
}
},
{
"endIndex": 24406,
"startIndex": 24401,
"textRun": {
"content": "Block",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 24426,
"startIndex": 24406,
"textRun": {
"content": " objects by calling ",
"textStyle": {}
}
},
{
"endIndex": 24437,
"startIndex": 24426,
"textRun": {
"content": "getBlocks()",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 24445,
"startIndex": 24437,
"textRun": {
"content": " in the ",
"textStyle": {}
}
},
{
"endIndex": 24459,
"startIndex": 24445,
"textRun": {
"content": "DocumentScreen",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 24469,
"startIndex": 24459,
"textRun": {
"content": " widget's ",
"textStyle": {}
}
},
{
"endIndex": 24474,
"startIndex": 24469,
"textRun": {
"content": "build",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 24483,
"startIndex": 24474,
"textRun": {
"content": " method.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24351
},
{
"endIndex": 24484,
"paragraph": {
"elements": [
{
"endIndex": 24484,
"startIndex": 24483,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24483
},
{
"endIndex": 24560,
"paragraph": {
"bullet": {
"listId": "kix.e3w5dzmwqs7s",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 24505,
"startIndex": 24484,
"textRun": {
"content": "Replace the existing ",
"textStyle": {}
}
},
{
"endIndex": 24510,
"startIndex": 24505,
"textRun": {
"content": "build",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 24521,
"startIndex": 24510,
"textRun": {
"content": " method in ",
"textStyle": {}
}
},
{
"endIndex": 24540,
"startIndex": 24521,
"textRun": {
"content": "DocumentationScreen",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 24560,
"startIndex": 24540,
"textRun": {
"content": " with this version:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 24484
},
{
"endIndex": 24574,
"paragraph": {
"elements": [
{
"endIndex": 24573,
"startIndex": 24560,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/dart-patterns-and-records/step_09/lib/main.dart"
},
"underline": true
}
}
},
{
"endIndex": 24574,
"startIndex": 24573,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.2jxf0i2gbgxq",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 24560
},
{
"endIndex": 25466,
"startIndex": 24574,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 25465,
"startIndex": 24575,
"tableCells": [
{
"content": [
{
"endIndex": 24624,
"paragraph": {
"elements": [
{
"endIndex": 24624,
"startIndex": 24577,
"textRun": {
"content": "class DocumentScreen extends StatelessWidget {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24577
},
{
"endIndex": 24651,
"paragraph": {
"elements": [
{
"endIndex": 24651,
"startIndex": 24624,
"textRun": {
"content": " final Document document;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24624
},
{
"endIndex": 24652,
"paragraph": {
"elements": [
{
"endIndex": 24652,
"startIndex": 24651,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24651
},
{
"endIndex": 24677,
"paragraph": {
"elements": [
{
"endIndex": 24677,
"startIndex": 24652,
"textRun": {
"content": " const DocumentScreen({\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24652
},
{
"endIndex": 24705,
"paragraph": {
"elements": [
{
"endIndex": 24705,
"startIndex": 24677,
"textRun": {
"content": " required this.document,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24677
},
{
"endIndex": 24720,
"paragraph": {
"elements": [
{
"endIndex": 24720,
"startIndex": 24705,
"textRun": {
"content": " super.key,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24705
},
{
"endIndex": 24726,
"paragraph": {
"elements": [
{
"endIndex": 24726,
"startIndex": 24720,
"textRun": {
"content": " });\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24720
},
{
"endIndex": 24727,
"paragraph": {
"elements": [
{
"endIndex": 24727,
"startIndex": 24726,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24726
},
{
"endIndex": 24739,
"paragraph": {
"elements": [
{
"endIndex": 24739,
"startIndex": 24727,
"textRun": {
"content": " @override\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24727
},
{
"endIndex": 24778,
"paragraph": {
"elements": [
{
"endIndex": 24778,
"startIndex": 24739,
"textRun": {
"content": " Widget build(BuildContext context) {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24739
},
{
"endIndex": 24828,
"paragraph": {
"elements": [
{
"endIndex": 24828,
"startIndex": 24778,
"textRun": {
"content": " final (title, :modified) = document.metadata;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24778
},
{
"endIndex": 24912,
"paragraph": {
"elements": [
{
"endIndex": 24912,
"startIndex": 24828,
"textRun": {
"content": " final blocks = document.getBlocks(); // Add this line\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24828
},
{
"endIndex": 24913,
"paragraph": {
"elements": [
{
"endIndex": 24913,
"startIndex": 24912,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24912
},
{
"endIndex": 24934,
"paragraph": {
"elements": [
{
"endIndex": 24934,
"startIndex": 24913,
"textRun": {
"content": " return Scaffold(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24913
},
{
"endIndex": 24956,
"paragraph": {
"elements": [
{
"endIndex": 24956,
"startIndex": 24934,
"textRun": {
"content": " appBar: AppBar(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24934
},
{
"endIndex": 24984,
"paragraph": {
"elements": [
{
"endIndex": 24984,
"startIndex": 24956,
"textRun": {
"content": " title: Text(title),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24956
},
{
"endIndex": 24993,
"paragraph": {
"elements": [
{
"endIndex": 24993,
"startIndex": 24984,
"textRun": {
"content": " ),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24984
},
{
"endIndex": 25013,
"paragraph": {
"elements": [
{
"endIndex": 25013,
"startIndex": 24993,
"textRun": {
"content": " body: Column(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 24993
},
{
"endIndex": 25033,
"paragraph": {
"elements": [
{
"endIndex": 25033,
"startIndex": 25013,
"textRun": {
"content": " children: [\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25013
},
{
"endIndex": 25120,
"paragraph": {
"elements": [
{
"endIndex": 25120,
"startIndex": 25033,
"textRun": {
"content": " Text('Last modified: $modified'), // Modify from here\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25033
},
{
"endIndex": 25140,
"paragraph": {
"elements": [
{
"endIndex": 25140,
"startIndex": 25120,
"textRun": {
"content": " Expanded(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25120
},
{
"endIndex": 25177,
"paragraph": {
"elements": [
{
"endIndex": 25177,
"startIndex": 25140,
"textRun": {
"content": " child: ListView.builder(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25140
},
{
"endIndex": 25217,
"paragraph": {
"elements": [
{
"endIndex": 25217,
"startIndex": 25177,
"textRun": {
"content": " itemCount: blocks.length,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25177
},
{
"endIndex": 25263,
"paragraph": {
"elements": [
{
"endIndex": 25263,
"startIndex": 25217,
"textRun": {
"content": " itemBuilder: (context, index) {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25217
},
{
"endIndex": 25321,
"paragraph": {
"elements": [
{
"endIndex": 25321,
"startIndex": 25263,
"textRun": {
"content": " return BlockWidget(block: blocks[index]);\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25263
},
{
"endIndex": 25338,
"paragraph": {
"elements": [
{
"endIndex": 25338,
"startIndex": 25321,
"textRun": {
"content": " },\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25321
},
{
"endIndex": 25353,
"paragraph": {
"elements": [
{
"endIndex": 25353,
"startIndex": 25338,
"textRun": {
"content": " ),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25338
},
{
"endIndex": 25432,
"paragraph": {
"elements": [
{
"endIndex": 25432,
"startIndex": 25353,
"textRun": {
"content": " ), // to here.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25353
},
{
"endIndex": 25443,
"paragraph": {
"elements": [
{
"endIndex": 25443,
"startIndex": 25432,
"textRun": {
"content": " ],\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25432
},
{
"endIndex": 25452,
"paragraph": {
"elements": [
{
"endIndex": 25452,
"startIndex": 25443,
"textRun": {
"content": " ),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25443
},
{
"endIndex": 25459,
"paragraph": {
"elements": [
{
"endIndex": 25459,
"startIndex": 25452,
"textRun": {
"content": " );\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25452
},
{
"endIndex": 25463,
"paragraph": {
"elements": [
{
"endIndex": 25463,
"startIndex": 25459,
"textRun": {
"content": " }\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25459
},
{
"endIndex": 25465,
"paragraph": {
"elements": [
{
"endIndex": 25465,
"startIndex": 25463,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25463
}
],
"endIndex": 25465,
"startIndex": 24576,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 25467,
"paragraph": {
"elements": [
{
"endIndex": 25467,
"startIndex": 25466,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25466
},
{
"endIndex": 25616,
"paragraph": {
"elements": [
{
"endIndex": 25476,
"startIndex": 25467,
"textRun": {
"content": "The line ",
"textStyle": {}
}
},
{
"endIndex": 25509,
"startIndex": 25476,
"textRun": {
"content": "BlockWidget(block: blocks[index])",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 25523,
"startIndex": 25509,
"textRun": {
"content": " constructs a ",
"textStyle": {}
}
},
{
"endIndex": 25534,
"startIndex": 25523,
"textRun": {
"content": "BlockWidget",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 25596,
"startIndex": 25534,
"textRun": {
"content": " widget for each item in the list of blocks returned from the ",
"textStyle": {}
}
},
{
"endIndex": 25607,
"startIndex": 25596,
"textRun": {
"content": "getBlocks()",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 25616,
"startIndex": 25607,
"textRun": {
"content": " method.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25467
},
{
"endIndex": 25617,
"paragraph": {
"elements": [
{
"endIndex": 25617,
"startIndex": 25616,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25616
},
{
"endIndex": 25694,
"paragraph": {
"bullet": {
"listId": "kix.e3w5dzmwqs7s",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 25693,
"startIndex": 25617,
"textRun": {
"content": "Run the application, and then you should see the blocks appearing on screen:",
"textStyle": {}
}
},
{
"endIndex": 25694,
"startIndex": 25693,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 25617
},
{
"endIndex": 25696,
"paragraph": {
"elements": [
{
"endIndex": 25695,
"inlineObjectElement": {
"inlineObjectId": "kix.aljudv3bph0l",
"textStyle": {}
},
"startIndex": 25694
},
{
"endIndex": 25696,
"startIndex": 25695,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25694
},
{
"endIndex": 25719,
"paragraph": {
"elements": [
{
"endIndex": 25718,
"startIndex": 25696,
"textRun": {
"content": "Use switch expressions",
"textStyle": {}
}
},
{
"endIndex": 25719,
"startIndex": 25718,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.is937g7djrt5",
"namedStyleType": "HEADING_1"
}
},
"startIndex": 25696
},
{
"endIndex": 25734,
"paragraph": {
"elements": [
{
"endIndex": 25733,
"startIndex": 25719,
"textRun": {
"content": "Duration: 4:00",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 25734,
"startIndex": 25733,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25719
},
{
"endIndex": 25735,
"paragraph": {
"elements": [
{
"endIndex": 25735,
"startIndex": 25734,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25734
},
{
"endIndex": 25948,
"paragraph": {
"elements": [
{
"endIndex": 25773,
"startIndex": 25735,
"textRun": {
"content": "Patterns add a lot of capabilities to ",
"textStyle": {}
}
},
{
"endIndex": 25779,
"startIndex": 25773,
"textRun": {
"content": "switch",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 25784,
"startIndex": 25779,
"textRun": {
"content": " and ",
"textStyle": {}
}
},
{
"endIndex": 25788,
"startIndex": 25784,
"textRun": {
"content": "case",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 25835,
"startIndex": 25788,
"textRun": {
"content": ". To make them usable in more places, Dart has ",
"textStyle": {}
}
},
{
"endIndex": 25853,
"startIndex": 25835,
"textRun": {
"content": "switch expressions",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 25947,
"startIndex": 25853,
"textRun": {
"content": ". A series of cases can provide a value directly to a variable assignment or return statement.",
"textStyle": {}
}
},
{
"endIndex": 25948,
"startIndex": 25947,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25735
},
{
"endIndex": 26002,
"paragraph": {
"elements": [
{
"endIndex": 26001,
"startIndex": 25948,
"textRun": {
"content": "Convert the switch statement into a switch expression",
"textStyle": {}
}
},
{
"endIndex": 26002,
"startIndex": 26001,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.8627451,
"green": 0.81960785,
"red": 0.91764706
}
}
},
"bold": true,
"fontSize": {
"magnitude": 15.0,
"unit": "PT"
},
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.ny6l3hlbb3ze",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 25948
},
{
"endIndex": 26077,
"paragraph": {
"elements": [
{
"endIndex": 26029,
"startIndex": 26002,
"textRun": {
"content": "The Dart analyzer provides ",
"textStyle": {}
}
},
{
"endIndex": 26036,
"startIndex": 26029,
"textRun": {
"content": "assists",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 26077,
"startIndex": 26036,
"textRun": {
"content": " to help you make changes to your code. \n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26002
},
{
"endIndex": 26078,
"paragraph": {
"elements": [
{
"endIndex": 26078,
"startIndex": 26077,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26077
},
{
"endIndex": 26146,
"paragraph": {
"bullet": {
"listId": "kix.hhw26oq82tbj",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 26146,
"startIndex": 26078,
"textRun": {
"content": "Move your cursor to the switch statement from the previous section.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 26078
},
{
"endIndex": 26209,
"paragraph": {
"bullet": {
"listId": "kix.hhw26oq82tbj",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 26209,
"startIndex": 26146,
"textRun": {
"content": "Click on the lightbulb in order to view the available assists.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 26146
},
{
"endIndex": 26257,
"paragraph": {
"bullet": {
"listId": "kix.hhw26oq82tbj",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 26220,
"startIndex": 26209,
"textRun": {
"content": "Select the ",
"textStyle": {}
}
},
{
"endIndex": 26248,
"startIndex": 26220,
"textRun": {
"content": "Convert to switch expression",
"textStyle": {
"bold": true
}
}
},
{
"endIndex": 26257,
"startIndex": 26248,
"textRun": {
"content": " assist.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 26209
},
{
"endIndex": 26259,
"paragraph": {
"elements": [
{
"endIndex": 26258,
"inlineObjectElement": {
"inlineObjectId": "kix.tnem4r9wfxkz",
"textStyle": {}
},
"startIndex": 26257
},
{
"endIndex": 26259,
"startIndex": 26258,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26257
},
{
"endIndex": 26305,
"paragraph": {
"elements": [
{
"endIndex": 26305,
"startIndex": 26259,
"textRun": {
"content": "The new version of this code looks like this:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26259
},
{
"endIndex": 26319,
"paragraph": {
"elements": [
{
"endIndex": 26318,
"startIndex": 26305,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/dart-patterns-and-records/step_10/lib/main.dart"
},
"underline": true
}
}
},
{
"endIndex": 26319,
"startIndex": 26318,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.ux4uol8rfg8y",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 26305
},
{
"endIndex": 27035,
"startIndex": 26319,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 27034,
"startIndex": 26320,
"tableCells": [
{
"content": [
{
"endIndex": 26366,
"paragraph": {
"elements": [
{
"endIndex": 26366,
"startIndex": 26322,
"textRun": {
"content": "class BlockWidget extends StatelessWidget {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26322
},
{
"endIndex": 26387,
"paragraph": {
"elements": [
{
"endIndex": 26387,
"startIndex": 26366,
"textRun": {
"content": " final Block block;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26366
},
{
"endIndex": 26388,
"paragraph": {
"elements": [
{
"endIndex": 26388,
"startIndex": 26387,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26387
},
{
"endIndex": 26410,
"paragraph": {
"elements": [
{
"endIndex": 26410,
"startIndex": 26388,
"textRun": {
"content": " const BlockWidget({\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26388
},
{
"endIndex": 26435,
"paragraph": {
"elements": [
{
"endIndex": 26435,
"startIndex": 26410,
"textRun": {
"content": " required this.block,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26410
},
{
"endIndex": 26450,
"paragraph": {
"elements": [
{
"endIndex": 26450,
"startIndex": 26435,
"textRun": {
"content": " super.key,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26435
},
{
"endIndex": 26456,
"paragraph": {
"elements": [
{
"endIndex": 26456,
"startIndex": 26450,
"textRun": {
"content": " });\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26450
},
{
"endIndex": 26457,
"paragraph": {
"elements": [
{
"endIndex": 26457,
"startIndex": 26456,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26456
},
{
"endIndex": 26469,
"paragraph": {
"elements": [
{
"endIndex": 26469,
"startIndex": 26457,
"textRun": {
"content": " @override\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26457
},
{
"endIndex": 26508,
"paragraph": {
"elements": [
{
"endIndex": 26508,
"startIndex": 26469,
"textRun": {
"content": " Widget build(BuildContext context) {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26469
},
{
"endIndex": 26595,
"paragraph": {
"elements": [
{
"endIndex": 26595,
"startIndex": 26508,
"textRun": {
"content": " TextStyle? textStyle; // Modify from here\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26508
},
{
"endIndex": 26633,
"paragraph": {
"elements": [
{
"endIndex": 26633,
"startIndex": 26595,
"textRun": {
"content": " textStyle = switch (block.type) {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26595
},
{
"endIndex": 26690,
"paragraph": {
"elements": [
{
"endIndex": 26690,
"startIndex": 26633,
"textRun": {
"content": " 'h1' => Theme.of(context).textTheme.displayMedium,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26633
},
{
"endIndex": 26757,
"paragraph": {
"elements": [
{
"endIndex": 26757,
"startIndex": 26690,
"textRun": {
"content": " 'p' || 'checkbox' => Theme.of(context).textTheme.bodyMedium,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26690
},
{
"endIndex": 26806,
"paragraph": {
"elements": [
{
"endIndex": 26806,
"startIndex": 26757,
"textRun": {
"content": " _ => Theme.of(context).textTheme.bodySmall\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26757
},
{
"endIndex": 26885,
"paragraph": {
"elements": [
{
"endIndex": 26885,
"startIndex": 26806,
"textRun": {
"content": " }; // to here.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26806
},
{
"endIndex": 26886,
"paragraph": {
"elements": [
{
"endIndex": 26886,
"startIndex": 26885,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26885
},
{
"endIndex": 26908,
"paragraph": {
"elements": [
{
"endIndex": 26908,
"startIndex": 26886,
"textRun": {
"content": " return Container(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26886
},
{
"endIndex": 26947,
"paragraph": {
"elements": [
{
"endIndex": 26947,
"startIndex": 26908,
"textRun": {
"content": " margin: const EdgeInsets.all(8),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26908
},
{
"endIndex": 26966,
"paragraph": {
"elements": [
{
"endIndex": 26966,
"startIndex": 26947,
"textRun": {
"content": " child: Text(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26947
},
{
"endIndex": 26986,
"paragraph": {
"elements": [
{
"endIndex": 26986,
"startIndex": 26966,
"textRun": {
"content": " block.text,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26966
},
{
"endIndex": 27012,
"paragraph": {
"elements": [
{
"endIndex": 27012,
"startIndex": 26986,
"textRun": {
"content": " style: textStyle,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 26986
},
{
"endIndex": 27021,
"paragraph": {
"elements": [
{
"endIndex": 27021,
"startIndex": 27012,
"textRun": {
"content": " ),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 27012
},
{
"endIndex": 27028,
"paragraph": {
"elements": [
{
"endIndex": 27028,
"startIndex": 27021,
"textRun": {
"content": " );\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 27021
},
{
"endIndex": 27032,
"paragraph": {
"elements": [
{
"endIndex": 27032,
"startIndex": 27028,
"textRun": {
"content": " }\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 27028
},
{
"endIndex": 27034,
"paragraph": {
"elements": [
{
"endIndex": 27034,
"startIndex": 27032,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 27032
}
],
"endIndex": 27034,
"startIndex": 26321,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 27036,
"paragraph": {
"elements": [
{
"endIndex": 27036,
"startIndex": 27035,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 27035
},
{
"endIndex": 27296,
"paragraph": {
"elements": [
{
"endIndex": 27115,
"startIndex": 27036,
"textRun": {
"content": "A switch expression looks similar to a switch statement, but it eliminates the ",
"textStyle": {}
}
},
{
"endIndex": 27119,
"startIndex": 27115,
"textRun": {
"content": "case",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 27137,
"startIndex": 27119,
"textRun": {
"content": " keyword and uses ",
"textStyle": {}
}
},
{
"endIndex": 27139,
"startIndex": 27137,
"textRun": {
"content": "=>",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 27184,
"startIndex": 27139,
"textRun": {
"content": " to separate the pattern from the case body. ",
"textStyle": {}
}
},
{
"endIndex": 27295,
"startIndex": 27184,
"textRun": {
"content": "Unlike switch statements, switch expressions return a value and can be used anywhere an expression can be used.",
"textStyle": {}
}
},
{
"endIndex": 27296,
"startIndex": 27295,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 27036
},
{
"endIndex": 27316,
"paragraph": {
"elements": [
{
"endIndex": 27316,
"startIndex": 27296,
"textRun": {
"content": "Use object patterns\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.o28rbfr3i2hm",
"namedStyleType": "HEADING_1"
}
},
"startIndex": 27296
},
{
"endIndex": 27331,
"paragraph": {
"elements": [
{
"endIndex": 27330,
"startIndex": 27316,
"textRun": {
"content": "Duration: 4:00",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 27331,
"startIndex": 27330,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 27316
},
{
"endIndex": 27332,
"paragraph": {
"elements": [
{
"endIndex": 27332,
"startIndex": 27331,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 27331
},
{
"endIndex": 27531,
"paragraph": {
"elements": [
{
"endIndex": 27434,
"startIndex": 27332,
"textRun": {
"content": "Dart is an object-oriented language, so patterns apply to all objects. In this step, you switch on an ",
"textStyle": {}
}
},
{
"endIndex": 27448,
"startIndex": 27434,
"textRun": {
"content": "object pattern",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 27531,
"startIndex": 27448,
"textRun": {
"content": " and destructure object properties to enhance the date rendering logic of your UI.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 27332
},
{
"endIndex": 27532,
"paragraph": {
"elements": [
{
"endIndex": 27532,
"startIndex": 27531,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 27531
},
{
"endIndex": 27674,
"startIndex": 27532,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 27673,
"startIndex": 27533,
"tableCells": [
{
"content": [
{
"endIndex": 27673,
"paragraph": {
"elements": [
{
"endIndex": 27541,
"startIndex": 27535,
"textRun": {
"content": "Note: ",
"textStyle": {
"bold": true
}
}
},
{
"endIndex": 27549,
"startIndex": 27541,
"textRun": {
"content": "There's ",
"textStyle": {}
}
},
{
"endIndex": 27551,
"startIndex": 27549,
"textRun": {
"content": "no",
"textStyle": {}
}
},
{
"endIndex": 27571,
"startIndex": 27551,
"textRun": {
"content": " migration necessary",
"textStyle": {}
}
},
{
"endIndex": 27574,
"startIndex": 27571,
"textRun": {
"content": " to",
"textStyle": {}
}
},
{
"endIndex": 27673,
"startIndex": 27574,
"textRun": {
"content": " support patterns; you can immediately start using pattern matching on your existing Dart classes.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 27535
}
],
"endIndex": 27673,
"startIndex": 27534,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.827451,
"green": 0.91764706,
"red": 0.8509804
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 27714,
"paragraph": {
"elements": [
{
"endIndex": 27714,
"startIndex": 27674,
"textRun": {
"content": "Extract properties from object patterns\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.hiek3z8bfnbt",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 27674
},
{
"endIndex": 27799,
"paragraph": {
"elements": [
{
"endIndex": 27799,
"startIndex": 27714,
"textRun": {
"content": "In this section, you improve how the last modified date is displayed using patterns.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 27714
},
{
"endIndex": 27800,
"paragraph": {
"elements": [
{
"endIndex": 27800,
"startIndex": 27799,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 27799
},
{
"endIndex": 27840,
"paragraph": {
"bullet": {
"listId": "kix.vada968rkket",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 27808,
"startIndex": 27800,
"textRun": {
"content": "Add the ",
"textStyle": {}
}
},
{
"endIndex": 27818,
"startIndex": 27808,
"textRun": {
"content": "formatDate",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 27829,
"startIndex": 27818,
"textRun": {
"content": " method to ",
"textStyle": {}
}
},
{
"endIndex": 27838,
"startIndex": 27829,
"textRun": {
"content": "main.dart",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 27840,
"startIndex": 27838,
"textRun": {
"content": ":\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 27800
},
{
"endIndex": 27841,
"paragraph": {
"elements": [
{
"endIndex": 27841,
"startIndex": 27840,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 27840
},
{
"endIndex": 27855,
"paragraph": {
"elements": [
{
"endIndex": 27854,
"startIndex": 27841,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/dart-patterns-and-records/step_11_a/lib/main.dart"
},
"underline": true
}
}
},
{
"endIndex": 27855,
"startIndex": 27854,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.vivylxd16zs",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 27841
},
{
"endIndex": 28273,
"startIndex": 27855,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 28272,
"startIndex": 27856,
"tableCells": [
{
"content": [
{
"endIndex": 27897,
"paragraph": {
"elements": [
{
"endIndex": 27897,
"startIndex": 27858,
"textRun": {
"content": "String formatDate(DateTime dateTime) {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 27858
},
{
"endIndex": 27929,
"paragraph": {
"elements": [
{
"endIndex": 27929,
"startIndex": 27897,
"textRun": {
"content": " final today = DateTime.now();\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 27897
},
{
"endIndex": 27978,
"paragraph": {
"elements": [
{
"endIndex": 27978,
"startIndex": 27929,
"textRun": {
"content": " final difference = dateTime.difference(today);\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 27929
},
{
"endIndex": 27979,
"paragraph": {
"elements": [
{
"endIndex": 27979,
"startIndex": 27978,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 27978
},
{
"endIndex": 28010,
"paragraph": {
"elements": [
{
"endIndex": 28010,
"startIndex": 27979,
"textRun": {
"content": " return switch (difference) {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 27979
},
{
"endIndex": 28046,
"paragraph": {
"elements": [
{
"endIndex": 28046,
"startIndex": 28010,
"textRun": {
"content": " Duration(inDays: 0) => 'today',\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 28010
},
{
"endIndex": 28085,
"paragraph": {
"elements": [
{
"endIndex": 28085,
"startIndex": 28046,
"textRun": {
"content": " Duration(inDays: 1) => 'tomorrow',\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 28046
},
{
"endIndex": 28126,
"paragraph": {
"elements": [
{
"endIndex": 28126,
"startIndex": 28085,
"textRun": {
"content": " Duration(inDays: -1) => 'yesterday',\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 28085
},
{
"endIndex": 28206,
"paragraph": {
"elements": [
{
"endIndex": 28206,
"startIndex": 28126,
"textRun": {
"content": " Duration(inDays: final days, isNegative: true) => '${days.abs()} days ago',\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 28126
},
{
"endIndex": 28265,
"paragraph": {
"elements": [
{
"endIndex": 28265,
"startIndex": 28206,
"textRun": {
"content": " Duration(inDays: final days) => '$days days from now',\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 28206
},
{
"endIndex": 28270,
"paragraph": {
"elements": [
{
"endIndex": 28270,
"startIndex": 28265,
"textRun": {
"content": " };\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 28265
},
{
"endIndex": 28272,
"paragraph": {
"elements": [
{
"endIndex": 28272,
"startIndex": 28270,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 28270
}
],
"endIndex": 28272,
"startIndex": 27857,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 28274,
"paragraph": {
"elements": [
{
"endIndex": 28274,
"startIndex": 28273,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 28273
},
{
"endIndex": 28461,
"paragraph": {
"elements": [
{
"endIndex": 28341,
"startIndex": 28274,
"textRun": {
"content": "This method returns a switch expression that switches on the value ",
"textStyle": {}
}
},
{
"endIndex": 28351,
"startIndex": 28341,
"textRun": {
"content": "difference",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 28355,
"startIndex": 28351,
"textRun": {
"content": ", a ",
"textStyle": {}
}
},
{
"endIndex": 28356,
"startIndex": 28355,
"textRun": {
"content": " ",
"textStyle": {}
}
},
{
"endIndex": 28364,
"startIndex": 28356,
"textRun": {
"content": "Duration",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://api.dart.dev/stable/dart-core/Duration-class.html"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 28371,
"startIndex": 28364,
"textRun": {
"content": " object",
"textStyle": {}
}
},
{
"endIndex": 28412,
"startIndex": 28371,
"textRun": {
"content": ". It represents the span of time between ",
"textStyle": {}
}
},
{
"endIndex": 28417,
"startIndex": 28412,
"textRun": {
"content": "today",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 28426,
"startIndex": 28417,
"textRun": {
"content": " and the ",
"textStyle": {}
}
},
{
"endIndex": 28434,
"startIndex": 28426,
"textRun": {
"content": "modified",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 28461,
"startIndex": 28434,
"textRun": {
"content": " value from the JSON data.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 28274
},
{
"endIndex": 28462,
"paragraph": {
"elements": [
{
"endIndex": 28462,
"startIndex": 28461,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 28461
},
{
"endIndex": 28733,
"paragraph": {
"elements": [
{
"endIndex": 28583,
"startIndex": 28462,
"textRun": {
"content": "Each case of the switch expression is using an object pattern that matches by calling getters on the objectβs properties ",
"textStyle": {}
}
},
{
"endIndex": 28589,
"startIndex": 28583,
"textRun": {
"content": "inDays",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.21960784,
"green": 0.5019608,
"red": 0.09411765
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 28594,
"startIndex": 28589,
"textRun": {
"content": " and ",
"textStyle": {}
}
},
{
"endIndex": 28604,
"startIndex": 28594,
"textRun": {
"content": "isNegative",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.21960784,
"green": 0.5019608,
"red": 0.09411765
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 28714,
"startIndex": 28604,
"textRun": {
"content": ". The syntax looks like it might be constructing a Duration object, but it's actually accessing fields on the ",
"textStyle": {}
}
},
{
"endIndex": 28724,
"startIndex": 28714,
"textRun": {
"content": "difference",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 28725,
"startIndex": 28724,
"textRun": {
"content": " ",
"textStyle": {}
}
},
{
"endIndex": 28733,
"startIndex": 28725,
"textRun": {
"content": "object.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 28462
},
{
"endIndex": 28734,
"paragraph": {
"elements": [
{
"endIndex": 28734,
"startIndex": 28733,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 28733
},
{
"endIndex": 28867,
"paragraph": {
"elements": [
{
"endIndex": 28781,
"startIndex": 28734,
"textRun": {
"content": "The first three cases use constant subpatterns ",
"textStyle": {}
}
},
{
"endIndex": 28782,
"startIndex": 28781,
"textRun": {
"content": "0",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 28784,
"startIndex": 28782,
"textRun": {
"content": ", ",
"textStyle": {}
}
},
{
"endIndex": 28785,
"startIndex": 28784,
"textRun": {
"content": "1",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 28791,
"startIndex": 28785,
"textRun": {
"content": ", and ",
"textStyle": {}
}
},
{
"endIndex": 28793,
"startIndex": 28791,
"textRun": {
"content": "-1",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 28823,
"startIndex": 28793,
"textRun": {
"content": " to match the object property ",
"textStyle": {}
}
},
{
"endIndex": 28829,
"startIndex": 28823,
"textRun": {
"content": "inDays",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 28866,
"startIndex": 28829,
"textRun": {
"content": " and return the corresponding string.",
"textStyle": {}
}
},
{
"endIndex": 28867,
"startIndex": 28866,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 28734
},
{
"endIndex": 28868,
"paragraph": {
"elements": [
{
"endIndex": 28868,
"startIndex": 28867,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 28867
},
{
"endIndex": 28943,
"paragraph": {
"elements": [
{
"endIndex": 28943,
"startIndex": 28868,
"textRun": {
"content": "The last two cases handle durations beyond today, yesterday, and tomorrow:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 28868
},
{
"endIndex": 29082,
"paragraph": {
"bullet": {
"listId": "kix.l36nsyz7nfdm",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 28950,
"startIndex": 28943,
"textRun": {
"content": "If the ",
"textStyle": {}
}
},
{
"endIndex": 28960,
"startIndex": 28950,
"textRun": {
"content": "isNegative",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 28982,
"startIndex": 28960,
"textRun": {
"content": " property matches the ",
"textStyle": {}
}
},
{
"endIndex": 29007,
"startIndex": 28982,
"textRun": {
"content": "boolean constant pattern ",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 29011,
"startIndex": 29007,
"textRun": {
"content": "true",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 29072,
"startIndex": 29011,
"textRun": {
"content": ", meaning the modification date was in the past, it displays ",
"textStyle": {}
}
},
{
"endIndex": 29080,
"startIndex": 29072,
"textRun": {
"content": "days ago",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 29082,
"startIndex": 29080,
"textRun": {
"content": ".\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 28943
},
{
"endIndex": 29298,
"paragraph": {
"bullet": {
"listId": "kix.l36nsyz7nfdm",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 29208,
"startIndex": 29082,
"textRun": {
"content": "If that case doesnβt catch the difference, then duration must be a positive number of days (no need to explicitly verify with ",
"textStyle": {}
}
},
{
"endIndex": 29225,
"startIndex": 29208,
"textRun": {
"content": "isNegative: false",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 29283,
"startIndex": 29225,
"textRun": {
"content": "), so the modification date is in the future and displays ",
"textStyle": {}
}
},
{
"endIndex": 29296,
"startIndex": 29283,
"textRun": {
"content": "days from now",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 29297,
"startIndex": 29296,
"textRun": {
"content": ".",
"textStyle": {}
}
},
{
"endIndex": 29298,
"startIndex": 29297,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 29082
},
{
"endIndex": 29329,
"paragraph": {
"elements": [
{
"endIndex": 29328,
"startIndex": 29298,
"textRun": {
"content": "Add formatting logic for weeks",
"textStyle": {}
}
},
{
"endIndex": 29329,
"startIndex": 29328,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.954rbgsdumm6",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 29298
},
{
"endIndex": 29467,
"paragraph": {
"bullet": {
"listId": "kix.mjlhrnhvhdy4",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 29460,
"startIndex": 29329,
"textRun": {
"content": "Add two new cases to your formatting function in order to identify durations longer than 7 days so that the UI can display them as ",
"textStyle": {}
}
},
{
"endIndex": 29465,
"startIndex": 29460,
"textRun": {
"content": "weeks",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 29466,
"startIndex": 29465,
"textRun": {
"content": ":",
"textStyle": {}
}
},
{
"endIndex": 29467,
"startIndex": 29466,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 29329
},
{
"endIndex": 29468,
"paragraph": {
"elements": [
{
"endIndex": 29468,
"startIndex": 29467,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 29467
},
{
"endIndex": 29482,
"paragraph": {
"elements": [
{
"endIndex": 29481,
"startIndex": 29468,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/dart-patterns-and-records/step_11_b/lib/main.dart"
},
"underline": true
}
}
},
{
"endIndex": 29482,
"startIndex": 29481,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.io2pno42mpr0",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 29468
},
{
"endIndex": 30142,
"startIndex": 29482,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 30141,
"startIndex": 29483,
"tableCells": [
{
"content": [
{
"endIndex": 29524,
"paragraph": {
"elements": [
{
"endIndex": 29524,
"startIndex": 29485,
"textRun": {
"content": "String formatDate(DateTime dateTime) {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 29485
},
{
"endIndex": 29556,
"paragraph": {
"elements": [
{
"endIndex": 29556,
"startIndex": 29524,
"textRun": {
"content": " final today = DateTime.now();\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 29524
},
{
"endIndex": 29605,
"paragraph": {
"elements": [
{
"endIndex": 29605,
"startIndex": 29556,
"textRun": {
"content": " final difference = dateTime.difference(today);\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 29556
},
{
"endIndex": 29606,
"paragraph": {
"elements": [
{
"endIndex": 29606,
"startIndex": 29605,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 29605
},
{
"endIndex": 29637,
"paragraph": {
"elements": [
{
"endIndex": 29637,
"startIndex": 29606,
"textRun": {
"content": " return switch (difference) {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 29606
},
{
"endIndex": 29673,
"paragraph": {
"elements": [
{
"endIndex": 29673,
"startIndex": 29637,
"textRun": {
"content": " Duration(inDays: 0) => 'today',\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 29637
},
{
"endIndex": 29712,
"paragraph": {
"elements": [
{
"endIndex": 29712,
"startIndex": 29673,
"textRun": {
"content": " Duration(inDays: 1) => 'tomorrow',\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 29673
},
{
"endIndex": 29753,
"paragraph": {
"elements": [
{
"endIndex": 29753,
"startIndex": 29712,
"textRun": {
"content": " Duration(inDays: -1) => 'yesterday',\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 29712
},
{
"endIndex": 29851,
"paragraph": {
"elements": [
{
"endIndex": 29851,
"startIndex": 29753,
"textRun": {
"content": " Duration(inDays: final days) when days > 7 => '${days ~/ 7} weeks from now', // Add from here\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 29753
},
{
"endIndex": 29902,
"paragraph": {
"elements": [
{
"endIndex": 29902,
"startIndex": 29851,
"textRun": {
"content": " Duration(inDays: final days) when days < -7 =>\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 29851
},
{
"endIndex": 29995,
"paragraph": {
"elements": [
{
"endIndex": 29995,
"startIndex": 29902,
"textRun": {
"content": " '${days.abs() ~/ 7} weeks ago', // to here.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 29902
},
{
"endIndex": 30075,
"paragraph": {
"elements": [
{
"endIndex": 30075,
"startIndex": 29995,
"textRun": {
"content": " Duration(inDays: final days, isNegative: true) => '${days.abs()} days ago',\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 29995
},
{
"endIndex": 30134,
"paragraph": {
"elements": [
{
"endIndex": 30134,
"startIndex": 30075,
"textRun": {
"content": " Duration(inDays: final days) => '$days days from now',\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 30075
},
{
"endIndex": 30139,
"paragraph": {
"elements": [
{
"endIndex": 30139,
"startIndex": 30134,
"textRun": {
"content": " };\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 30134
},
{
"endIndex": 30141,
"paragraph": {
"elements": [
{
"endIndex": 30141,
"startIndex": 30139,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 30139
}
],
"endIndex": 30141,
"startIndex": 29484,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 30143,
"paragraph": {
"elements": [
{
"endIndex": 30143,
"startIndex": 30142,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 30142
},
{
"endIndex": 30179,
"paragraph": {
"elements": [
{
"endIndex": 30164,
"startIndex": 30143,
"textRun": {
"content": "This code introduces ",
"textStyle": {}
}
},
{
"endIndex": 30177,
"startIndex": 30164,
"textRun": {
"content": "guard clauses",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 30178,
"startIndex": 30177,
"textRun": {
"content": ":",
"textStyle": {}
}
},
{
"endIndex": 30179,
"startIndex": 30178,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 30143
},
{
"endIndex": 30238,
"paragraph": {
"bullet": {
"listId": "kix.g0n6mr9338xd",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 30203,
"startIndex": 30179,
"textRun": {
"content": "A guard clause uses the ",
"textStyle": {}
}
},
{
"endIndex": 30207,
"startIndex": 30203,
"textRun": {
"content": "when",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 30238,
"startIndex": 30207,
"textRun": {
"content": " keyword after a case pattern.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 30179
},
{
"endIndex": 30311,
"paragraph": {
"bullet": {
"listId": "kix.g0n6mr9338xd",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 30311,
"startIndex": 30238,
"textRun": {
"content": "They can be used in if-cases, switch statements, and switch expressions.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 30238
},
{
"endIndex": 30370,
"paragraph": {
"bullet": {
"listId": "kix.g0n6mr9338xd",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 30350,
"startIndex": 30311,
"textRun": {
"content": "They only add a condition to a pattern ",
"textStyle": {}
}
},
{
"endIndex": 30368,
"startIndex": 30350,
"textRun": {
"content": "after it's matched",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 30370,
"startIndex": 30368,
"textRun": {
"content": ".\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 30311
},
{
"endIndex": 30482,
"paragraph": {
"bullet": {
"listId": "kix.g0n6mr9338xd",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 30432,
"startIndex": 30370,
"textRun": {
"content": "If the guard clause evaluates to false, the entire pattern is ",
"textStyle": {}
}
},
{
"endIndex": 30439,
"startIndex": 30432,
"textRun": {
"content": "refuted",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 30440,
"startIndex": 30439,
"textRun": {
"content": ",",
"textStyle": {}
}
},
{
"endIndex": 30444,
"startIndex": 30440,
"textRun": {
"content": " and",
"textStyle": {}
}
},
{
"endIndex": 30482,
"startIndex": 30444,
"textRun": {
"content": " execution proceeds to the next case.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 30370
},
{
"endIndex": 30521,
"paragraph": {
"elements": [
{
"endIndex": 30521,
"startIndex": 30482,
"textRun": {
"content": "Add the newly formatted date to the UI\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.mnuqwgraocl9",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 30482
},
{
"endIndex": 30604,
"paragraph": {
"bullet": {
"listId": "kix.oowm3okhp1if",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 30541,
"startIndex": 30521,
"textRun": {
"content": "Finally, update the ",
"textStyle": {}
}
},
{
"endIndex": 30546,
"startIndex": 30541,
"textRun": {
"content": "build",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 30557,
"startIndex": 30546,
"textRun": {
"content": " method in ",
"textStyle": {}
}
},
{
"endIndex": 30571,
"startIndex": 30557,
"textRun": {
"content": "DocumentScreen",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 30583,
"startIndex": 30571,
"textRun": {
"content": " to use the ",
"textStyle": {}
}
},
{
"endIndex": 30593,
"startIndex": 30583,
"textRun": {
"content": "formatDate",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 30604,
"startIndex": 30593,
"textRun": {
"content": " function:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 30521
},
{
"endIndex": 30618,
"paragraph": {
"elements": [
{
"endIndex": 30617,
"startIndex": 30604,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/dart-patterns-and-records/step_11_b/lib/main.dart"
},
"underline": true
}
}
},
{
"endIndex": 30618,
"startIndex": 30617,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.33yq3djwxg2k",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 30604
},
{
"endIndex": 31485,
"startIndex": 30618,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 31484,
"startIndex": 30619,
"tableCells": [
{
"content": [
{
"endIndex": 30668,
"paragraph": {
"elements": [
{
"endIndex": 30668,
"startIndex": 30621,
"textRun": {
"content": "class DocumentScreen extends StatelessWidget {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 30621
},
{
"endIndex": 30695,
"paragraph": {
"elements": [
{
"endIndex": 30695,
"startIndex": 30668,
"textRun": {
"content": " final Document document;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 30668
},
{
"endIndex": 30696,
"paragraph": {
"elements": [
{
"endIndex": 30696,
"startIndex": 30695,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 30695
},
{
"endIndex": 30721,
"paragraph": {
"elements": [
{
"endIndex": 30721,
"startIndex": 30696,
"textRun": {
"content": " const DocumentScreen({\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 30696
},
{
"endIndex": 30749,
"paragraph": {
"elements": [
{
"endIndex": 30749,
"startIndex": 30721,
"textRun": {
"content": " required this.document,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 30721
},
{
"endIndex": 30764,
"paragraph": {
"elements": [
{
"endIndex": 30764,
"startIndex": 30749,
"textRun": {
"content": " super.key,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 30749
},
{
"endIndex": 30770,
"paragraph": {
"elements": [
{
"endIndex": 30770,
"startIndex": 30764,
"textRun": {
"content": " });\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 30764
},
{
"endIndex": 30771,
"paragraph": {
"elements": [
{
"endIndex": 30771,
"startIndex": 30770,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 30770
},
{
"endIndex": 30783,
"paragraph": {
"elements": [
{
"endIndex": 30783,
"startIndex": 30771,
"textRun": {
"content": " @override\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 30771
},
{
"endIndex": 30822,
"paragraph": {
"elements": [
{
"endIndex": 30822,
"startIndex": 30783,
"textRun": {
"content": " Widget build(BuildContext context) {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 30783
},
{
"endIndex": 30872,
"paragraph": {
"elements": [
{
"endIndex": 30872,
"startIndex": 30822,
"textRun": {
"content": " final (title, :modified) = document.metadata;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 30822
},
{
"endIndex": 30956,
"paragraph": {
"elements": [
{
"endIndex": 30956,
"startIndex": 30872,
"textRun": {
"content": " final formattedModifiedDate = formatDate(modified); // Add this line\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 30872
},
{
"endIndex": 30997,
"paragraph": {
"elements": [
{
"endIndex": 30997,
"startIndex": 30956,
"textRun": {
"content": " final blocks = document.getBlocks();\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 30956
},
{
"endIndex": 30998,
"paragraph": {
"elements": [
{
"endIndex": 30998,
"startIndex": 30997,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 30997
},
{
"endIndex": 31019,
"paragraph": {
"elements": [
{
"endIndex": 31019,
"startIndex": 30998,
"textRun": {
"content": " return Scaffold(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 30998
},
{
"endIndex": 31041,
"paragraph": {
"elements": [
{
"endIndex": 31041,
"startIndex": 31019,
"textRun": {
"content": " appBar: AppBar(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31019
},
{
"endIndex": 31069,
"paragraph": {
"elements": [
{
"endIndex": 31069,
"startIndex": 31041,
"textRun": {
"content": " title: Text(title),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31041
},
{
"endIndex": 31078,
"paragraph": {
"elements": [
{
"endIndex": 31078,
"startIndex": 31069,
"textRun": {
"content": " ),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31069
},
{
"endIndex": 31098,
"paragraph": {
"elements": [
{
"endIndex": 31098,
"startIndex": 31078,
"textRun": {
"content": " body: Column(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31078
},
{
"endIndex": 31118,
"paragraph": {
"elements": [
{
"endIndex": 31118,
"startIndex": 31098,
"textRun": {
"content": " children: [\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31098
},
{
"endIndex": 31205,
"paragraph": {
"elements": [
{
"endIndex": 31205,
"startIndex": 31118,
"textRun": {
"content": " Text('Last modified: $formattedModifiedDate'), // Modify this line\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31118
},
{
"endIndex": 31225,
"paragraph": {
"elements": [
{
"endIndex": 31225,
"startIndex": 31205,
"textRun": {
"content": " Expanded(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31205
},
{
"endIndex": 31262,
"paragraph": {
"elements": [
{
"endIndex": 31262,
"startIndex": 31225,
"textRun": {
"content": " child: ListView.builder(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31225
},
{
"endIndex": 31302,
"paragraph": {
"elements": [
{
"endIndex": 31302,
"startIndex": 31262,
"textRun": {
"content": " itemCount: blocks.length,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31262
},
{
"endIndex": 31348,
"paragraph": {
"elements": [
{
"endIndex": 31348,
"startIndex": 31302,
"textRun": {
"content": " itemBuilder: (context, index) {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31302
},
{
"endIndex": 31406,
"paragraph": {
"elements": [
{
"endIndex": 31406,
"startIndex": 31348,
"textRun": {
"content": " return BlockWidget(block: blocks[index]);\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31348
},
{
"endIndex": 31423,
"paragraph": {
"elements": [
{
"endIndex": 31423,
"startIndex": 31406,
"textRun": {
"content": " },\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31406
},
{
"endIndex": 31438,
"paragraph": {
"elements": [
{
"endIndex": 31438,
"startIndex": 31423,
"textRun": {
"content": " ),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31423
},
{
"endIndex": 31451,
"paragraph": {
"elements": [
{
"endIndex": 31451,
"startIndex": 31438,
"textRun": {
"content": " ),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31438
},
{
"endIndex": 31462,
"paragraph": {
"elements": [
{
"endIndex": 31462,
"startIndex": 31451,
"textRun": {
"content": " ],\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31451
},
{
"endIndex": 31471,
"paragraph": {
"elements": [
{
"endIndex": 31471,
"startIndex": 31462,
"textRun": {
"content": " ),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31462
},
{
"endIndex": 31478,
"paragraph": {
"elements": [
{
"endIndex": 31478,
"startIndex": 31471,
"textRun": {
"content": " );\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31471
},
{
"endIndex": 31482,
"paragraph": {
"elements": [
{
"endIndex": 31482,
"startIndex": 31478,
"textRun": {
"content": " }\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31478
},
{
"endIndex": 31484,
"paragraph": {
"elements": [
{
"endIndex": 31484,
"startIndex": 31482,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31482
}
],
"endIndex": 31484,
"startIndex": 30620,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 31486,
"paragraph": {
"elements": [
{
"endIndex": 31486,
"startIndex": 31485,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31485
},
{
"endIndex": 31529,
"paragraph": {
"bullet": {
"listId": "kix.oowm3okhp1if",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 31529,
"startIndex": 31486,
"textRun": {
"content": "Hot reload to see the changes in your app:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 31486
},
{
"endIndex": 31531,
"paragraph": {
"elements": [
{
"endIndex": 31530,
"inlineObjectElement": {
"inlineObjectId": "kix.60qoxad1aw8",
"textStyle": {}
},
"startIndex": 31529
},
{
"endIndex": 31531,
"startIndex": 31530,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31529
},
{
"endIndex": 31532,
"paragraph": {
"elements": [
{
"endIndex": 31532,
"startIndex": 31531,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31531
},
{
"endIndex": 31570,
"paragraph": {
"elements": [
{
"endIndex": 31570,
"startIndex": 31532,
"textRun": {
"content": "Seal a class for exhaustive switching\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.qhrafs2obyf8",
"namedStyleType": "HEADING_1"
}
},
"startIndex": 31532
},
{
"endIndex": 31585,
"paragraph": {
"elements": [
{
"endIndex": 31584,
"startIndex": 31570,
"textRun": {
"content": "Duration: 4:00",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 31585,
"startIndex": 31584,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31570
},
{
"endIndex": 31586,
"paragraph": {
"elements": [
{
"endIndex": 31586,
"startIndex": 31585,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31585
},
{
"endIndex": 31903,
"paragraph": {
"elements": [
{
"endIndex": 31845,
"startIndex": 31586,
"textRun": {
"content": "Notice that you didnβt use a wildcard or default case at the end of the last switch. Though itβs good practice to always include a case for values that might fall through, itβs ok in a simple example like this since you know the cases you defined account for ",
"textStyle": {}
}
},
{
"endIndex": 31871,
"startIndex": 31845,
"textRun": {
"content": "all of the possible values",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 31872,
"startIndex": 31871,
"textRun": {
"content": " ",
"textStyle": {}
}
},
{
"endIndex": 31878,
"startIndex": 31872,
"textRun": {
"content": "inDays",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 31903,
"startIndex": 31878,
"textRun": {
"content": " could potentially take.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31586
},
{
"endIndex": 31904,
"paragraph": {
"elements": [
{
"endIndex": 31904,
"startIndex": 31903,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31903
},
{
"endIndex": 32225,
"paragraph": {
"elements": [
{
"endIndex": 31959,
"startIndex": 31904,
"textRun": {
"content": "When every case in a switch is handled, itβs called an ",
"textStyle": {}
}
},
{
"endIndex": 31969,
"startIndex": 31959,
"textRun": {
"content": "exhaustive",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 31970,
"startIndex": 31969,
"textRun": {
"content": " ",
"textStyle": {}
}
},
{
"endIndex": 31976,
"startIndex": 31970,
"textRun": {
"content": "switch",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 32006,
"startIndex": 31976,
"textRun": {
"content": ". For example, switching on a ",
"textStyle": {}
}
},
{
"endIndex": 32010,
"startIndex": 32006,
"textRun": {
"content": "bool",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 32052,
"startIndex": 32010,
"textRun": {
"content": " type is exhaustive when it has cases for ",
"textStyle": {}
}
},
{
"endIndex": 32056,
"startIndex": 32052,
"textRun": {
"content": "true",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 32061,
"startIndex": 32056,
"textRun": {
"content": " and ",
"textStyle": {}
}
},
{
"endIndex": 32066,
"startIndex": 32061,
"textRun": {
"content": "false",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 32084,
"startIndex": 32066,
"textRun": {
"content": ". Switching on an ",
"textStyle": {}
}
},
{
"endIndex": 32088,
"startIndex": 32084,
"textRun": {
"content": "enum",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 32191,
"startIndex": 32088,
"textRun": {
"content": " type is exhaustive when there are cases for each of the enumβs values, too, because enums represent a ",
"textStyle": {}
}
},
{
"endIndex": 32203,
"startIndex": 32191,
"textRun": {
"content": "fixed number",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 32207,
"startIndex": 32203,
"textRun": {
"content": " of ",
"textStyle": {}
}
},
{
"endIndex": 32222,
"startIndex": 32207,
"textRun": {
"content": "constant values",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 32225,
"startIndex": 32222,
"textRun": {
"content": ". \n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 31904
},
{
"endIndex": 32226,
"paragraph": {
"elements": [
{
"endIndex": 32226,
"startIndex": 32225,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 32225
},
{
"endIndex": 32386,
"paragraph": {
"elements": [
{
"endIndex": 32242,
"startIndex": 32226,
"textRun": {
"content": "Dart 3 extended ",
"textStyle": {}
}
},
{
"endIndex": 32265,
"startIndex": 32242,
"textRun": {
"content": "exhaustiveness checking",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 32327,
"startIndex": 32265,
"textRun": {
"content": " to objects and class hierarchies with the new class modifier ",
"textStyle": {}
}
},
{
"endIndex": 32333,
"startIndex": 32327,
"textRun": {
"content": "sealed",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 32349,
"startIndex": 32333,
"textRun": {
"content": ". Refactor your ",
"textStyle": {}
}
},
{
"endIndex": 32354,
"startIndex": 32349,
"textRun": {
"content": "Block",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 32386,
"startIndex": 32354,
"textRun": {
"content": " class as a sealed superclass. \n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 32226
},
{
"endIndex": 32387,
"paragraph": {
"elements": [
{
"endIndex": 32387,
"startIndex": 32386,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 32386
},
{
"endIndex": 32409,
"paragraph": {
"elements": [
{
"endIndex": 32408,
"startIndex": 32387,
"textRun": {
"content": "Create the subclasses",
"textStyle": {}
}
},
{
"endIndex": 32409,
"startIndex": 32408,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.r3jqucu93ahb",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 32387
},
{
"endIndex": 32514,
"paragraph": {
"bullet": {
"listId": "kix.cnrmyad97l0c",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 32412,
"startIndex": 32409,
"textRun": {
"content": "In ",
"textStyle": {}
}
},
{
"endIndex": 32421,
"startIndex": 32412,
"textRun": {
"content": "data.dart",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 32448,
"startIndex": 32421,
"textRun": {
"content": ", create three new classesβ",
"textStyle": {}
}
},
{
"endIndex": 32459,
"startIndex": 32448,
"textRun": {
"content": "HeaderBlock",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 32460,
"startIndex": 32459,
"textRun": {
"content": ",",
"textStyle": {}
}
},
{
"endIndex": 32461,
"startIndex": 32460,
"textRun": {
"content": " ",
"textStyle": {}
}
},
{
"endIndex": 32475,
"startIndex": 32461,
"textRun": {
"content": "ParagraphBlock",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 32481,
"startIndex": 32475,
"textRun": {
"content": ", and ",
"textStyle": {}
}
},
{
"endIndex": 32494,
"startIndex": 32481,
"textRun": {
"content": "CheckboxBlock",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 32507,
"startIndex": 32494,
"textRun": {
"content": "βthat extend ",
"textStyle": {}
}
},
{
"endIndex": 32512,
"startIndex": 32507,
"textRun": {
"content": "Block",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 32513,
"startIndex": 32512,
"textRun": {
"content": ":",
"textStyle": {}
}
},
{
"endIndex": 32514,
"startIndex": 32513,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 32409
},
{
"endIndex": 32528,
"paragraph": {
"elements": [
{
"endIndex": 32527,
"startIndex": 32514,
"textRun": {
"content": "lib/data.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/dart-patterns-and-records/step_12/lib/data.dart"
},
"underline": true
}
}
},
{
"endIndex": 32528,
"startIndex": 32527,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.6y1ysytcknvf",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 32514
},
{
"endIndex": 32833,
"startIndex": 32528,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 32832,
"startIndex": 32529,
"tableCells": [
{
"content": [
{
"endIndex": 32565,
"paragraph": {
"elements": [
{
"endIndex": 32565,
"startIndex": 32531,
"textRun": {
"content": "class HeaderBlock extends Block {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 32531
},
{
"endIndex": 32586,
"paragraph": {
"elements": [
{
"endIndex": 32586,
"startIndex": 32565,
"textRun": {
"content": " final String text;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 32565
},
{
"endIndex": 32612,
"paragraph": {
"elements": [
{
"endIndex": 32612,
"startIndex": 32586,
"textRun": {
"content": " HeaderBlock(this.text);\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 32586
},
{
"endIndex": 32614,
"paragraph": {
"elements": [
{
"endIndex": 32614,
"startIndex": 32612,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 32612
},
{
"endIndex": 32615,
"paragraph": {
"elements": [
{
"endIndex": 32615,
"startIndex": 32614,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 32614
},
{
"endIndex": 32652,
"paragraph": {
"elements": [
{
"endIndex": 32652,
"startIndex": 32615,
"textRun": {
"content": "class ParagraphBlock extends Block {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 32615
},
{
"endIndex": 32673,
"paragraph": {
"elements": [
{
"endIndex": 32673,
"startIndex": 32652,
"textRun": {
"content": " final String text;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 32652
},
{
"endIndex": 32702,
"paragraph": {
"elements": [
{
"endIndex": 32702,
"startIndex": 32673,
"textRun": {
"content": " ParagraphBlock(this.text);\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 32673
},
{
"endIndex": 32704,
"paragraph": {
"elements": [
{
"endIndex": 32704,
"startIndex": 32702,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 32702
},
{
"endIndex": 32705,
"paragraph": {
"elements": [
{
"endIndex": 32705,
"startIndex": 32704,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 32704
},
{
"endIndex": 32741,
"paragraph": {
"elements": [
{
"endIndex": 32741,
"startIndex": 32705,
"textRun": {
"content": "class CheckboxBlock extends Block {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 32705
},
{
"endIndex": 32762,
"paragraph": {
"elements": [
{
"endIndex": 32762,
"startIndex": 32741,
"textRun": {
"content": " final String text;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 32741
},
{
"endIndex": 32786,
"paragraph": {
"elements": [
{
"endIndex": 32786,
"startIndex": 32762,
"textRun": {
"content": " final bool isChecked;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 32762
},
{
"endIndex": 32830,
"paragraph": {
"elements": [
{
"endIndex": 32830,
"startIndex": 32786,
"textRun": {
"content": " CheckboxBlock(this.text, this.isChecked);\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 32786
},
{
"endIndex": 32832,
"paragraph": {
"elements": [
{
"endIndex": 32832,
"startIndex": 32830,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 32830
}
],
"endIndex": 32832,
"startIndex": 32530,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 32834,
"paragraph": {
"elements": [
{
"endIndex": 32834,
"startIndex": 32833,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 32833
},
{
"endIndex": 32949,
"paragraph": {
"elements": [
{
"endIndex": 32885,
"startIndex": 32834,
"textRun": {
"content": "Each of these classes corresponds to the different ",
"textStyle": {}
}
},
{
"endIndex": 32889,
"startIndex": 32885,
"textRun": {
"content": "type",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 32921,
"startIndex": 32889,
"textRun": {
"content": " values from the original JSON: ",
"textStyle": {}
}
},
{
"endIndex": 32925,
"startIndex": 32921,
"textRun": {
"content": "'h1'",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 32927,
"startIndex": 32925,
"textRun": {
"content": ", ",
"textStyle": {}
}
},
{
"endIndex": 32930,
"startIndex": 32927,
"textRun": {
"content": "'p'",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 32936,
"startIndex": 32930,
"textRun": {
"content": ", and ",
"textStyle": {}
}
},
{
"endIndex": 32946,
"startIndex": 32936,
"textRun": {
"content": "'checkbox'",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 32949,
"startIndex": 32946,
"textRun": {
"content": ". \n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 32834
},
{
"endIndex": 32969,
"paragraph": {
"elements": [
{
"endIndex": 32969,
"startIndex": 32949,
"textRun": {
"content": "Seal the superclass\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.g3xt9adlan98",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 32949
},
{
"endIndex": 32970,
"paragraph": {
"elements": [
{
"endIndex": 32970,
"startIndex": 32969,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 32969
},
{
"endIndex": 33127,
"paragraph": {
"bullet": {
"listId": "kix.h7q0mubnyxr0",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 32979,
"startIndex": 32970,
"textRun": {
"content": "Mark the ",
"textStyle": {}
}
},
{
"endIndex": 32984,
"startIndex": 32979,
"textRun": {
"content": "Block",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.21960784,
"green": 0.5019608,
"red": 0.09411765
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 32994,
"startIndex": 32984,
"textRun": {
"content": " class as ",
"textStyle": {}
}
},
{
"endIndex": 33000,
"startIndex": 32994,
"textRun": {
"content": "sealed",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.21960784,
"green": 0.5019608,
"red": 0.09411765
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 33099,
"startIndex": 33000,
"textRun": {
"content": ". Then, refactor the if-case as a switch expression that returns the subclass corresponding to the ",
"textStyle": {}
}
},
{
"endIndex": 33103,
"startIndex": 33099,
"textRun": {
"content": "type",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.21960784,
"green": 0.5019608,
"red": 0.09411765
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 33127,
"startIndex": 33103,
"textRun": {
"content": " specified in the JSON:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 32970
},
{
"endIndex": 33141,
"paragraph": {
"elements": [
{
"endIndex": 33140,
"startIndex": 33127,
"textRun": {
"content": "lib/data.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/dart-patterns-and-records/step_12/lib/data.dart"
},
"underline": true
}
}
},
{
"endIndex": 33141,
"startIndex": 33140,
"textRun": {
"content": "\n",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.4,
"green": 0.4,
"red": 0.4
}
}
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.8e7nmbgjwwar",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 33127
},
{
"endIndex": 33582,
"startIndex": 33141,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 33581,
"startIndex": 33142,
"tableCells": [
{
"content": [
{
"endIndex": 33165,
"paragraph": {
"elements": [
{
"endIndex": 33165,
"startIndex": 33144,
"textRun": {
"content": "sealed class Block {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 33144
},
{
"endIndex": 33176,
"paragraph": {
"elements": [
{
"endIndex": 33176,
"startIndex": 33165,
"textRun": {
"content": " Block();\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 33165
},
{
"endIndex": 33177,
"paragraph": {
"elements": [
{
"endIndex": 33177,
"startIndex": 33176,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 33176
},
{
"endIndex": 33231,
"paragraph": {
"elements": [
{
"endIndex": 33231,
"startIndex": 33177,
"textRun": {
"content": " factory Block.fromJson(Map<String, Object?> json) {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 33177
},
{
"endIndex": 33258,
"paragraph": {
"elements": [
{
"endIndex": 33258,
"startIndex": 33231,
"textRun": {
"content": " return switch (json) {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 33231
},
{
"endIndex": 33322,
"paragraph": {
"elements": [
{
"endIndex": 33322,
"startIndex": 33258,
"textRun": {
"content": " {'type': 'h1', 'text': String text} => HeaderBlock(text),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 33258
},
{
"endIndex": 33388,
"paragraph": {
"elements": [
{
"endIndex": 33388,
"startIndex": 33322,
"textRun": {
"content": " {'type': 'p', 'text': String text} => ParagraphBlock(text),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 33322
},
{
"endIndex": 33464,
"paragraph": {
"elements": [
{
"endIndex": 33464,
"startIndex": 33388,
"textRun": {
"content": " {'type': 'checkbox', 'text': String text, 'checked': bool checked} =>\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 33388
},
{
"endIndex": 33502,
"paragraph": {
"elements": [
{
"endIndex": 33502,
"startIndex": 33464,
"textRun": {
"content": " CheckboxBlock(text, checked),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 33464
},
{
"endIndex": 33568,
"paragraph": {
"elements": [
{
"endIndex": 33568,
"startIndex": 33502,
"textRun": {
"content": " _ => throw const FormatException('Unexpected JSON format'),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 33502
},
{
"endIndex": 33575,
"paragraph": {
"elements": [
{
"endIndex": 33575,
"startIndex": 33568,
"textRun": {
"content": " };\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 33568
},
{
"endIndex": 33579,
"paragraph": {
"elements": [
{
"endIndex": 33579,
"startIndex": 33575,
"textRun": {
"content": " }\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 33575
},
{
"endIndex": 33581,
"paragraph": {
"elements": [
{
"endIndex": 33581,
"startIndex": 33579,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 33579
}
],
"endIndex": 33581,
"startIndex": 33143,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 33583,
"paragraph": {
"elements": [
{
"endIndex": 33583,
"startIndex": 33582,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 33582
},
{
"endIndex": 33833,
"paragraph": {
"elements": [
{
"endIndex": 33587,
"startIndex": 33583,
"textRun": {
"content": "The ",
"textStyle": {}
}
},
{
"endIndex": 33593,
"startIndex": 33587,
"textRun": {
"content": "sealed",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 33607,
"startIndex": 33593,
"textRun": {
"content": " keyword is a ",
"textStyle": {}
}
},
{
"endIndex": 33621,
"startIndex": 33607,
"textRun": {
"content": "class modifier",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 33641,
"startIndex": 33621,
"textRun": {
"content": " that means you can ",
"textStyle": {}
}
},
{
"endIndex": 33676,
"startIndex": 33641,
"textRun": {
"content": "only extend or implement this class",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 33677,
"startIndex": 33676,
"textRun": {
"content": " ",
"textStyle": {}
}
},
{
"endIndex": 33696,
"startIndex": 33677,
"textRun": {
"content": "in the same library",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 33832,
"startIndex": 33696,
"textRun": {
"content": ". Since the analyzer knows the subtypes of this class, it reports an error if a switch fails to cover one of them and isn't exhaustive. ",
"textStyle": {}
}
},
{
"endIndex": 33833,
"startIndex": 33832,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 33583
},
{
"endIndex": 33885,
"paragraph": {
"elements": [
{
"endIndex": 33884,
"startIndex": 33833,
"textRun": {
"content": "Use a switch expression in order to display widgets",
"textStyle": {}
}
},
{
"endIndex": 33885,
"startIndex": 33884,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.foj9vhgbov84",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 33833
},
{
"endIndex": 33993,
"paragraph": {
"bullet": {
"listId": "kix.owc2joioiufz",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 33896,
"startIndex": 33885,
"textRun": {
"content": "Update the ",
"textStyle": {}
}
},
{
"endIndex": 33907,
"startIndex": 33896,
"textRun": {
"content": "BlockWidget",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.21960784,
"green": 0.5019608,
"red": 0.09411765
}
}
},
"weightedFontFamily": {
"fontFamily": "Roboto Mono",
"weight": 400
}
}
}
},
{
"endIndex": 33917,
"startIndex": 33907,
"textRun": {
"content": " class in ",
"textStyle": {}
}
},
{
"endIndex": 33926,
"startIndex": 33917,
"textRun": {
"content": "main.dart",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 33992,
"startIndex": 33926,
"textRun": {
"content": " with a switch expression that uses object patterns for each case:",
"textStyle": {}
}
},
{
"endIndex": 33993,
"startIndex": 33992,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 33885
},
{
"endIndex": 34007,
"paragraph": {
"elements": [
{
"endIndex": 34006,
"startIndex": 33993,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/dart-patterns-and-records/step_12/lib/data.dart"
},
"underline": true
}
}
},
{
"endIndex": 34007,
"startIndex": 34006,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.m6cm9c15guwi",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 33993
},
{
"endIndex": 34696,
"startIndex": 34007,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 34695,
"startIndex": 34008,
"tableCells": [
{
"content": [
{
"endIndex": 34054,
"paragraph": {
"elements": [
{
"endIndex": 34054,
"startIndex": 34010,
"textRun": {
"content": "class BlockWidget extends StatelessWidget {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34010
},
{
"endIndex": 34075,
"paragraph": {
"elements": [
{
"endIndex": 34075,
"startIndex": 34054,
"textRun": {
"content": " final Block block;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34054
},
{
"endIndex": 34076,
"paragraph": {
"elements": [
{
"endIndex": 34076,
"startIndex": 34075,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34075
},
{
"endIndex": 34098,
"paragraph": {
"elements": [
{
"endIndex": 34098,
"startIndex": 34076,
"textRun": {
"content": " const BlockWidget({\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34076
},
{
"endIndex": 34123,
"paragraph": {
"elements": [
{
"endIndex": 34123,
"startIndex": 34098,
"textRun": {
"content": " required this.block,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34098
},
{
"endIndex": 34138,
"paragraph": {
"elements": [
{
"endIndex": 34138,
"startIndex": 34123,
"textRun": {
"content": " super.key,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34123
},
{
"endIndex": 34144,
"paragraph": {
"elements": [
{
"endIndex": 34144,
"startIndex": 34138,
"textRun": {
"content": " });\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34138
},
{
"endIndex": 34145,
"paragraph": {
"elements": [
{
"endIndex": 34145,
"startIndex": 34144,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34144
},
{
"endIndex": 34157,
"paragraph": {
"elements": [
{
"endIndex": 34157,
"startIndex": 34145,
"textRun": {
"content": " @override\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34145
},
{
"endIndex": 34196,
"paragraph": {
"elements": [
{
"endIndex": 34196,
"startIndex": 34157,
"textRun": {
"content": " Widget build(BuildContext context) {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34157
},
{
"endIndex": 34218,
"paragraph": {
"elements": [
{
"endIndex": 34218,
"startIndex": 34196,
"textRun": {
"content": " return Container(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34196
},
{
"endIndex": 34257,
"paragraph": {
"elements": [
{
"endIndex": 34257,
"startIndex": 34218,
"textRun": {
"content": " margin: const EdgeInsets.all(8),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34218
},
{
"endIndex": 34287,
"paragraph": {
"elements": [
{
"endIndex": 34287,
"startIndex": 34257,
"textRun": {
"content": " child: switch (block) {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34257
},
{
"endIndex": 34329,
"paragraph": {
"elements": [
{
"endIndex": 34329,
"startIndex": 34287,
"textRun": {
"content": " HeaderBlock(:final text) => Text(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34287
},
{
"endIndex": 34347,
"paragraph": {
"elements": [
{
"endIndex": 34347,
"startIndex": 34329,
"textRun": {
"content": " text,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34329
},
{
"endIndex": 34409,
"paragraph": {
"elements": [
{
"endIndex": 34409,
"startIndex": 34347,
"textRun": {
"content": " style: Theme.of(context).textTheme.displayMedium,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34347
},
{
"endIndex": 34422,
"paragraph": {
"elements": [
{
"endIndex": 34422,
"startIndex": 34409,
"textRun": {
"content": " ),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34409
},
{
"endIndex": 34473,
"paragraph": {
"elements": [
{
"endIndex": 34473,
"startIndex": 34422,
"textRun": {
"content": " ParagraphBlock(:final text) => Text(text),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34422
},
{
"endIndex": 34534,
"paragraph": {
"elements": [
{
"endIndex": 34534,
"startIndex": 34473,
"textRun": {
"content": " CheckboxBlock(:final text, :final isChecked) => Row(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34473
},
{
"endIndex": 34558,
"paragraph": {
"elements": [
{
"endIndex": 34558,
"startIndex": 34534,
"textRun": {
"content": " children: [\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34534
},
{
"endIndex": 34619,
"paragraph": {
"elements": [
{
"endIndex": 34619,
"startIndex": 34558,
"textRun": {
"content": " Checkbox(value: isChecked, onChanged: (_) {}),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34558
},
{
"endIndex": 34645,
"paragraph": {
"elements": [
{
"endIndex": 34645,
"startIndex": 34619,
"textRun": {
"content": " Text(text),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34619
},
{
"endIndex": 34660,
"paragraph": {
"elements": [
{
"endIndex": 34660,
"startIndex": 34645,
"textRun": {
"content": " ],\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34645
},
{
"endIndex": 34673,
"paragraph": {
"elements": [
{
"endIndex": 34673,
"startIndex": 34660,
"textRun": {
"content": " ),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34660
},
{
"endIndex": 34682,
"paragraph": {
"elements": [
{
"endIndex": 34682,
"startIndex": 34673,
"textRun": {
"content": " },\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34673
},
{
"endIndex": 34689,
"paragraph": {
"elements": [
{
"endIndex": 34689,
"startIndex": 34682,
"textRun": {
"content": " );\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34682
},
{
"endIndex": 34693,
"paragraph": {
"elements": [
{
"endIndex": 34693,
"startIndex": 34689,
"textRun": {
"content": " }\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34689
},
{
"endIndex": 34695,
"paragraph": {
"elements": [
{
"endIndex": 34695,
"startIndex": 34693,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34693
}
],
"endIndex": 34695,
"startIndex": 34009,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 34697,
"paragraph": {
"elements": [
{
"endIndex": 34697,
"startIndex": 34696,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34696
},
{
"endIndex": 34980,
"paragraph": {
"elements": [
{
"endIndex": 34722,
"startIndex": 34697,
"textRun": {
"content": "In your first version of ",
"textStyle": {}
}
},
{
"endIndex": 34733,
"startIndex": 34722,
"textRun": {
"content": "BlockWidget",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 34764,
"startIndex": 34733,
"textRun": {
"content": ", you switched on a field of a ",
"textStyle": {}
}
},
{
"endIndex": 34769,
"startIndex": 34764,
"textRun": {
"content": "Block",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 34798,
"startIndex": 34769,
"textRun": {
"content": " object in order to return a ",
"textStyle": {}
}
},
{
"endIndex": 34807,
"startIndex": 34798,
"textRun": {
"content": "TextStyle",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 34809,
"startIndex": 34807,
"textRun": {
"content": ". ",
"textStyle": {}
}
},
{
"endIndex": 34844,
"startIndex": 34809,
"textRun": {
"content": "Now, you switch an instance of the ",
"textStyle": {}
}
},
{
"endIndex": 34849,
"startIndex": 34844,
"textRun": {
"content": "Block",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 34882,
"startIndex": 34849,
"textRun": {
"content": " object itself and match against ",
"textStyle": {}
}
},
{
"endIndex": 34897,
"startIndex": 34882,
"textRun": {
"content": "object patterns",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 34980,
"startIndex": 34897,
"textRun": {
"content": " that represent its subclasses, extracting the objectβs properties in the process.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34697
},
{
"endIndex": 34981,
"paragraph": {
"elements": [
{
"endIndex": 34981,
"startIndex": 34980,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34980
},
{
"endIndex": 35103,
"paragraph": {
"elements": [
{
"endIndex": 35081,
"startIndex": 34981,
"textRun": {
"content": "The Dart analyzer can check that each subclass is handled in the switch expression because you made ",
"textStyle": {}
}
},
{
"endIndex": 35086,
"startIndex": 35081,
"textRun": {
"content": "Block",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 35087,
"startIndex": 35086,
"textRun": {
"content": " ",
"textStyle": {}
}
},
{
"endIndex": 35103,
"startIndex": 35087,
"textRun": {
"content": "a sealed class.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 34981
},
{
"endIndex": 35104,
"paragraph": {
"elements": [
{
"endIndex": 35104,
"startIndex": 35103,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 35103
},
{
"endIndex": 35215,
"startIndex": 35104,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 35214,
"startIndex": 35105,
"tableCells": [
{
"content": [
{
"endIndex": 35212,
"paragraph": {
"elements": [
{
"endIndex": 35119,
"startIndex": 35107,
"textRun": {
"content": "Try it out: ",
"textStyle": {
"bold": true
}
}
},
{
"endIndex": 35212,
"startIndex": 35119,
"textRun": {
"content": "Try removing one of the subclass cases from the switch expression and see the error kick in:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 35107
},
{
"endIndex": 35214,
"paragraph": {
"elements": [
{
"endIndex": 35213,
"inlineObjectElement": {
"inlineObjectId": "kix.9j9m3o5h8cgz",
"textStyle": {}
},
"startIndex": 35212
},
{
"endIndex": 35214,
"startIndex": 35213,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 35212
}
],
"endIndex": 35214,
"startIndex": 35106,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.8039216,
"green": 0.8980392,
"red": 0.9882353
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 35216,
"paragraph": {
"elements": [
{
"endIndex": 35216,
"startIndex": 35215,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 35215
},
{
"endIndex": 35377,
"paragraph": {
"elements": [
{
"endIndex": 35303,
"startIndex": 35216,
"textRun": {
"content": "Also note that using a switch expression here lets you pass the result directly to the ",
"textStyle": {}
}
},
{
"endIndex": 35308,
"startIndex": 35303,
"textRun": {
"content": "child",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 35376,
"startIndex": 35308,
"textRun": {
"content": " element, as opposed to the separate return statement needed before.",
"textStyle": {}
}
},
{
"endIndex": 35377,
"startIndex": 35376,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 35216
},
{
"endIndex": 35378,
"paragraph": {
"elements": [
{
"endIndex": 35378,
"startIndex": 35377,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 35377
},
{
"endIndex": 35448,
"paragraph": {
"bullet": {
"listId": "kix.owc2joioiufz",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 35447,
"startIndex": 35378,
"textRun": {
"content": "Hot reload to see the checkbox JSON data rendered for the first time:",
"textStyle": {}
}
},
{
"endIndex": 35448,
"startIndex": 35447,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 35378
},
{
"endIndex": 35450,
"paragraph": {
"elements": [
{
"endIndex": 35449,
"inlineObjectElement": {
"inlineObjectId": "kix.2vt8xivqsaai",
"textStyle": {}
},
"startIndex": 35448
},
{
"endIndex": 35450,
"startIndex": 35449,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 35448
},
{
"endIndex": 35629,
"startIndex": 35450,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 35628,
"startIndex": 35451,
"tableCells": [
{
"content": [
{
"endIndex": 35626,
"paragraph": {
"elements": [
{
"endIndex": 35465,
"startIndex": 35453,
"textRun": {
"content": "Try it out: ",
"textStyle": {
"bold": true
}
}
},
{
"endIndex": 35495,
"startIndex": 35465,
"textRun": {
"content": "Try changing the value of the ",
"textStyle": {}
}
},
{
"endIndex": 35502,
"startIndex": 35495,
"textRun": {
"content": "checked",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 35514,
"startIndex": 35502,
"textRun": {
"content": " key in the ",
"textStyle": {}
}
},
{
"endIndex": 35522,
"startIndex": 35514,
"textRun": {
"content": "Document",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 35548,
"startIndex": 35522,
"textRun": {
"content": " class, where you defined ",
"textStyle": {}
}
},
{
"endIndex": 35560,
"startIndex": 35548,
"textRun": {
"content": "documentJson",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 35564,
"startIndex": 35560,
"textRun": {
"content": " to ",
"textStyle": {}
}
},
{
"endIndex": 35568,
"startIndex": 35564,
"textRun": {
"content": "true",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 35580,
"startIndex": 35568,
"textRun": {
"content": " instead of ",
"textStyle": {}
}
},
{
"endIndex": 35585,
"startIndex": 35580,
"textRun": {
"content": "false",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 35626,
"startIndex": 35585,
"textRun": {
"content": ". Hot reload again to see the UI update!\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 35453
},
{
"endIndex": 35628,
"paragraph": {
"elements": [
{
"endIndex": 35627,
"inlineObjectElement": {
"inlineObjectId": "kix.hkv7ogwidmgz",
"textStyle": {}
},
"startIndex": 35626
},
{
"endIndex": 35628,
"startIndex": 35627,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 35626
}
],
"endIndex": 35628,
"startIndex": 35452,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.827451,
"green": 0.91764706,
"red": 0.8509804
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 35630,
"paragraph": {
"elements": [
{
"endIndex": 35630,
"startIndex": 35629,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.garrhsvz303o",
"namedStyleType": "HEADING_1",
"pageBreakBefore": false
}
},
"startIndex": 35629
},
{
"endIndex": 35646,
"paragraph": {
"elements": [
{
"endIndex": 35646,
"startIndex": 35630,
"textRun": {
"content": "Congratulations\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.s22qmcj4zu61",
"namedStyleType": "HEADING_1",
"pageBreakBefore": false
}
},
"startIndex": 35630
},
{
"endIndex": 35661,
"paragraph": {
"elements": [
{
"endIndex": 35660,
"startIndex": 35646,
"textRun": {
"content": "Duration: 0:00",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 35661,
"startIndex": 35660,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 35646
},
{
"endIndex": 35662,
"paragraph": {
"elements": [
{
"endIndex": 35662,
"startIndex": 35661,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 35661
},
{
"endIndex": 35918,
"paragraph": {
"elements": [
{
"endIndex": 35894,
"startIndex": 35662,
"textRun": {
"content": "You successfully experimented with patterns, records, enhanced switch and case, and sealed classes. You covered a lot of informationβbut only barely scratched the surface of these features. For more information on patterns, see the ",
"textStyle": {}
}
},
{
"endIndex": 35915,
"startIndex": 35894,
"textRun": {
"content": "feature specification",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/dart-lang/language/blob/master/accepted/future-releases/0546-patterns/feature-specification.md"
},
"underline": true
}
}
},
{
"endIndex": 35916,
"startIndex": 35915,
"textRun": {
"content": ".",
"textStyle": {}
}
},
{
"endIndex": 35918,
"startIndex": 35916,
"textRun": {
"content": " \n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 35662
},
{
"endIndex": 35919,
"paragraph": {
"elements": [
{
"endIndex": 35919,
"startIndex": 35918,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 35918
},
{
"endIndex": 36114,
"paragraph": {
"elements": [
{
"endIndex": 36079,
"startIndex": 35919,
"textRun": {
"content": "The different pattern types, different contexts in which they can appear, and the potential nesting of subpatterns make the possibilities in behavior seemingly ",
"textStyle": {}
}
},
{
"endIndex": 36086,
"startIndex": 36079,
"textRun": {
"content": "endless",
"textStyle": {
"italic": true
}
}
},
{
"endIndex": 36114,
"startIndex": 36086,
"textRun": {
"content": ". But theyβre easy to see. \n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 35919
},
{
"endIndex": 36115,
"paragraph": {
"elements": [
{
"endIndex": 36115,
"startIndex": 36114,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 36114
},
{
"endIndex": 36291,
"paragraph": {
"elements": [
{
"endIndex": 36290,
"startIndex": 36115,
"textRun": {
"content": "You can imagine all kinds of ways to display content in Flutter using patterns. Using patterns, you can safely extract data in order to build your UI in a few lines of code. ",
"textStyle": {}
}
},
{
"endIndex": 36291,
"startIndex": 36290,
"textRun": {
"content": "\n",
"textStyle": {
"italic": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 36115
},
{
"endIndex": 36304,
"paragraph": {
"elements": [
{
"endIndex": 36304,
"startIndex": 36291,
"textRun": {
"content": "Whatβs next?\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.9mqifffit2ew",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false
}
},
"startIndex": 36291
},
{
"endIndex": 36452,
"paragraph": {
"bullet": {
"listId": "kix.wvu40wq536ni",
"textStyle": {}
},
"elements": [
{
"endIndex": 36408,
"startIndex": 36304,
"textRun": {
"content": "Check out the documentation on patterns, records, enhanced switch and cases, and class modifiers in the ",
"textStyle": {}
}
},
{
"endIndex": 36424,
"startIndex": 36408,
"textRun": {
"content": "Language section",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://dart.dev/language"
},
"underline": true
}
}
},
{
"endIndex": 36451,
"startIndex": 36424,
"textRun": {
"content": " of the Dart documentation.",
"textStyle": {}
}
},
{
"endIndex": 36452,
"startIndex": 36451,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 36304
},
{
"endIndex": 36467,
"paragraph": {
"elements": [
{
"endIndex": 36467,
"startIndex": 36452,
"textRun": {
"content": "Reference docs\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.an95hoqxrlhg",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false
}
},
"startIndex": 36452
},
{
"endIndex": 36543,
"paragraph": {
"elements": [
{
"endIndex": 36514,
"startIndex": 36467,
"textRun": {
"content": "See the full sample code, step by step, in the ",
"textStyle": {}
}
},
{
"endIndex": 36530,
"startIndex": 36514,
"textRun": {
"content": "flutter/codelabs",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/tree/main/dart-patterns-and-records"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 36541,
"startIndex": 36530,
"textRun": {
"content": " repository",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/tree/main/dart-patterns-and-records"
},
"underline": true
}
}
},
{
"endIndex": 36543,
"startIndex": 36541,
"textRun": {
"content": ".\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 36467
},
{
"endIndex": 36544,
"paragraph": {
"elements": [
{
"endIndex": 36544,
"startIndex": 36543,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 36543
},
{
"endIndex": 36630,
"paragraph": {
"elements": [
{
"endIndex": 36630,
"startIndex": 36544,
"textRun": {
"content": "For in-depth specifications for each new feature, check out the original design docs:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 36544
},
{
"endIndex": 36639,
"paragraph": {
"bullet": {
"listId": "kix.3ow5k7pnx7ga",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 36638,
"startIndex": 36630,
"textRun": {
"content": "Patterns",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/dart-lang/language/blob/master/accepted/future-releases/0546-patterns/feature-specification.md"
},
"underline": true
}
}
},
{
"endIndex": 36639,
"startIndex": 36638,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 36630
},
{
"endIndex": 36647,
"paragraph": {
"bullet": {
"listId": "kix.3ow5k7pnx7ga",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 36646,
"startIndex": 36639,
"textRun": {
"content": "Records",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/dart-lang/language/blob/master/accepted/future-releases/records/records-feature-specification.md"
},
"underline": true
}
}
},
{
"endIndex": 36647,
"startIndex": 36646,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 36639
},
{
"endIndex": 36671,
"paragraph": {
"bullet": {
"listId": "kix.3ow5k7pnx7ga",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 36670,
"startIndex": 36647,
"textRun": {
"content": "Exhaustiveness checking",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/dart-lang/language/blob/master/accepted/future-releases/0546-patterns/exhaustiveness.md"
},
"underline": true
}
}
},
{
"endIndex": 36671,
"startIndex": 36670,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 36647
},
{
"endIndex": 36686,
"paragraph": {
"bullet": {
"listId": "kix.3ow5k7pnx7ga",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 36685,
"startIndex": 36671,
"textRun": {
"content": "Sealed classes",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/dart-lang/language/blob/master/accepted/future-releases/sealed-types/feature-specification.md"
},
"underline": true
}
}
},
{
"endIndex": 36686,
"startIndex": 36685,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 36671
},
{
"endIndex": 36687,
"paragraph": {
"elements": [
{
"endIndex": 36687,
"startIndex": 36686,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.30980393,
"green": 0.65882355,
"red": 0.41568628
}
}
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 36686
}
]
},
"documentId": "17L9jk2dhTFrdEqyLb6Wxhq0NeRrtzpQLLJv09qROsA8",
"documentStyle": {
"background": {
"color": {}
},
"defaultHeaderId": "kix.ldti39ul455",
"marginBottom": {
"magnitude": 72.0,
"unit": "PT"
},
"marginFooter": {
"magnitude": 36.0,
"unit": "PT"
},
"marginHeader": {
"magnitude": 36.0,
"unit": "PT"
},
"marginLeft": {
"magnitude": 72.0,
"unit": "PT"
},
"marginRight": {
"magnitude": 72.0,
"unit": "PT"
},
"marginTop": {
"magnitude": 72.0,
"unit": "PT"
},
"pageNumberStart": 1,
"pageSize": {
"height": {
"magnitude": 792.0,
"unit": "PT"
},
"width": {
"magnitude": 612.0,
"unit": "PT"
}
}
},
"headers": {
"kix.ldti39ul455": {
"content": [
{
"endIndex": 1,
"paragraph": {
"elements": [
{
"endIndex": 1,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
}
}
],
"headerId": "kix.ldti39ul455"
}
},
"inlineObjects": {
"kix.2vt8xivqsaai": {
"inlineObjectProperties": {
"embeddedObject": {
"description": "A screenshot of the app that displays the checkbox 'Learn Dart 3'",
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh6.googleusercontent.com/LxocZBIoJI6-zdCJTTsNsDb28JK0raQ5gbz-W6fOhCyyo54apgksVuvpAjRmF7lN8AhD9apIPeOyjxQbXd9h4gTlojZIDayUuBtDjFZEo3AxHzYWVO0w5P5qydA6ndEaeEqAxmhP7GLsbayjet0CJLxrb3sor7CaHZJCgqY997O7pvPXVrsxl0bjqkn_S1ga55cDZqPr",
"cropProperties": {}
},
"marginBottom": {
"magnitude": 9.0,
"unit": "PT"
},
"marginLeft": {
"magnitude": 9.0,
"unit": "PT"
},
"marginRight": {
"magnitude": 9.0,
"unit": "PT"
},
"marginTop": {
"magnitude": 9.0,
"unit": "PT"
},
"size": {
"height": {
"magnitude": 380.0,
"unit": "PT"
},
"width": {
"magnitude": 468.0,
"unit": "PT"
}
}
}
},
"objectId": "kix.2vt8xivqsaai"
},
"kix.60qoxad1aw8": {
"inlineObjectProperties": {
"embeddedObject": {
"description": "A screenshot of the app that displays a string 'Last modified: 2 weeks ago' using the formatDate() function.",
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh5.googleusercontent.com/LcjqDDR0MkwZBDeR_zxhYlbHEzFYKPhDF3frfU4512YuL36apbncEZpD_1GpdvWoJ4LZc-gXtKhu27o-Wkk697zj_nIvX1hmU7yHe4HXhx63GvtihYEbnBiYUXzdKYxeRSAMlca1fOvx-l3j5VhTP1-ZVNt7WoWQBAabb8pDSKX79VX6oeXbXZfL-L9SbOg5_cE0yC2a",
"cropProperties": {}
},
"marginBottom": {
"magnitude": 9.0,
"unit": "PT"
},
"marginLeft": {
"magnitude": 9.0,
"unit": "PT"
},
"marginRight": {
"magnitude": 9.0,
"unit": "PT"
},
"marginTop": {
"magnitude": 9.0,
"unit": "PT"
},
"size": {
"height": {
"magnitude": 380.0,
"unit": "PT"
},
"width": {
"magnitude": 468.0,
"unit": "PT"
}
}
}
},
"objectId": "kix.60qoxad1aw8"
},
"kix.9j9m3o5h8cgz": {
"inlineObjectProperties": {
"embeddedObject": {
"description": "A screenshot of a warning in VS Code that warns that not all cases are exhaustively checked.",
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/0sovsx2wT0y2-LgeFVZuqu0FSGCQGzzS1esRXQC7MWy1Ttdt6XT2tGG0o3jf31IOy6lWHB5ffgiFKYGWHTP9SEaPsBxfwCiuCiAbFrUB6RIJfQU0zf-qr3-dmmI1H2GPqCGRfXOl3PigCTSuh1bhbdy63xIwt8cYInbX6Cz_bSuMLbQD13UXLfv66QNRr56ePNxshMt3",
"cropProperties": {}
},
"marginBottom": {
"magnitude": 9.0,
"unit": "PT"
},
"marginLeft": {
"magnitude": 9.0,
"unit": "PT"
},
"marginRight": {
"magnitude": 9.0,
"unit": "PT"
},
"marginTop": {
"magnitude": 9.0,
"unit": "PT"
},
"size": {
"height": {
"magnitude": 74.0,
"unit": "PT"
},
"width": {
"magnitude": 457.5,
"unit": "PT"
}
}
}
},
"objectId": "kix.9j9m3o5h8cgz"
},
"kix.aljudv3bph0l": {
"inlineObjectProperties": {
"embeddedObject": {
"description": "Screenshot of the app displaying content from the 'blocks' section of the JSON data.",
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh6.googleusercontent.com/mqVuLFKDmKC3K8nLvBXCypJxJ1zArzOkaKhM-x04ULtaC-dSTz7fETGHQdwUuoqO7Pmw303vJ6DZfQMvYOCGcJM3pgeVIZNJ5MVxUffa6OfBDNdJBSMQHG2_2SIwyS6RJ4Eqd3UoT42_jeJZlsnzfXDFPv0C1RZ3kHxxYBUDEEgiGdEKJkABWkpDxoerxh81aHi-0LiZ",
"cropProperties": {}
},
"marginBottom": {
"magnitude": 9.0,
"unit": "PT"
},
"marginLeft": {
"magnitude": 9.0,
"unit": "PT"
},
"marginRight": {
"magnitude": 9.0,
"unit": "PT"
},
"marginTop": {
"magnitude": 9.0,
"unit": "PT"
},
"size": {
"height": {
"magnitude": 380.0,
"unit": "PT"
},
"width": {
"magnitude": 468.0,
"unit": "PT"
}
}
}
},
"objectId": "kix.aljudv3bph0l"
},
"kix.bmryu6vhq6z": {
"inlineObjectProperties": {
"embeddedObject": {
"description": "A screenshot of the application built in this step.",
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/-zn_EmzlI2ICIRSzOZ7x_ruzUIs8_jzKq5AHdwcbqsL749Wx9EGS5-utpED44KLBCC3K8lQYEACvc5Gmj4ClCHxtXRpvMpQYPqLIXnwPr4a6ha2dZELsDed3uj2_PqwYooMRBiQN91nAEPcRAPsNxqWlmDX2e2PI6e_CtMcFo80I-vjVRiMIog3MXMH1g6LBBqeWplxR",
"cropProperties": {}
},
"marginBottom": {
"magnitude": 9.0,
"unit": "PT"
},
"marginLeft": {
"magnitude": 9.0,
"unit": "PT"
},
"marginRight": {
"magnitude": 9.0,
"unit": "PT"
},
"marginTop": {
"magnitude": 9.0,
"unit": "PT"
},
"size": {
"height": {
"magnitude": 380.0,
"unit": "PT"
},
"width": {
"magnitude": 468.0,
"unit": "PT"
}
}
}
},
"objectId": "kix.bmryu6vhq6z"
},
"kix.ctv7dbuxjvub": {
"inlineObjectProperties": {
"embeddedObject": {
"description": "The final application you build in this codelab, a document with a title, the last modification date, headers and paragraphs.",
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/rpvXm2SClTeygPAwBe6fnm0hc2yuq6EXO5OKJraTwoQAfCyJ-6drne7KS3xuaUzrfZpa6sIYKQ1GOQJcjROhKsh9appF5YV7mW8dSY-ghAwxt6GKGcOmILIJl_lS8phuUmFdxhu1dsakKJZfh5wM2lnA_baJCXdQ8gO1fGv8kwNQMh6wXM1VITRDfo7W2xA5iUm10IUJ",
"cropProperties": {}
},
"marginBottom": {
"magnitude": 9.0,
"unit": "PT"
},
"marginLeft": {
"magnitude": 9.0,
"unit": "PT"
},
"marginRight": {
"magnitude": 9.0,
"unit": "PT"
},
"marginTop": {
"magnitude": 9.0,
"unit": "PT"
},
"size": {
"height": {
"magnitude": 380.0,
"unit": "PT"
},
"width": {
"magnitude": 468.0,
"unit": "PT"
}
}
}
},
"objectId": "kix.ctv7dbuxjvub"
},
"kix.hkv7ogwidmgz": {
"inlineObjectProperties": {
"embeddedObject": {
"description": "A screenshot of the app that contains a checkbox 'Learn Dart 3' that is now checked.",
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh6.googleusercontent.com/ghGgmQCw4kdLqKaQwQ2-p5vBF580o70zZ6Vk5BAwg--Vg2YN0RbjS-k4w6ja4xZt2PoCzj_PCh3YAQjqm5xn8rB6-kSfo2FLHasSQVVi23vgCNNqsVUaY7SHZzFrhXfb_qPDkT9gEFFz9_N9DyzfnRYbgnQ11OXo3Kvezum06IRjxjjqqvpz8RgIeHRG9se9E-yV-ZaF",
"cropProperties": {}
},
"marginBottom": {
"magnitude": 9.0,
"unit": "PT"
},
"marginLeft": {
"magnitude": 9.0,
"unit": "PT"
},
"marginRight": {
"magnitude": 9.0,
"unit": "PT"
},
"marginTop": {
"magnitude": 9.0,
"unit": "PT"
},
"size": {
"height": {
"magnitude": 371.0,
"unit": "PT"
},
"width": {
"magnitude": 457.5,
"unit": "PT"
}
}
}
},
"objectId": "kix.hkv7ogwidmgz"
},
"kix.nsv6tkuk1bk8": {
"inlineObjectProperties": {
"embeddedObject": {
"description": "An image of the 'Run and debug' button, available in 'Run and debug' section of the activity bar on the left hand side.",
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh6.googleusercontent.com/VZkiL9GAYU_3shld1rVYDhIhLvJ9KeBCHuqpQIQRJniCILSBOZ5iqPua_BJMHwST1Q18c0ZdYhPxrgiZPZB8EkTLVtOnGD92zjkldXyQ6ojhNDIPGfcDeyDUVBVEcHNuwGj0djIBXrLWgPivkRNNeLuWM4QdwaET7bcy9voUtj5eCtkrbWFnh-F-OGZSNk6fd1ZBcbAl",
"cropProperties": {}
},
"marginBottom": {
"magnitude": 9.0,
"unit": "PT"
},
"marginLeft": {
"magnitude": 9.0,
"unit": "PT"
},
"marginRight": {
"magnitude": 9.0,
"unit": "PT"
},
"marginTop": {
"magnitude": 9.0,
"unit": "PT"
},
"size": {
"height": {
"magnitude": 304.875,
"unit": "PT"
},
"width": {
"magnitude": 280.4459134615385,
"unit": "PT"
}
}
}
},
"objectId": "kix.nsv6tkuk1bk8"
},
"kix.qfmyzzrv0fkx": {
"inlineObjectProperties": {
"embeddedObject": {
"description": "A screenshot of VS Code displaying the project created with the 'flutter create' command.",
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh4.googleusercontent.com/O9FAilaxzlwDClZpjAi3woD20NfS371Tzj_grVM4hAorCGD0Sh1PrjgRz3aDmJwNXf6avbOxeEvdy28GwJzpD6bNABJJ9DzO1S9TOF0Bz-39HeP7UusNoD-rMqiByhv7CuVkh1uOuWW_ELgddbki2YBL1v2lj8UGE4DrmsBs3vasrGixDNOcoAEbcCLWF8z0YBRTeDb7",
"cropProperties": {}
},
"marginBottom": {
"magnitude": 9.0,
"unit": "PT"
},
"marginLeft": {
"magnitude": 9.0,
"unit": "PT"
},
"marginRight": {
"magnitude": 9.0,
"unit": "PT"
},
"marginTop": {
"magnitude": 9.0,
"unit": "PT"
},
"size": {
"height": {
"magnitude": 362.0,
"unit": "PT"
},
"width": {
"magnitude": 468.0,
"unit": "PT"
}
}
}
},
"objectId": "kix.qfmyzzrv0fkx"
},
"kix.s1jfj82jdcu4": {
"inlineObjectProperties": {
"embeddedObject": {
"description": "A screenshot of the app, which displays the title and modified date.",
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh5.googleusercontent.com/TeFHvLsTjVE4Mf5B2Uy88We3zr0Kw6nT-ZD5MWgXGZQ42aLc5EjC3vdnyOO9ACdPWiTpeMj0sxEb0AubqNwWqP7kPaas1BSpPXeNOokLB8bxtHd9oumWA9CZh9rmhrnV-ZTkt4enXDXZh9Yu2Gjsfa4YFqL2i3LW-ROL33cMeTFYpYsg0EzHhlSAJTdrHPuW7LHfattp",
"cropProperties": {}
},
"marginBottom": {
"magnitude": 9.0,
"unit": "PT"
},
"marginLeft": {
"magnitude": 9.0,
"unit": "PT"
},
"marginRight": {
"magnitude": 9.0,
"unit": "PT"
},
"marginTop": {
"magnitude": 9.0,
"unit": "PT"
},
"size": {
"height": {
"magnitude": 380.0,
"unit": "PT"
},
"width": {
"magnitude": 468.0,
"unit": "PT"
}
}
}
},
"objectId": "kix.s1jfj82jdcu4"
},
"kix.tnem4r9wfxkz": {
"inlineObjectProperties": {
"embeddedObject": {
"description": "A screenshot of the 'convert to switch expression' assist available in VS Code.",
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh4.googleusercontent.com/EJSdGV5x7fqQyOT3GOVZgkInvG1tBvsZ_NPxI3l7HHGgD8m-zQlV9swlVCsQ60RjJkC1qjDcnfmu0m5l_vscv99CtuRclhDvUMLAHCHlhag5ADKcMwFVuqAfMe2a-GGyR7ckg2LeoKmnsJBUiPR2RS_D0mgARJZp7B6jdJ15xFnC-EhY5YwEBkr84c6y0NFixzKi_-lH",
"cropProperties": {}
},
"marginBottom": {
"magnitude": 9.0,
"unit": "PT"
},
"marginLeft": {
"magnitude": 9.0,
"unit": "PT"
},
"marginRight": {
"magnitude": 9.0,
"unit": "PT"
},
"marginTop": {
"magnitude": 9.0,
"unit": "PT"
},
"size": {
"height": {
"magnitude": 198.0,
"unit": "PT"
},
"width": {
"magnitude": 468.0,
"unit": "PT"
}
}
}
},
"objectId": "kix.tnem4r9wfxkz"
},
"kix.zbxtro32lc4c": {
"inlineObjectProperties": {
"embeddedObject": {
"description": "A screenshot of the target platform selector in VS Code.",
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/84R282BeXX7meOADeWBmYyU87RSNzV8aN5_xvTyd3AjIABlkC9Fy4kr1OJR8vLoDc96xvVArbUGVkbb4660uGn0YPRKUKGdU80aMr46W2Rz5fYNh6ts6FPp3f6G__R0LjTtfh5m3lIcP_-01cKy67LY56CdzSUWCzsmZTQcxCLEp5yNLSUzEOXJo6lsDinX4kgehyc67",
"cropProperties": {}
},
"marginBottom": {
"magnitude": 9.0,
"unit": "PT"
},
"marginLeft": {
"magnitude": 9.0,
"unit": "PT"
},
"marginRight": {
"magnitude": 9.0,
"unit": "PT"
},
"marginTop": {
"magnitude": 9.0,
"unit": "PT"
},
"size": {
"height": {
"magnitude": 160.0,
"unit": "PT"
},
"width": {
"magnitude": 468.0,
"unit": "PT"
}
}
}
},
"objectId": "kix.zbxtro32lc4c"
}
},
"lists": {
"kix.1tjhv41sn0xa": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.1ztzk92hrth8": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.242u43sl0yx2": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.29md3ly3lepf": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.2ctr6ys6ni0e": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.2gaihzs8s2ee": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.2jnyqucbt2t6": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.2s25y2v84mq6": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.2whi3gkwlssd": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.3cjxume1ox5j": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.3dvia6cjfor2": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.3l2774habcsr": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.3ow5k7pnx7ga": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.43xuk7egr0s7": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.4ojr2d3yr7nz": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.4x1zl3kbw569": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.4yb7edsq6e7h": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.58ht9hwr19e3": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.5hb992swn8xf": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.5jdr984vfzt1": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.5q2x329ym1hh": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.26666668,
"green": 0.26666668,
"red": 0.26666668
}
}
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.5qwnfoilsrt1": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.5xnshm3wa472": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.6f05htw8422z": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.6fpfw8gudx4f": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.6gnjj5cgrcnt": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.6i1on1k3iuin": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.6j918luqnpw7": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.6m37iee3p8wg": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.73xf6whm0eds": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.7c0e2x8uy18q": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.7cnpkqyuk55g": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.7or0vngkfvx7": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.7uh5pgoi33tb": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.7unw3ed52cvl": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.7zli105oii42": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.83lp1z9knfuo": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.8bm96xhzoe5y": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.8rkybgc0eke": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.92njtm9f6jkd": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.98e48u1wcy7a": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.98vmteiu60y4": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.9k9nrzl80p49": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.9kx8oi36elid": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "-",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "-",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "-",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "-",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "-",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "-",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "-",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "-",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "-",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.9pk2r7tbztni": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.9u3cg917bqs8": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.9ueckdtpugb1": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.9uhh20xkbn6m": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.9z83l2c17pcu": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.a3xmjtope7n9": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.a4bdodccweep": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.a9n5e5f1az1v": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.agpmvda4vr7h": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.an6zxid0uolo": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.anq6omciu13j": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.ao8m1u77ptws": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 9.5,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.13333334,
"green": 0.13333334,
"red": 0.13333334
}
}
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 9.5,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.13333334,
"green": 0.13333334,
"red": 0.13333334
}
}
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.as2n1giwwdse": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.b1f0apbixzro": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.b7qotwh7gtna": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.bmk2w9stijyg": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.c7ejcv2rhol9": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.cbv3p81ktfkm": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.ch36e5q38239": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.cnamwo3k2086": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.cnrmyad97l0c": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.crxhbxpwrhf5": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.cvq51i3qoyu5": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.cw1c2jqsuto": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.cxasg6ivb43i": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.d8meck8mgbh6": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.dt4hcarn6v3s": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.e3w5dzmwqs7s": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.e7rm6cchwfxs": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.enu2fgnbdejh": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.f3mtn21egf47": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.f9bz4vrobr4": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.fa4ji89str8f": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.fg889guo8ue2": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.fj7194xw5fjn": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.fxg6r2ea28qw": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.g0n6mr9338xd": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.g801zwj9tdo5": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.g846847cbhgd": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.g8ukrj6l25im": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.gawmxw84fbl": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.gpkppvve7lf6": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.h7q0mubnyxr0": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.h91oxjavbxs": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.hhw26oq82tbj": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.hnxe8uaki5ye": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.huc4gmkwuq3u": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.ibwufjck5e1": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.ighvy8mje2ni": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 342.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 360.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 378.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 396.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 414.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 432.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.imsafi72ulmz": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.j2ckn4bxfuh7": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.jhke3wkzan7s": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.jkp7jly57b9l": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.jthb937lwrgi": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.jus06vdmlro7": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.k0g7fgw2pxb9": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.k644zz41ai58": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.kh0gu8ggzrfl": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.kjyum9q5klsd": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.kmgukliniasp": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.l2nxb9cf1l7": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.l36nsyz7nfdm": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.l9tvvj4pt5te": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.leupdeo3omsb": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.lgekdwzh9r79": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.m4wzpkxru5e2": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.mjlhrnhvhdy4": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.mn4kck4i9su5": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.mq7j6bh64ejd": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.mqctj3bturgq": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.my7kdbk31nco": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.nw9e0rbdtf2n": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.o6y9eyfrksu6": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.o72pyift6jdv": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.odzjfc6rqek1": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.oerq1n8ypay0": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.oh906fh7glv8": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.oowm3okhp1if": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.orlmx6e2glni": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.owc2joioiufz": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.pcizye4e9dah": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.phibiqsq7jjd": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.pvf8i7z50kj2": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.q5glzqgk6j58": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.q5h44jiozc91": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.q759u59r2yjj": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.qk785s5gz3e7": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.qnkbj287noea": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.qvkatskfprp3": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.qx7bo6w9dag0": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.r51tyrttcax1": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.r8m6khspk25u": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.rla1petjmkkw": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.rr7za3dc2v02": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.rrgd3s9e8n6q": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.ruo5b0i6xyk": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.rup19lwpb96r": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.s154rj5xcbab": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.s3ytlwab2m4": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.sbrgqgu1eihb": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.sjzj7ysn5gcf": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.slxd9egkb7ci": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.sqqfdjlv2hm9": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.ss5r6gmvu828": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.swc20l9iro9p": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.t0z3ko6guoqz": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.t55mzdddlz10": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.tismz98me1tb": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.tjxkb9tlcarv": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.tobmpp8mbh7q": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.tp7tyr4v6ukt": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.tsgw4oeo22hd": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.u1nuvkrm9h9f": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.ugzokp4cwudf": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.ul9cgkeua5dp": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.ulxzvayuxl7p": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.uye62wdrnhk7": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.v58qrdjinxbw": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.vada968rkket": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.vc2fcwdxd37v": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.vjp0z582afkw": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.vjwh1q79kyod": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.vqg3y0tuey4i": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.vqia47e8h1og": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "-",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "-",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "-",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "-",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "-",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "-",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "-",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "-",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "-",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.vwvs454chlx5": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.w3xdpsln97hm": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.wa0nkis9zlxf": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.wvtqhihdjvtw": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.wvu40wq536ni": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.x2xqmh4hm4pa": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.xj4zd89gdvlp": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.y4auuiny9mus": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 342.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 360.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 378.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 396.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.y57tybes7g6b": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.ys8rp5gxh2y2": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.z1u1i7qvii2l": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.z25dkq3ogzpp": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.z2hyt12r7kc1": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "β",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "β ",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.z46ih1vlabol": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
}
},
"namedStyles": {
"styles": [
{
"namedStyleType": "NORMAL_TEXT",
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": true,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 115.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
},
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": false,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
},
{
"namedStyleType": "HEADING_1",
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.6fjw6cht0bf",
"keepLinesTogether": true,
"keepWithNext": true,
"namedStyleType": "HEADING_1",
"pageBreakBefore": false,
"spaceAbove": {
"magnitude": 10.0,
"unit": "PT"
}
},
"textStyle": {
"fontSize": {
"magnitude": 16.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
},
{
"namedStyleType": "HEADING_2",
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.ecgsg25eeya7",
"keepLinesTogether": true,
"keepWithNext": true,
"namedStyleType": "HEADING_2",
"pageBreakBefore": false,
"spaceAbove": {
"magnitude": 10.0,
"unit": "PT"
}
},
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 13.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
},
{
"namedStyleType": "HEADING_3",
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.4pgk284l6s7z",
"keepLinesTogether": true,
"keepWithNext": true,
"namedStyleType": "HEADING_3",
"pageBreakBefore": false,
"spaceAbove": {
"magnitude": 8.0,
"unit": "PT"
}
},
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.4,
"green": 0.4,
"red": 0.4
}
}
},
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
},
{
"namedStyleType": "HEADING_4",
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.9ujhi55jbp4b",
"keepLinesTogether": true,
"keepWithNext": true,
"namedStyleType": "HEADING_4",
"pageBreakBefore": false,
"spaceAbove": {
"magnitude": 8.0,
"unit": "PT"
}
},
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.4,
"green": 0.4,
"red": 0.4
}
}
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
},
{
"namedStyleType": "HEADING_5",
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.yjfswb1t0sub",
"keepLinesTogether": true,
"keepWithNext": true,
"namedStyleType": "HEADING_5",
"pageBreakBefore": false,
"spaceAbove": {
"magnitude": 8.0,
"unit": "PT"
}
},
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.4,
"green": 0.4,
"red": 0.4
}
}
},
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
},
{
"namedStyleType": "HEADING_6",
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.91dfhsx5n4l3",
"keepLinesTogether": true,
"keepWithNext": true,
"namedStyleType": "HEADING_6",
"pageBreakBefore": false,
"spaceAbove": {
"magnitude": 8.0,
"unit": "PT"
}
},
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.4,
"green": 0.4,
"red": 0.4
}
}
},
"italic": true,
"weightedFontFamily": {
"fontFamily": "Trebuchet MS",
"weight": 400
}
}
},
{
"namedStyleType": "TITLE",
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.uvzknuxefxg9",
"keepLinesTogether": true,
"keepWithNext": true,
"namedStyleType": "TITLE",
"pageBreakBefore": false
},
"textStyle": {
"fontSize": {
"magnitude": 21.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
},
{
"namedStyleType": "SUBTITLE",
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"keepLinesTogether": true,
"keepWithNext": true,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"magnitude": 10.0,
"unit": "PT"
}
},
"textStyle": {
"fontSize": {
"magnitude": 13.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.4,
"green": 0.4,
"red": 0.4
}
}
},
"italic": true,
"weightedFontFamily": {
"fontFamily": "Trebuchet MS",
"weight": 400
}
}
}
]
},
"revisionId": "ANeT5PQpeoK4ecgbeGzkWjExyAhyuIuHqYPuSj1gjw8lJ0f7BmbGuTC7REmQ8QMpuUrfgQbpeiAOPl_DbBsLGA",
"suggestionsViewMode": "PREVIEW_WITHOUT_SUGGESTIONS",
"title": "Dive into Dartβs patterns and records - revised"
} | codelabs/tooling/claat_export_images/test/data/exports/17L9jk2dhTFrdEqyLb6Wxhq0NeRrtzpQLLJv09qROsA8.json/0 | {
"file_path": "codelabs/tooling/claat_export_images/test/data/exports/17L9jk2dhTFrdEqyLb6Wxhq0NeRrtzpQLLJv09qROsA8.json",
"repo_id": "codelabs",
"token_count": 1634028
} | 112 |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:convert';
import 'dart:io';
import 'package:io/io.dart' as io;
import 'package:logging/logging.dart';
import 'package:path/path.dart' as p;
import 'blueprint.dart';
final _logger = Logger('rebuild_blueprint');
Future<void> rebuildFromBlueprint(Directory cwd, Blueprint blueprint) async {
_logger.info(blueprint.name);
if (!blueprint.isValid) {
_logger.warning('Invalid blueprint');
exit(-1);
}
for (final step in blueprint.steps) {
await _buildBlueprintStep(cwd, step);
}
}
Future<void> _buildBlueprintStep(Directory cwd, BlueprintStep step) async {
_logger.info(step.name);
final stop = step.stop;
if (stop != null && stop == true) {
_logger.info('Stopping.');
exit(0);
}
final platforms = step.platforms;
if (platforms != null) {
if (!platforms.contains(Platform.operatingSystem)) {
_logger.info(
'Skipping because ${Platform.operatingSystem} is not in [${platforms.join(',')}].');
return;
}
}
final steps = step.steps;
if (steps.isNotEmpty) {
for (final subStep in steps) {
await _buildBlueprintStep(cwd, subStep);
}
return;
}
if (step.mkdir != null || step.mkdirs.isNotEmpty) {
final dir = step.mkdir;
if (dir != null) {
_mkdir(
step.path != null
? p.join(cwd.path, step.path, dir)
: p.join(cwd.path, dir),
step: step);
} else {
for (final dir in step.mkdirs) {
_mkdir(
step.path != null
? p.join(cwd.path, step.path, dir)
: p.join(cwd.path, dir),
step: step);
}
}
return;
}
if (step.rmdir != null || step.rmdirs.isNotEmpty) {
final dir = step.rmdir;
if (dir != null) {
_rmdir(
step.path != null
? p.join(cwd.path, step.path, dir)
: p.join(cwd.path, dir),
step: step);
} else {
for (final dir in step.rmdirs) {
_rmdir(
step.path != null
? p.join(cwd.path, step.path, dir)
: p.join(cwd.path, dir),
step: step);
}
}
return;
}
final rename = step.rename;
if (rename != null) {
if (step.path != null) {
_rename(
from: p.join(cwd.path, step.path, rename.from),
to: p.join(cwd.path, step.path, rename.to),
step: step);
} else {
_rename(
from: p.join(cwd.path, rename.from),
to: p.join(cwd.path, rename.to),
step: step);
}
return;
}
final cpdir = step.copydir;
if (cpdir != null) {
if (step.path != null) {
_cpdir(
from: p.join(cwd.path, step.path, cpdir.from),
to: p.join(cwd.path, step.path, cpdir.to),
step: step);
} else {
_cpdir(
from: p.join(cwd.path, cpdir.from),
to: p.join(cwd.path, cpdir.to),
step: step);
}
return;
}
final cp = step.copy;
if (cp != null) {
if (step.path != null) {
_cp(
from: p.join(cwd.path, step.path, cp.from),
to: p.join(cwd.path, step.path, cp.to),
step: step);
} else {
_cp(
from: p.join(cwd.path, cp.from),
to: p.join(cwd.path, cp.to),
step: step);
}
return;
}
final rm = step.rm;
if (rm != null) {
late final File target;
if (step.path != null) {
target = File(p.join(cwd.path, step.path, rm));
} else {
target = File(p.join(cwd.path, rm));
}
if (!target.existsSync()) {
_logger.severe("File ${target.path} doesn't exist: ${step.name}");
exit(-1);
}
target.deleteSync();
return;
}
final retrieveUrl = step.retrieveUrl;
if (retrieveUrl != null) {
final request = await HttpClient().getUrl(Uri.parse(retrieveUrl));
final response = await request.close();
await response.pipe(File(p.join(cwd.path, step.path!)).openWrite());
return;
}
final pod = step.pod;
if (pod != null) {
await _runNamedCommand(
command: 'pod',
step: step,
cwd: cwd,
args: pod,
exitOnStdErr: false, // pod update writes lots of warnings we ignore
);
return;
}
final dart = step.dart;
if (dart != null) {
await _runNamedCommand(
command: 'dart',
step: step,
cwd: cwd,
args: dart,
);
return;
}
final flutter = step.flutter;
if (flutter != null) {
await _runNamedCommand(
command: 'flutter',
step: step,
cwd: cwd,
args: flutter,
exitOnStdErr: false, // flutter prints status info to stderr.
);
return;
}
final git = step.git;
if (git != null) {
await _runNamedCommand(
command: 'git',
step: step,
cwd: cwd,
args: git,
exitOnStdErr: false, // git prints status info to stderr. Sigh.
);
return;
}
final tar = step.tar;
if (tar != null) {
await _runNamedCommand(
command: 'tar',
step: step,
cwd: cwd,
args: tar,
);
return;
}
final sevenZip = step.sevenZip;
if (sevenZip != null) {
await _runNamedCommand(
command: '7z',
step: step,
cwd: cwd,
args: sevenZip,
);
return;
}
final stripLinesContaining = step.stripLinesContaining;
if (stripLinesContaining != null) {
final target = File(p.join(cwd.path, step.path));
final lines = target.readAsLinesSync();
lines.removeWhere((line) => line.contains(stripLinesContaining));
final buff = StringBuffer();
for (final line in lines) {
buff.writeln(line);
}
target.writeAsStringSync(buff.toString());
return;
}
final xcodeAddFile = step.xcodeAddFile;
final xcodeProjectPath = step.xcodeProjectPath;
if (xcodeAddFile != null && xcodeProjectPath != null) {
final script = '''
require "xcodeproj"
project = Xcodeproj::Project.open("$xcodeProjectPath")
group = project.main_group["Runner"]
project.targets.first.add_file_references([group.new_file("$xcodeAddFile")])
project.save
'''
.split('\n')
.map((str) => "-e '$str'")
.join(' ');
await _runNamedCommand(
command: 'ruby',
step: step,
cwd: cwd,
args: script,
exitOnStdErr: false);
return;
}
final path = step.path;
if (path == null) {
_logger.severe(
'patch, base64-contents and replace-contents require a path: ${step.name}');
exit(-1);
}
final patch = step.patch;
final patchU = step.patchU;
final patchC = step.patchC;
if (patch != null || patchC != null || patchU != null) {
bool seenError = false;
final fullPath = p.canonicalize(p.join(cwd.path, path));
if (!FileSystemEntity.isFileSync(fullPath)) {
File(fullPath).createSync();
}
late final Process process;
if (patch != null) {
process =
await Process.start('patch', [fullPath], workingDirectory: cwd.path);
} else if (patchC != null) {
process = await Process.start('patch', ['-c', fullPath],
workingDirectory: cwd.path);
} else if (patchU != null) {
process = await Process.start('patch', ['-u', fullPath],
workingDirectory: cwd.path);
}
process.stderr.transform(utf8.decoder).listen((str) {
seenError = true;
_logger.warning(str.trimRight());
});
process.stdout.transform(utf8.decoder).listen((str) {
_logger.info(str.trimRight());
});
process.stdin.write(patch ?? patchC ?? patchU);
await process.stdin.flush();
await process.stdin.close();
final exitCode = await process.exitCode;
if (exitCode != 0 || seenError) {
_logger.severe('patch $fullPath failed.');
exit(-1);
}
return;
}
final base64Contents = step.base64Contents;
if (base64Contents != null) {
File(p.join(cwd.path, path))
.writeAsBytesSync(base64Decode(base64Contents.split('\n').join('')));
return;
}
final replaceContents = step.replaceContents;
if (replaceContents != null) {
File(p.join(cwd.path, path)).writeAsStringSync(replaceContents);
return;
}
// Shouldn't get this far.
_logger.severe('Invalid step: ${step.name}');
exit(-1);
}
Future<void> _runNamedCommand({
required String command,
required BlueprintStep step,
required Directory cwd,
required String args,
bool exitOnStdErr = true,
}) async {
var seenStdErr = false;
final String workingDirectory = p
.canonicalize(step.path != null ? p.join(cwd.path, step.path) : cwd.path);
final shellSplit = io.shellSplit(args);
final process = await Process.start(
command,
shellSplit,
workingDirectory: workingDirectory,
runInShell: true,
);
process.stderr.transform(utf8.decoder).listen((str) {
seenStdErr = true;
_logger.warning(str.trimRight());
});
process.stdout.transform(utf8.decoder).listen((str) {
_logger.info(str.trimRight());
});
final exitCode = await process.exitCode;
if (exitCode != 0 || exitOnStdErr && seenStdErr) {
_logger.severe("'$command $args' failed");
exit(-1);
}
return;
}
void _rename({
required String from,
required String to,
required BlueprintStep step,
}) {
from = p.canonicalize(from);
to = p.canonicalize(to);
File(from).renameSync(to);
}
void _cpdir({
required String from,
required String to,
required BlueprintStep step,
}) {
from = p.canonicalize(from);
to = p.canonicalize(to);
if (!FileSystemEntity.isDirectorySync(from)) {
_logger.warning("Invalid cpdir for '$from': ${step.name}");
}
io.copyPathSync(from, to);
}
void _cp({
required String from,
required String to,
required BlueprintStep step,
}) {
from = p.canonicalize(from);
to = p.canonicalize(to);
if (!FileSystemEntity.isFileSync(from)) {
_logger.warning("Invalid cp for '$from': ${step.name}");
}
File(from).copySync(to);
}
void _rmdir(String dir, {required BlueprintStep step}) {
dir = p.canonicalize(dir);
if (!FileSystemEntity.isDirectorySync(dir)) {
_logger.warning("Invalid rmdir for '$dir': ${step.name}");
}
Directory(dir).deleteSync(recursive: true);
}
void _mkdir(String dir, {required BlueprintStep step}) {
p.canonicalize(dir);
Directory(dir).createSync(recursive: true);
}
| codelabs/tooling/codelab_rebuild/lib/src/rebuild_blueprint.dart/0 | {
"file_path": "codelabs/tooling/codelab_rebuild/lib/src/rebuild_blueprint.dart",
"repo_id": "codelabs",
"token_count": 4499
} | 113 |
#import "GeneratedPluginRegistrant.h"
| codelabs/webview_flutter/step_03/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/webview_flutter/step_03/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 114 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/webview_flutter/step_09/android/gradle.properties/0 | {
"file_path": "codelabs/webview_flutter/step_09/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 115 |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import 'package:webview_flutter/webview_flutter.dart';
class NavigationControls extends StatelessWidget {
const NavigationControls({required this.controller, super.key});
final WebViewController controller;
@override
Widget build(BuildContext context) {
return Row(
children: <Widget>[
IconButton(
icon: const Icon(Icons.arrow_back_ios),
onPressed: () async {
final messenger = ScaffoldMessenger.of(context);
if (await controller.canGoBack()) {
await controller.goBack();
} else {
messenger.showSnackBar(
const SnackBar(content: Text('No back history item')),
);
return;
}
},
),
IconButton(
icon: const Icon(Icons.arrow_forward_ios),
onPressed: () async {
final messenger = ScaffoldMessenger.of(context);
if (await controller.canGoForward()) {
await controller.goForward();
} else {
messenger.showSnackBar(
const SnackBar(content: Text('No forward history item')),
);
return;
}
},
),
IconButton(
icon: const Icon(Icons.replay),
onPressed: () {
controller.reload();
},
),
],
);
}
}
| codelabs/webview_flutter/step_10/lib/src/navigation_controls.dart/0 | {
"file_path": "codelabs/webview_flutter/step_10/lib/src/navigation_controls.dart",
"repo_id": "codelabs",
"token_count": 748
} | 116 |
#include "ephemeral/Flutter-Generated.xcconfig"
| devtools/case_study/code_size/optimized/code_size_images/macos/Flutter/Flutter-Release.xcconfig/0 | {
"file_path": "devtools/case_study/code_size/optimized/code_size_images/macos/Flutter/Flutter-Release.xcconfig",
"repo_id": "devtools",
"token_count": 19
} | 117 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| devtools/case_study/code_size/optimized/code_size_package/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "devtools/case_study/code_size/optimized/code_size_package/macos/Runner/Configs/Release.xcconfig",
"repo_id": "devtools",
"token_count": 32
} | 118 |
#include "ephemeral/Flutter-Generated.xcconfig"
| devtools/case_study/code_size/unoptimized/code_size_images/macos/Flutter/Flutter-Debug.xcconfig/0 | {
"file_path": "devtools/case_study/code_size/unoptimized/code_size_images/macos/Flutter/Flutter-Debug.xcconfig",
"repo_id": "devtools",
"token_count": 19
} | 119 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| devtools/case_study/code_size/unoptimized/code_size_package/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "devtools/case_study/code_size/unoptimized/code_size_package/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "devtools",
"token_count": 32
} | 120 |
# Download and render network images.
A material design widget to view downloaded network images.
**Warning:** This is a case study that will eventually crash running out of memory.
**Using DevTools**
```
cd case_study/memory_leaks/images_1
flutter pub get
flutter run
```
Open DevTools and copy paste URL displayed on this line e.g.,
```
Flutter run key commands.
r Hot reload.
...
An Observatory debugger and profiler on AOSP on IA Emulator is available at: http://127.0.0.1:43473/5IvsZcde53E=/
```
After DevTools has connected to the running Flutter application, click on the Memory tab.
Click on the leaky Image Viewer app (the image) and drag down for a few images to load. The Memory profile chart should appear like the below chart.
<img src="readme_images/memory_startup.png" />
Press the Snapshot button to collect information about all objects in the Dart VM Heap.
<img src="readme_images/snapshot.png" />
When complete a Heat Map will appear. Turn off the Heat Map switch:
<img src="readme_images/heatmap_off.png" />
When the Heat Map is switched off a table view is displayed of all objects in the Dart VM heap.
<img src="readme_images/table_first.png" />
Press the Analyze button to analyze the current Snapshot
<img src="readme_images/analyze.png" />
After the snapshot analysis a child row inside of > Analysis will be added titled "Snapshot ..." with the timestamp of the snapshot e.g., "Snapshot Jun 09 12:23:44".
<img src="readme_images/analysis_1.png" />
The analysis collects the raw memory objects that contain the images, any classes concerning images in Flutter under the
```
>Snapshot Jun 09 12:27:25
> Externals
```
Expand Externals
```
> Snapshot MMM DD HH:MM:SS
> Externals
> _Int32List
> Buckets
```
You'll notice a number of chunks of _Int32List memory is displayed into their corresponding bucket sizes. The images are in the 1M..10M and 50M+ buckets. Eleven images total ~284M.
The next interesting piece of information is to expand:
```
> Snapshot MMM DD HH:MM:SS
> Library filters
> ImageCache
```
This will display the number objects in the ImageCache for pending, cache and live images.
Now start scrolling through the images in the "Image Viewer" (click and drag) for a number of pictures - causing lots of images to be loaded over the network. Notice the memory is growing rapidly, over time, first 500M, then 900M, then 1b, and finally topping 2b in total memory used. Eventually, this app will run out of memory and crash.
<img src="readme_images/chart_before_crash.png" />
As the graph grows press "Snapshot" and then "Analyze" the snapshot analysis should appear:
<img src="readme_images/analysis_before_crash.png" />
Notice as you expand the _Int32List under Externals that the size has now grown to 771M.
```
193M for seven images in the 10M..50M range.
138M for twenty-six images in the 1M..10M range.
438M for five images in the 50M+ range.
```
In addition, many images are pending, in the cache and live to consume more data as the images are received over the network.
**Problem:** The images downloaded are very detailed and beautiful, some images are over 50 MB in size. The details of these images are lost on the small device they are rendered on. Using a fraction of the size will eliminate keeping 50M image(s) to render in a 3" x 3" area.
**Solution:** Fix the ListView.builder add the parameters cacheHeight and cacheWidth to the Image.network constructor e.g.,
Look for:
```dart
Widget listView() => ListView.builder
```
Find the Image.network constructor then add the below parameters:
```dart
// Decode image to a specified height and width (ResizeImage).
cacheHeight: 1024,
cacheWidth: 1024,
```
Original code:
```dart
final image = Image.network(
imgUrl,
width: 750.0,
height: 500,
scale: 1.0,
fit: BoxFit.fitWidth,
loadingBuilder: (
BuildContext context,
Widget child,
ImageChunkEvent loadingProgress,
) {
if (loadingProgress == null) return child;
return recordLoadedImage(loadingProgress, imgUrl);
},
);
```
Fixed code:
```dart
final image = Image.network(
imgUrl,
width: 750.0,
height: 500,
scale: 1.0,
// Decode image to a specified height and width (ResizeImage).
cacheHeight: 1024,
cacheWidth: 1024,
fit: BoxFit.fitWidth,
loadingBuilder: (
BuildContext context,
Widget child,
ImageChunkEvent loadingProgress,
) {
if (loadingProgress == null) return child;
return recordLoadedImage(loadingProgress, imgUrl);
},
);
```
The parameters cacheWidth or cacheHeight indicates to the engine that the image should be decoded at the specified size e.g., thumbnail. If not specified the full image will be used each time when all that is needed is a much smaller image. The image will be rendered to the constraints of the layout or width and height regardless of these parameters. These parameters are intended to reduce the memory usage of ImageCache
Read [[Image.network Documentation](https://api.flutter.dev/flutter/widgets/Image/Image.network.html)].
<img src="readme_images/leak_app.png" height="600em" />
| devtools/case_study/memory_leaks/images_1/README.md/0 | {
"file_path": "devtools/case_study/memory_leaks/images_1/README.md",
"repo_id": "devtools",
"token_count": 1515
} | 121 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.