-
Notifications
You must be signed in to change notification settings - Fork 0
/
attachment-sitemap.xml
4879 lines (4878 loc) · 201 KB
/
attachment-sitemap.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<!-- This sitemap was dynamically generated on January 22, 2024 at 6:00 pm by All in One SEO v4.5.4 - the original SEO plugin for WordPress. -->
<?xml-stylesheet type="text/xsl" href="/default-sitemap.xsl?sitemap=attachment"?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml"
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1"
>
<url>
<loc><![CDATA[/2016/02/why-we-love-metrics-throughput-and-burnup-charts/f0285ceca71f7e7e338f864ca18bd8869b514027/]]></loc>
<lastmod><![CDATA[2023-01-10T18:09:03+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2016/02/f0285ceca71f7e7e338f864ca18bd8869b514027.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2016/02/why-we-love-metrics-throughput-and-burnup-charts/2bf010e470364b940be7223cbbaa6353b17c1727/]]></loc>
<lastmod><![CDATA[2023-01-10T18:09:02+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2016/02/2bf010e470364b940be7223cbbaa6353b17c1727.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2016/02/why-we-love-metrics-throughput-and-burnup-charts/d5447f4c1dec7f80d5ebad417e22018298934e5f/]]></loc>
<lastmod><![CDATA[2023-01-10T18:09:01+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2016/02/d5447f4c1dec7f80d5ebad417e22018298934e5f.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2016/02/why-we-love-metrics-throughput-and-burnup-charts/199de84644dc8d5f1b174befcd69d6cb1fc61c6e/]]></loc>
<lastmod><![CDATA[2023-01-10T18:08:18+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2016/02/199de84644dc8d5f1b174befcd69d6cb1fc61c6e.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2016/02/why-we-love-metrics-throughput-and-burnup-charts/6e793268c190628c034493ce4a76c15e6a911345/]]></loc>
<lastmod><![CDATA[2023-01-10T18:07:51+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2016/02/6e793268c190628c034493ce4a76c15e6a911345.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2020/01/elixir-what-about-tests/ben-kolde-h29h6a8j8qm-unsplash/]]></loc>
<lastmod><![CDATA[2020-01-02T16:22:29+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2020/01/ben-kolde-H29h6a8j8QM-unsplash.jpg]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/imagem_exemplo_aplicacao_okr_iniciativa/]]></loc>
<lastmod><![CDATA[2019-12-17T19:16:42+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/12/imagem_exemplo_aplicacao_okr_iniciativa.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/imagem_fluxo_cadencia_okr/]]></loc>
<lastmod><![CDATA[2019-12-17T19:16:38+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/12/imagem_fluxo_cadencia_okr.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/imagem_okr_canvas/]]></loc>
<lastmod><![CDATA[2019-12-17T19:16:33+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/12/imagem_okr_canvas.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/imagem_pensamento_estrategico/]]></loc>
<lastmod><![CDATA[2019-12-17T19:16:23+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/12/imagem_pensamento_estrategico.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/10/monte-carlo-in-practice-finding-the-ideal-iteration-value/tp_table/]]></loc>
<lastmod><![CDATA[2019-11-18T17:17:26+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/11/tp_table.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/11/relation-between-story-points-and-development-time-lead-time/image-1/]]></loc>
<lastmod><![CDATA[2019-11-13T14:36:23+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/11/image-1.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/agile-banner-template-1/]]></loc>
<lastmod><![CDATA[2019-10-31T19:36:41+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/10/Agile-Banner-Template-1.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/extraindo-previsibilidade-a-partir-do-story-mapping-2/]]></loc>
<lastmod><![CDATA[2019-10-30T15:21:51+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/10/extraindo-previsibilidade-a-partir-do-story-mapping.jpg]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/indices-para-jsonb-no-postgres-2/]]></loc>
<lastmod><![CDATA[2019-10-28T14:55:47+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/10/indices-para-jsonb-no-postgres.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/monte-carlo-na-pratica-encontrando-o-valor-de-iteracoes-ideal-2/]]></loc>
<lastmod><![CDATA[2019-10-25T20:00:48+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/10/monte-carlo-na-pratica-encontrando-o-valor-de-iteracoes-ideal.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/monte-carlo-in-practice-finding-the-ideal-iteration-value-2/]]></loc>
<lastmod><![CDATA[2019-10-25T19:15:02+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/10/monte-carlo-in-practice-finding-the-ideal-iteration-value.gif]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/ewerton/]]></loc>
<lastmod><![CDATA[2019-10-21T23:03:57+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/08/Ewerton-e1571699031417.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/relacao-de-story-points-com-o-tempo-de-desenvolvimento-lead-time-2/]]></loc>
<lastmod><![CDATA[2019-10-17T17:48:05+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/10/relacao-de-story-points-com-o-tempo-de-desenvolvimento-lead-time.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/09/relacao-de-story-points-com-o-tempo-de-desenvolvimento-lead-time/grafico-lt-13-sp/]]></loc>
<lastmod><![CDATA[2019-09-30T19:36:21+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/grafico-lt-13-sp.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/09/relacao-de-story-points-com-o-tempo-de-desenvolvimento-lead-time/grafico-lt-8-sp/]]></loc>
<lastmod><![CDATA[2019-09-30T19:35:54+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/grafico-lt-8-sp.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/09/relacao-de-story-points-com-o-tempo-de-desenvolvimento-lead-time/grafico-lt-5-sp/]]></loc>
<lastmod><![CDATA[2019-09-30T19:35:31+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/grafico-lt-5-sp.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/09/relacao-de-story-points-com-o-tempo-de-desenvolvimento-lead-time/grafico-lt-3-sp/]]></loc>
<lastmod><![CDATA[2019-09-30T19:35:04+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/grafico-lt-3-sp.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/09/relacao-de-story-points-com-o-tempo-de-desenvolvimento-lead-time/grafico-lt-2-sp/]]></loc>
<lastmod><![CDATA[2019-09-30T19:34:45+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/grafico-lt-2-sp.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/09/relacao-de-story-points-com-o-tempo-de-desenvolvimento-lead-time/grafico-lt-1-sp/]]></loc>
<lastmod><![CDATA[2019-09-30T19:34:07+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/grafico-lt-1-sp.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/09/relacao-de-story-points-com-o-tempo-de-desenvolvimento-lead-time/grafico-lt-all/]]></loc>
<lastmod><![CDATA[2019-09-30T19:33:38+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/grafico-lt-all.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/09/relacao-de-story-points-com-o-tempo-de-desenvolvimento-lead-time/matriz-complexidade-incerteza/]]></loc>
<lastmod><![CDATA[2019-09-30T19:32:28+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/matriz-complexidade-incerteza.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/contagil/]]></loc>
<lastmod><![CDATA[2019-09-25T14:33:22+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/contagil.jpg]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/linkedin-contagil-talks/]]></loc>
<lastmod><![CDATA[2019-09-11T21:06:46+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/Linkedin-Contagil-Talks.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/09/desenvolvendo-um-olhar-de-produto-na-organizacao/product_management_product_marketing_product_development/]]></loc>
<lastmod><![CDATA[2019-09-09T19:02:13+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/product_management_product_marketing_product_development.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/09/desenvolvendo-um-olhar-de-produto-na-organizacao/visao_sistemica_jornada/]]></loc>
<lastmod><![CDATA[2019-09-09T19:01:32+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/visao_sistemica_jornada.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/09/desenvolvendo-um-olhar-de-produto-na-organizacao/dominios_transformacao_digital/]]></loc>
<lastmod><![CDATA[2019-09-09T19:00:36+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/dominios_transformacao_digital.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/plataformatec_realitychecktool-fullguide_image16/]]></loc>
<lastmod><![CDATA[2019-09-05T19:18:55+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/Plataformatec_RealityCheckTool-FullGuide_Image16.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/plataformatec_realitychecktool-fullguide_image14/]]></loc>
<lastmod><![CDATA[2019-09-05T19:18:54+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/Plataformatec_RealityCheckTool-FullGuide_Image14.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/plataformatec_realitychecktool-fullguide_image15/]]></loc>
<lastmod><![CDATA[2019-09-05T19:18:54+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/Plataformatec_RealityCheckTool-FullGuide_Image15.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/plataformatec_realitychecktool-fullguide_image12/]]></loc>
<lastmod><![CDATA[2019-09-05T19:18:49+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/Plataformatec_RealityCheckTool-FullGuide_Image12.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/plataformatec_realitychecktool-fullguide_image13/]]></loc>
<lastmod><![CDATA[2019-09-05T19:18:49+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/Plataformatec_RealityCheckTool-FullGuide_Image13.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/plataformatec_realitychecktool-fullguide_image11/]]></loc>
<lastmod><![CDATA[2019-09-05T19:18:48+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/Plataformatec_RealityCheckTool-FullGuide_Image11.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/plataformatec_realitychecktool-fullguide_image10/]]></loc>
<lastmod><![CDATA[2019-09-05T19:18:47+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/Plataformatec_RealityCheckTool-FullGuide_Image10.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/plataformatec_realitychecktool-fullguide_image09/]]></loc>
<lastmod><![CDATA[2019-09-05T19:18:46+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/Plataformatec_RealityCheckTool-FullGuide_Image09.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/plataformatec_realitychecktool-fullguide_image07/]]></loc>
<lastmod><![CDATA[2019-09-05T19:18:45+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/Plataformatec_RealityCheckTool-FullGuide_Image07.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/plataformatec_realitychecktool-fullguide_image08/]]></loc>
<lastmod><![CDATA[2019-09-05T19:18:45+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/Plataformatec_RealityCheckTool-FullGuide_Image08.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/plataformatec_realitychecktool-fullguide_image06/]]></loc>
<lastmod><![CDATA[2019-09-05T19:18:44+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/Plataformatec_RealityCheckTool-FullGuide_Image06.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/plataformatec_realitychecktool-fullguide_image05/]]></loc>
<lastmod><![CDATA[2019-09-05T19:18:43+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/Plataformatec_RealityCheckTool-FullGuide_Image05.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/plataformatec_realitychecktool-fullguide_image03/]]></loc>
<lastmod><![CDATA[2019-09-05T19:18:42+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/Plataformatec_RealityCheckTool-FullGuide_Image03.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/plataformatec_realitychecktool-fullguide_image04/]]></loc>
<lastmod><![CDATA[2019-09-05T19:18:42+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/Plataformatec_RealityCheckTool-FullGuide_Image04.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/plataformatec_realitychecktool-fullguide_image02/]]></loc>
<lastmod><![CDATA[2019-09-05T19:18:41+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/Plataformatec_RealityCheckTool-FullGuide_Image02.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/plataformatec_realitychecktool-fullguide_image01-2/]]></loc>
<lastmod><![CDATA[2019-09-05T19:18:40+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/09/Plataformatec_RealityCheckTool-FullGuide_Image01-1.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/banner-quero-assinar-contagil/]]></loc>
<lastmod><![CDATA[2019-08-22T18:24:11+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/08/Banner-Quero-Assinar-Contagil.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/diego-rossini-vieira/]]></loc>
<lastmod><![CDATA[2019-08-21T18:36:02+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/08/Diego-Rossini-Vieira-e1566412542683.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/bianca-pereira-1/]]></loc>
<lastmod><![CDATA[2019-08-21T18:27:16+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/08/Bianca-Pereira-1.jpg]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/08/mapeando-stakeholders-em-projetos-digitais/tabela-de-stakeholders-1/]]></loc>
<lastmod><![CDATA[2019-08-20T18:09:44+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/08/Tabela-de-Stakeholders-1.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/08/mapeando-stakeholders-em-projetos-digitais/matriz-de-influenciaxinteresse/]]></loc>
<lastmod><![CDATA[2019-08-20T18:08:23+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/08/Matriz-de-InfluenciaXInteresse.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/bruno-bentzen/]]></loc>
<lastmod><![CDATA[2019-08-15T20:33:36+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/08/Bruno-Bentzen.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/logo-ptec-redondo/]]></loc>
<lastmod><![CDATA[2019-08-01T20:50:50+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/08/logo-ptec-redondo.jpg]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/lucas-oliva/]]></loc>
<lastmod><![CDATA[2019-08-01T13:53:30+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/08/lucas-oliva-e1564667640914.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/07/estilos-de-lideranca-para-gestao-agil/68747470733a2f2f692e696d6775722e636f6d2f615276485471672e706e67/]]></loc>
<lastmod><![CDATA[2019-07-31T18:35:14+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/07/68747470733a2f2f692e696d6775722e636f6d2f615276485471672e706e67.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/07/burndown-para-scrumban-uma-nova-ideia-para-acompanhar-suas-sprints/plataformatec-burndownforscrumban-withproportions-going-1/]]></loc>
<lastmod><![CDATA[2019-07-01T14:06:21+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/07/Plataformatec-BurndownForScrumban-WithProportions-Going-1.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/07/burndown-para-scrumban-uma-nova-ideia-para-acompanhar-suas-sprints/plataformatec-burndownforscrumban-withandwithoutproportions/]]></loc>
<lastmod><![CDATA[2019-07-01T14:04:38+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/07/Plataformatec-BurndownForScrumban-WithAndWithoutProportions.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/07/burndown-para-scrumban-uma-nova-ideia-para-acompanhar-suas-sprints/plataformatec-burndownforscrumban-withproportions/]]></loc>
<lastmod><![CDATA[2019-07-01T14:02:40+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/07/Plataformatec-BurndownForScrumban-WithProportions.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/07/burndown-para-scrumban-uma-nova-ideia-para-acompanhar-suas-sprints/plataformatec-burndownforscrumban-withoutproportions/]]></loc>
<lastmod><![CDATA[2019-07-01T13:58:35+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/07/Plataformatec-BurndownForScrumban-WithoutProportions.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/07/burndown-para-scrumban-uma-nova-ideia-para-acompanhar-suas-sprints/plataformatec-classicburndown/]]></loc>
<lastmod><![CDATA[2019-07-01T13:55:58+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/07/Plataformatec-ClassicBurndown.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/06/utilizando-o-team-canvas-para-a-formacao-de-times/68747470733a2f2f692e696d6775722e636f6d2f71435130544b4c2e6a7067/]]></loc>
<lastmod><![CDATA[2019-06-25T18:03:15+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/06/68747470733a2f2f692e696d6775722e636f6d2f71435130544b4c2e6a7067.jpg]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/06/abandonei-um-item-de-trabalho-do-meu-kanban-e-agora/upstream_kanban/]]></loc>
<lastmod><![CDATA[2019-06-24T17:01:48+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/06/upstream_kanban.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/06/abandonei-um-item-de-trabalho-do-meu-kanban-e-agora/abandonos_por_etapa/]]></loc>
<lastmod><![CDATA[2019-06-24T16:52:21+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/06/abandonos_por_etapa.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/06/abandonei-um-item-de-trabalho-do-meu-kanban-e-agora/entregas_x_abandonos/]]></loc>
<lastmod><![CDATA[2019-06-24T16:51:17+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/06/entregas_x_abandonos.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/06/abandonei-um-item-de-trabalho-do-meu-kanban-e-agora/quadro/]]></loc>
<lastmod><![CDATA[2019-06-24T16:49:02+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/06/quadro.jpeg]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/06/o-perigo-de-analisar-metricas-sem-contexto/68747470733a2f2f692e696d6775722e636f6d2f396a4a457038492e706e67/]]></loc>
<lastmod><![CDATA[2019-06-10T17:47:06+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/06/68747470733a2f2f692e696d6775722e636f6d2f396a4a457038492e706e67.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/06/o-perigo-de-analisar-metricas-sem-contexto/68747470733a2f2f692e696d6775722e636f6d2f6f6c527a374b672e706e67/]]></loc>
<lastmod><![CDATA[2019-06-10T17:46:03+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/06/68747470733a2f2f692e696d6775722e636f6d2f6f6c527a374b672e706e67.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/06/o-perigo-de-analisar-metricas-sem-contexto/68747470733a2f2f692e696d6775722e636f6d2f394763765678412e706e67/]]></loc>
<lastmod><![CDATA[2019-06-10T17:37:44+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/06/68747470733a2f2f692e696d6775722e636f6d2f394763765678412e706e67.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/06/o-perigo-de-analisar-metricas-sem-contexto/68747470733a2f2f692e696d6775722e636f6d2f3658715254686d2e706e67/]]></loc>
<lastmod><![CDATA[2019-06-10T17:36:34+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/06/68747470733a2f2f692e696d6775722e636f6d2f3658715254686d2e706e67.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/05/updating-hex-pm-to-use-elixir-releases/banner-template-elixir/]]></loc>
<lastmod><![CDATA[2019-06-05T17:31:58+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/05/Banner-Template-Elixir.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/05/precisamos-dar-um-peso-maior-para-o-v-do-mvp/mvp-3/]]></loc>
<lastmod><![CDATA[2019-05-28T18:33:27+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/05/mvp-3.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/05/precisamos-dar-um-peso-maior-para-o-v-do-mvp/mvp-2/]]></loc>
<lastmod><![CDATA[2019-05-28T18:24:38+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/05/mvp-2.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/05/precisamos-dar-um-peso-maior-para-o-v-do-mvp/mvp-1/]]></loc>
<lastmod><![CDATA[2019-05-28T18:18:26+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/05/mvp-1.jpg]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/05/como-comecar-a-medir-seu-produto-digital-pode-piratear/68747470733a2f2f692e696d6775722e636f6d2f45524b6e6973762e6a7067/]]></loc>
<lastmod><![CDATA[2019-05-20T15:46:29+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/05/68747470733a2f2f692e696d6775722e636f6d2f45524b6e6973762e6a7067.jpg]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/04/ajudando-o-time-a-respeitar-limite-de-wip-com-um-truque-simples/68747470733a2f2f692e696d6775722e636f6d2f556d354b6c37692e706e67/]]></loc>
<lastmod><![CDATA[2019-04-24T13:51:16+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/04/68747470733a2f2f692e696d6775722e636f6d2f556d354b6c37692e706e67.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/04/ajudando-o-time-a-respeitar-limite-de-wip-com-um-truque-simples/68747470733a2f2f692e696d6775722e636f6d2f69616e343456592e706e67/]]></loc>
<lastmod><![CDATA[2019-04-24T13:50:16+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/04/68747470733a2f2f692e696d6775722e636f6d2f69616e343456592e706e67.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/04/ajudando-o-time-a-respeitar-limite-de-wip-com-um-truque-simples/68747470733a2f2f692e696d6775722e636f6d2f6b6b7577584c6a2e706e67/]]></loc>
<lastmod><![CDATA[2019-04-24T13:47:09+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/04/68747470733a2f2f692e696d6775722e636f6d2f6b6b7577584c6a2e706e67.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/04/ajudando-o-time-a-respeitar-limite-de-wip-com-um-truque-simples/68747470733a2f2f692e696d6775722e636f6d2f4c6a58767a547a2e706e67/]]></loc>
<lastmod><![CDATA[2019-04-24T13:46:24+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/04/68747470733a2f2f692e696d6775722e636f6d2f4c6a58767a547a2e706e67.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/04/ajudando-o-time-a-respeitar-limite-de-wip-com-um-truque-simples/68747470733a2f2f692e696d6775722e636f6d2f4d4b364c6d36772e706e67/]]></loc>
<lastmod><![CDATA[2019-04-24T13:45:03+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/04/68747470733a2f2f692e696d6775722e636f6d2f4d4b364c6d36772e706e67.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/maturidadeagil/]]></loc>
<lastmod><![CDATA[2019-04-15T17:27:33+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/04/maturidadeAgil.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/04/exdoc-v0-20-keyboard-shortcuts-autocompletion-full-text-search-and-more/ex_doc-0-20-3-2/]]></loc>
<lastmod><![CDATA[2019-04-04T14:33:52+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/04/ex_doc-0.20-3-1.gif]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/04/exdoc-v0-20-keyboard-shortcuts-autocompletion-full-text-search-and-more/ex_doc-0-20-2/]]></loc>
<lastmod><![CDATA[2019-04-04T14:33:51+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/04/ex_doc-0.20-2.gif]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/04/exdoc-v0-20-keyboard-shortcuts-autocompletion-full-text-search-and-more/ex_doc-0-20-1-2/]]></loc>
<lastmod><![CDATA[2019-04-04T14:33:51+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/04/ex_doc-0.20-1-1.gif]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/04/exdoc-v0-20-keyboard-shortcuts-autocompletion-full-text-search-and-more/ex_doc-0-20-1/]]></loc>
<lastmod><![CDATA[2019-04-04T14:33:25+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/04/ex_doc-0.20-1.gif]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/04/como-estruturar-os-processos-e-as-praticas-de-times-ageis/ptec-exemplo-generico-de-estrutura-de-um-time-agil/]]></loc>
<lastmod><![CDATA[2019-03-28T19:11:36+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/03/Ptec-exemplo-generico-de-estrutura-de-um-time-agil.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/03/chegando-no-kanban-completo-com-o-proto-kanban/quadro-bruno-2/]]></loc>
<lastmod><![CDATA[2019-03-19T18:20:41+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/03/Quadro-Bruno-2.jpg]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/03/chegando-no-kanban-completo-com-o-proto-kanban/quadro-bruno-1/]]></loc>
<lastmod><![CDATA[2019-03-19T18:18:48+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/03/Quadro-Bruno-1.jpg]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/03/5-dicas-essenciais-de-como-olhar-para-a-transformacao-digital-da-sua-empresa/matriz_experienciacliente_eficienciaoperacional/]]></loc>
<lastmod><![CDATA[2019-03-06T15:51:51+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/02/matriz_experienciacliente_eficienciaoperacional.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/03/5-dicas-essenciais-de-como-olhar-para-a-transformacao-digital-da-sua-empresa/dados_tecnologia_clientenocentro/]]></loc>
<lastmod><![CDATA[2019-03-06T15:51:19+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/02/dados_tecnologia_clientenocentro.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/03/5-dicas-essenciais-de-como-olhar-para-a-transformacao-digital-da-sua-empresa/pilares_transformacao_digital/]]></loc>
<lastmod><![CDATA[2019-03-06T15:50:37+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/02/pilares_transformacao_digital.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/02/evite-mover-itens-para-tras-em-um-quadro-kanban/quadro3/]]></loc>
<lastmod><![CDATA[2019-02-13T18:32:03+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/02/quadro3.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/02/evite-mover-itens-para-tras-em-um-quadro-kanban/falsopositivo/]]></loc>
<lastmod><![CDATA[2019-02-13T18:29:21+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/02/falsopositivo.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/02/evite-mover-itens-para-tras-em-um-quadro-kanban/quadro2/]]></loc>
<lastmod><![CDATA[2019-02-13T18:26:29+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/02/quadro2.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/02/evite-mover-itens-para-tras-em-um-quadro-kanban/imagem-1/]]></loc>
<lastmod><![CDATA[2019-02-13T18:25:22+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/02/Imagem-1.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/02/migrations-in-databases-with-large-amount-of-data/final_explain_analyze/]]></loc>
<lastmod><![CDATA[2019-02-11T15:55:31+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/02/final_explain_analyze.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/02/migrations-in-databases-with-large-amount-of-data/first_explain_analyze-3/]]></loc>
<lastmod><![CDATA[2019-02-11T15:52:11+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/02/first_explain_analyze-2.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/02/migrations-in-databases-with-large-amount-of-data/first_explain_analyze-2/]]></loc>
<lastmod><![CDATA[2019-02-11T15:50:17+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/02/first_explain_analyze-1.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/02/migrations-in-databases-with-large-amount-of-data/first_explain_analyze/]]></loc>
<lastmod><![CDATA[2019-02-11T15:48:57+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/02/first_explain_analyze.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/01/tipos-de-demanda-e-classes-de-servico-afinal-e-tudo-a-mesma-coisa/intangible-curve-2/]]></loc>
<lastmod><![CDATA[2019-01-29T16:52:46+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/01/intangible-curve.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/01/tipos-de-demanda-e-classes-de-servico-afinal-e-tudo-a-mesma-coisa/standard-curve-2/]]></loc>
<lastmod><![CDATA[2019-01-29T16:52:24+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/01/standard-curve.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/01/tipos-de-demanda-e-classes-de-servico-afinal-e-tudo-a-mesma-coisa/fixed-date-curve-2/]]></loc>
<lastmod><![CDATA[2019-01-29T16:52:06+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/01/fixed-date-curve.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/01/tipos-de-demanda-e-classes-de-servico-afinal-e-tudo-a-mesma-coisa/urgent-curve-2/]]></loc>
<lastmod><![CDATA[2019-01-29T16:51:16+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/01/urgent-curve.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/01/tipos-de-demanda-e-classes-de-servico-afinal-e-tudo-a-mesma-coisa/process/]]></loc>
<lastmod><![CDATA[2019-01-29T16:41:07+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/01/Process.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/01/lets-talk-about-story-mapping/theme_epic_task-1/]]></loc>
<lastmod><![CDATA[2019-01-08T19:05:14+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/01/theme_epic_task-1.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/01/lets-talk-about-story-mapping/theme_epic_task_720/]]></loc>
<lastmod><![CDATA[2019-01-08T19:03:08+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/01/theme_epic_task_720.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/01/lets-talk-about-story-mapping/goal_and_release_720-2/]]></loc>
<lastmod><![CDATA[2019-01-08T18:50:32+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/01/goal_and_release_720-1.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/01/lets-talk-about-story-mapping/goal_and_release_720/]]></loc>
<lastmod><![CDATA[2019-01-08T18:49:31+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/01/goal_and_release_720.png]]></image:loc>
</image:image>
</url>
<url>
<loc><![CDATA[/2019/01/lets-talk-about-story-mapping/workflow/]]></loc>
<lastmod><![CDATA[2019-01-08T18:48:42+00:00]]></lastmod>
<changefreq><![CDATA[weekly]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[/wp-content/uploads/2019/01/workflow.png]]></image:loc>
</image:image>
</url>
<url>