forked from openlp/openlp
Add test for ProPresenter Import
This commit is contained in:
parent
6e9bba3a74
commit
543f4f37dd
@ -276,8 +276,7 @@ class SongFormat(object):
|
|||||||
'class': ProPresenterImport,
|
'class': ProPresenterImport,
|
||||||
'name': 'ProPresenter',
|
'name': 'ProPresenter',
|
||||||
'prefix': 'proPresenter',
|
'prefix': 'proPresenter',
|
||||||
'filter': '%s (*.pro4)' % translate('SongsPlugin.ImportWizardForm',
|
'filter': '%s (*.pro4)' % translate('SongsPlugin.ImportWizardForm', 'ProPresenter Song Files')
|
||||||
'ProPresenter Song Files')
|
|
||||||
},
|
},
|
||||||
SongBeamer: {
|
SongBeamer: {
|
||||||
'class': SongBeamerImport,
|
'class': SongBeamerImport,
|
||||||
|
@ -39,35 +39,37 @@ from openlp.core.ui.wizard import WizardStrings
|
|||||||
from openlp.plugins.songs.lib import strip_rtf
|
from openlp.plugins.songs.lib import strip_rtf
|
||||||
from .songimport import SongImport
|
from .songimport import SongImport
|
||||||
|
|
||||||
|
|
||||||
class ProPresenterImport(SongImport):
|
class ProPresenterImport(SongImport):
|
||||||
"""
|
"""
|
||||||
The :class:`ProPresenterImport` class provides OpenLP with the
|
The :class:`ProPresenterImport` class provides OpenLP with the
|
||||||
ability to import ProPresenter song files.
|
ability to import ProPresenter song files.
|
||||||
"""
|
"""
|
||||||
def doImport(self):
|
def do_import(self):
|
||||||
self.import_wizard.progress_bar.setMaximum(len(self.import_source))
|
self.import_wizard.progress_bar.setMaximum(len(self.import_source))
|
||||||
for file_path in self.import_source:
|
for file_path in self.import_source:
|
||||||
if self.stop_import_flag:
|
if self.stop_import_flag:
|
||||||
return
|
return
|
||||||
self.import_wizard.increment_progress_bar(
|
self.import_wizard.increment_progress_bar(WizardStrings.ImportingType % os.path.basename(file_path))
|
||||||
WizardStrings.ImportingType % os.path.basename(file_path))
|
|
||||||
root = objectify.parse(open(file_path, 'rb')).getroot()
|
root = objectify.parse(open(file_path, 'rb')).getroot()
|
||||||
self.processSong(root)
|
self.process_song(root)
|
||||||
|
|
||||||
def processSong(self, root):
|
def process_song(self, root):
|
||||||
self.setDefaults()
|
self.set_defaults()
|
||||||
self.title = root.get('CCLISongTitle')
|
self.title = root.get('CCLISongTitle')
|
||||||
self.copyright = root.get('CCLICopyrightInfo')
|
self.copyright = root.get('CCLICopyrightInfo')
|
||||||
self.comments = root.get('notes')
|
self.comments = root.get('notes')
|
||||||
self.ccliNumber = root.get('CCLILicenseNumber')
|
self.ccli_number = root.get('CCLILicenseNumber')
|
||||||
for author_key in ['author', 'artist', 'CCLIArtistCredits']:
|
for author_key in ['author', 'artist', 'CCLIArtistCredits']:
|
||||||
author = root.get(author_key)
|
author = root.get(author_key)
|
||||||
if len(author) > 0:
|
if len(author) > 0:
|
||||||
self.parse_author(author)
|
self.parse_author(author)
|
||||||
|
count = 0
|
||||||
for slide in root.slides.RVDisplaySlide:
|
for slide in root.slides.RVDisplaySlide:
|
||||||
|
count += 1
|
||||||
RTFData = slide.displayElements.RVTextElement.get('RTFData')
|
RTFData = slide.displayElements.RVTextElement.get('RTFData')
|
||||||
rtf = base64.standard_b64decode(RTFData)
|
rtf = base64.standard_b64decode(RTFData)
|
||||||
words, encoding = strip_rtf(rtf.decode())
|
words, encoding = strip_rtf(rtf.decode())
|
||||||
self.addVerse(words)
|
self.add_verse(words, "v%d" % count)
|
||||||
if not self.finish():
|
if not self.finish():
|
||||||
self.logError(self.import_source)
|
self.log_error(self.import_source)
|
||||||
|
@ -0,0 +1,54 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# OpenLP - Open Source Lyrics Projection #
|
||||||
|
# --------------------------------------------------------------------------- #
|
||||||
|
# Copyright (c) 2008-2013 Raoul Snyman #
|
||||||
|
# Portions copyright (c) 2008-2013 Tim Bentley, Gerald Britton, Jonathan #
|
||||||
|
# Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, #
|
||||||
|
# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. #
|
||||||
|
# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, #
|
||||||
|
# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, #
|
||||||
|
# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, #
|
||||||
|
# Frode Woldsund, Martin Zibricky, Patrick Zimmermann #
|
||||||
|
# --------------------------------------------------------------------------- #
|
||||||
|
# This program is free software; you can redistribute it and/or modify it #
|
||||||
|
# under the terms of the GNU General Public License as published by the Free #
|
||||||
|
# Software Foundation; version 2 of the License. #
|
||||||
|
# #
|
||||||
|
# This program is distributed in the hope that it will be useful, but WITHOUT #
|
||||||
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or #
|
||||||
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for #
|
||||||
|
# more details. #
|
||||||
|
# #
|
||||||
|
# You should have received a copy of the GNU General Public License along #
|
||||||
|
# with this program; if not, write to the Free Software Foundation, Inc., 59 #
|
||||||
|
# Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||||
|
###############################################################################
|
||||||
|
"""
|
||||||
|
The :mod:`propresenterimport` module provides the functionality for importing
|
||||||
|
ProPresenter song files into the current installation database.
|
||||||
|
"""
|
||||||
|
|
||||||
|
import os
|
||||||
|
|
||||||
|
from tests.helpers.songfileimport import SongImportTestHelper
|
||||||
|
|
||||||
|
TEST_PATH = os.path.abspath(
|
||||||
|
os.path.join(os.path.dirname(__file__), '..', '..', '..', 'resources', 'propresentersongs'))
|
||||||
|
|
||||||
|
|
||||||
|
class TestProPresenterFileImport(SongImportTestHelper):
|
||||||
|
|
||||||
|
def __init__(self, *args, **kwargs):
|
||||||
|
self.importer_class_name = 'ProPresenterImport'
|
||||||
|
self.importer_module_name = 'propresenterimport'
|
||||||
|
super(TestProPresenterFileImport, self).__init__(*args, **kwargs)
|
||||||
|
|
||||||
|
def test_song_import(self):
|
||||||
|
"""
|
||||||
|
Test that loading an ProPresenter file works correctly
|
||||||
|
"""
|
||||||
|
self.file_import(os.path.join(TEST_PATH, 'Amazing Grace.pro4'),
|
||||||
|
self.load_external_result_data(os.path.join(TEST_PATH, 'Amazing Grace.json')))
|
@ -46,7 +46,7 @@ class TestZionWorxImport(TestCase):
|
|||||||
Test creating an instance of the ZionWorx file importer
|
Test creating an instance of the ZionWorx file importer
|
||||||
"""
|
"""
|
||||||
# GIVEN: A mocked out SongImport class, and a mocked out "manager"
|
# GIVEN: A mocked out SongImport class, and a mocked out "manager"
|
||||||
with patch('openlp.plugins.songs.lib.songbeamerimport.SongImport'):
|
with patch('openlp.plugins.songs.lib.zionworximport.SongImport'):
|
||||||
mocked_manager = MagicMock()
|
mocked_manager = MagicMock()
|
||||||
|
|
||||||
# WHEN: An importer object is created
|
# WHEN: An importer object is created
|
||||||
|
121
tests/resources/propresentersongs/Amazing Grace.json
Normal file
121
tests/resources/propresentersongs/Amazing Grace.json
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
{
|
||||||
|
"authors": [
|
||||||
|
"John Newton"
|
||||||
|
],
|
||||||
|
"title": "Amazing Grace",
|
||||||
|
"verse_order_list": [],
|
||||||
|
"verses": [
|
||||||
|
[
|
||||||
|
"Amazing grace! How sweet the sound\n",
|
||||||
|
"v1"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"That saved a wretch like me!\n",
|
||||||
|
"v2"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"I once was lost, but now am found;\n",
|
||||||
|
"v3"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"Was blind, but now I see.\n",
|
||||||
|
"v4"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"'Twas grace that taught my heart to fear,\n",
|
||||||
|
"v5"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"And grace my fears relieved;\n",
|
||||||
|
"v6"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"How precious did that grace appear\n",
|
||||||
|
"v7"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"The hour I first believed.\n",
|
||||||
|
"v8"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"Through many dangers, toils and snares,\n",
|
||||||
|
"v9"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"I have already come;\n",
|
||||||
|
"v10"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"'Tis grace hath brought me safe thus far,\n",
|
||||||
|
"v11"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"And grace will lead me home.\n",
|
||||||
|
"v12"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"The Lord has promised good to me,\n",
|
||||||
|
"v13"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"His Word my hope secures;\n",
|
||||||
|
"v14"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"He will my Shield and Portion be,\n",
|
||||||
|
"v15"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"As long as life endures.\n",
|
||||||
|
"v16"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"Yea, when this flesh and heart shall fail,\n",
|
||||||
|
"v17"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"And mortal life shall cease,\n",
|
||||||
|
"v18"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"I shall possess, within the veil,\n",
|
||||||
|
"v19"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"A life of joy and peace.\n",
|
||||||
|
"v20"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"The earth shall soon dissolve like snow,\n",
|
||||||
|
"v21"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"The sun forbear to shine;\n",
|
||||||
|
"v22"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"But God, Who called me here below,\n",
|
||||||
|
"v23"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"Shall be forever mine.\n",
|
||||||
|
"v24"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"When we've been there ten thousand years,\n",
|
||||||
|
"v25"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"Bright shining as the sun,\n",
|
||||||
|
"v26"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"We've no less days to sing God's praise\n",
|
||||||
|
"v27"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"Than when we'd first begun.\n",
|
||||||
|
"v28"
|
||||||
|
]
|
||||||
|
]
|
||||||
|
}
|
486
tests/resources/propresentersongs/Amazing Grace.pro4
Normal file
486
tests/resources/propresentersongs/Amazing Grace.pro4
Normal file
@ -0,0 +1,486 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<RVPresentationDocument height="768" width="1024" versionNumber="401" creatorCode="1349676880" lastDateUsed="2014-06-09T07:47:29+0000" category="Hymn" backgroundColor="0 0 0 1" drawingBackgroundColor="0" notes="" artist="John Newton" author="" album="" CCLIDisplay="0" CCLIArtistCredits="" CCLISongTitle="Amazing Grace" CCLIPublisher="" CCLICopyrightInfo="" CCLILicenseNumber="" resourcesDirectory="">
|
||||||
|
<slides containerClass="NSMutableArray">
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="0" UUID="A67250CF-0DCC-4169-80EA-7E417CC233B3" drawingBackgroundColor="0" serialization-array-index="0">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBBbWF6aW5nIGdyYWNlISBIb3cgc3dlZXQgdGhlIHNvdW5kfVxsaTBcc2EwXHNiMFxmaTBccWNccGFyfQ0KfQ0KfQ==" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="1" UUID="B09CAF20-B402-43C3-AA35-C09B1A2CEB25" drawingBackgroundColor="0" serialization-array-index="1">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBUaGF0IHNhdmVkIGEgd3JldGNoIGxpa2UgbWUhfVxsaTBcc2EwXHNiMFxmaTBccWNccGFyfQ0KfQ0KfQ==" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="2" UUID="CCF908FC-0FE4-4C16-BE70-9543C2A76DC7" drawingBackgroundColor="0" serialization-array-index="2">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBJIG9uY2Ugd2FzIGxvc3QsIGJ1dCBub3cgYW0gZm91bmQ7fVxsaTBcc2EwXHNiMFxmaTBccWNccGFyfQ0KfQ0KfQ==" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="3" UUID="B33AF602-61BB-47FE-95E3-98640D6BD76A" drawingBackgroundColor="0" serialization-array-index="3">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBXYXMgYmxpbmQsIGJ1dCBub3cgSSBzZWUufVxsaTBcc2EwXHNiMFxmaTBccWNccGFyfQ0KfQ0KfQ==" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="4" UUID="02932C9A-C505-4856-A48E-339CA927B020" drawingBackgroundColor="0" serialization-array-index="4">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCAnVHdhcyBncmFjZSB0aGF0IHRhdWdodCBteSBoZWFydCB0byBmZWFyLH1cbGkwXHNhMFxzYjBcZmkwXHFjXHBhcn0NCn0NCn0=" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="5" UUID="F6FC7C3F-2A38-4D63-83B1-7EDA30371535" drawingBackgroundColor="0" serialization-array-index="5">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBBbmQgZ3JhY2UgbXkgZmVhcnMgcmVsaWV2ZWQ7fVxsaTBcc2EwXHNiMFxmaTBccWNccGFyfQ0KfQ0KfQ==" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="6" UUID="EEBFE94B-D0F2-4E41-BBE7-B5A7D4F62243" drawingBackgroundColor="0" serialization-array-index="6">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBIb3cgcHJlY2lvdXMgZGlkIHRoYXQgZ3JhY2UgYXBwZWFyfVxsaTBcc2EwXHNiMFxmaTBccWNccGFyfQ0KfQ0KfQ==" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="7" UUID="0CDDEA18-F48E-4B85-8054-01140192EDC7" drawingBackgroundColor="0" serialization-array-index="7">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBUaGUgaG91ciBJIGZpcnN0IGJlbGlldmVkLn1cbGkwXHNhMFxzYjBcZmkwXHFjXHBhcn0NCn0NCn0=" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="8" UUID="E1193588-A9B8-4371-8DC0-F16DC6D3B489" drawingBackgroundColor="0" serialization-array-index="8">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBUaHJvdWdoIG1hbnkgZGFuZ2VycywgdG9pbHMgYW5kIHNuYXJlcyx9XGxpMFxzYTBcc2IwXGZpMFxxY1xwYXJ9DQp9DQp9" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="9" UUID="EBD1940D-7360-4E04-9E8F-E752B1F9ECBF" drawingBackgroundColor="0" serialization-array-index="9">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBJIGhhdmUgYWxyZWFkeSBjb21lO31cbGkwXHNhMFxzYjBcZmkwXHFjXHBhcn0NCn0NCn0=" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="10" UUID="76F80153-DF39-4CE8-B186-79D548C596F5" drawingBackgroundColor="0" serialization-array-index="10">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCAnVGlzIGdyYWNlIGhhdGggYnJvdWdodCBtZSBzYWZlIHRodXMgZmFyLH1cbGkwXHNhMFxzYjBcZmkwXHFjXHBhcn0NCn0NCn0=" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="11" UUID="D4E43B14-8E57-44AA-BCD3-0B1F1401A829" drawingBackgroundColor="0" serialization-array-index="11">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBBbmQgZ3JhY2Ugd2lsbCBsZWFkIG1lIGhvbWUufVxsaTBcc2EwXHNiMFxmaTBccWNccGFyfQ0KfQ0KfQ==" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="12" UUID="D5B3DFC2-6C99-447B-A1E9-815F1550397F" drawingBackgroundColor="0" serialization-array-index="12">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBUaGUgTG9yZCBoYXMgcHJvbWlzZWQgZ29vZCB0byBtZSx9XGxpMFxzYTBcc2IwXGZpMFxxY1xwYXJ9DQp9DQp9" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="13" UUID="E1573057-DB07-4442-BDCD-1C44B5B62A60" drawingBackgroundColor="0" serialization-array-index="13">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBIaXMgV29yZCBteSBob3BlIHNlY3VyZXM7fVxsaTBcc2EwXHNiMFxmaTBccWNccGFyfQ0KfQ0KfQ==" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="14" UUID="D07DB5AA-710D-40F5-8FF0-C336B7C99B29" drawingBackgroundColor="0" serialization-array-index="14">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBIZSB3aWxsIG15IFNoaWVsZCBhbmQgUG9ydGlvbiBiZSx9XGxpMFxzYTBcc2IwXGZpMFxxY1xwYXJ9DQp9DQp9" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="15" UUID="0D91E879-8C6A-4C68-A098-80E95E89F4F7" drawingBackgroundColor="0" serialization-array-index="15">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBBcyBsb25nIGFzIGxpZmUgZW5kdXJlcy59XGxpMFxzYTBcc2IwXGZpMFxxY1xwYXJ9DQp9DQp9" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="16" UUID="5105264F-D786-453E-8D29-3ADC8D84C53F" drawingBackgroundColor="0" serialization-array-index="16">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBZZWEsIHdoZW4gdGhpcyBmbGVzaCBhbmQgaGVhcnQgc2hhbGwgZmFpbCx9XGxpMFxzYTBcc2IwXGZpMFxxY1xwYXJ9DQp9DQp9" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="17" UUID="46D46358-A465-425E-866D-1D5E215952E4" drawingBackgroundColor="0" serialization-array-index="17">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBBbmQgbW9ydGFsIGxpZmUgc2hhbGwgY2Vhc2UsfVxsaTBcc2EwXHNiMFxmaTBccWNccGFyfQ0KfQ0KfQ==" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="18" UUID="8B92AC4F-1470-416E-80CA-E088EF6F3AC4" drawingBackgroundColor="0" serialization-array-index="18">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBJIHNoYWxsIHBvc3Nlc3MsIHdpdGhpbiB0aGUgdmVpbCx9XGxpMFxzYTBcc2IwXGZpMFxxY1xwYXJ9DQp9DQp9" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="19" UUID="D0865E31-B064-4817-B027-A35C231D4946" drawingBackgroundColor="0" serialization-array-index="19">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBBIGxpZmUgb2Ygam95IGFuZCBwZWFjZS59XGxpMFxzYTBcc2IwXGZpMFxxY1xwYXJ9DQp9DQp9" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="20" UUID="28AC1D6E-1F79-4E88-80A4-CA318A634046" drawingBackgroundColor="0" serialization-array-index="20">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBUaGUgZWFydGggc2hhbGwgc29vbiBkaXNzb2x2ZSBsaWtlIHNub3csfVxsaTBcc2EwXHNiMFxmaTBccWNccGFyfQ0KfQ0KfQ==" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="21" UUID="3E97F36D-D9CE-4C2B-AE1A-D337A43FD7F5" drawingBackgroundColor="0" serialization-array-index="21">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBUaGUgc3VuIGZvcmJlYXIgdG8gc2hpbmU7fVxsaTBcc2EwXHNiMFxmaTBccWNccGFyfQ0KfQ0KfQ==" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="22" UUID="81E336F4-7170-47B0-B829-4E4A945A755F" drawingBackgroundColor="0" serialization-array-index="22">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBCdXQgR29kLCBXaG8gY2FsbGVkIG1lIGhlcmUgYmVsb3csfVxsaTBcc2EwXHNiMFxmaTBccWNccGFyfQ0KfQ0KfQ==" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="23" UUID="4D669087-EB91-4972-A1F7-D866F339C502" drawingBackgroundColor="0" serialization-array-index="23">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBTaGFsbCBiZSBmb3JldmVyIG1pbmUufVxsaTBcc2EwXHNiMFxmaTBccWNccGFyfQ0KfQ0KfQ==" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="24" UUID="ADE5EE3D-56A6-4439-96DD-51C53337D4B1" drawingBackgroundColor="0" serialization-array-index="24">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBXaGVuIHdlJ3ZlIGJlZW4gdGhlcmUgdGVuIHRob3VzYW5kIHllYXJzLH1cbGkwXHNhMFxzYjBcZmkwXHFjXHBhcn0NCn0NCn0=" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="25" UUID="BD68D875-5154-485A-AEF3-D48D9CE27C05" drawingBackgroundColor="0" serialization-array-index="25">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBCcmlnaHQgc2hpbmluZyBhcyB0aGUgc3VuLH1cbGkwXHNhMFxzYjBcZmkwXHFjXHBhcn0NCn0NCn0=" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="26" UUID="030026EE-A25C-4781-883D-0CAC394ADC93" drawingBackgroundColor="0" serialization-array-index="26">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBXZSd2ZSBubyBsZXNzIGRheXMgdG8gc2luZyBHb2QncyBwcmFpc2V9XGxpMFxzYTBcc2IwXGZpMFxxY1xwYXJ9DQp9DQp9" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
<RVDisplaySlide backgroundColor="0 0 0 0" enabled="1" highlightColor="0 0 0 0" hotKey="" label="" notes="" slideType="1" sort_index="27" UUID="50648C63-C1FC-40E0-8928-FEDFFCDA9689" drawingBackgroundColor="0" serialization-array-index="27">
|
||||||
|
<cues containerClass="NSMutableArray" />
|
||||||
|
<displayElements containerClass="NSMutableArray">
|
||||||
|
<RVTextElement displayDelay="0" locked="0" persistent="0" typeID="0" fromTemplate="0" bezelRadius="0" drawingFill="0" drawingShadow="1" drawingStroke="0" fillColor="0 0 0 0" rotation="0" source="" displayName="" adjustsHeightToFit="0" verticalAlignment="0" RTFData="e1xydGYxXHByb3J0ZjFcYW5zaVxhbnNpY3BnMTI1Mlx1YzFcaHRtYXV0c3BcZGVmZjJ7XGZvbnR0Ymx7XGYwXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjJcZmNoYXJzZXQwIEdlb3JnaWE7fXtcZjNcZmNoYXJzZXQwIEhlbHZldGljYTt9fXtcY29sb3J0Ymw7XHJlZDBcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTI1NTt9XGxvY2hcaGljaFxkYmNoXHBhcmRcc2xsZWFkaW5nMFxwbGFpblxsdHJwYXJcaXRhcDB7XGxhbmcxMDMzXGZzMTIwXGYzXGNmMSBcY2YxXHFse1xmMyB7XGNmMlxsdHJjaCBUaGFuIHdoZW4gd2UnZCBmaXJzdCBiZWd1bi59XGxpMFxzYTBcc2IwXGZpMFxxY1xwYXJ9DQp9DQp9" serialization-array-index="0">
|
||||||
|
<_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" />
|
||||||
|
<_-D-_serializedShadow containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="shadowColor" />
|
||||||
|
<NSMutableString serialization-native-value="{0, 0}" serialization-dictionary-key="shadowOffset" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="shadowBlurRadius" />
|
||||||
|
</_-D-_serializedShadow>
|
||||||
|
<stroke containerClass="NSMutableDictionary">
|
||||||
|
<NSCalibratedRGBColor serialization-native-value="0 0 0 0" serialization-dictionary-key="RVShapeElementStrokeColorKey" />
|
||||||
|
<NSNumber serialization-native-value="0" serialization-dictionary-key="RVShapeElementStrokeWidthKey" />
|
||||||
|
</stroke>
|
||||||
|
</RVTextElement>
|
||||||
|
</displayElements>
|
||||||
|
</RVDisplaySlide>
|
||||||
|
</slides>
|
||||||
|
<timeline timeOffSet="0" selectedMediaTrackIndex="-1" unitOfMeasure="60" duration="0" loop="0">
|
||||||
|
<timeCues containerClass="NSMutableArray" />
|
||||||
|
<mediaTracks containerClass="NSMutableArray" />
|
||||||
|
</timeline>
|
||||||
|
<bibleReference containerClass="NSMutableDictionary" />
|
||||||
|
</RVPresentationDocument>
|
Loading…
Reference in New Issue
Block a user