-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathartigos2018.json
2090 lines (2081 loc) · 101 KB
/
artigos2018.json
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
[
{
"autores": ["L. O. Aguiar", "E. Regis", "Patricia Tuzimoto", "Edivandro Girotto", "Ivan H. Bechtold", "H. Gallardo", "A. A. Vieira"],
"nome": "Investigation of thermal and luminescent properties in 4,7-diphenylethynyl-2,1,3-benzothiadiazole systems",
"publicador": "Liquid Crystals",
"versao": "45",
"paginas": "49-58",
"ano": 2018,
"link": "http://dx.doi.org/10.1080/02678292.2017.1293854"
},
{
"autores": ["Marli Ferreira", "Thamires S. Moreira", "Rodrigo Cristiano", "Hugo Gallardo", "Ahmed Bentaleb", "Pierre Dechambenoit", "Elizabeth A. Hillard", "Fabien Durola", "Harald R. Bock"],
"nome": "Isomeric Column-Forming Esters and Imides with Varying Curvatures of the Aromatic Plane",
"publicador": "Chemistry-A European Journal",
"versao": "24",
"paginas": "2214-2223",
"ano": 2018,
"link": "http://dx.doi.org/10.1002/chem.201705084"
},
{
"autores": ["Hugo Gallardo", "Hugo C. Braga", "Patricia Tuzimoto", "Adailton Bortoluzzi", "Cristian A. M. Salla", "Ivan H. Bechtold", "Jefferson S. Martins", "Cristiano Legnani", "Welber Gianini Quirino"],
"nome": "Synthesis, structure and OLED application of a new europium(III) complex: { tris-(thenoyltrifluoroacetonate)[1,2,5]selenadiazolo[3,4-f][1,10]phenanthroline}europium(III)",
"publicador": "Inorganica Chimica ACTA",
"versao": "473",
"paginas": "75-82",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.ica.2017.12.034"
},
{
"autores": ["Jaqueline Pazinato", "Otávio M. Cruz", "Karine P. Naidek", "Amanda R.a. Pires", "Eduard Westphal", "Hugo Gallardo", "Hálène Baubichon-Cortay", "Maria E. M. Rocha", "Glaucia R. Martinez", "Sheila M. B. Winnischofer", "Attilio di Pietro", "Herbert Winnischofer"],
"nome": "Cytotoxicity of η6-areneruthenium-based molecules to glioblastoma cells and their recognition by multidrug ABC transporters",
"publicador": "European Journal of Medicinal Chemistry",
"versao": "148",
"paginas": "165-177",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.ejmech.2018.02.026"
},
{
"autores": ["Lucas Talamini", "Nicole Zanato", "Eduardo Zapp", "Daniela Brondani", "Eduard Westphal", "Hugo Gallardo", "Iolanda C. Vieira"],
"nome": "Heparin-gold Nanoparticles and Liquid Crystal Applied in Label-free Electrochemical Immunosensor for Prostate-Specific Antigen",
"publicador": "Electroanalysis",
"versao": "30",
"paginas": "353-360",
"ano": 2018,
"link": "http://dx.doi.org/10.1002/elan.201700651"
},
{
"autores": ["S. Ovalle", "Eduard Westphal", "Hugo Gallardo"],
"nome": "Ionic liquid crystals with 1,2,3-triazole + tolane core and a pendant imidazolium unit: mesophases from one-to three-dimensional molecular organisation by the variation of alkoxy chains number and spacer length",
"publicador": "Liquid Crystals",
"versao": "45",
"paginas": "942-952",
"ano": 2018,
"link": "http://dx.doi.org/10.1080/02678292.2018.1441461"
},
{
"autores": ["Elias Regis", "Leonardo de O. Aguiar", "Patricia Tuzimoto", "Edivandro Girotto", "Tiago E. Frizon", "Alexandre G. D. Bó", "Eduardo Zapp", "Raphael Marra", "Hugo Gallardo", "André A. Vieira"],
"nome": "Effect of heteroatom exchange (S/Se) in the mesomorphism and physical properties of benzochalcogenodiazole-based liquid crystals",
"publicador": "Dyes and Pigments",
"versao": "157",
"paginas": "109-116",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.dyepig.2018.04.049"
},
{
"autores": ["G. G. Dalkiranis", "E. M. Therezio", "Gilmar Conte", "H Gallardo", "I. H. Bechtold", "A. Marletta"],
"nome": "Emission ellipsometry as a tool for luminescent liquid crystal phase transition identification",
"publicador": "Physical Review E",
"versao": "98",
"paginas": "-",
"ano": 2018,
"link": "http://dx.doi.org/10.1103/physreve.98.022702"
},
{
"autores": ["Edivandro Girotto", "Alessandra Pereira", "Caroline Arantes", "Marco Cremona", "Adailton J. Bortoluzzi", "Cristian A. M. Salla", "Ivan H. Bechtold", "Hugo Gallardo"],
"nome": "Efficient Terbium Complex Based on a Novel Pyrazolone Derivative Ligand Used in Solution-Processed OLEDs." ,
"publicador": "Journal of Luminescence",
"versao": "208",
"paginas": "57-62",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.jlumin.2018.12.027"
},
{
"autores": ["Breno A. Soares", "Caio L. Firme", "Rosane N. Castro", "Adailton J. Bortoluzzi", "Maria A. M. Maciel"],
"nome": "Stereoselective reduction of the bioactive 19-nor-clerodane trans-dehydrocrotonin by using sodium borohydride and cerium (III) chloride as a catalyst",
"publicador": "Journal of Molecular Structure",
"versao": "1154",
"paginas": "626-635",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.molstruc.2017.10.071"
},
{
"autores": ["Mushtaq Ahmad", "Zahida Perveen", "Adailton J. Bortoluzzi", "Shahid Hameed", "Muhammad R. Shah", "Muhammad Tariq", "Ghias U. Din", "Muhammad T. Jan", "Muhammad Siddique", "Muhammad Anwar"],
"nome": "Synthesis and characterization of novel iminobenzoates with terminal pyrazine moieties",
"publicador": "Chemistry Central Journal",
"versao": "12",
"paginas": "25",
"ano": 2018,
"link": "http://dx.doi.org/10.1186/s13065-018-0396-3"
},
{
"autores": ["Carlos E. A. de Melo", "Celso R. Nicoleti", "Marcos C. Rezende", "Adailton J. Bortoluzzi", "Renata da S. Heying", "Robson da S. Oliboni", "Giovanni F. Caramori", "Vanderlei G. Machado"],
"nome": "Reverse Solvatochromism of Imine Dyes Comprised of 5-Nitrofuran-2-yl or 5-Nitrothiophen-2-yl as Electron Acceptor and Phenolate as Electron Donor",
"publicador": "Chemistry-A European Journal",
"versao": "24",
"paginas": "9364-9376",
"ano": 2018,
"link": "http://dx.doi.org/10.1002/chem.201800613"
},
{
"autores": ["Luana D. Lopes", "Adailton J. Bortoluzzi", "Giacomo Prampolini", "Francisco P. Dos Santos", "Paolo R. Livotto", "Aloir A. Merlo"],
"nome": "Structural and morphological aspects of small 3,5-disubstituted isoxazoles",
"publicador": "Journal of Fluorine Chemistry",
"versao": "211",
"paginas": "24-36",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.jfluchem.2018.04.007"
},
{
"autores": ["Thaís A. Rossa", "Mariane Fantinel", "Adailton J. Bortoluzzi", "Marcus M. Sá"],
"nome": "Multicomponent Synthesis of Structurally Diverse Imidazoles Featuring Azirines, Amines and Aldehydes",
"publicador": "European Journal of Organic Chemistry",
"versao": "2018",
"paginas": "4171-4177",
"ano": 2018,
"link": "http://dx.doi.org/10.1002/ejoc.201800687"
},
{
"autores": ["Nilo Zanatta", "Laura Souza", "Josiane Santos", "Mateus Mittersteiner", "Valquiria Andrade", "Marcio Lobo", "Felipe Santos", "Adailton Bortoluzzi", "Helio Bonacorso", "Marcos Martins"],
"nome": "Synthetic Versatility of b-Alkoxyvinyl Trichloromethyl Ketones for Obtaining [1,2,4]Triazolo[1,5-a]pyrimidines",
"publicador": "Synthesis Stuttgart",
"versao": "50",
"paginas": "3686-3695",
"ano": 2018,
"link": "http://dx.doi.org/10.1055/s-0037-1610191"
},
{
"autores": ["Edivandro Girotto", "Alessandra Pereira", "Caroline Arantes", "Marco Cremona", "Adailton J. Bortoluzzi", "Cristian A. M. Salla", "Ivan H. Bechtold", "Hugo Gallardo"],
"nome": "Efficient Terbium Complex Based on a Novel Pyrazolone Derivative Ligand Used in Solution-Processed OLEDs",
"publicador": "Journal of Luminescence",
"versao": "208",
"paginas": "57-62",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.jlumin.2018.12.027"
},
{
"autores": ["Juliana B. Ramalho", "Aryele P. Izaguirry", "Melina B. Soares", "Cristiano C. Spiazzi", "Natasha F. Pavin", "Ricardo F. Affeldt", "Diogo S. Lüdtke", "Simone Pinton", "Francielli W. Santos", "Marina Prigol"],
"nome": "Selenofuranoside improves long-term memory deficits in rats after exposure to monosodium glutamate: Involvement of Na+, K+-ATPase activity",
"publicador": "Physiology & Behavior",
"versao": "184",
"paginas": "27-33",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.physbeh.2017.10.028"
},
{
"autores": ["Natalí P. Debia", "Maiara T. Saraiva", "Bruna S. Martins", "Roiney Beal", "Paulo F. B. Goncalves", "Fabiano S. Rodembusch", "Diego Alves", "Diogo S. Lüdtke"],
"nome": "Synthesis of Amino Acid-Derived 1,2,3-Triazoles: Development of a Nontrivial Fluorescent Sensor in Solution for the Enantioselective Sensing of a Carbohydrate and Bovine Serum Albumin Interaction",
"publicador": "Journal Of Organic Chemistry (online)",
"versao": "83",
"paginas": "1348-1357",
"ano": 2018,
"link": "http://dx.doi.org/10.1021/acs.joc.7b02852"
},
{
"autores": ["Glaci V. Moro", "Rafaela T. R. Almeida", "Amanda P. Napp", "Carla Porto", "Eduardo J. Pilau", "Diogo S. Lüdtke", "Angélica V. Moro", "Marilene H. Vainstein"],
"nome": "Identification and ultra-high-performance liquid chromatography coupled with high-resolution mass spectrometry characterization of biosurfactants, including a new surfactin, isolated from oil-contaminated environments",
"publicador": "Microbial Biotechnology (online)",
"versao": "11",
"paginas": "759-769",
"ano": 2018,
"link": "http://dx.doi.org/10.1111/1751-7915.13276"
},
{
"autores": ["Maria E. Contreira", "Diogo S. Lüdtke", "Angélica V. Moro"],
"nome": "Copper-catalyzed hydroboration of alkenyl oxindoles",
"publicador": "Tetrahedron Letters",
"versao": "59",
"paginas": "2784-2787",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.tetlet.2018.06.009"
},
{
"autores": ["L. L. Baldassari", "A. C. Mantovani", "S. Senoner", "B. Maryasin", "N. Maulide", "D. S. Lüdtke"],
"nome": "Redox-Neutral Synthesis of Selenoesters by Oxyarylation of Selenoalkynes under Mild Conditions",
"publicador": "Organic Letters",
"versao": "20",
"paginas": "5881-5885",
"ano": 2018,
"link": "http://dx.doi.org/10.1021/acs.orglett.8b02544"
},
{
"autores": ["J. P. B. Lopes", "L. Silva", "G. C. Franarin", "M. A. Ceschi", "D. S. Lüdtke", "R. F. Dantas", "C. M. C. Salles", "F. P. S. Junior", "M. R. Senger", "I. Guedes", "L. E. Dardenne"],
"nome": "Design, synthesis, cholinesterase inhibition and molecular modelling study of novel tacrine hybrids with carbohydrate derivatives",
"publicador": "Bioorganic & Medicinal Chemistry",
"versao": "26",
"paginas": "5566-5577",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.bmc.2018.10.003"
},
{
"autores": ["C. B. Silva", "E. S. Gil", "F. S. Santos", "A. M. Morás", "L. Steffens", "P. F. B. Gonçalves", "D. J. Moura", "D. S. Lüdtke", "F. S. Rodembusch"],
"nome": "Proton-Transfer-Based Azides with Fluorescence Off-On Response for Detection of Hydrogen Sulfide: An Experimental, Theoretical, and Bioimaging Study",
"publicador": "Journal Of Organic Chemistry",
"versao": "83",
"paginas": "15210-15224",
"ano": 2018,
"link": "http://dx.doi.org/10.1021/acs.joc.8b02489"
},
{
"autores": ["Arthur Alcantara", "Liniquer Fontana", "Vitor Rigolin", "Yuri Andrade", "Marcos Ribeiro", "Wdeson Barros", "Catia Ornelas", "Jackson D. Megiatto"],
"nome": "Olefin Cyclopropanation via Radical Carbene Transfer Reaction Promoted by Cobalt(II)/Porphyrinates: Active-Metal-Template Synthesis of [2]Rotaxanes",
"publicador": "Angewandte Chemie International Edition",
"versao": "57",
"paginas": "8979-8983",
"ano": 2018,
"link": "http://dx.doi.org/10.1002/anie.201803934"
},
{
"autores": ["Tiago B. Becher", "Monique C. P. Mendonça", "Marcelo A. de Farias", "Rodrigo V. Portugal", "Marcelo B. de Jesus", "Catia Ornelas"],
"nome": "Soft Nanohydrogels Based on Laponite Nanodiscs: A Versatile Drug Delivery Platform for Theranostics and Drug Cocktails",
"publicador": "ACS Applied Materials & Interfaces",
"versao": "10",
"paginas": "21891-21900",
"ano": 2018,
"link": "http://dx.doi.org/10.1021/acsami.8b06149"
},
{
"autores": ["Diego L. Bertuzzi", "Tiago B. Becher", "Naylil M. R. Capreti", "Julio Amorim", "Igor D. Jurberg", "Jackson D. Megiatto", "Catia Ornelas"],
"nome": "General Protocol to Obtain D-Glucosamine from Biomass Residues: Shrimp Shells, Cicada Sloughs and Cockroaches",
"publicador": "Global Challenges",
"versao": "2",
"paginas": "1800046",
"ano": 2018,
"link": "http://dx.doi.org/10.1002/gch2.201800046"
},
{
"autores": ["Didier Astruc", "Christophe Deraedt", "Rodrigue Djeda", "Catia Ornelas", "Xiang Liu", "Amalia Rapakousiou", "Jaime Ruiz", "Yanlan Wang", "Qi Wang"],
"nome": "Dentromers, a Family of Super Dendrimers with Specific Properties and Applications",
"publicador": "Molecules",
"versao": "23",
"paginas": "966",
"ano": 2018,
"link": "http://dx.doi.org/10.3390/molecules23040966"
},
{
"autores": ["Manazael Z. Jora", "Matheus da S. Barbosa", "José de A. Simoni", "Edvaldo Sabadini"],
"nome": "Solubility and molar enthalpy of solution of sucralose in H2O and D2O",
"publicador": "FLUID PHASE EQUILIBRIA",
"versao": "460",
"paginas": "45-50",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.fluid.2017.12.028"
},
{
"autores": ["Thalita A. Destefani", "Gabriel L. Onaga", "Marcelo A. de Farias", "Ana M. Percebom", "Edvaldo Sabadini"],
"nome": "Stabilization of spherical nanoparticles of iron(III) hydroxides in aqueous solution by wormlike micelles",
"publicador": "Journal of Colloid and Interface Science",
"versao": "513",
"paginas": "527-535",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.jcis.2017.11.035"
},
{
"autores": ["Karl J. Clinckspoor", "Laila L. Jorge", "Heinz Hoffmann", "Edvaldo Sabadini"],
"nome": "Rheologic and calorimetric study of alkyltrimethylammonium bromide-sodium salicylate wormlike micelles in aqueous binary systems",
"publicador": "Journal of Colloid and Interface Science",
"versao": "515",
"paginas": "198-207",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.jcis.2018.01.024"
},
{
"autores": ["Bruno G. Alvarenga", "Kalil Bernardino", "André Farias De Moura", "Edvaldo Sabadini"],
"nome": "Two different pathways for assembling bis-urea in benzene and toluene",
"publicador": "Journal of Molecular Modeling",
"versao": "24",
"paginas": "154",
"ano": 2018,
"link": "http://dx.doi.org/10.1007/s00894-018-3688-6"
},
{
"autores": ["Eduardo J. Creatto", "Francesca Ceccacci", "Giovanna Mancini", "Edvaldo Sabadini"],
"nome": "Effect of the hydrophobic tail of a chiral surfactant on the chirality of aggregates and on the formation of wormlike micelles",
"publicador": "LANGMUIR",
"versao": "34",
"paginas": "13288-13295",
"ano": 2018,
"link": "http://dx.doi.org/10.1021/acs.langmuir.8b02556"
},
{
"autores": ["Amanda de C. Faria", "Kelley C. B. Oliveira", "Amanda C. Monteiro", "Eduardo N. Dos Santos", "Elena V. Gusevskaya"],
"nome": "New scents using eco-friendly solvents: Oxo synthesis of aldehydes from caryophyllane sesquiterpenes",
"publicador": "Catalysis Today",
"versao": "344",
"paginas": "24-31",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.cattod.2018.10.024"
},
{
"autores": ["Cláudio J. A. Ribeiro", "Matheus M. Pereira", "Elena F. Kozhevnikova", "Ivan V. Kozhevnikov", "Elena V. Gusevskaya", "Kelly A. da S. Rocha"],
"nome": "Heteropoly acid catalysts in upgrading of biorenewables: synthesis of para-menthenic fragrance compounds from α-pinene oxide",
"publicador": "Catalysis Today",
"versao": "344",
"paginas": "166-170",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.cattod.2018.12.023"
},
{
"autores": ["Elene C. Pereira-Maia", "I. P. Souza", "K. J. R. C. Nunes", "A. A. Castro", "T. C. Ramalho", "F. Steffler", "H. A. Duarte", "A. Pacheli", "P. Chagas", "L. C. A. Oliveira"],
"nome": "Peroxoniobium inhibit leukemia cell growth",
"publicador": "RSC Advances",
"versao": "8",
"paginas": "10310-10313",
"ano": 2018,
"link": "https://doi.org/10.1039/C8RA00898A"
},
{
"autores": ["Alexandre B. de Carvalho", "Ívina P. de Souza", "Lídia M. de Andrade", "Ildefonso Binatti", "Emerson F. Pedroso", "Klaus Krambrock", "Willian X. C. Oliveira", "Elene C. Pereira-Maia", "Priscila P. Silva-Caldeira"],
"nome": "Novel copper(II) coordination polymer containing the drugs nalidixic acid and 8-hydroxyquinoline: Evaluation of the structural, magnetic, electronic, and antitumor properties",
"publicador": "Polyhedron",
"versao": "156",
"paginas": "312-319",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.poly.2018.09.046"
},
{
"autores": ["R. C. Costa", "E. D. Pereira", "F Machado", "E. F. O. Jesus", "F. G. Souza Jr."],
"nome": "Drug Micro-Carriers Based on Polymers and Their Sterilization",
"publicador": "Chemistry & Chemical Technology",
"versao": "12",
"paginas": "473-487",
"ano": 2018,
"link": "http://dx.doi.org/10.23939/chcht12.04.473"
},
{
"autores": ["G. V. S. Dutra", "W. S. Neto", "J. P. S. Dutra", "F. Machado"],
"nome": "Implantable medical devices and tissue engineering: An overview of manufacturing processes and the use of polymeric matrices for manufacturing and coating their surfaces",
"publicador": "Current Medicinal Chemistry",
"versao": "27",
"paginas": "1580-1599",
"ano": 2018,
"link": "http://dx.doi.org/10.2174/0929867325666180914110119"
},
{
"autores": ["Rochélia S. S. Cunha", "Joseane D. Mota", "Mariaugusta F. Mota", "Meiry G. F. Rodrigues", "Fabricio Machado"],
"nome": "Preparation and Characterization of Tubular Composite Membranes and their Application in Water Flow Measurements",
"publicador": "Materials Science Forum (online)",
"versao": "912",
"paginas": "263-268",
"ano": 2018,
"link": "http://dx.doi.org/10.4028/www.scientific.net/MSF.912.263"
},
{
"autores": ["Rômulo C. Alves", "Tamara Agner", "Thyago S. Rodrigues", "Fabricio Machado", "Brenno A. D. Neto", "Cristiane da Costa", "Pedro H. H. de Araújo", "Claudia Sayer"],
"nome": "Cationic miniemulsion polymerization of styrene mediated by imidazolium based ionic liquid",
"publicador": "European Polymer Journal",
"versao": "104",
"paginas": "51-56",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.eurpolymj.2018.04.035"
},
{
"autores": ["Larissa S. Laurentino", "Anderson M. M. S. Medeiros", "Fabricio Machado", "Cristiane Costa", "Pedro H. H. Araújo", "Claudia Sayer"],
"nome": "Synthesis of a biobased monomer derived from castor oil and copolymerization in aqueous medium",
"publicador": "Chemical Engineering Research & Design",
"versao": "137",
"paginas": "213-220",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.cherd.2018.07.014"
},
{
"autores": ["Amanda R. Primo", "Victor U. E. Paiva", "Anderson M. M. S. Medeiros", "Fabricio Machado"],
"nome": "Evaluation of Process Variables on the Suspension Polymerization of Vinyl Pivalate",
"publicador": "Macromolecular Symposia (online)",
"versao": "380",
"paginas": "1800134",
"ano": 2018,
"link": "http://dx.doi.org/10.1002/masy.201800134"
},
{
"autores": ["Juliete Neves", "Leonardo Valadares", "Fabricio Machado"],
"nome": "Tailoring Acrylated Soybean Oil-Containing Terpolymers through Emulsion Polymerization",
"publicador": "Colloids and Interfaces",
"versao": "2",
"paginas": "46",
"ano": 2018,
"link": "http://dx.doi.org/10.3390/colloids2040046"
},
{
"autores": ["Lilian R. Braga", "Leonardo M. Pérez", "Marina D. V. Soazo", "Fabricio Machado"],
"nome": "Evaluation of the antimicrobial, antioxidant and physicochemical properties of Poly(Vinyl chloride) films containing quercetin and silver nanoparticles",
"publicador": "LWT-Food Science and Technology",
"versao": "101",
"paginas": "491-498",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.lwt.2018.11.082"
},
{
"autores": ["Vinicius M. B. Patrocinio", "Tamara Agner", "Gabriel V. S. Dutra", "Fabricio Machado", "Brenno A. D. Neto", "Pedro H. H. Araújo", "Claudia Sayer"],
"nome": "High Molecular Weight Polystyrene Obtained by Cationic Emulsion Polymerization Catalyzed by Imidazolium-Based Ionic Liquid",
"publicador": "Macromolecular Reaction Engineering",
"versao": "13",
"paginas": "1800061",
"ano": 2018,
"link": "http://dx.doi.org/10.1002/mren.201800061"
},
{
"autores": ["Anderson M. M. S. Medeiros", "Fabricio Machado", "Elodie Bourgeat'Lami", "Joel C. Rubim", "Timothy F. L. Mckenna"],
"nome": "Bio-Based Hybrid Magnetic Latex Particles Containing Encapsulated γ--Fe O by Miniemulsion Copolymerization of Soybean Oil-Acrylated Methyl Ester and Styrene",
"publicador": "Macromolecular Materials and Engineering",
"versao": "304",
"paginas": "1800449",
"ano": 2018,
"link": "http://dx.doi.org/10.1002/mame.201800449"
},
{
"autores": ["Vanessa P. da Silva", "Cassia C. F. Alves", "Mayker L. D. Miranda", "Lizandra C. Bretanha", "Maira P. Balleste", "Gustavo A. Micke", "Eduardo V. Silveira", "Carlos H. G. Martins", "Maria A. L. V. Ambrosio", "Thayná de S. Silva", "Denise C. Tavares", "Lizandra G. Magalhães", "Fabiano G. Silva", "Mariana B. Egea"],
"nome": "Chemical composition and in vitro leishmanicidal, antibacterial and cytotoxic activities of essential oils of the Myrtaceae family occurring in the Cerrado biome",
"publicador": "Industrial Crops and Products",
"versao": "123",
"paginas": "638-645",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.indcrop.2018.07.033"
},
{
"autores": ["Alysson V. F. Sako", "Daniel A. Spudeit", "Maurício Dupim", "Waldemar P. O. Filho", "Tatiana D. Saint'pierre", "Marcone A. L. de Oliveira", "Gustavo A. Micke"],
"nome": "Dual-opposite end multiple injection method applied to sequential determination of Na+, K+, Ca+2, Mg+2 ions and free and total glycerol in biodiesel by Capillary Zone Electrophoresis",
"publicador": "Journal of Chromatography A",
"versao": "1570",
"paginas": "148-154",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.chroma.2018.07.079"
},
{
"autores": ["Luciano Molognoni", "Naielly C. de Souza", "Leandro A. de S. Ploêncio", "Gustavo A. Micke", "Heitor Daguer"],
"nome": "Simultaneous analysis of spectinomycin, halquinol, zilpaterol, and melamine in feedingstuffs by ion-pair liquid chromatography-tandem mass spectrometry",
"publicador": "Journal of Chromatography A",
"versao": "1569",
"paginas": "110-117",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.chroma.2018.07.048"
},
{
"autores": ["Camila M. S. Vieira", "Melaine Mazurkievicz", "Angela M. Lopez Calvo", "Vítor Debatin", "Gustavo A. Micke", "Pablo Richter", "Milton Rosero-Moreano", "Eduardo C. da Rocha"],
"nome": "Exploiting green sorbents in rotating-disk sorptive extraction for the determination of parabens by high performance liquid chromatography tandem electrospray ionization triple quadrupole mass spectrometry",
"publicador": "Journal of Separation Science",
"versao": "41",
"paginas": "4047-4054",
"ano": 2018,
"link": "http://dx.doi.org/10.1002/jssc.201800426"
},
{
"autores": ["Tiago Tizziani", "Marcos Pereira", "Dalila Venzke", "Fabiana C. Missau", "Ana P. Ruani", "Daiane F. Montagner", "Moacir G. Pizzolatti", "Gustavo A. Micke", "Inês M. C. Brighente"],
"nome": "A new xanthone as a chemical marker of four Polygala species (Polygalaceae)",
"publicador": "Biochemical Systematics and Ecology",
"versao": "78",
"paginas": "46-48",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.bse.2018.03.007"
},
{
"autores": ["Nádia S. R. S. Mota", "Maicon R. Kviecinski", "Rodrigo C. Zeferino", "Daniela A. de Oliveira", "Lizandra C. Bretanha", "Sandra R. S. Ferreira", "Gustavo A. Micke", "Danilo W. Filho", "Rozangela C. Pedrosa", "Fabiana Ourique"],
"nome": "In vivo antitumor activity of by-products of Passiflora edulis f. flavicarpa Deg. Rich in medium and long chain fatty acids evaluated through oxidative stress markers, cell cycle arrest and apoptosis induction",
"publicador": "Food and Chemical Toxicology",
"versao": "118",
"paginas": "557-565",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.fct.2018.06.010"
},
{
"autores": ["Róli R. Simões", "Scheila I. Kraus", "Igor S. Coelho", "Daniela Dal-Secco", "Diogo A. Siebert", "Gustavo A. Micke", "Michele D. Alberton", "Adair R. S. Santos"],
"nome": "Eugenia brasiliensis leaves extract attenuates visceral and somatic inflammatory pain in mice",
"publicador": "Journal of Ethnopharmacology",
"versao": "217",
"paginas": "178-186",
"ano": 2018,
"link": "https://doi.org/10.1016/j.jep.2018.02.026"
},
{
"autores": ["Tiago Tizziani", "Dalila Venzke", "Ana P. Ruani", "Marcos Pereira", "Gustavo A. Micke", "Moacir G. Pizzolatti", "Inês M. C. Brighente"],
"nome": "Phytochemical and chemotaxonomic study of Polygala altomontana (Polygalaceae). " ,
"publicador": "Biochemical Systematics and Ecology",
"versao": "77",
"paginas": "1-3",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.bse.2017.12.003"
},
{
"autores": ["Josiane Hilbig", "Victor R. Alves", "Carmen M. O. Müller", "Gustavo A. Micke", "Luciano Vitali", "Rozangela C. Pedrosa", "Jane M. Block"],
"nome": "Ultrasonic-assisted extraction combined with sample preparation and analysis using LC-ESI-MS/MS allowed the identification of 24 new phenolic compounds in pecan nut shell [ Carya illinoinensis (Wangenh) C. Koch] extracts",
"publicador": "Food Research International",
"versao": "106",
"paginas": "549-557",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.foodres.2018.01.010"
},
{
"autores": ["Priscila de B. Policarpi", "Leticia Turcatto", "Fernanda Demoliner", "Roseli A. Ferrari", "Vera L. A. F. Bascuñan", "Juliano C. Ramos", "Iván Jachmanián", "Luciano Vitali", "Gustavo A. Micke", "Jane M. Block"],
"nome": "Nutritional potential, chemical profile and antioxidant activity of Chichá ( Sterculia striata ) nuts and its by-products",
"publicador": "Food Research International",
"versao": "106",
"paginas": "736-744",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.foodres.2017.12.069"
},
{
"autores": ["Thiago G. Costa", "Fábio A. Richter", "Elisiana T. Castro", "Samantha Gonçalves", "Daniel A. Spudeit", "Gustavo A. Micke"],
"nome": "Elemental identification of blue paintings traces present in historic cemeteries in the São Martinho region, southern Brazil",
"publicador": "Journal of Molecular Structure",
"versao": "1155",
"paginas": "434-442",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.molstruc.2017.11.027"
},
{
"autores": ["Ariela M. Boeder", "Adrielli Tenfen", "Diogo A. Siebert", "Camila L. de B. Almeida", "Cláudia R. M. Firmo", "Dilamara R. Scharf", "Gustavo A. Micke", "Edésio L. Siminionatto", "Caio M. M. de Cordova", "Alessandro Guedes"],
"nome": "Anti-mycoplasma activity of Curcuma longa extracts and your isolated compound, the curcumin",
"publicador": "Revista Fitos Eletrônica",
"versao": "12",
"paginas": "110-116",
"ano": 2018,
"link": "http://dx.doi.org/10.5935/2446-4775.20180010"
},
{
"autores": ["Siluana K. T. Seraglio", "Luciano V. Gonzaga", "Mayara Schulz", "Luciano Vitali", "Gustavo A. Micke", "Ana C. O. Costa", "Roseane Fett", "Graciele da S. C. Borges"],
"nome": "Effects of gastrointestinal digestion models in vitro on phenolic compounds and antioxidant activity of juçara ( Euterpe edulis )",
"publicador": "International Journal of Food Science and Technology",
"versao": "53",
"paginas": "1824-1831",
"ano": 2018,
"link": "http://dx.doi.org/10.1111/ijfs.13816"
},
{
"autores": ["Ana Ruani", "Luciano Vitali", "Gustavo Micke"],
"nome": "Multiple-Injection Capillary Zone Electrophoresis as a Fast Strategy to Determine Antinitrosating Capacity of Commercial Teas",
"publicador": "Journal of the Brazilian Chemical Society",
"versao": "29",
"paginas": "2150-2157",
"ano": 2018,
"link": "http://dx.doi.org/10.21577/0103-5053.20180090"
},
{
"autores": ["Sara C. Barauna", "Débora D. Magro", "Maitê B. Brueckheimer", "Thayná P. Maia", "Geraldo A. B. N. Sala", "André W. Döhler", "Mateus C. Harger", "Dayse F. M. de Melo", "André L. de Gasper", "Michele D. Alberton", "Diogo A. Siebert", "Gustavo A. Micke", "Cláudia A. C. de Albuquerque", "Daniela D. Lima"],
"nome": "Antioxidant and antidepressant-like effects of Eugenia catharinensis D. Legrand in an animal model of depression induced by corticosterone",
"publicador": "Metabolic Brain Disease",
"versao": "33",
"paginas": "1985-1994",
"ano": 2018,
"link": "http://dx.doi.org/10.1007/s11011-018-0306-3"
},
{
"autores": ["Fernanda Demoliner", "Priscila de B. Policarpi", "Lúcio F. L. Vasconcelos", "Luciano Vitali", "Gustavo A. Micke", "Jane M. Block"],
"nome": "Sapucaia nut ( Lecythis pisonis Cambess) and its by-products: A promising and underutilized source of bioactive compounds. Part II: Phenolic compounds profile",
"publicador": "FOOD RESEARCH INTERNATIONAL",
"versao": "112",
"paginas": "434-442",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.foodres.2018.06.050"
},
{
"autores": ["Pedro H. Santos", "Deise H. B. Ribeiro", "Gustavo A. Micke", "Luciano Vitali", "Haiko Hense"],
"nome": "Extraction of bioactive compounds from feijoa (Acca sellowiana (O. Berg) Burret) peel by low and high-pressure techniques",
"publicador": "Journal Of Supercritical Fluids",
"versao": "145",
"paginas": "219-227",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.supflu.2018.12.016"
},
{
"autores": ["Alysson Sako", "Gustavo Micke"],
"nome": "Fast Determination of Iodine Number of Biodiesel Using Capillary Zone Electrophoresis with Multi- and Single-Point Calibration",
"publicador": "Journal Of The Brazilian Chemical Society",
"versao": "30",
"paginas": "318-325",
"ano": 2018,
"link": "http://dx.doi.org/10.21577/0103-5053.20180180"
},
{
"autores": ["Alberto A. R. Mota", "Jose R. Correa", "Lorena P. de Andrade", "José A. F. Assumpção", "Giovana A. de S. Cintra", "Lucio H. Freitas-Junior", "Wender A. da Silva", "H. C. B. Oliveira", "B. A. D. Neto"],
"nome": "From Live Cells to Caenorhabditis elegans: Selective Staining and Quantification of Lipid Structures Using a Fluorescent Hybrid Benzothiadiazole Derivative",
"publicador": "ACS Omega",
"versao": "3",
"paginas": "3874-3881",
"ano": 2018,
"link": "http://dx.doi.org/10.1021/acsomega.8b00434"
},
{
"autores": ["Thiago O. Lopes", "Daniel F. S. Machado", "Chad Risko", "Jean-Luc Brédas", "Heibbe C. B. de Oliveira"],
"nome": "Bond Ellipticity Alternation: An Accurate Descriptor of the Nonlinear Optical Properties of π-Conjugated Chromophores",
"publicador": "Journal of Physical Chemistry Letters",
"versao": "9",
"paginas": "1377-1383",
"ano": 2018,
"link": "http://dx.doi.org/10.1021/acs.jpclett.8b00478"
},
{
"autores": ["Arsênio P. V. Neto", "Daniel F. S. Machado", "Thiago O. Lopes", "Ademir J. Camargo", "Heibbe C. B. de Oliveira"],
"nome": "Explicit Aqueous Solvation Treatment of Epinephrine from Car-Parrinello Molecular Dynamics: Effect of Hydrogen Bonding on the Electronic Absorption Spectrum",
"publicador": "Journal Of Physical Chemistry B",
"versao": "122",
"paginas": "8439-8450",
"ano": 2018,
"link": "http://dx.doi.org/10.1021/acs.jpcb.8b06110"
},
{
"autores": ["Rodrigo A. L. Silva", "Sandro F. de Brito", "Daniel F. S. Machado", "Valter H. Carvalho-Silva", "Heibbe C. B. de Oliveira", "Luciano Ribeiro"],
"nome": "The influence of the configuration of the (C70)2 dimer on its rovibrational spectroscopic properties: a theoretical survey",
"publicador": "Journal Of Molecular Modeling",
"versao": "24",
"paginas": "235",
"ano": 2018,
"link": "http://dx.doi.org/10.1007/s00894-018-3780-y"
},
{
"autores": ["Nayara D. Coutinho", "Flavio O. Sanches-Nneto", "Valter H. Carvalho-Silva", "Heibbe C. B. de Oliveira", "Luiz A. Ribeiro", "Vincenzo Aquilanti"],
"nome": "Kinetics of the OH+HCl→H2O+Cl reaction: Rate determining roles of stereodynamics and roaming and of quantum tunneling",
"publicador": "Journal Of Computational Chemistry",
"versao": "39",
"paginas": "2508-2516",
"ano": 2018,
"link": "http://dx.doi.org/10.1002/jcc.25597"
},
{
"autores": ["Alberto A. R. Mota", "Jose R. Correa", "Lorena P. de Andrade", "José A. F. Assumpção", "Giovana A. de S. Cintra", "Lucio H. Freitas-Junior", "Wender A. Da Silva", "H. C. B. Oliveira", "B. A. D. Neto"],
"nome": "From Live Cells to Caenorhabditis elegans : Selective Staining and Quantification of Lipid Structures Using a Fluorescent Hybrid Benzothiadiazole Derivative",
"publicador": "ACS Omega",
"versao": "3",
"paginas": "3874-3881",
"ano": 2018,
"link": "http://dx.doi.org/10.1021/acsomega.8b00434"
},
{
"autores": ["Boris Maryasin", "Dainis Kaldre", "Renan Galaverna", "Immo Klose", "Stefan Ruider", "Martina Drescher", "Hanspeter Kählig", "Leticia González", "Marcos N. Eberlin", "Igor D. Jurberg", "Nuno Maulide"],
"nome": "Unusual mechanisms in Claisen rearrangements: an ionic fragmentation leading to a meta-selective rearrangement",
"publicador": "Chemical Science",
"versao": "9",
"paginas": "4124-4131",
"ano": 2018,
"link": "http://dx.doi.org/10.1039/C7SC04736C"
},
{
"autores": ["Igor Jurberg", "Amanda da Silva", "Alessandra Fernandes", "Samuel Thurow", "Mateus Stivanin"],
"nome": "Isoxazol-5-ones as Strategic Building Blocks in Organic Synthesis",
"publicador": "Synthesis Stuttgart",
"versao": "50",
"paginas": "2473-2489",
"ano": 2018,
"link": "http://dx.doi.org/10.1055/s-0036-1589534"
},
{
"autores": ["Igor D. Jurberg", "Huw M. L. Davies"],
"nome": "Blue light-promoted photolysis of aryldiazoacetates",
"publicador": "Chemical Science",
"versao": "9",
"paginas": "5112-5118",
"ano": 2018,
"link": "http://dx.doi.org/10.1039/C8SC01165F"
},
{
"autores": ["Diego L. Bertuzzi", "Tiago B. Becher", "Naylil M. R. Capreti", "Julio Amorim", "Igor D. Jurberg", "Jackson D. Megiatto", "Catia Ornelas"],
"nome": "General Protocol to Obtain D-Glucosamine from Biomass Residues: Shrimp Shells, Cicada Sloughs and Cockroaches",
"publicador": "Global Challenges",
"versao": "2",
"paginas": "1800046",
"ano": 2018,
"link": "http://dx.doi.org/10.1002/gch2.201800046"
},
{
"autores": ["Taícia P. Fill", "Heloisa F. Pallini", "Zia U. Din", "Igor D. Jurberg", "José V. da Silva", "Edson Rodrigues-Filho"],
"nome": "Conjugation of antifungal benzoic acid derivatives as a path for detoxification in Penicillium brasilianum, an endophyte from Melia azedarach",
"publicador": "Bioorganic Chemistry",
"versao": "81",
"paginas": "367-372",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.bioorg.2018.08.038"
},
{
"autores": ["Nathália M. Simon", "Gabriel Abarca", "Jackson D. Scholten", "Josiel B. Domingos", "David Mecerreyes", "Jairton Dupont"],
"nome": "Structural, electronic and catalytic properties of palladium nanoparticles supported on poly(ionic liquid)",
"publicador": "Applied Catalysis A: General",
"versao": "562",
"paginas": "79-86",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.apcata.2018.06.001"
},
{
"autores": ["Eduardo M. Morais", "Igor B. Grillo", "Hubert K. Stassen", "Marcus Seferin", "Jackson D. Scholten"],
"nome": "The effect of an electron-withdrawing group in the imidazolium cation: the case of nitro-functionalized imidazolium salts as acidic catalysts for the acetylation of glycerol",
"publicador": "New Journal Of Chemistry",
"versao": "42",
"paginas": "10774-10783",
"ano": 2018,
"link": "http://dx.doi.org/10.1039/c8nj02520g"
},
{
"autores": ["Arthur Alcantara", "Liniquer Fontana", "Vitor Rigolin", "Yuri Andrade", "Marcos Ribeiro", "Wdeson Barros", "Catia Ornelas", "Jackson D Megiatto"],
"nome": "Olefin Cyclopropanation by Radical Carbene Transfer Reaction Promoted by Cobalt(II)/Porphyrinates: Active-Metal-Template Synthesis of [2]Rotaxanes",
"publicador": "Angewandte Chemie International Edition",
"versao": "57",
"paginas": "8979-8983",
"ano": 2018,
"link": "http://dx.doi.org/10.1002/anie.201803934"
},
{
"autores": ["Diego L. Bertuzzi", "Tiago B. Becher", "Naylil M. R. Capreti", "Julio Amorim", "Igor D. Jurberg", "Jackson D. Megiatto", "Catia Ornelas"],
"nome": "General Protocol to Obtain D-Glucosamine from Biomass Residues: Shrimp Shells, Cicada Sloughs and Cockroaches",
"publicador": "Global Challenges",
"versao": "2",
"paginas": "1800046",
"ano": 2018,
"link": "http://dx.doi.org/10.1002/gch2.201800046"
},
{
"autores": ["Marco A. Souza", "Karolyne V. De Oliveira", "Flavia C. C. Oliveira", "Luciano P. Silva", "Joel C. Rubim"],
"nome": "The Adsorption of Methamphetamine on Ag Nanoparticles Dispersed in Agarose Gel-Detection of Methamphetamine in Fingerprints by SERS",
"publicador": "Vibrational Spectroscopy",
"versao": "98",
"paginas": "152-157",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.vibspec.2018.08.008"
},
{
"autores": ["Anderson M. M. S. Medeiros", "Fabricio Machado", "Elodie Bourgeat'lami", "Joel C. Rubim", "Timothy F. L. Mckenna"],
"nome": "Bio-Based Hybrid Magnetic Latex Particles Containing Encapsulated γ-Fe2O3 by Miniemulsion Copolymerization of Soybean Oil-Acrylated Methyl Ester and Styrene",
"publicador":"Macromolecular Materials And Engineering",
"versao": "304",
"paginas": "1800449",
"ano": 2018,
"link": "http://dx.doi.org/10.1002/mame.201800449"
},
{
"autores": ["E. V. Dalessandro", "J. R. Pliego"],
"nome": "Fast Screening of Solvents for Simultaneous Extraction of Furfural, 5-Hydroxymethylfurfural and Levulinic acid from Water Solution Using SMD Solvation Free Energies",
"publicador": "Journal Of The Brazilian Chemical Society",
"versao": "29",
"paginas": "430-434",
"ano": 2018,
"link": "http://dx.doi.org/10.21577/0103-5053.20170140"
},
{
"autores": ["F. M. Lisboa", "J. R. Pliego"],
"nome": "Infinite dilution activity coefficient from SMD calculations: accuracy and performance for predicting liquid-liquid equilibria",
"publicador":"JOURNAL OF MOLECULAR MODELING",
"versao": "24",
"paginas": "56",
"ano": 2018,
"link": "http://dx.doi.org/10.1007/s00894-018-3597-8"
},
{
"autores": ["J. R. Pliego"],
"nome": "Potassium Fluoride Activation for the Nucleophilic Fluorination Reaction Using 18-crown-6, [2.2.2]-Cryptand, Pentaethylene Glycol and Comparison with the New Hydro-crown Scaffold: A Theoretical Analysis",
"publicador":"Organic & Biomolecular Chemistry",
"versao": "16",
"paginas": "3127-3137",
"ano": 2018,
"link": "http://dx.doi.org/10.1039/C8OB00418H"
},
{
"autores": ["J. R. Pliego"],
"nome": "Mechanism of nucleophilic fluorination promoted by bis-tert-alcohol-functionalized crown-6-calix[4]arene",
"publicador": "International Journal Of Quantum Chemistry",
"versao": "118",
"paginas": "e25648",
"ano": 2018,
"link": "http://dx.doi.org/10.1002/qua.25648"
},
{
"autores": ["V. C. Rufino", "Stella M. Resende", "J. R. Pliego"],
"nome": "Free energy profile and microkinetic modeling of base-catalyzed conjugate addition reaction of nitroalkanes to α,β-unsaturated ketones in polar and apolar solvents",
"publicador": "Journal Of Molecular Modeling",
"versao": "24",
"paginas": "152",
"ano": 2018,
"link": "http://dx.doi.org/10.1007/s00894-018-3694-8"
},
{
"autores": ["I. C. Nogueira", "J. R. Pliego"],
"nome": "Theoretical Study of the Mechanism and Regioselectivity of the Alkylation Reaction of the Phenoxide Ion in Polar Protic and Aprotic Solvents",
"publicador": "Computational and Theoretical Chemistry",
"versao": "1138",
"paginas": "117-122",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.comptc.2018.06.004"
},
{
"autores": ["Ellen V. Dalessandro", "Josefredo R. Pliego Jr."],
"nome": "Solvent selection for chemical reactions: automated computational screening of solvents using the SMD model",
"publicador": "Quimica Nova",
"versao": "41",
"paginas": "628-633",
"ano": 2018,
"link": "http://dx.doi.org/10.21577/0100-4042.20170224"
},
{
"autores": ["Daniela R. Silva", "Josefredo R. Pliego"],
"nome": "How difficult are anion-molecule SNAr reactions of unactivated arenes in the gas phase, dimethyl sulfoxide, and methanol solvents?",
"publicador": "Structural Chemistry",
"versao": "30",
"paginas": "75-83",
"ano": 2018,
"link": "http://dx.doi.org/10.1007/s11224-018-1172-7"
},
{
"autores": ["Eduardo C. M. Barbosa", "Jhonatan L. Fiorio", "Tong Mou", "Bin Wang", "Liane M. Rossi", "Pedro Camargo"],
"nome": "Reaction Pathway Dependence in Plasmonic Catalysis: Hydrogenation as a Model Molecular Transformation",
"publicador": "Chemistry-A European Journal",
"versao": "24",
"paginas": "12330-12339",
"ano": 2018,
"link": "http://dx.doi.org/10.1002/chem.201705749"
},
{
"autores": ["Jhonatan L. Fiorio", "Renato V. Gonçalves", "Erico Teixeira-Neto", "Manuel A. Ortuño", "Nuria Lopez", "Liane M. Rossi"],
"nome": "Accessing frustrated Lewis pair chemistry through robust Gold@N-doped carbon for selective hydrogenation of alkynes",
"publicador": "ACS Catalysis",
"versao": "8",
"paginas": "3516-3524",
"ano": 2018,
"link": "http://dx.doi.org/10.1021/acscatal.8b00806"
},
{
"autores": ["Lucas D. Dias", "Rui M. B. Carrilho", "César A. Henriques", "Giusi Piccirillo", "Auguste Fernandes", "Liane M. Rossi", "M. F. Ribeiro", "Mário J. F. Calvete", "Mariette M. Pereira"],
"nome": "A recyclable hybrid manganese(III) porphyrin magnetic catalyst for selective olefin epoxidation using molecular oxygen",
"publicador": "Journal of Porphyrins and Phthalocyanines",
"versao": "22",
"paginas": "331-341",
"ano": 2018,
"link": "http://dx.doi.org/10.1142/s108842461850027x"
},
{
"autores": ["Liane M. Rossi", "Jhonatan L. Fiorio", "Marco A. S. Garcia", "Camila P. Ferraz"],
"nome": "Role and fate of capping ligands in colloidally prepared metal nanoparticle catalysts",
"publicador": "Dalton Transactions",
"versao": "47",
"paginas": "5889-5915",
"ano": 2018,
"link": "http://dx.doi.org/10.1039/c7dt04728b"
},
{
"autores": ["Lucas D. Dias", "Rui M. B. Carrilho", "César A. Henriques", "Mário J. F. Calvete", "Anna M. Masdeu-Bultó", "Carmen Claver", "Liane M. Rossi", "Mariette M. Pereira"],
"nome": "Hybrid-Metalloporphyrin Magnetic Nanoparticles as Catalysts for Sequential Transformation of Alkenes and CO2 into Cyclic Carbonates",
"publicador": "ChemCatChem",
"versao": "10",
"paginas": "2792-2803",
"ano": 2018,
"link": "http://dx.doi.org/10.1002/cctc.201800397"
},
{
"autores": ["Camila P. Ferraz", "Micha' Zieli'ski", "Mariusz Pietrowski", "Svetlana Heyte", "Franck Dumeignil", "Liane M. Rossi", "Robert Wojcieszak"],
"nome": "Influence of Support Basic Sites in Green Oxidation of Biobased Substrates Using Au-Promoted Catalysts",
"publicador":" ACS Sustainable Chemistry & Engineering",
"versao": "6",
"paginas": "16332-16340",
"ano": 2018,
"link": "http://dx.doi.org/10.1021/acssuschemeng.8b03330"
},
{
"autores": ["Fernanda P. da Silva", "Jhonatan L. Fiorio", "Renato V. Gonçalves", "Erico Teixeira-Neto", "Liane M. Rossi"],
"nome": "Synergic Effect of Copper and Palladium for Selective Hydrogenation of Alkynes",
"publicador": "Industrial & Engineering Chemistry Research",
"versao": "57",
"paginas": "16209-16216",
"ano": 2018,
"link": "http://dx.doi.org/10.1021/acs.iecr.8b03627"
},
{
"autores": ["Jhon Quiroz", "Eduardo C. M. Barbosa", "Thaylan P. Araujo", "Jhonatan L. Fiorio", "Yichi Wang", "Yichao Zou", "Tong Mou", "Tiago V. Alves", "Daniela C. de Oliveira", "Bin Wang", "Sarah J. Haigh", "Liane M. Rossi", "Pedro H. C. Camargo"],
"nome": "Controlling Reaction Selectivity over Hybrid Plasmonic Nanocatalysts",
"publicador": "Nano Letters",
"versao": "18",
"paginas": "7289-7297",
"ano": 2018,
"link": "http://dx.doi.org/10.1021/acs.nanolett.8b03499"
},
{
"autores": ["Vera L. V. Fallavena", "Marçal J. R. Pires", "S. F. Ferrarini", "A. P. B. Silveira"],
"nome": "Evaluation of Zeolite/Backfill Blend for Acid Mine Drainage Remediation in Coal Mine",
"publicador": "Energy & Fuels",
"versao": "32",
"paginas": "2019-2027",
"ano": 2018,
"link": "http://dx.doi.org/10.1021/acs.energyfuels.7b03322"
},
{
"autores": ["S. F. Ferrarini", "A. M. Cardoso", "L. Alban", "Marçal J. R. Pires"],
"nome": "Evaluation of the Sustainability of Integrated Hydrothermal Synthesis of Zeolites Obtained from Waste",
"publicador": "Journal of the Brazilian Chemical Society",
"versao": "29",
"paginas": "1464-1479",
"ano": 2018,
"link": "http://dx.doi.org/10.21577/0103-5053.20180017"
},
{
"autores": ["L. S. Silva", "G. S. C. Raulino", "C. B. Vidal", "M. Pires", "R. F. Nascimento"],
"nome": "Peculiar properties of LTA/FAU synthetic composite zeolite and its effect on Cu2+ adsorption: factorial experimental design",
"publicador": "Desalination and Water Treatment",
"versao": "107",
"paginas": "223-231",
"ano": 2018,
"link": "http://dx.doi.org/10.5004/dwt.2018.22165"
},
{
"autores": ["Heldiane S. dos Santos", "Suzana F. Ferrarini", "Francine Q. Flores", "Marçal J. R. Pires", "Carla M. N. Azevedo", "Lucie Coudert", "Jean-françois Blais"],
"nome": "Removal of toxic elements from wastewater generated in the decontamination of CCA-treated Eucalyptus sp. and Pinus canadense wood",
"publicador": "Journal of Material Cycles and Waste Management",
"versao": "20",
"paginas": "1299-1309",
"ano": 2018,
"link": "http://dx.doi.org/10.1007/s10163-017-0694-1"
},
{
"autores": ["Rafael Abruzzi", "Beatriz Bonetti", "Marçal Pires", "Berenice DeDavid", "Arthur Bitencourt"],
"nome": "Artifacts in the analysis and assessment of low-cost containers for sampling and storing greenhouse gases",
"publicador": "Quimica Nova",
"versao": "42",
"paginas": "84-94",
"ano": 2018,
"link": "http://dx.doi.org/10.21577/0100-4042.20170299"
},
{
"autores": ["Gustavo T. M. Silva", "Cassio P. Silva", "Marcelo H. Gehlen", "Jessy Oake", "Cornelia Bohne", "Frank H. Quina"],
"nome": "Organic/inorganic hybrid pigments from flavylium cations and palygorskite",
"publicador": "Applied Clay Science",
"versao": "162",
"paginas": "478-486",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.clay.2018.07.002"
},
{
"autores": ["Euclydes Marega", "Luiz A. O. Nunes", "Marcelo H. Gehlen", "Victor A. G. Rivera", "Fabio A. Ferri"],
"nome": "Suitable Er3+-doped tellurite glass-based plasmonic structures for nanophotonic device applications",
"publicador": "Optical Engineering",
"versao": "-",
"paginas": "-",
"ano": 2018,
"link": "http://dx.doi.org/10.1117/1.oe.57.8.085102"
},
{
"autores": ["Haline G. O. Alvim", "Jose R. Correa", "José A. F. Assumpção", "Wender A. da Silva", "Marcelo O. Rodrigues", "Julio L. de Macedo", "Mariana Fioramonte", "Fabio C. Gozzo", "Claudia C. Gatto", "Brenno A. D. Neto"],
"nome": "Heteropolyacid-Containing Ionic Liquid-Catalyzed Multicomponent Synthesis of Bridgehead Nitrogen Heterocycles: Mechanisms and Mitochondrial Staining",
"publicador": "Journal of Organic Chemistry",
"versao": "83",
"paginas": "4044-4053",
"ano": 2018,
"link": "http://dx.doi.org/10.1021/acs.joc.8b00472"
},
{
"autores": ["Geovânia C. de Assis", "Euzébio Skovroinski", "Valderi D. Leite", "Marcelo O. Rodrigues", "André Galembeck", "Mary Alves", "Julian Eastoe", "Rodrigo J. de Oliveira"],
"nome": "Conversion of -waste plastic- into photocatalytic nanofoams for environmental remediation",
"publicador": "ACS Applied Materials & Interfaces",
"versao": "10",
"paginas": "8077-8085",
"ano":2018 ,
"link": "http://dx.doi.org/10.1021/acsami.7b19834"
},
{
"autores": ["Isabela B. Serwy", "Kaline A. Wanderley", "Marcella A. M. Lucena", "Adriano O. Maldaner", "Marcio Talhavini", "Marcelo O. Rodrigues", "Ingrid T. Weber"],
"nome": "[Ln2(BDC)3(H2O)4]n : a low cost alternative for GSR luminescent marking",
"publicador": "Journal of Luminescence",
"versao": "200",
"paginas": "24-29",
"ano": 2018,
"link": "http://dx.doi.org/10.1016/j.jlumin.2018.02.039"
},
{
"autores": ["Thaís A. Rossa", "Nícolas S. Suveges", "Marcus M. Sá", "David Cantillo", "C. Oliver Kappe"],
"nome": "Continuous multistep synthesis of 2-(azidomethyl)oxazoles",
"publicador": "Beilstein Journal of Organic Chemistry",
"versao": "14",
"paginas": "506-514",
"ano": 2018,
"link": "http://dx.doi.org/10.3762/bjoc.14.36"
},
{
"autores": ["Thaís A. Rossa", "Mariane Fantinel", "Adailton J. Bortoluzzi", "Marcus M. Sa"],
"nome": "Multicomponent Synthesis of Structurally Diverse Imidazoles Featuring Azirines, Amines and Aldehydes",
"publicador": "European Journal of Organic Chemistry",
"versao": "2018",
"paginas": "4171-4177",
"ano": 2018,
"link": "http://dx.doi.org/10.1002/ejoc.201800687"
},
{
"autores": ["Marcus V. P. S. Nascimento", "Antonio C. M. Munhoz", "Lais C. Theindl", "Eduarda T. B. Mohr", "Najla Saleh", "Eduardo B. Parisotto", "Thaís A. Rossa", "Ariane Zamoner", "Tania B. Creczynski-Pasa", "Fabíola B. Filippin-Monteiro", "MarcuS M. Sá", "Eduardo M. Dalmarco"],
"nome": "A Novel Tetrasubstituted Imidazole as a Prototype for the Development of Anti-inflammatory Drugs",
"publicador": "Inflammation",
"versao": "41",
"paginas": "1334-1348",
"ano": 2018,
"link": "http://dx.doi.org/10.1007/s10753-018-0782-y"
},
{
"autores": ["daiane F. Dalla'lana", "Laura M. Giuliani", "Jéssica B. Reolon", "William Lopes", "Marilene H. Vainstein", "Letícia J. Danielli", "Vanessa Z. Bergamo", "Bruna Pippi", "Miriam A. Apel", "Mário L. Teixeira", "Luis F. S. de Oliveira", "Michel M. Machado", "Saulo F. de Andrade", "MARCUS M. Sá", "Misael Ferreira", "Laiéli S. Munaretto", "Letícia Cruz", "Gustavo P. Silveira", "Edilma Elayne", "Alexandre M. Fuentefria"],
"nome": "Nanoemulsion Improves the Antifungal Activity of Allylic Thiocyanates against Yeasts and Filamentous Pathogenic Fungi",
"publicador": "ChemistrySelect",
"versao": "3",
"paginas": "11663-11670",