-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
Β·2270 lines (2217 loc) Β· 163 KB
/
index.html
File metadata and controls
executable file
Β·2270 lines (2217 loc) Β· 163 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!--[if lt IE 9]>
<html id="ng-app" ng-app="InVision" ng-controller="AppController" inv-key-combos class="lt-ie9 ng-app:InVision" lang="en">
<![endif]-->
<!--[if gt IE 8]><!-->
<html ng-app="InVision" ng-controller="AppController" inv-key-combos lang="en">
<!--<![endif]-->
<head>
<meta charset="utf-8" />
<title ng-bind="windowTitle">
InVision
</title>
<!-- Custom webfonts -->
<style>
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 300;
src: local('Open Sans Light'), local('OpenSans-Light'), url(assets/fonts/open_sans/OpenSans-light.woff) format('woff');
}
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
src: local('Open Sans'), local('OpenSans'), url(assets/fonts/open_sans/OpenSans.woff) format('woff');
}
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 600;
src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(assets/fonts/open_sans/OpenSans-semibold.woff) format('woff');
}
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 700;
src: local('Open Sans Bold'), local('OpenSans-Bold'), url(assets/fonts/open_sans/OpenSans-bold.woff) format('woff');
}
</style>
<!-- Interface styles -->
<link type="text/css" rel="stylesheet" href="assets/jquery-ui-1.9.2.custom/css/no-theme/jquery-ui-1.9.2.custom.min.css">
<link type="text/css" rel="stylesheet" href="assets/apps/share/css/uniform.default.css">
<link type="text/css" rel="stylesheet" href="assets/apps/share/css/bootstrap.css">
<link type="text/css" rel="stylesheet" href="assets/apps/share/css/intlTelInput.css">
<link type="text/css" rel="stylesheet" href="assets/apps/share/css/share-offline.css">
<link rel="icon" type="image/ico" href="assets/apps/common/img/favicon.ico">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lte IE 9]>
<script src="/assets/react/es5-shim.min.js"></script>
<script src="/assets/react/es5-sham.min.js"></script>
<![endif]-->
<!--[if lt IE 9]>
<script src="/assets/html5shim/html5.js"></script>
<![endif]-->
<!--[if lt IE 8]>
<script src="/assets/json2/json2.js"></script>
<![endif]-->
</head>
<body
class="branding-invision"
ng-class="bodyClass"
ng-style="bodyStyle">
<!--
This is the initial loading sequence. We need to be able to display this BEFORE the AngularJS
framework loads in order to give the user some sence of activity. But, when the framework kicks
in, it will be able to use the bound ng-controller.
-->
<!-- BEGIN: Loading Sequence. -->
<div ng-if="isLoadingOpen" ng-controller="loading.LoadingController" inv-loading-sequence class="m-loading">
<!-- BEGIN: Loading Indicator. -->
<div class="loading-backdrop">
<div class="loading-container">
<div class="status-container">
<div class="status"></div>
<div class="logo"></div>
</div> <!-- status-container -->
<h2>Loading Experience</h2>
<p>
Powered by <a href="http://www.InVisionApp.com/" target="_blank">InVision</a>
, the best way to share and collaborate on design.
</p>
</div> <!-- loading-container -->
<div class="loading-footer">
<div class="logo"></div>
<h3><a href="http://www.InVisionApp.com/" target="_blank">Powered by InVision</a></h3>
<p><em>Prototyping, Collaboration & Workflow for Designers</em></p>
</div> <!-- loading-footer -->
</div> <!-- loading-backdrop -->
<!-- END: Loading Indicator. -->
</div>
<!-- END: Loading Sequence. -->
<div ng-include=" '/assets/apps/share/views/partials/preload.htm' "></div>
<div ng-include=" '/assets/apps/share/views/layouts/modal.htm' "></div>
<div ng-include=" '/assets/apps/share/views/toolbar/toolbar.htm' "></div>
<div ng-include=" '/assets/apps/share/views/powered-by/powered-by.htm' "></div>
<div
ng-if="isBrowseOpen"
ng-include=" '/assets/apps/share/views/browse/browse.htm' "></div>
<!-- In order to be able to disable horizontal scrolling for some screens, we need to wrap the view in order to be able to maintain screen alignment -->
<div class="desktop-wrapper">
<!-- Tour Points -->
<div
ng-if=" subview == 'preview' "
ng-include=" '/assets/apps/share/views/preview/preview-tour-comments.htm' "></div>
<div
ng-if="subview == 'comments'"
ng-include=" '/assets/apps/share/views/comments/comments.htm' "></div>
<div
ng-if="subview == 'preview'"
is-share-loaded="{{!isLoadingOpen}}"
inv-preview-auto-redirect-listener
ng-include=" '/assets/apps/share/views/preview/preview.htm' "></div>
<!-- Screens for comment mode -->
<div
ng-show="subview == 'comments'"
ng-include=" '/assets/apps/share/views/screens/screens.htm' "c></div>
</div>
<div
ng-if="browserCompatibility.isNotCompatible"
class="m-browser-compatibility ng-cloak"></div>
<script type="text/javascript" src="assets/scripts.js"></script>
<script type="text/javascript">
(function( ng, app ){
"use strict";
app.value(
"config",
{
user: {
id: 39493186,
name: "Filipa Gomes",
email: "filipa.sag@gmail.com",
avatarID: "00000000-0000-0000-0000000000000006",
isAccountAuthenticated: true,
isAnonymous: false,
hasSeenCommentToolTip: true
},
shouldShowPoweredBy: false,
share: {"isNavigateAllowed":true,"screenID":0,"hasClosedShareIntro":true,"isLoadAllScreens":true,"showToolbarIntroduction":false},
project: {"mobileStatusbarIsOpaque":true,"defaultBackgroundColor":"","mobileStatusbarBackgroundColor":"#000000","homeScreenID":214627729,"sortTypeID":1,"lastAccessedAt":1484590860000,"isInGracePeriod":false,"userID":39493186,"companyID":0,"isProcessed":true,"id":10064592,"defaultBackgroundImageID":"","defaultbackgroundimageposition":"","isSample":false,"isAdvanced":false,"mobileStatusbarIsVisible":false,"defaultbackgroundframe":"0","mobileStatusbarFontColor":"white","updatedAt":1528640511000,"defaultZoomScrollBehavior":1,"name":"Home4us Mobile Mockups","mobileDeviceWidth":320,"isMobile":true,"isArchived":false,"isOverQuota":false,"createdAt":1484590860000,"mobileDeviceID":11,"defaultAlignment":"center","defaultbackgroundautostretch":"0","isSnap":false},
screens: [{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"f7f7f7","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214627729.jpg","commentCount":0,"screenGroupId":3951264,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_home-1produto@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":3,"fixedFooterHeight":0,"isProcessed":true,"id":214627729,"imageUrl":"assets/home-1produto@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##f7f7f7","fixedHeaderBackground":"##dad9d7"},"updatedAt":1528644240000,"height":8678.0,"name":"Home 1 produto","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":1,"createdAt":1484591467000,"fixedHeaderHeight":194,"clientFilename":"home-1produto@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"f7f7f7","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214657094.jpg","commentCount":0,"screenGroupId":3951264,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_home-open-menu-1produto@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":3,"fixedFooterHeight":0,"isProcessed":true,"id":214657094,"imageUrl":"assets/home-open-menu-1produto@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##f7f7f7","fixedHeaderBackground":"##efe1e1"},"updatedAt":1528644302000,"height":8776.0,"name":"Home-Open-Menu 1 produto","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":2,"createdAt":1484603772000,"fixedHeaderHeight":290,"clientFilename":"home-open-menu-1produto@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"f7f7f7","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214673353.jpg","commentCount":0,"screenGroupId":3950518,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_home-2produtos@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":3,"fixedFooterHeight":0,"isProcessed":true,"id":214673353,"imageUrl":"assets/home-2produtos@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##f7f7f7","fixedHeaderBackground":"##dad9d7"},"updatedAt":1528644283000,"height":8678.0,"name":"Home 2 produtos","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":3,"createdAt":1484613279000,"fixedHeaderHeight":194,"clientFilename":"home-2produtos@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"f7f7f7","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214673416.jpg","commentCount":0,"screenGroupId":3950518,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_home-open-menu-2produtos@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":214673416,"imageUrl":"assets/home-open-menu-2produtos@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##f7f7f7","fixedHeaderBackground":"##efe1e1"},"updatedAt":1528644295000,"height":8776.0,"name":"Home-Open-Menu 2 produtos","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":4,"createdAt":1484613338000,"fixedHeaderHeight":290,"clientFilename":"home-open-menu-2produtos@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"f7f7f7","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214658412.jpg","commentCount":0,"screenGroupId":3950452,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_lista-1produto@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":214658412,"imageUrl":"assets/lista-1produto@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##f7f7f7","fixedHeaderBackground":"##19baee"},"updatedAt":1528644322000,"height":6376.0,"name":"Lista 1 produto","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":5,"createdAt":1484604364000,"fixedHeaderHeight":194,"clientFilename":"lista-1produto@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ffffff","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214658521.jpg","commentCount":0,"screenGroupId":3950452,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_lista-open-menu-1produto@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":214658521,"imageUrl":"assets/lista-open-menu-1produto@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##ffffff","fixedHeaderBackground":"##00bfff"},"updatedAt":1528644338000,"height":6488.0,"name":"Lista-Open-Menu 1 produto","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":6,"createdAt":1484604396000,"fixedHeaderHeight":292,"clientFilename":"lista-open-menu-1produto@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ff6902","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214660193.jpg","commentCount":0,"screenGroupId":3950452,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_filter-01-1produto@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":3,"fixedFooterHeight":92,"isProcessed":true,"id":214660193,"imageUrl":"assets/filter-01-1produto@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##e5e4e0","fixedHeaderBackground":"##e8e5e0"},"updatedAt":1528644359000,"height":1136.0,"name":"Filter-01 1 produto","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":7,"createdAt":1484605267000,"fixedHeaderHeight":0,"clientFilename":"filter-01-1produto@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ff6902","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214658587.jpg","commentCount":0,"screenGroupId":3950452,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_filter-02-1produto@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":3,"fixedFooterHeight":92,"isProcessed":true,"id":214658587,"imageUrl":"assets/filter-02-1produto@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##e5e4e0","fixedHeaderBackground":"##e8e5e0"},"updatedAt":1528644370000,"height":1136.0,"name":"Filter-02 1 produto","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":8,"createdAt":1484604445000,"fixedHeaderHeight":0,"clientFilename":"filter-02-1produto@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"f7f7f7","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214660506.jpg","commentCount":0,"screenGroupId":3950452,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_lista-filtered-1produto@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":214660506,"imageUrl":"assets/lista-filtered-1produto@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##f7f7f7","fixedHeaderBackground":"##19baee"},"updatedAt":1528644390000,"height":4216.0,"name":"Lista-Filtered 1 produto","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":9,"createdAt":1484605348000,"fixedHeaderHeight":194,"clientFilename":"lista-filtered-1produto@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"f7f7f7","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214660505.jpg","commentCount":0,"screenGroupId":3950452,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_lista-filtered-open-menu-1produto@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":214660505,"imageUrl":"assets/lista-filtered-open-menu-1produto@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##f7f7f7","fixedHeaderBackground":"##00bfff"},"updatedAt":1528644400000,"height":4312.0,"name":"Lista-Filtered-Open-Menu 1 produto","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":10,"createdAt":1484605348000,"fixedHeaderHeight":292,"clientFilename":"lista-filtered-open-menu-1produto@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"f7f7f7","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214673517.jpg","commentCount":0,"screenGroupId":3951275,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_lista-2produtos@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":214673517,"imageUrl":"assets/lista-2produtos@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##f7f7f7","fixedHeaderBackground":"##19baee"},"updatedAt":1528644412000,"height":6376.0,"name":"Lista 2 produtos","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":11,"createdAt":1484613438000,"fixedHeaderHeight":194,"clientFilename":"lista-2produtos@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ffffff","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214673541.jpg","commentCount":0,"screenGroupId":3951275,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_lista-open-menu-2produtos@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":214673541,"imageUrl":"assets/lista-open-menu-2produtos@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##ffffff","fixedHeaderBackground":"##00bfff"},"updatedAt":1528644420000,"height":6488.0,"name":"Lista-Open-Menu 2 produtos","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":12,"createdAt":1484613463000,"fixedHeaderHeight":292,"clientFilename":"lista-open-menu-2produtos@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ff6902","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214673575.jpg","commentCount":0,"screenGroupId":3951275,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_filter-01-2produtos@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":92,"isProcessed":true,"id":214673575,"imageUrl":"assets/filter-01-2produtos@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##e5e4e0","fixedHeaderBackground":"##e8e5e0"},"updatedAt":1528644430000,"height":1136.0,"name":"Filter-01 2 produtos","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":13,"createdAt":1484613509000,"fixedHeaderHeight":0,"clientFilename":"filter-01-2produtos@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ff6902","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214673676.jpg","commentCount":0,"screenGroupId":3951275,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_filter-02-2produtos@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":92,"isProcessed":true,"id":214673676,"imageUrl":"assets/filter-02-2produtos@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##e5e4e0","fixedHeaderBackground":"##e8e5e0"},"updatedAt":1528644434000,"height":1136.0,"name":"Filter-02 2 produtos","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":14,"createdAt":1484613581000,"fixedHeaderHeight":0,"clientFilename":"filter-02-2produtos@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"f7f7f7","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214673726.jpg","commentCount":0,"screenGroupId":3951275,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_lista-filtered-2produtos@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":214673726,"imageUrl":"assets/lista-filtered-2produtos@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##f7f7f7","fixedHeaderBackground":"##19baee"},"updatedAt":1528644451000,"height":4216.0,"name":"Lista-Filtered 2 produtos","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":15,"createdAt":1484613616000,"fixedHeaderHeight":194,"clientFilename":"lista-filtered-2produtos@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"f7f7f7","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214673786.jpg","commentCount":0,"screenGroupId":3951275,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_lista-filtered-open-menu-2produtos@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":214673786,"imageUrl":"assets/lista-filtered-open-menu-2produtos@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##f7f7f7","fixedHeaderBackground":"##00bfff"},"updatedAt":1528644455000,"height":4312.0,"name":"Lista-Filtered-Open-Menu 2 produtos","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":16,"createdAt":1484613670000,"fixedHeaderHeight":292,"clientFilename":"lista-filtered-open-menu-2produtos@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"f7f7f7","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214660941.jpg","commentCount":0,"screenGroupId":3950519,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_produto-1produto@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":204,"isProcessed":true,"id":214660941,"imageUrl":"assets/produto-1produto@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##f6f6f6","fixedHeaderBackground":"##dad9d7"},"updatedAt":1528644471000,"height":6800.0,"name":"Produto 1 produto","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":17,"createdAt":1484605658000,"fixedHeaderHeight":194,"clientFilename":"produto-1produto@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"f7f7f7","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214660967.jpg","commentCount":0,"screenGroupId":3950519,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_produto-open-menu-1produto@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":204,"isProcessed":true,"id":214660967,"imageUrl":"assets/produto-open-menu-1produto@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##f6f6f6","fixedHeaderBackground":"##efe1e1"},"updatedAt":1528644481000,"height":6896.0,"name":"Produto-Open-Menu 1 produto","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":18,"createdAt":1484605666000,"fixedHeaderHeight":290,"clientFilename":"produto-open-menu-1produto@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"f7f7f7","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214743191.jpg","commentCount":0,"screenGroupId":3950519,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_produto-info-1produto@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":3,"fixedFooterHeight":204,"isProcessed":true,"id":214743191,"imageUrl":"assets/produto-info-1produto@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##e8e5e0","fixedHeaderBackground":"##e8e5e0"},"updatedAt":1528644492000,"height":1156.0,"name":"Produto-Info 1 produto","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":19,"createdAt":1484656173000,"fixedHeaderHeight":0,"clientFilename":"produto-info-1produto@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"f7f7f7","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214672547.jpg","commentCount":0,"screenGroupId":3951344,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_produto-2produtos@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":204,"isProcessed":true,"id":214672547,"imageUrl":"assets/produto-2produtos@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##f6f6f6","fixedHeaderBackground":"##dad9d7"},"updatedAt":1528644504000,"height":6800.0,"name":"Produto 2 produtos","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":20,"createdAt":1484612638000,"fixedHeaderHeight":194,"clientFilename":"produto-2produtos@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"f7f7f7","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214673838.jpg","commentCount":0,"screenGroupId":3951344,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_produto-open-menu-2produtos@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":204,"isProcessed":true,"id":214673838,"imageUrl":"assets/produto-open-menu-2produtos@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##f6f6f6","fixedHeaderBackground":"##efe1e1"},"updatedAt":1528644515000,"height":6896.0,"name":"Produto-Open-Menu 2 produtos","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":21,"createdAt":1484613716000,"fixedHeaderHeight":290,"clientFilename":"produto-open-menu-2produtos@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"f7f7f7","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214747080.jpg","commentCount":0,"screenGroupId":3951344,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_produto-info-2produtos@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":204,"isProcessed":true,"id":214747080,"imageUrl":"assets/produto-info-2produtos@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##e8e5e0","fixedHeaderBackground":"##e8e5e0"},"updatedAt":1528644510000,"height":1156.0,"name":"Produto-Info 2 produtos","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":22,"createdAt":1484657823000,"fixedHeaderHeight":0,"clientFilename":"produto-info-2produtos@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"FFFFFF","width":580.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214660988.png","commentCount":0,"screenGroupId":8993532,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_modal@2x.png","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":214660988,"imageUrl":"assets/modal@2x.png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#3CC1EB"},"updatedAt":1528644532000,"height":654.0,"name":"Modal","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":23,"createdAt":1484605679000,"fixedHeaderHeight":0,"clientFilename":"modal@2x.png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"555555","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214671690.png","commentCount":0,"screenGroupId":8993532,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_modal2@2x.png","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":214671690,"imageUrl":"assets/modal2@2x.png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#555555","fixedHeaderBackground":"#0"},"updatedAt":1528644537000,"height":1136.0,"name":"Modal2","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":24,"createdAt":1484611897000,"fixedHeaderHeight":0,"clientFilename":"modal2@2x.png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"555555","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214744794.png","commentCount":0,"screenGroupId":8993532,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_modal3@2x.png","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":214744794,"imageUrl":"assets/modal3@2x.png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#555555","fixedHeaderBackground":"#555555"},"updatedAt":1528644542000,"height":1136.0,"name":"Modal3","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":25,"createdAt":1484656838000,"fixedHeaderHeight":0,"clientFilename":"modal3@2x.png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"FFFFFF","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214754524.png","commentCount":0,"screenGroupId":8993532,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_produto-favoritos@2x.png","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":214754524,"imageUrl":"assets/produto-favoritos@2x.png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#0","fixedHeaderBackground":"#FF6801"},"updatedAt":1528644547000,"height":152.0,"name":"Produto-Favoritos","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":26,"createdAt":1484660526000,"fixedHeaderHeight":0,"clientFilename":"produto-favoritos@2x.png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ff6902","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214666360.jpg","commentCount":0,"screenGroupId":3950792,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_carro-1produto@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":168,"isProcessed":true,"id":214666360,"imageUrl":"assets/carro-1produto@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##f7f7f7","fixedHeaderBackground":"##f2f2f0"},"updatedAt":1528644576000,"height":4928.0,"name":"Carro 1produto","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":27,"createdAt":1484608094000,"fixedHeaderHeight":194,"clientFilename":"carro-1produto@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ff6902","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214666362.jpg","commentCount":0,"screenGroupId":3950792,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_carro-1produto-open-menu@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":168,"isProcessed":true,"id":214666362,"imageUrl":"assets/carro-1produto-open-menu@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##f7f7f7","fixedHeaderBackground":"##00bffe"},"updatedAt":1528644584000,"height":5022.0,"name":"Carro Open Menu 1 produto","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":28,"createdAt":1484608100000,"fixedHeaderHeight":288,"clientFilename":"carro-1produto-open-menu@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ff6902","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214749244.jpg","commentCount":0,"screenGroupId":3950792,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_carro-modal-envio-1produto@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":214749244,"imageUrl":"assets/carro-modal-envio-1produto@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#F7F7F7","fixedHeaderBackground":"#F7F7F7"},"updatedAt":1528644599000,"height":452.0,"name":"Carro-Modal-Envio 1produto","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":29,"createdAt":1484658781000,"fixedHeaderHeight":0,"clientFilename":"carro-modal-envio-1produto@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"FFFFFF","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214663965.png","commentCount":0,"screenGroupId":3950792,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_carro-modal-envio@2x.png","backgroundImagePosition":"tile-horizontally","imageVersion":3,"fixedFooterHeight":0,"isProcessed":true,"id":214663965,"imageUrl":"assets/carro-modal-envio@2x.png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#0","fixedHeaderBackground":"#F7F7F7"},"updatedAt":1528644608000,"height":452.0,"name":"Carro-Modal-Envio","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":30,"createdAt":1484607110000,"fixedHeaderHeight":0,"clientFilename":"carro-modal-envio@2x.png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ff6902","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214663819.jpg","commentCount":0,"screenGroupId":3951349,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_carro-2produtos@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":168,"isProcessed":true,"id":214663819,"imageUrl":"assets/carro-2produtos@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##f7f7f7","fixedHeaderBackground":"##f2f2f0"},"updatedAt":1528644625000,"height":5128.0,"name":"Carro 2 produtos","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":31,"createdAt":1484607018000,"fixedHeaderHeight":194,"clientFilename":"carro-2produtos@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ff6902","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214663911.jpg","commentCount":0,"screenGroupId":3951349,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_carro-2produtos-open-menu@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":168,"isProcessed":true,"id":214663911,"imageUrl":"assets/carro-2produtos-open-menu@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##f7f7f7","fixedHeaderBackground":"##00bffe"},"updatedAt":1528644630000,"height":5222.0,"name":"Carro Open Menu 2 produtos","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":32,"createdAt":1484607065000,"fixedHeaderHeight":290,"clientFilename":"carro-2produtos-open-menu@2x.jpg"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ff6902","width":640.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"214749276.jpg","commentCount":0,"screenGroupId":3951349,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":10064592,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_carro-modal-envio-2produtos@2x.jpg","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":214749276,"imageUrl":"assets/carro-modal-envio-2produtos@2x.jpg","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#F7F7F7","fixedHeaderBackground":"#F7F7F7"},"updatedAt":1528644638000,"height":452.0,"name":"Carro-Modal-Envio 2produtos","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":33,"createdAt":1484658801000,"fixedHeaderHeight":0,"clientFilename":"carro-modal-envio-2produtos@2x.jpg"}],
dividers: [{"position":0,"projectID":10064592,"sort":0,"expanded":true,"label":"","type":"divider","dividerID":0},{"position":0,"projectID":10064592,"sort":1,"label":"Home 1 produto","type":"divider","dividerID":3951264},{"position":0,"projectID":10064592,"sort":2,"label":"Home 2 produtos","type":"divider","dividerID":3950518},{"position":0,"projectID":10064592,"sort":3,"label":"Lista 1 produto","type":"divider","dividerID":3950452},{"position":0,"projectID":10064592,"sort":4,"label":"Lista 2 produtos","type":"divider","dividerID":3951275},{"position":0,"projectID":10064592,"sort":5,"label":"Produto 1 Produto","type":"divider","dividerID":3950519},{"position":0,"projectID":10064592,"sort":6,"label":"Produto 2 produtos","type":"divider","dividerID":3951344},{"position":0,"projectID":10064592,"sort":7,"label":"Produto Modais","type":"divider","dividerID":8993532},{"position":0,"projectID":10064592,"sort":8,"label":"Carro 1 produto","type":"divider","dividerID":3950792},{"position":0,"projectID":10064592,"sort":9,"label":"Carro 2 produtos","type":"divider","dividerID":3951349}],
metaScreens: {"splash":{"sameOriginImageUrl":"","relation":"apple-touch-startup-image","backgroundColor":"","imageUrl":""},"icon":{"sameOriginImageUrl":"","relation":"apple-touch-icon-precomposed","imageUrl":""}},
hotspots: [{"eventTypeID":1,"targetScreenID":214658412,"width":200.0,"height":78.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":34.0,"y":202.0,"screenID":214666362,"id":666880398,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214663965,"width":630.0,"height":76.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":4.0,"y":4850.0,"screenID":214666362,"id":666882292,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":true,"transitionID":12,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":21.0},"bgOpacity":0,"positionID":6,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":214666360,"width":184.0,"height":82.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":16.0,"y":102.0,"screenID":214666362,"id":666880159,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214663965,"width":634.0,"height":74.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":0.0,"y":4756.0,"screenID":214666360,"id":666882027,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":true,"transitionID":12,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":1.0},"bgOpacity":0,"positionID":6,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":214666362,"width":154.0,"height":86.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":26.0,"y":100.0,"screenID":214666360,"id":666880128,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214663819,"width":178.0,"height":84.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":18.0,"y":98.0,"screenID":214663911,"id":666883045,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214663965,"width":632.0,"height":76.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":2.0,"y":5048.0,"screenID":214663911,"id":666882509,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":true,"transitionID":12,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":21.0},"bgOpacity":0,"positionID":6,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":214666360,"width":80.0,"height":78.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":554.0,"y":546.0,"screenID":214663911,"id":666883068,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214672547,"width":312.0,"height":52.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":170.0,"y":488.0,"screenID":214663911,"id":666988265,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673517,"width":208.0,"height":84.0,"isBottomAligned":false,"templateID":"","transitionTypeID":2,"x":22.0,"y":196.0,"screenID":214663911,"id":666882978,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214663911,"width":176.0,"height":92.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":14.0,"y":98.0,"screenID":214663819,"id":666882622,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214663965,"width":632.0,"height":76.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":2.0,"y":4956.0,"screenID":214663819,"id":666882421,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":true,"transitionID":12,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":1.0},"bgOpacity":0,"positionID":6,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":214666360,"width":64.0,"height":62.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":558.0,"y":466.0,"screenID":214663819,"id":666882695,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214672547,"width":302.0,"height":58.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":170.0,"y":388.0,"screenID":214663819,"id":666987984,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214658412,"width":78.0,"height":88.0,"isBottomAligned":false,"templateID":"","transitionTypeID":3,"x":556.0,"y":0.0,"screenID":214660193,"id":666870866,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214658412,"width":314.0,"height":94.0,"isBottomAligned":false,"templateID":"","transitionTypeID":3,"x":320.0,"y":1038.0,"screenID":214660193,"id":666870989,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214658587,"width":310.0,"height":64.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":26.0,"y":908.0,"screenID":214660193,"id":666870905,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673517,"width":78.0,"height":88.0,"isBottomAligned":false,"templateID":"","transitionTypeID":3,"x":556.0,"y":0.0,"screenID":214673575,"id":666876438,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673517,"width":314.0,"height":94.0,"isBottomAligned":false,"templateID":"","transitionTypeID":3,"x":320.0,"y":1038.0,"screenID":214673575,"id":666876439,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673676,"width":310.0,"height":64.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":26.0,"y":908.0,"screenID":214673575,"id":666876440,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214660193,"width":316.0,"height":66.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":24.0,"y":912.0,"screenID":214658587,"id":666871270,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214660193,"width":308.0,"height":94.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":0.0,"y":1038.0,"screenID":214658587,"id":666871296,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214660506,"width":78.0,"height":82.0,"isBottomAligned":false,"templateID":"","transitionTypeID":3,"x":556.0,"y":0.0,"screenID":214658587,"id":666871187,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214660506,"width":316.0,"height":94.0,"isBottomAligned":false,"templateID":"","transitionTypeID":3,"x":320.0,"y":1038.0,"screenID":214658587,"id":666871214,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673575,"width":316.0,"height":66.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":24.0,"y":912.0,"screenID":214673676,"id":666876572,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673575,"width":308.0,"height":94.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":0.0,"y":1038.0,"screenID":214673676,"id":666876573,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673726,"width":78.0,"height":82.0,"isBottomAligned":false,"templateID":"","transitionTypeID":3,"x":556.0,"y":0.0,"screenID":214673676,"id":666876574,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673726,"width":316.0,"height":94.0,"isBottomAligned":false,"templateID":"","transitionTypeID":3,"x":320.0,"y":1038.0,"screenID":214673676,"id":666876575,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214657094,"width":164.0,"height":94.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":18.0,"y":96.0,"screenID":214627729,"id":666869431,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214658412,"width":330.0,"height":326.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":280.0,"y":2420.0,"screenID":214627729,"id":666868958,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673416,"width":164.0,"height":94.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":18.0,"y":96.0,"screenID":214673353,"id":666876095,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673517,"width":330.0,"height":326.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":280.0,"y":2420.0,"screenID":214673353,"id":666876096,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214627729,"width":176.0,"height":92.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":22.0,"y":94.0,"screenID":214657094,"id":666869614,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214658412,"width":324.0,"height":330.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":284.0,"y":2516.0,"screenID":214657094,"id":666869219,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214658412,"width":206.0,"height":88.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":22.0,"y":196.0,"screenID":214657094,"id":666878902,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214658412,"width":324.0,"height":330.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":284.0,"y":2516.0,"screenID":214673416,"id":666876171,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673353,"width":176.0,"height":92.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":22.0,"y":94.0,"screenID":214673416,"id":666876170,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673517,"width":202.0,"height":84.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":32.0,"y":196.0,"screenID":214673416,"id":666878973,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214658521,"width":174.0,"height":94.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":16.0,"y":98.0,"screenID":214658412,"id":666870002,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214660193,"width":156.0,"height":90.0,"isBottomAligned":false,"templateID":"","transitionTypeID":2,"x":22.0,"y":286.0,"screenID":214658412,"id":666870156,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214660941,"width":286.0,"height":298.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":24.0,"y":464.0,"screenID":214658412,"id":666870045,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214672547,"width":286.0,"height":298.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":24.0,"y":464.0,"screenID":214673517,"id":666876300,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673541,"width":174.0,"height":94.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":16.0,"y":98.0,"screenID":214673517,"id":666876298,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673575,"width":156.0,"height":90.0,"isBottomAligned":false,"templateID":"","transitionTypeID":2,"x":22.0,"y":286.0,"screenID":214673517,"id":666876299,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214658412,"width":46.0,"height":38.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":444.0,"y":400.0,"screenID":214660506,"id":666871645,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214658587,"width":160.0,"height":94.0,"isBottomAligned":false,"templateID":"","transitionTypeID":2,"x":24.0,"y":284.0,"screenID":214660506,"id":666871536,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214660505,"width":188.0,"height":90.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":12.0,"y":98.0,"screenID":214660506,"id":666871471,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214660941,"width":282.0,"height":310.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":26.0,"y":522.0,"screenID":214660506,"id":666871596,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214672547,"width":282.0,"height":310.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":26.0,"y":522.0,"screenID":214673726,"id":666876623,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673517,"width":46.0,"height":38.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":444.0,"y":400.0,"screenID":214673726,"id":666876619,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673676,"width":160.0,"height":94.0,"isBottomAligned":false,"templateID":"","transitionTypeID":2,"x":24.0,"y":284.0,"screenID":214673726,"id":666876621,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673786,"width":188.0,"height":90.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":12.0,"y":98.0,"screenID":214673726,"id":666876622,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214658412,"width":68.0,"height":42.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":436.0,"y":492.0,"screenID":214660505,"id":666872083,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214658587,"width":152.0,"height":90.0,"isBottomAligned":false,"templateID":"","transitionTypeID":2,"x":24.0,"y":382.0,"screenID":214660505,"id":666872055,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214660506,"width":176.0,"height":92.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":20.0,"y":100.0,"screenID":214660505,"id":666871976,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214660941,"width":294.0,"height":316.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":18.0,"y":610.0,"screenID":214660505,"id":666872226,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214672547,"width":294.0,"height":316.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":18.0,"y":610.0,"screenID":214673786,"id":666876691,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673517,"width":68.0,"height":42.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":436.0,"y":492.0,"screenID":214673786,"id":666876687,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673676,"width":152.0,"height":90.0,"isBottomAligned":false,"templateID":"","transitionTypeID":2,"x":24.0,"y":382.0,"screenID":214673786,"id":666876689,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673726,"width":176.0,"height":92.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":20.0,"y":100.0,"screenID":214673786,"id":666876690,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214658412,"width":176.0,"height":90.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":18.0,"y":98.0,"screenID":214658521,"id":666870644,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214660193,"width":132.0,"height":92.0,"isBottomAligned":false,"templateID":"","transitionTypeID":2,"x":22.0,"y":382.0,"screenID":214658521,"id":666870672,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214660941,"width":290.0,"height":312.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":24.0,"y":558.0,"screenID":214658521,"id":666870699,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214672547,"width":290.0,"height":312.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":24.0,"y":558.0,"screenID":214673541,"id":666876332,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673517,"width":176.0,"height":90.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":18.0,"y":98.0,"screenID":214673541,"id":666876330,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673575,"width":132.0,"height":92.0,"isBottomAligned":false,"templateID":"","transitionTypeID":2,"x":22.0,"y":382.0,"screenID":214673541,"id":666876331,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214663819,"width":370.0,"height":104.0,"isBottomAligned":false,"templateID":"","transitionTypeID":3,"x":136.0,"y":752.0,"screenID":214671690,"id":666874497,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214672547,"width":82.0,"height":94.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":512.0,"y":292.0,"screenID":214671690,"id":666875252,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214672547,"width":352.0,"height":34.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":144.0,"y":878.0,"screenID":214671690,"id":666875318,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214663819,"width":368.0,"height":102.0,"isBottomAligned":false,"templateID":"","transitionTypeID":3,"x":136.0,"y":704.0,"screenID":214744794,"id":666964595,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214672547,"width":96.0,"height":82.0,"isBottomAligned":false,"templateID":"","transitionTypeID":3,"x":506.0,"y":250.0,"screenID":214744794,"id":666964750,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214672547,"width":342.0,"height":62.0,"isBottomAligned":false,"templateID":"","transitionTypeID":3,"x":148.0,"y":826.0,"screenID":214744794,"id":666964793,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214658412,"width":164.0,"height":64.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":220.0,"y":210.0,"screenID":214660941,"id":666872431,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214660967,"width":172.0,"height":90.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":22.0,"y":100.0,"screenID":214660941,"id":666872361,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214671690,"width":592.0,"height":108.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":24.0,"y":6678.0,"screenID":214660941,"id":666872548,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":3,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":0,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":214743191,"width":90.0,"height":92.0,"isBottomAligned":false,"templateID":"","transitionTypeID":2,"x":408.0,"y":798.0,"screenID":214660941,"id":666962198,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214754524,"width":86.0,"height":84.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":6.0,"y":808.0,"screenID":214660941,"id":666975836,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":true,"transitionID":17,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":0,"positionID":3,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":214671690,"width":592.0,"height":108.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":24.0,"y":6678.0,"screenID":214672547,"id":666874946,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":3,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":0,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":214673517,"width":164.0,"height":64.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":220.0,"y":210.0,"screenID":214672547,"id":666874944,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673838,"width":172.0,"height":90.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":22.0,"y":100.0,"screenID":214672547,"id":666874945,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214747080,"width":92.0,"height":88.0,"isBottomAligned":false,"templateID":"","transitionTypeID":2,"x":402.0,"y":802.0,"screenID":214672547,"id":666966907,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214754524,"width":80.0,"height":76.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":10.0,"y":812.0,"screenID":214672547,"id":666978333,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":true,"transitionID":17,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":0,"positionID":3,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":214660941,"width":78.0,"height":78.0,"isBottomAligned":false,"templateID":"","transitionTypeID":3,"x":558.0,"y":0.0,"screenID":214743191,"id":666962662,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214744794,"width":596.0,"height":102.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":22.0,"y":1038.0,"screenID":214743191,"id":666963220,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":3,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":0,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":214672547,"width":78.0,"height":78.0,"isBottomAligned":false,"templateID":"","transitionTypeID":3,"x":558.0,"y":0.0,"screenID":214747080,"id":666966679,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214744794,"width":596.0,"height":102.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":22.0,"y":1038.0,"screenID":214747080,"id":666966680,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":3,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":0,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":214658412,"width":196.0,"height":80.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":32.0,"y":200.0,"screenID":214660967,"id":666874042,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214658412,"width":158.0,"height":38.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":220.0,"y":318.0,"screenID":214660967,"id":666874059,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214660941,"width":170.0,"height":84.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":22.0,"y":102.0,"screenID":214660967,"id":666874016,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214671690,"width":592.0,"height":104.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":22.0,"y":6776.0,"screenID":214660967,"id":666874176,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":3,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":0,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":214743191,"width":76.0,"height":82.0,"isBottomAligned":false,"templateID":"","transitionTypeID":2,"x":414.0,"y":900.0,"screenID":214660967,"id":666966161,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214754524,"width":76.0,"height":72.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":12.0,"y":910.0,"screenID":214660967,"id":666978118,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":true,"transitionID":17,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":0,"positionID":3,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":214671690,"width":592.0,"height":104.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":22.0,"y":6776.0,"screenID":214673838,"id":666876767,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":3,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":0,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":214672547,"width":170.0,"height":84.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":22.0,"y":102.0,"screenID":214673838,"id":666876766,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673517,"width":196.0,"height":80.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":32.0,"y":200.0,"screenID":214673838,"id":666876764,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673517,"width":158.0,"height":38.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":220.0,"y":318.0,"screenID":214673838,"id":666876765,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214747080,"width":100.0,"height":84.0,"isBottomAligned":false,"templateID":"","transitionTypeID":2,"x":398.0,"y":900.0,"screenID":214673838,"id":666965869,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214754524,"width":82.0,"height":78.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":8.0,"y":902.0,"screenID":214673838,"id":666978492,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":true,"transitionID":17,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":0,"positionID":3,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":214666360,"width":88.0,"height":94.0,"isBottomAligned":false,"templateID":21041202,"transitionTypeID":3,"x":546.0,"y":0.0,"screenID":214666362,"id":666868759,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214627729,"width":222.0,"height":88.0,"isBottomAligned":false,"templateID":21041202,"transitionTypeID":1,"x":14.0,"y":0.0,"screenID":214666362,"id":666870280,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214666360,"width":88.0,"height":94.0,"isBottomAligned":false,"templateID":21041202,"transitionTypeID":3,"x":546.0,"y":0.0,"screenID":214666360,"id":666868759,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214627729,"width":222.0,"height":88.0,"isBottomAligned":false,"templateID":21041202,"transitionTypeID":1,"x":14.0,"y":0.0,"screenID":214666360,"id":666870280,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214663819,"width":88.0,"height":94.0,"isBottomAligned":false,"templateID":21041568,"transitionTypeID":3,"x":546.0,"y":0.0,"screenID":214663911,"id":666877850,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673353,"width":222.0,"height":88.0,"isBottomAligned":false,"templateID":21041568,"transitionTypeID":1,"x":14.0,"y":0.0,"screenID":214663911,"id":666877851,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214663819,"width":88.0,"height":94.0,"isBottomAligned":false,"templateID":21041568,"transitionTypeID":3,"x":546.0,"y":0.0,"screenID":214663819,"id":666877850,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673353,"width":222.0,"height":88.0,"isBottomAligned":false,"templateID":21041568,"transitionTypeID":1,"x":14.0,"y":0.0,"screenID":214663819,"id":666877851,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214666360,"width":88.0,"height":94.0,"isBottomAligned":false,"templateID":21041202,"transitionTypeID":3,"x":546.0,"y":0.0,"screenID":214627729,"id":666868759,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214627729,"width":222.0,"height":88.0,"isBottomAligned":false,"templateID":21041202,"transitionTypeID":1,"x":14.0,"y":0.0,"screenID":214627729,"id":666870280,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214663819,"width":88.0,"height":94.0,"isBottomAligned":false,"templateID":21041568,"transitionTypeID":3,"x":546.0,"y":0.0,"screenID":214673353,"id":666877850,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673353,"width":222.0,"height":88.0,"isBottomAligned":false,"templateID":21041568,"transitionTypeID":1,"x":14.0,"y":0.0,"screenID":214673353,"id":666877851,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214666360,"width":88.0,"height":94.0,"isBottomAligned":false,"templateID":21041202,"transitionTypeID":3,"x":546.0,"y":0.0,"screenID":214657094,"id":666868759,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214627729,"width":222.0,"height":88.0,"isBottomAligned":false,"templateID":21041202,"transitionTypeID":1,"x":14.0,"y":0.0,"screenID":214657094,"id":666870280,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214663819,"width":88.0,"height":94.0,"isBottomAligned":false,"templateID":21041568,"transitionTypeID":3,"x":546.0,"y":0.0,"screenID":214673416,"id":666877850,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673353,"width":222.0,"height":88.0,"isBottomAligned":false,"templateID":21041568,"transitionTypeID":1,"x":14.0,"y":0.0,"screenID":214673416,"id":666877851,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214666360,"width":88.0,"height":94.0,"isBottomAligned":false,"templateID":21041202,"transitionTypeID":3,"x":546.0,"y":0.0,"screenID":214658412,"id":666868759,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214627729,"width":222.0,"height":88.0,"isBottomAligned":false,"templateID":21041202,"transitionTypeID":1,"x":14.0,"y":0.0,"screenID":214658412,"id":666870280,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214663819,"width":88.0,"height":94.0,"isBottomAligned":false,"templateID":21041568,"transitionTypeID":3,"x":546.0,"y":0.0,"screenID":214673517,"id":666877850,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673353,"width":222.0,"height":88.0,"isBottomAligned":false,"templateID":21041568,"transitionTypeID":1,"x":14.0,"y":0.0,"screenID":214673517,"id":666877851,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214666360,"width":88.0,"height":94.0,"isBottomAligned":false,"templateID":21041202,"transitionTypeID":3,"x":546.0,"y":0.0,"screenID":214660506,"id":666868759,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214627729,"width":222.0,"height":88.0,"isBottomAligned":false,"templateID":21041202,"transitionTypeID":1,"x":14.0,"y":0.0,"screenID":214660506,"id":666870280,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214663819,"width":88.0,"height":94.0,"isBottomAligned":false,"templateID":21041568,"transitionTypeID":3,"x":546.0,"y":0.0,"screenID":214673726,"id":666877850,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673353,"width":222.0,"height":88.0,"isBottomAligned":false,"templateID":21041568,"transitionTypeID":1,"x":14.0,"y":0.0,"screenID":214673726,"id":666877851,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214666360,"width":88.0,"height":94.0,"isBottomAligned":false,"templateID":21041202,"transitionTypeID":3,"x":546.0,"y":0.0,"screenID":214660505,"id":666868759,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214627729,"width":222.0,"height":88.0,"isBottomAligned":false,"templateID":21041202,"transitionTypeID":1,"x":14.0,"y":0.0,"screenID":214660505,"id":666870280,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214663819,"width":88.0,"height":94.0,"isBottomAligned":false,"templateID":21041568,"transitionTypeID":3,"x":546.0,"y":0.0,"screenID":214673786,"id":666877850,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673353,"width":222.0,"height":88.0,"isBottomAligned":false,"templateID":21041568,"transitionTypeID":1,"x":14.0,"y":0.0,"screenID":214673786,"id":666877851,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214666360,"width":88.0,"height":94.0,"isBottomAligned":false,"templateID":21041202,"transitionTypeID":3,"x":546.0,"y":0.0,"screenID":214658521,"id":666868759,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214627729,"width":222.0,"height":88.0,"isBottomAligned":false,"templateID":21041202,"transitionTypeID":1,"x":14.0,"y":0.0,"screenID":214658521,"id":666870280,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214663819,"width":88.0,"height":94.0,"isBottomAligned":false,"templateID":21041568,"transitionTypeID":3,"x":546.0,"y":0.0,"screenID":214673541,"id":666877850,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673353,"width":222.0,"height":88.0,"isBottomAligned":false,"templateID":21041568,"transitionTypeID":1,"x":14.0,"y":0.0,"screenID":214673541,"id":666877851,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214666360,"width":88.0,"height":94.0,"isBottomAligned":false,"templateID":21041202,"transitionTypeID":3,"x":546.0,"y":0.0,"screenID":214660941,"id":666868759,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214627729,"width":222.0,"height":88.0,"isBottomAligned":false,"templateID":21041202,"transitionTypeID":1,"x":14.0,"y":0.0,"screenID":214660941,"id":666870280,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214663819,"width":88.0,"height":94.0,"isBottomAligned":false,"templateID":21041568,"transitionTypeID":3,"x":546.0,"y":0.0,"screenID":214672547,"id":666877850,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673353,"width":222.0,"height":88.0,"isBottomAligned":false,"templateID":21041568,"transitionTypeID":1,"x":14.0,"y":0.0,"screenID":214672547,"id":666877851,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214666360,"width":88.0,"height":94.0,"isBottomAligned":false,"templateID":21041202,"transitionTypeID":3,"x":546.0,"y":0.0,"screenID":214660967,"id":666868759,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214627729,"width":222.0,"height":88.0,"isBottomAligned":false,"templateID":21041202,"transitionTypeID":1,"x":14.0,"y":0.0,"screenID":214660967,"id":666870280,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214663819,"width":88.0,"height":94.0,"isBottomAligned":false,"templateID":21041568,"transitionTypeID":3,"x":546.0,"y":0.0,"screenID":214673838,"id":666877850,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":214673353,"width":222.0,"height":88.0,"isBottomAligned":false,"templateID":21041568,"transitionTypeID":1,"x":14.0,"y":0.0,"screenID":214673838,"id":666877851,"isScrollTo":false,"metaData":{},"targetTypeID":1}],
branding: {
stub: "invision",
url: "http://www.InVisionApp.com/"
},
mobileDevices: [{"viewportWidth":"0","loadScreenResolution":"","mobileSkinColor":"","className":"desktop","viewportHeight":"0","iconResolution":"","platform":"any","mobileSkin":"any","description":"desktop","isDefaultDeviceType":true,"deviceHeight":0,"orientation":"any","deviceType":"desktop","mobileDeviceID":0,"mobileSkinFilename":"","deviceWidth":0},{"viewportWidth":"320","loadScreenResolution":"640 x 1096","mobileSkinColor":"black","className":"iphone-portrait","viewportHeight":"568","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 5 (Black)","isDefaultDeviceType":false,"deviceHeight":778,"orientation":"portrait","deviceType":"phone","mobileDeviceID":1,"mobileSkinFilename":"iphone-portrait.png","deviceWidth":374},{"viewportWidth":"568","loadScreenResolution":"640 x 1096","mobileSkinColor":"black","className":"iphone-landscape","viewportHeight":"320","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 5 (Black)","isDefaultDeviceType":false,"deviceHeight":374,"orientation":"landscape","deviceType":"phone","mobileDeviceID":2,"mobileSkinFilename":"iphone-landscape.png","deviceWidth":778},{"viewportWidth":"576","loadScreenResolution":"1536 x 2048","mobileSkinColor":"black","className":"ipad-portrait","viewportHeight":"768","iconResolution":"152 x 152","platform":"iOS","mobileSkin":"iPad","description":"iPad - Black","isDefaultDeviceType":true,"deviceHeight":950,"orientation":"portrait","deviceType":"tablet","mobileDeviceID":3,"mobileSkinFilename":"ipad-portrait.png","deviceWidth":640},{"viewportWidth":"768","loadScreenResolution":"2048 x 1496","mobileSkinColor":"black","className":"ipad-landscape","viewportHeight":"576","iconResolution":"152 x 152","platform":"iOS","mobileSkin":"iPad","description":"iPad - Black","isDefaultDeviceType":true,"deviceHeight":640,"orientation":"landscape","deviceType":"tablet","mobileDeviceID":4,"mobileSkinFilename":"ipad-landscape.png","deviceWidth":950},{"viewportWidth":"320","loadScreenResolution":"640 x 920","mobileSkinColor":"black","className":"iphone4-portrait","viewportHeight":"480","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 4 (Black)","isDefaultDeviceType":false,"deviceHeight":690,"orientation":"portrait","deviceType":"phone","mobileDeviceID":5,"mobileSkinFilename":"iphone4-portrait.png","deviceWidth":374},{"viewportWidth":"480","loadScreenResolution":"640 x 920","mobileSkinColor":"black","className":"iphone4-landscape","viewportHeight":"320","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 4 (Black)","isDefaultDeviceType":false,"deviceHeight":374,"orientation":"landscape","deviceType":"phone","mobileDeviceID":6,"mobileSkinFilename":"iphone4-landscape.png","deviceWidth":690},{"viewportWidth":"360","loadScreenResolution":"1080 x 1920","mobileSkinColor":"black","className":"htcOne-portrait","viewportHeight":"640","iconResolution":"192 x 192","platform":"Android","mobileSkin":"HTC One","description":"HTC One - Black","isDefaultDeviceType":true,"deviceHeight":836,"orientation":"portrait","deviceType":"phone","mobileDeviceID":7,"mobileSkinFilename":"htcOne-portrait.png","deviceWidth":402},{"viewportWidth":"640","loadScreenResolution":"1920 x 1080","mobileSkinColor":"black","className":"htcOne-landscape","viewportHeight":"360","iconResolution":"192 x 192","platform":"Android","mobileSkin":"HTC One","description":"HTC One - Black","isDefaultDeviceType":true,"deviceHeight":402,"orientation":"landscape","deviceType":"phone","mobileDeviceID":8,"mobileSkinFilename":"htcOne-landscape.png","deviceWidth":836},{"viewportWidth":"360","loadScreenResolution":"1080 x 1920","mobileSkinColor":"black","className":"samsungS4-portrait","viewportHeight":"640","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Samsung Galaxy S4","description":"Samsung Galaxy S4 - Black","isDefaultDeviceType":false,"deviceHeight":786,"orientation":"portrait","deviceType":"phone","mobileDeviceID":9,"mobileSkinFilename":"samsungS4-portrait.png","deviceWidth":406},{"viewportWidth":"640","loadScreenResolution":"1920 x 1080","mobileSkinColor":"black","className":"samsungS4-landscape","viewportHeight":"360","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Samsung Galaxy S4","description":"Samsung Galaxy S4 - Black","isDefaultDeviceType":false,"deviceHeight":406,"orientation":"landscape","deviceType":"phone","mobileDeviceID":10,"mobileSkinFilename":"samsungS4-landscape.png","deviceWidth":786},{"viewportWidth":"320","loadScreenResolution":"640 x 1096","mobileSkinColor":"white","className":"iphone-portrait","viewportHeight":"568","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 5 (White)","isDefaultDeviceType":false,"deviceHeight":778,"orientation":"portrait","deviceType":"phone","mobileDeviceID":11,"mobileSkinFilename":"iphone-portrait-white.png","deviceWidth":374},{"viewportWidth":"568","loadScreenResolution":"640 x 1096","mobileSkinColor":"white","className":"iphone-landscape","viewportHeight":"320","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 5 (White)","isDefaultDeviceType":false,"deviceHeight":374,"orientation":"landscape","deviceType":"phone","mobileDeviceID":12,"mobileSkinFilename":"iphone-landscape-white.png","deviceWidth":778},{"viewportWidth":"576","loadScreenResolution":"1536 x 2048","mobileSkinColor":"white","className":"ipad-portrait","viewportHeight":"768","iconResolution":"152 x 152","platform":"iOS","mobileSkin":"iPad","description":"iPad - White","isDefaultDeviceType":false,"deviceHeight":950,"orientation":"portrait","deviceType":"tablet","mobileDeviceID":13,"mobileSkinFilename":"ipad-portrait-white.png","deviceWidth":640},{"viewportWidth":"768","loadScreenResolution":"2048 x 1496","mobileSkinColor":"white","className":"ipad-landscape","viewportHeight":"576","iconResolution":"152 x 152","platform":"iOS","mobileSkin":"iPad","description":"iPad - White","isDefaultDeviceType":false,"deviceHeight":640,"orientation":"landscape","deviceType":"tablet","mobileDeviceID":14,"mobileSkinFilename":"ipad-landscape-white.png","deviceWidth":950},{"viewportWidth":"320","loadScreenResolution":"640 x 920","mobileSkinColor":"white","className":"iphone4-portrait","viewportHeight":"480","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 4 (White)","isDefaultDeviceType":false,"deviceHeight":690,"orientation":"portrait","deviceType":"phone","mobileDeviceID":15,"mobileSkinFilename":"iphone4-portrait-white.png","deviceWidth":374},{"viewportWidth":"480","loadScreenResolution":"640 x 920","mobileSkinColor":"white","className":"iphone4-landscape","viewportHeight":"320","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 4 (White)","isDefaultDeviceType":false,"deviceHeight":374,"orientation":"landscape","deviceType":"phone","mobileDeviceID":16,"mobileSkinFilename":"iphone4-landscape-white.png","deviceWidth":690},{"viewportWidth":"360","loadScreenResolution":"1080 x 1920","mobileSkinColor":"white","className":"htcOne-portrait","viewportHeight":"640","iconResolution":"192 x 192","platform":"Android","mobileSkin":"HTC One","description":"HTC One - White","isDefaultDeviceType":false,"deviceHeight":836,"orientation":"portrait","deviceType":"phone","mobileDeviceID":17,"mobileSkinFilename":"htcOne-portrait-white.png","deviceWidth":402},{"viewportWidth":"640","loadScreenResolution":"1920 x 1080","mobileSkinColor":"white","className":"htcOne-landscape","viewportHeight":"360","iconResolution":"192 x 192","platform":"Android","mobileSkin":"HTC One","description":"HTC One - White","isDefaultDeviceType":false,"deviceHeight":402,"orientation":"landscape","deviceType":"phone","mobileDeviceID":18,"mobileSkinFilename":"htcOne-landscape-white.png","deviceWidth":836},{"viewportWidth":"360","loadScreenResolution":"1080 x 1920","mobileSkinColor":"white","className":"samsungS4-portrait","viewportHeight":"640","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Samsung Galaxy S4","description":"Samsung Galaxy S4 - White","isDefaultDeviceType":false,"deviceHeight":786,"orientation":"portrait","deviceType":"phone","mobileDeviceID":19,"mobileSkinFilename":"samsungS4-portrait-white.png","deviceWidth":406},{"viewportWidth":"640","loadScreenResolution":"1920 x 1080","mobileSkinColor":"white","className":"samsungS4-landscape","viewportHeight":"360","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Samsung Galaxy S4","description":"Samsung Galaxy S4 - White","isDefaultDeviceType":false,"deviceHeight":406,"orientation":"landscape","deviceType":"phone","mobileDeviceID":20,"mobileSkinFilename":"samsungS4-landscape-white.png","deviceWidth":786},{"viewportWidth":"450","loadScreenResolution":"1080 x 1920","mobileSkinColor":"black","className":"nexus7-portrait","viewportHeight":"685","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Nexus 7","description":"Nexus 7","isDefaultDeviceType":true,"deviceHeight":870,"orientation":"portrait","deviceType":"tablet","mobileDeviceID":21,"mobileSkinFilename":"nexus7-portrait.png","deviceWidth":532},{"viewportWidth":"720","loadScreenResolution":"1920 x 1080","mobileSkinColor":"black","className":"nexus7-landscape","viewportHeight":"415","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Nexus 7","description":"Nexus 7","isDefaultDeviceType":true,"deviceHeight":532,"orientation":"landscape","deviceType":"tablet","mobileDeviceID":22,"mobileSkinFilename":"nexus7-landscape.png","deviceWidth":870},{"viewportWidth":"600","loadScreenResolution":"1080 x 1920","mobileSkinColor":"black","className":"nexus10-portrait","viewportHeight":"925","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Nexus 10","description":"Nexus 10","isDefaultDeviceType":false,"deviceHeight":1112,"orientation":"portrait","deviceType":"tablet","mobileDeviceID":23,"mobileSkinFilename":"nexus10-portrait.png","deviceWidth":776},{"viewportWidth":"960","loadScreenResolution":"1920 x 1080","mobileSkinColor":"black","className":"nexus10-landscape","viewportHeight":"565","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Nexus 10","description":"Nexus 10","isDefaultDeviceType":false,"deviceHeight":776,"orientation":"landscape","deviceType":"tablet","mobileDeviceID":24,"mobileSkinFilename":"nexus10-landscape.png","deviceWidth":1112},{"viewportWidth":"375","loadScreenResolution":"750 x 1294","mobileSkinColor":"black","className":"iphone6-portrait","viewportHeight":"667","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6-8 (Black)","isDefaultDeviceType":true,"deviceHeight":850,"orientation":"portrait","deviceType":"phone","mobileDeviceID":25,"mobileSkinFilename":"iphone6-portrait.png","deviceWidth":416},{"viewportWidth":"667","loadScreenResolution":"750 x 1294","mobileSkinColor":"black","className":"iphone6-landscape","viewportHeight":"375","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6-8 (Black)","isDefaultDeviceType":true,"deviceHeight":416,"orientation":"landscape","deviceType":"phone","mobileDeviceID":26,"mobileSkinFilename":"iphone6-landscape.png","deviceWidth":850},{"viewportWidth":"375","loadScreenResolution":"750 x 1294","mobileSkinColor":"white","className":"iphone6-portrait","viewportHeight":"667","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6-8 (White)","isDefaultDeviceType":false,"deviceHeight":850,"orientation":"portrait","deviceType":"phone","mobileDeviceID":27,"mobileSkinFilename":"iphone6-portrait-white.png","deviceWidth":416},{"viewportWidth":"667","loadScreenResolution":"750 x 1294","mobileSkinColor":"white","className":"iphone6-landscape","viewportHeight":"375","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6-8 (White)","isDefaultDeviceType":false,"deviceHeight":416,"orientation":"landscape","deviceType":"phone","mobileDeviceID":28,"mobileSkinFilename":"iphone6-landscape-white.png","deviceWidth":850},{"viewportWidth":"412","loadScreenResolution":"1242 x 2148","mobileSkinColor":"black","className":"iphone6plus-portrait","viewportHeight":"734","iconResolution":"180 x 180","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6-8 Plus (Black)","isDefaultDeviceType":false,"deviceHeight":920,"orientation":"portrait","deviceType":"phone","mobileDeviceID":29,"mobileSkinFilename":"iphone6plus-portrait.png","deviceWidth":454},{"viewportWidth":"734","loadScreenResolution":"1242 x 2148","mobileSkinColor":"black","className":"iphone6plus-landscape","viewportHeight":"412","iconResolution":"180 x 180","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6-8 Plus (Black)","isDefaultDeviceType":false,"deviceHeight":454,"orientation":"landscape","deviceType":"phone","mobileDeviceID":30,"mobileSkinFilename":"iphone6plus-landscape.png","deviceWidth":920},{"viewportWidth":"412","loadScreenResolution":"1242 x 2148","mobileSkinColor":"white","className":"iphone6plus-portrait","viewportHeight":"734","iconResolution":"180 x 180","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6-8 Plus (White)","isDefaultDeviceType":false,"deviceHeight":920,"orientation":"portrait","deviceType":"phone","mobileDeviceID":31,"mobileSkinFilename":"iphone6plus-portrait-white.png","deviceWidth":454},{"viewportWidth":"734","loadScreenResolution":"1242 x 2148","mobileSkinColor":"white","className":"iphone6plus-landscape","viewportHeight":"412","iconResolution":"180 x 180","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6-8 Plus (White)","isDefaultDeviceType":false,"deviceHeight":454,"orientation":"landscape","deviceType":"phone","mobileDeviceID":32,"mobileSkinFilename":"iphone6plus-portrait-white.png","deviceWidth":920},{"viewportWidth":"136","loadScreenResolution":"272px x 340px","mobileSkinColor":"roseGold","className":"apple-watch-38mm-roseGold","viewportHeight":"170","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"38mm - Rose Gold","isDefaultDeviceType":false,"deviceHeight":378,"orientation":"portrait","deviceType":"watch","mobileDeviceID":33,"mobileSkinFilename":"apple-watch-38mm-roseGold.png","deviceWidth":209},{"viewportWidth":"136","loadScreenResolution":"272px x 340px","mobileSkinColor":"silverAluminum","className":"apple-watch-38mm-silverAluminum","viewportHeight":"170","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"38mm - Silver Aluminum","isDefaultDeviceType":false,"deviceHeight":378,"orientation":"portrait","deviceType":"watch","mobileDeviceID":34,"mobileSkinFilename":"apple-watch-38mm-silverAluminum.png","deviceWidth":209},{"viewportWidth":"136","loadScreenResolution":"272px x 340px","mobileSkinColor":"spaceBlackStainlessSteel","className":"apple-watch-38mm-spaceBlackStainlessSteel","viewportHeight":"170","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"38mm - Space Black Stainless Steel","isDefaultDeviceType":false,"deviceHeight":378,"orientation":"portrait","deviceType":"watch","mobileDeviceID":35,"mobileSkinFilename":"apple-watch-38mm-spaceBlackStainlessSteel.png","deviceWidth":209},{"viewportWidth":"136","loadScreenResolution":"272px x 340px","mobileSkinColor":"spaceGrayAluminum","className":"apple-watch-38mm-spaceGrayAluminum","viewportHeight":"170","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"38mm - Space Gray Aluminum","isDefaultDeviceType":false,"deviceHeight":378,"orientation":"portrait","deviceType":"watch","mobileDeviceID":36,"mobileSkinFilename":"apple-watch-38mm-spaceGrayAluminum.png","deviceWidth":209},{"viewportWidth":"136","loadScreenResolution":"272px x 340px","mobileSkinColor":"stainlessSteel","className":"apple-watch-38mm-stainlessSteel","viewportHeight":"170","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"38mm - Stainless Steel","isDefaultDeviceType":false,"deviceHeight":378,"orientation":"portrait","deviceType":"watch","mobileDeviceID":37,"mobileSkinFilename":"apple-watch-38mm-stainlessSteel.png","deviceWidth":209},{"viewportWidth":"136","loadScreenResolution":"272px x 340px","mobileSkinColor":"yellowGold","className":"apple-watch-38mm-yellowGold","viewportHeight":"170","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"38mm - Yellow Gold","isDefaultDeviceType":false,"deviceHeight":378,"orientation":"portrait","deviceType":"watch","mobileDeviceID":38,"mobileSkinFilename":"apple-watch-38mm-yellowGold.png","deviceWidth":209},{"viewportWidth":"156","loadScreenResolution":"312px x 390px","mobileSkinColor":"roseGold","className":"apple-watch-42mm-roseGold","viewportHeight":"195","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"42mm - Rose Gold","isDefaultDeviceType":false,"deviceHeight":438,"orientation":"portrait","deviceType":"watch","mobileDeviceID":39,"mobileSkinFilename":"apple-watch-42mm-roseGold.png","deviceWidth":240},{"viewportWidth":"156","loadScreenResolution":"312px x 390px","mobileSkinColor":"silverAluminum","className":"apple-watch-42mm-silverAluminum","viewportHeight":"195","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"42mm - Silver Aluminum","isDefaultDeviceType":false,"deviceHeight":438,"orientation":"portrait","deviceType":"watch","mobileDeviceID":40,"mobileSkinFilename":"apple-watch-42mm-silverAluminum.png","deviceWidth":240},{"viewportWidth":"156","loadScreenResolution":"312px x 390px","mobileSkinColor":"spaceBlackStainlessSteel","className":"apple-watch-42mm-spaceBlackStainlessSteel","viewportHeight":"195","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"42mm - Space Black Stainless Steel","isDefaultDeviceType":false,"deviceHeight":438,"orientation":"portrait","deviceType":"watch","mobileDeviceID":41,"mobileSkinFilename":"apple-watch-42mm-spaceBlackStainlessSteel.png","deviceWidth":240},{"viewportWidth":"156","loadScreenResolution":"312px x 390px","mobileSkinColor":"spaceGrayAluminum","className":"apple-watch-42mm-spaceGrayAluminum","viewportHeight":"195","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"42mm - Space Gray Aluminum","isDefaultDeviceType":true,"deviceHeight":438,"orientation":"portrait","deviceType":"watch","mobileDeviceID":42,"mobileSkinFilename":"apple-watch-42mm-spaceGrayAluminum.png","deviceWidth":240},{"viewportWidth":"156","loadScreenResolution":"312px x 390px","mobileSkinColor":"stainlessSteel","className":"apple-watch-42mm-stainlessSteel","viewportHeight":"195","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"42mm - Stainless Steel","isDefaultDeviceType":false,"deviceHeight":438,"orientation":"portrait","deviceType":"watch","mobileDeviceID":43,"mobileSkinFilename":"apple-watch-42mm-stainlessSteel.png","deviceWidth":240},{"viewportWidth":"156","loadScreenResolution":"312px x 390px","mobileSkinColor":"yellowGold","className":"apple-watch-42mm-yellowGold","viewportHeight":"195","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"42mm - Yellow Gold","isDefaultDeviceType":false,"deviceHeight":438,"orientation":"portrait","deviceType":"watch","mobileDeviceID":44,"mobileSkinFilename":"apple-watch-42mm-yellowGold.png","deviceWidth":240},{"viewportWidth":"160","loadScreenResolution":"320px x 320px","mobileSkinColor":"round-dark","className":"android-round-dark","viewportHeight":"160","iconResolution":"144 x 144","platform":"android","mobileSkin":"android-watch","description":"Round - Dark","isDefaultDeviceType":false,"deviceHeight":310,"orientation":"portrait","deviceType":"watch","mobileDeviceID":45,"mobileSkinFilename":"android-round-dark.png","deviceWidth":185},{"viewportWidth":"160","loadScreenResolution":"320px x 320px","mobileSkinColor":"round-light","className":"android-round-light","viewportHeight":"160","iconResolution":"144 x 144","platform":"android","mobileSkin":"android-watch","description":"Round - Light","isDefaultDeviceType":false,"deviceHeight":310,"orientation":"portrait","deviceType":"watch","mobileDeviceID":46,"mobileSkinFilename":"android-round-light.png","deviceWidth":185},{"viewportWidth":"160","loadScreenResolution":"320px x 320px","mobileSkinColor":"square-dark","className":"android-square-dark","viewportHeight":"160","iconResolution":"144 x 144","platform":"android","mobileSkin":"android-watch","description":"Square - Dark","isDefaultDeviceType":true,"deviceHeight":377,"orientation":"portrait","deviceType":"watch","mobileDeviceID":47,"mobileSkinFilename":"android-square-dark.png","deviceWidth":223},{"viewportWidth":"160","loadScreenResolution":"320px x 320px","mobileSkinColor":"square-light","className":"android-square-light","viewportHeight":"160","iconResolution":"144 x 144","platform":"android","mobileSkin":"android-watch","description":"Square - Light","isDefaultDeviceType":false,"deviceHeight":377,"orientation":"portrait","deviceType":"watch","mobileDeviceID":48,"mobileSkinFilename":"android-square-light.png","deviceWidth":223},{"viewportWidth":"375","loadScreenResolution":"1242 x 2148","mobileSkinColor":"black","className":"iphoneX-portrait","viewportHeight":"812","iconResolution":"180 x 180","platform":"iOS","mobileSkin":"iPhoneX","description":"iPhone X","isDefaultDeviceType":true,"deviceHeight":855,"orientation":"portrait","deviceType":"phone","mobileDeviceID":49,"mobileSkinFilename":"iphoneX-portrait.png","deviceWidth":420},{"viewportWidth":"812","loadScreenResolution":"2148 x 1242","mobileSkinColor":"black","className":"iphoneX-landscape","viewportHeight":"375","iconResolution":"180 x 180","platform":"iOS","mobileSkin":"iPhoneX","description":"iPhone X","isDefaultDeviceType":true,"deviceHeight":421,"orientation":"landscape","deviceType":"phone","mobileDeviceID":50,"mobileSkinFilename":"iphoneX-landscape.png","deviceWidth":856}]
}
);
})( angular, InVision );
</script>
<script type="text/ng-template" id="/assets/apps/share/views/powered-by/powered-by.htm"><!-- Hide this object for a specific customer project shares. Everyone else should see it. -->
<div ng-hide="project.companyID == 71">
<a
ng-if=" !project.isMobile || share.isEmbed "
class="powered-by"
href="http://www.invisionapp.com/?utm_medium=virality&utm_source=Share%20CTA"
target="_blank">
<img src="assets/apps/share/img/made-with-invision.png" />
</a>
<a
ng-if="project.isMobile && !share.isEmbed"
class="mobile-powered-by"
href="http://www.invisionapp.com/?utm_medium=virality&utm_source=Share%20CTA"
target="_blank">
made with InVision
</a>
</div>
</script><script type="text/ng-template" id="/assets/apps/share/views/directives/share-sketch-viewer.htm"><div id="shareSketchViewer" ng-show=" isShowingSketchViewer ">
<div class="modalOverlay">
<div class="sketchViewer">
<div class="closeViewer" ng-click=" closeSketchViewer() "></div>
<div ng-show=" sketchImageIsProcessing " class="isProcessing">
<p>
<img src="assets/apps/share/img/draw.png"/><br/>
This sketch is currently being processed.<br/>
<span class="sub">It'll be available shortly!</span>
</p>
</div>
<!-- Non-Temporaray sketches here -->
<div ng-if=" !sketchViewerSketchIsTemp " class="imageContainer">
<img ng-src="/api/comments/{{sketchViewerSketch.commentID}}/sketch/{{sketchViewerSketch.id}}"
inv-console-sketch-viewer-image
ng-style="{ width: screen.width * screen.displayScale + 'px',
height: screen.height * screen.displayScale + 'px'
}"/>
</div>
<!-- Temporary sketches here -->
<div ng-if=" sketchViewerSketchIsTemp " class="imageContainer">
<img ng-src="{{ screen.imageUrl }}"
ng-style="{ width: screen.width * screen.displayScale + 'px',
height: screen.height * screen.displayScale + 'px'
}" />
<div class="whiteOverlay" ng-style="{ opacity : sketchViewerSketch.opacity }"></div>
<div class="tempSketchOverlay" ng-bind-html=" sketchViewerSketch.svg ">
</div>
</div>
</div>
</div>
</div></script><script type="text/ng-template" id="/assets/apps/share/views/directives/share-sketch-builder.htm"><div id="shareSketchBuilder">
<div id="builderWindow">
<div id="sketchToolbar">
<div class="whiteboard_tools">
<a ng-click="setWhiteboardOpacity(0, 'none')" id="whiteboard_none" class="whiteboard_tool none overlay" ng-class="{ active: whiteboardSelected == 'none'}"><span>Transparent</span></a>
<a ng-click="setWhiteboardOpacity(.7, 'half')" id="whiteboard_half" class="whiteboard_tool half overlay" ng-class="{ active: whiteboardSelected == 'half'}"><span>50%</span></a>
<a ng-click="setWhiteboardOpacity(1, 'full')" id="whiteboard_full" class="whiteboard_tool full overlay" ng-class="{ active: whiteboardSelected == 'full'}"><span>100%</span></a>
</div> <!-- whiteboard_tools -->
<div class="tools">
<a id="pencil" class="sketch_tool pencil">
<i class="tool_icon tool_pencil"></i>
</a>
<a id="rect" class="sketch_tool square">
<i class="tool_icon tool_square"></i>
</a>
<a id="circle" class="sketch_tool circle">
<i class="tool_icon tool_circle"></i>
</a>
<a id="line" class="sketch_tool line">
<i class="tool_icon tool_line"></i>
</a>
<!--
<a id="arrow" class="sketch_tool arrow">
<i class="tool_icon tool_arrow"></i>
</a>
-->
<a id="text" class="sketch_tool text">
<i class="tool_icon tool_text"></i>
</a>
<a id="move" class="sketch_tool move">
<i class="tool_icon tool_move"></i>
</a>
<div class="actions_toolbar">
<a id="undo" rel="tooltip" data-placement="bottom" title="Undo action" class="sketch_action undo inactive">
<i class="tool_icon tool_undo"></i>
</a>
<a id="redo" rel="tooltip" data-placement="bottom" title="Redo action" class="sketch_action redo inactive">
<i class="tool_icon tool_redo"></i>
</a>
<a id="delete" rel="tooltip" data-placement="bottom" title="Remove element" class="sketch_action delete inactive">
<i class="tool_icon tool_delete"></i>
</a>
</div>
</div>
<div class="sketch_btns">
<a ng-click=" hideSketchBuilder() " class="btn cancel">Cancel</a>
<a ng-click=" saveSketch() " class="btn save">I'm Done</a>
</div>
</div>
<div class="scroll-wrap">
<div class="sketchImage_wrapper">
<img
ng-src="{{ screen.imageUrl }}"
ng-style="{ width: screen.width * screen.displayScale + 'px',
height: screen.height * screen.displayScale + 'px'}"
class="sketch_image"
/>
</div>
<div id="whiteboard_overlay" ng-class="whiteboardSelected"></div>
</div> <!-- scroll-wrap -->
</div> <!-- end builderWindow -->
</div>
</script><script type="text/ng-template" id="/assets/apps/share/views/directives/toggle.htm">
<div class="m-toggle off">
<!-- BEGIN: Labels Track. -->
<div class="toggle-labels-track">
<div class="toggle-labels">
<div class="toggle-label on">
<span class="text">On</span>
</div>
<div class="toggle-label off">
<span class="text">Off</span>
</div>
</div>
</div>
<!-- END: Labels Track. -->
<!-- BEGIN: Thumb Track. -->
<div class="toggle-thumb-track">
<a href="" class="toggle-thumb">
<span class="toggle-end">
<br />
</span>
</a>
</div>
<!-- END: Thumb Track. -->
</div></script><script type="text/ng-template" id="/assets/apps/share/views/toolbar/toolbar.htm">
<div
ng-controller="toolbar.ToolbarController"
ng-show="( includeBrowseTool || includeCommentsTool )"
ng-mouseenter="updateIsUserOverToolbar( true )"
ng-mouseleave="updateIsUserOverToolbar( false )"
ng-hide="share.isEmbed"
ng-class="{ 'tour-is-running': isShareTourRunning }"
class="m-toolbar">
<!-- iPhone projects -->
<div
id="shareSMS"
inv-fade-show="isShowingSmsForm"
ng-if=" deviceTemplate.deviceType == 'phone' && !! shareUrl "
ng-class="{
'no-comments': ! includeCommentsTool,
'no-browse': ! includeBrowseTool
}">
<div class="smsForm" inv-fade-show="isShowingSmsForm" duration="slow" >
<a ng-click="toggleSmsShareForm()" class="closeButton"><img src="assets/apps/share/img/close4.png" alt="Close" /></a>
<h2>Install "{{ project.name }}" on your phone</h2>
<p>Visit <a ng-href="{{ shareUrl }}">{{shareUrl}}</a> on your phone or SMS the link to your number:</p>
<input inv-i8n-telephone
type="text"
class="phoneNumber"
country-code="share.countryCode"
ng-class="{ messageSent: sms.messageSent }"
ui-keypress="{13:'sendShareSms()'}"
name="phoneNumber"
placeholder="Enter mobile number"
ng-model="sms.phoneNumber">
<button ng-click="sendShareSms()">
Send
</button>
<div class="message">
{{sms.message}}
</div>
</div>
</div>
<!-- BEGIN: Toolbar. -->
<div
inv-toolbar
class="toolbar"
ng-class="{
active: isActive,
'highlight-tour': !hasSeenTour
}">
<!-- helper -->
<div
class="begin-share-tour"
ng-show=" false "
>
<!-- bouncy tooltip -->
<div
class="comment-tip-wrapper"
ng-show="shouldShowBounceToolTip()">
<span
inv-bouncy-tooltip
msg="Learn how to explore this design"
callback="hasSeenCommentTooltip()"></span>
</div> <!-- comment-tip-wrapper -->
<div class="helper" ng-class="{'hasSeenCommentsTooltip': hasSeenCommentsTooltip}" ng-click="showShareTour()">?</div>
</div> <!-- begin-share-tour -->
<!-- AQUA-421 comment cta tooltip -->
<div
class="comments-cta-tooltip"
ng-class="{ transition: commentToolTipVisible }"
ng-if="includeCommentsTool">
<div class="popover top comments-tip">
<div class="arrow"></div>
<div class="popover-content">
<i ng-click="closeCommentTooltipExperiment()" class="comments-tooltip-close"></i>Turn on comment mode to collaborate on this prototype
</div>
</div>
</div> <!-- comment cta tooltip -->
<div class="tools">
<div ng-if=" deviceTemplate.deviceType == 'phone' && !! shareUrl " class="tool share-sms-tool">
<a ng-click="toggleSmsShareForm()"><span class="toolbar-menu-device"></span></a>
</div>
<div
ng-show="includeBrowseTool"
ng-class="{ active: tourSubView == 'thumbnails' }"
class="tool browse-toggle-tool">
<a ng-click="toggleBrowse()" ng-class="{ on: isBrowseOpen }"><span class="toolbar-menu-sprite"></span></a>
</div>
<div
ng-show="includeCommentsTool"
ng-class="{
active: tourSubView == 'comments',
'no-browse': !includeBrowseTool && ( deviceTemplate.deviceType != 'phone' )
}"
class="tool comments-toggle-tool">
<div class="clickable"></div>
<span ng-if="newCommentLayout" class="description">
<i ng-if="!unreadCommentCount" class="comment-experiment-old"></i><i ng-if="unreadCommentCount" class="comment-experiment-new"></i> {{ commentCount }} Comments
</span>
<span ng-if="!newCommentLayout" class="comments" ng-class="{ new: unreadCommentCount, old: ( commentCount && ! unreadCommentCount ) }">
<span class="unread">{{ unreadCommentCount }}</span>
<span class="total">{{ commentCount }}</span>
</span>
<span ng-if="!newCommentLayout" class="description">
Comments
</span>
<div ng-model="isShowingComments" inv-toggle></div>
</div>
</div>
</div>
<!-- END: Toolbar. -->
</div>
</script><script type="text/ng-template" id="/assets/apps/share/views/browse/thumbnails.htm">
<div class="thumbnail-list" ng-class="{ 'without-comments': excludeComments }">
<div ng-repeat="displayItem in displayObjects"
class="{{displayItem.type}}"
ng-class="{ 'invisible-group': displayItem.type == 'divider' && displayItem.sort == 0}" >
<div ng-if=" shouldDividerDisplay(displayItem) " class="divider">
<p class="dividerLabel">
<span class="title">{{ displayItem.label }}</span>
<span class="count">{{ displayItem.screenCount }}</span>
</p>
</div>
<a ng-if="displayItem.type == 'screenObj' "
ng-click="applyScreenNavigation( displayItem )"
class="item"
ng-class="{ selected: ( displayItem == selectedScreen ) }">
<span class="thumbnail-viewport " style="background: #{{displayItem.backgroundColor}}">
<img ng-src="{{ displayItem.thumbnailUrl }}" />
</span>
<span class="name">
{{ displayItem.name }}
</span>
<span class="hasComments" ng-if=" displayItem.unreadCommentCount ">•</span>
</a>
</div>
</div>
</script><script type="text/ng-template" id="/assets/apps/share/views/browse/list.htm">
<div class="name-list" ng-class="{ 'without-comments': excludeComments }">
<!-- BEGIN: Header Row. -->
<div class="header-row">
<span class="col name-col">
<a ng-click class="name">
Name
</a>
</span>
<span class="col comments-col">
<a ng-click class="comments">
Comments
</a>
</span>
<span class="col version-col">
<a ng-click class="version">
Version
</a>
</span>
<span class="col updated-at-col">
<a ng-click class="updated-at">
Last Updated
</a>
</span>
<span class="col updated-by-col">
<a ng-click class="updated-by">
Updated By
</a>
</span>
</div>
<!-- END: Header Row. -->
<!-- BEGIN: Data Rows. -->
<div ng-repeat="displayItem in displayObjects | filter:search" class="data-row">
<div ng-if=" displayItem.type == 'divider' " class="divider">
<div class="line">
<span class="dividerLabel">{{displayItem.label}}</span>
</div>
</div>
<a ng-if="displayItem.type == 'screenObj' "
ng-click="applyScreenNavigation( displayItem )"
class="item"
ng-class="{ selected: ( displayItem == selectedScreen ) }">
<span class="col name-col">
<span class="name">
{{ displayItem.name }}
</span>
</span>
<span class="col comments-col">
<span class="comments" ng-class="{ new: displayItem.unreadCommentCount, old: ( displayItem.commentCount && ! displayItem.unreadCommentCount ) }">
<span class="unread">{{ displayItem.unreadCommentCount }}</span>
<span class="total">{{ displayItem.commentCount }}</span>
</span>
</span>
<span class="col version-col">
<span class="version">
{{ displayItem.imageVersion }}
</span>
</span>
<span class="col updated-at-col">
<span class="updated-at">
{{ displayItem.updatedAtDateLabel }}
</span>
</span>
<span class="col updated-by-col">
<span class="updated-by">
{{ displayItem.updatedByUserName }}
</span>
</span>
</a>
</div>
<!-- END: Data Rows. -->
</div>
</script><script type="text/ng-template" id="/assets/apps/share/views/browse/browse.htm">
<div
ng-controller="browse.BrowseController"
inv-browse-key-combos
class="m-browse"
ng-class="{
mobile: project.isMobile,
phone: deviceTemplate.deviceType == 'phone',
tablet: isTabletPortrait
} ">
<!-- BEGIN: Header. -->
<div class="header">
<span ng-if=" project.isMobile ">
<img ng-if=" !! appIcon.imageUrl " class="appIcon" ng-src="{{ appIcon.imageUrl }}" alt="{{ project.name }}">
<img ng-if=" ! appIcon.imageUrl " class="appIcon" ng-src="assets/apps/share/img/icon.png">
</span>
<h2>
{{ project.name }}
</h2>
<a class="btnClose" href="javascript:;" ng-click=" toggleBrowse() ">x</a>
</div>
<!-- END: Header. -->
<!-- BEGIN: Screens. -->
<div class="screens">
<div ng-include=" '/assets/apps/share/views/browse/thumbnails.htm' "></div>
</div>
<!-- END: Screens. -->
</div>
</script><script type="text/ng-template" id="/assets/apps/share/views/presentations/slides.htm"><div ng-switch on="subview">
<div ng-switch-when="comments">
<div
id="comments_bar"
ng-controller="toolbar.ToolbarController"
ng-hide="isShowingSketchBuilder">
<h2>Click anywhere on the image to leave a comment</h2>
<p class="close"><a ng-click="switchToPreview()">Close</a></p>
</div> <!-- share_bar -->
</div>
</div>
<!-- desktop projects -->
<div
ng-if=" !project.isMobile || subview == 'comments' "
inv-screens
ng-controller="screens.ScreensController"
class="m-screens desktop"
ng-style="bodyStyle"
ng-class="{
isScaledCommentMode: project.isMobile,
'comment-mode': subview == 'comments'
}">
<div
class="screen visible {{ screen.alignment }}"
ng-style="{
width: ( (screen.width * screen.displayScale) + 'px' ),
height: ( (screen.height * screen.displayScale) + 'px' )
}">
<img
ng-src="{{ getScreenUrl() }}"
ng-style="{
width: ( (screen.width * screen.displayScale) + 'px' ),
height: ( (screen.height * screen.displayScale) + 'px' )
}" />
</div>
</div>
<!-- mobile projects-->
<div
ng-if=" project.isMobile && subview == 'preview' "
class="m-screens" >
<div class="screen mobile visible {{ screen.alignment }}">
<img ng-src="{{ getScreenUrl() }}" />
</div> <!-- screen mobile visible -->
</div> <!-- m-screens -->
</script><script type="text/ng-template" id="/assets/apps/share/views/comments/comments.htm"><div
ng-controller="comments.CommentsController"
inv-comments-key-combos
class="m-comments"
ng-class="{ mobile: project.isMobile }">
<!-- Context. -->
<div ng-include=" '/assets/apps/share/views/comments/context.htm' "></div>
<!-- Catchup Toolbar. -->
<div ng-include=" '/assets/apps/share/views/comments/catchup-toolbar.htm' "></div>
<!-- Markers. -->
<div ng-include=" '/assets/apps/share/views/comments/markers.htm' "></div>
<!-- View controlled by switch to overlay everything -->
<div inv-share-sketch-builder
ng-if=" isShowingSketchBuilder " >
</div>
<!-- Sketch viewer modal-->
<div inv-share-sketch-viewer
ng-if=" isShowingSketchViewer ">
</div>
<div id="cursor-tooltip"
inv-comments-cursor-tooltip
ng-show="isHoveringViewport && !( isHoveringHotspot || isShowingConversationMenu)"
>
Click to leave a comment
</div>
</div></script><script type="text/ng-template" id="/assets/apps/share/views/comments/context.htm"><div class="clickToCommentCTA"
ng-show="clickToCommentCTAActive"
ng-click="dismissClickToCommentCTA($event)"
ng-class=" clickToCommentCTAActive ? 'animateInclickToCommentCTA':'' ">
<div class="clickToCommentCTAOverlay">
<div class="clickToCommentCTAClose"></div>
<div class="clickToCommentCTAButton unselectable" ng-class="clickToCommentCTAVariant" ng-style="{ 'margin-top': ( clickToCommentCTAMargin + 'px' )}">
Click anywhere to leave a comment on this screen
</div>
</div>
</div>
<!-- BEGIN: Context. -->
<div class="context">
<a ng-href="#/screens/{{ screenID }}">
<span>Comment Mode</span>
</a>
<!-- Borders. -->
<div class="border n"></div>
<div class="border e"></div>
<div class="border s"></div>
<div class="border w"></div>
</div>
<!-- END: Context. --></script><script type="text/ng-template" id="/assets/apps/share/views/comments/catchup-toolbar.htm"><div ng-controller="comments.CatchupToolbarController" inv-comments-catchup-toolbar-helper class="comments-catchup-toolbar">
<div class="markers-container" class="{ unread-comments: unreadConversations.length, no-unread-comments: !unreadConversations.length }">
<p ng-show="unreadConversations.length">
{{ unreadConversations.length }} unread
<span ng-pluralize count="unreadConversations.length" when="{ one: 'conversation', other: 'conversations' }"></span>:
</p>
<p ng-hide="unreadConversations.length">No unread comments on this page...</p>
<!-- unread markers -->
<div class="markers" ng-show="unreadConversations.length">
<a
ng-repeat="conversation in visibleUnreadConversations"
href="#/screens/{{ screenID }}/comments/{{ conversation.id }}"
class="marker"
ng-click="markCommentsAsRead( conversation )"
ng-class="{
complete: conversation.isComplete,
comment: ! conversation.isForDevelopment && ! conversation.isTourPoint && ! conversation.isPrivate,
'dev-note': conversation.isForDevelopment,
'tour-point': conversation.isTourPoint,
'private-comment': conversation.isPrivate && ! conversation.isForDevelopment,
read: ! conversation.isUnread
}">
<span ng-if="conversation.label != '' && conversation.label > 0">{{ conversation.label }}</span>
</a>
</div>
<div ng-show="hiddenUnreadConversations.length" class="overflow-count">
+ {{ hiddenUnreadConversations.length }} more
</div>
</div> <!-- markers-container -->
<!-- BEGIN: Filters. -->
<div class="filters">
<p>View:</p>
<div class="type-filter">
<div class="dropdown">
<a href="#" data-toggle="dropdown" class="dropdown-toggle">
<span class="text">{{ filters.type.label }} ({{ filters.type.count }})</span>
<span class="drop"></span>
</a>
<ul class="dropdown-menu">
<li ng-repeat="option in typeFilterOptions" ng-hide="option.isPrivate && !user.canViewPrivateComments">
<a ng-click="changeTypeFilter( option )">{{ option.label }} ({{ option.count }})</a>
</li>
</ul>
</div>
</div>
<div class="status-filter">
<label for="filterShowCompleted">
<input type="checkbox" id="filterShowCompleted" ng-model="filters.showCompleted.value" ng-change="changeShowCompletedFilter()" inv-uniform />
Show Resolved ({{ filters.showCompleted.count }})
</label>
</div>
</div>
<!-- END: Filters. -->
</div>
</script><script type="text/ng-template" id="/assets/apps/share/views/comments/form.htm"><form
ng-controller="comments.FormController"
inv-comments-form
class="conversation comment-thread-container mentions emoji-root"
ng-class="{ teaser: ( isShowingTeaser && !tempSketches.length ) }"
ng-style="{
left: ( conversation.x * screen.displayScale + 'px' ),
top: ( ( conversation.y * screen.displayScale ) + 9 + 'px' )
}"
ng-keydown="$event.which === 13 && handleKeyDown($event)"
>
<div class="emoji-placeholder"></div>
<div
ng-class="{
'comment-thread': true,
'comment': ! conversation.isForDevelopment && ! conversation.isTourPoint && ! conversation.isPrivate,
'dev-note': conversation.isForDevelopment,
'tour-point': conversation.isTourPoint,
'private-comment': conversation.isPrivate,
'signup-required': (isIdentifying || isAuthenticating) && signupRequiredForComment,
'authenticating': isAuthenticating,
'is-identifying': (isIdentifying || isAuthenticating) && !signupRequiredForComment,
'is-logging-in': isLoggingIn,
'lazy-signup': lazyPasswordToSignUpFlow && isSignup,
'lazy-signup-thanks': thanksForLazyPassword
}"
>
<header>
<span ng-hide=" conversation.id == 0 ">
<input
id="conversationIsComplete"
type="checkbox"
ng-model="conversation.isComplete"
ng-change="updateConversationStatus( conversation )"
ng-disabled="( conversation.id == 0 )"
inv-uniform
/>
<label
ng-show="! marker.isComplete"
for="commentIsComplete"
class="mark-label"
ng-class="{ disabled: marker.isSaved == false }"
>
Mark as resolved
</label>
<label
ng-show="marker.isComplete"
for="commentIsComplete"
class="complete mark-label"
ng-class="{ disabled: marker.isSaved == false }"
>
Marked resolved
</label>
</span>
<!-- conversationIsComplete -->
<div
class="dropdown type-dropdown"
ng-class="{ saved: !! conversation.id }"
ng-show="showInternalOptions">
<a data-toggle="dropdown" class="dropdown-toggle" ng-hide="!! conversation.id">
<span class="text comment" ng-show="!conversation.isForDevelopment && !conversation.isPrivate && !conversation.isTourPoint">
<span class="dot"></span>
<span>Leave a Comment</span>
</span>
<span class="text private-comment" ng-show="!conversation.isForDevelopment && conversation.isPrivate">
<span class="dot"></span>
<span>Private Comment</span>
</span>
<span class="text dev-note" ng-show="conversation.isForDevelopment">
<span class="dot"></span>
<span>Note</span>
</span>
<span class="text tour-point" ng-show="conversation.isTourPoint">
<span class="dot"></span>
<span>Tour Point</span>
</span>
<span class="drop" ng-hide=" !! conversation.id "></span>
</a>
<a data-toggle="dropdown" class="dropdown-toggle dots" ng-hide="! conversation.id">
<span class="small-dot"></span>
<span class="small-dot"></span>
<span class="small-dot"></span>
</a>
<ul class="dropdown-menu">
<li>
<a ng-click="setTypeAsComment()" class="comment">
<span class="dot"></span> Comment
</a>
</li>
<li ng-hide="!user.canViewPrivateComments">
<a ng-click="setTypeAsPrivateComment()" class="private-comment">
<span class="dot"></span> Private Comment
</a>
</li>
<li ng-hide="!user.canViewPrivateComments">
<a ng-click="setTypeAsDevNote()" class="dev-note">
<span class="dot"></span> Note
</a>
</li>
<li>
<a ng-click="setTypeAsTourPoint()" class="tour-point">
<span class="dot"></span> Tour Point
</a>
</li>
</ul>
</div>
<span
class="non-collaborator-label"
ng-show=" !showInternalOptions"
ng-class="{ saved: !! conversation.id }"
>
<span class="dot"></span> Leave a Comment
</span>
<button
class="close"
type="button"
ng-click="closeConversation()"
ng-hide="!! conversation.id ">
×
</button>
</header>
<section class="comment-content">
<!-- BEGIN: Comments. -->
<div
ng-repeat="comment in comments"
ng-init=" showDeleteCommentConfirmation = false ; "
class="comment-item comment"
ng-class="{
first: $first,
unread: comment.isUnread,
collapsed: comment.isCollapsed,
'first-collapsed': comment.isFirstCollapsed,
last: $last
}"
inv-fade-show="!comment.isCollapsed || ( comment.isCollapsed && comment.isFirstCollapsed )">
<!-- Special section for collapsed area -->
<div ng-if=" comment.isCollapsed " class="collapsed-comments">
<span ng-click="expandComments( )">View Previous Replies</span>
</div>
<!-- show new comment indicator -->
<div
ng-if=" $first && conversation.isTourPoint && comments.length > 1 "
class="new-hrule">
<span
ng-pluralize
count=" comments.length - 1 "
when="{
'0': '0 Replies',
'one': '1 Reply',
'other': '{} Replies'
}">
</span>
</div>
<div class="m-avatar" ng-class="{ 'system-avatar': comment.userHasSystemAvatar }">
<span class="rendering">{{ comment.userInitials }}</span>
<img ng-src="/avatars/{{ comment.userAvatarID }}" class="rendering" />
</div>
<div class="post-content post-emojis">
<h2 ng-hide="$first && conversation.isTourPoint">
<span class="name">{{ comment.userName }}</span>
<span class="created-at">{{ comment.dateLabel }}</span>
</h2>
<h2 ng-show="$first && conversation.isTourPoint && comment.isEditing">
<!-- we need to keep the spacing consistent for editing mode -->
</h2>
<div class="comment-item-options"
ng-show=" !comment.isEditing "
ng-if=" !comment.isPlaceholder "
ng-class="{'is-collapsed': comment.isCollapsed}">
<ul class="comment-item-options__tools">
<li class="view-history hidden">
<a
inv-history-overlay
overlay-image="{{comment.imageUrl}}"
overlay-marker-pos="{{getMarkerPos(conversation, screen.displayScale)}}"
overlay-screen-data="{{getScreenDisplayData(screen)}}"
ng-if="( ! comment.isEditing && ( comment.screenImageVersion != screen.imageVersion ) && comment.imageUrl )">
View History
</a>
</li>
<li
class="edit-comment hidden"
ng-show="canEdit && ( comment.isOwnedByUser || project.isOwnedByUser )"
>
<a ng-click="editComment( comment )">
Edit
</a>
</li>
<li
class="delete-comment hidden"
ng-show="canEdit && ( comment.isOwnedByUser || project.isOwnedByUser )"
>
<a ng-click="showDeleteConfirmation( comment, $first )">
Delete
</a>
</li>
</ul>
<a class="comment-item-options__thumbs-up"
ng-if=" !comment.isPlaceholder "
ng-show=" canLike "
ng-hide=" $first && conversation.isTourPoint "
ng-class="{ 'liked': comment.numberOfLikes, 'by-user': comment.hasUserLiked }"
ng-click="toggleLike( comment )"
inv-tooltip="{{ comment.likedByList }}">
<i class="icon thumbs up"></i>
{{comment.numberOfLikes}}
</a>
</div> <!-- post-options -->
<div class="post-comment"
ng-show="! comment.isEditing"
ng-class="{'is-owner': comment.isOwnedByUser || project.isOwnedByUser}"
ng-bind-html="comment.html"
>
</div>
<div ng-if="comment.isEditing" class="editing-mode">
<div
inv-comment
inv-cmd-enter="saveComment(comment)"
comment="comment.comment"
name="post-comment"
screen-id="screen.id"
class-string="{{ getClassesString('existing') }}"
tab-index="101"
has-emojis="true"
has-mentions="hasInitialMentions"
has-mention-shortcut="true"
has-who-is-notified="false"
></div>
</div>
<div
class="sketchList"
ng-show="comment.sketches.length > 0 && ( ! $first || ! conversation.isTourPoint )">
<div
ng-repeat="sketch in comment.sketches"
class="sketch">
<a
class="text"
ng-click=" startSketchViewer( sketch , false, conversation ) "
ng-class="{
editing: comment.isEditing
}">
<strong>{{ comment.userFirstName }}’s attached a sketch.</strong> View?
<span inv-tooltip="delete" class="delete" ng-show="comment.isEditing" ng-click=" deleteSketch( sketch.id )">x</span>
</a>
</div> <!-- sketch -->
</div> <!-- sketchList -->
<div class="post-buttons" ng-show="( comment.isEditing )">
<button
type="button"
class="save"
ng-show="comment.isEditing"
tabindex="102"
ng-click="saveComment(comment)">
Save
</button>
<button
type="button"
class="cancel"
ng-show="comment.isEditing"
tabindex="103"
ng-click="stopEditingComments( comment )">
Cancel
</button>
</div>
</div> <!-- post-content -->
<!-- Delete confirmation for single comment. -->
<div inv-fade-show="comment.isDeleting" class="delete-confirmation">
<p>Delete this comment?</p>
<div class="action">
<a ng-click="deleteComment( comment )" class="confirm">Yes, Delete</a>
<a ng-click="hideDeleteConfirmation( comment )" class="cancel">Cancel</a>
</div>
</div>
</div>
<!-- END: Comments. -->
</section>
<div class="comment-item post-new-comment">
<div
inv-comment-teaser
ng-show="isShowingTeaser"
is-shown="isShowingTeaser"
has-initial-mentions="hasInitialMentions"
ng-click="showNewCommentForm()"
screen-id="screen.id"
conversation="comments"
>