-
Notifications
You must be signed in to change notification settings - Fork 0
/
hocr_test.html
4671 lines (4641 loc) · 833 KB
/
hocr_test.html
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
<html>
<head>
<meta charset="UTF-8"/>
<script src="static/jquery-3.7.1.min.js" charset="UTF-8"></script>
<script src="static/hocr.js" charset="UTF-8"></script>
</head>
<body>
<div class="ocr_page" id="page_1" title="image "unknown"; bbox 0 0 3041 4301; ppageno 0; scan_res 96 96">
<div class="ocr_photo" id="block_1_1" title="bbox 146 0 2980 132"></div>
<div class="ocr_carea" id="block_1_2" title="bbox 193 3919 329 3968">
<p class="ocr_par" id="par_1_1" lang="srp" title="bbox 193 3919 329 3968">
<span class="ocr_textfloat" id="line_1_1" title="bbox 193 3919 329 3968; baseline 0.007 -3; x_size 47; x_descenders 9; x_ascenders 16">
<span class="ocrx_word" id="word_1_1" title="bbox 193 3919 329 3968; x_wconf 40">43.</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_3" title="bbox 360 3700 1319 3749">
<p class="ocr_par" id="par_1_2" lang="srp" title="bbox 360 3700 1319 3749">
<span class="ocr_textfloat" id="line_1_2" title="bbox 360 3700 1319 3749; baseline -0.015 -4; x_size 40; x_descenders 7; x_ascenders 10">
<span class="ocrx_word" id="word_1_2" title="bbox 360 3713 456 3749; x_wconf 97">бори</span>
<span class="ocrx_word" id="word_1_3" title="bbox 480 3718 714 3744; x_wconf 61">састављени</span>
<span class="ocrx_word" id="word_1_4" title="bbox 738 3717 787 3743; x_wconf 93">од</span>
<span class="ocrx_word" id="word_1_5" title="bbox 812 3704 1031 3742; x_wconf 85">Управника</span>
<span class="ocrx_word" id="word_1_6" title="bbox 1057 3700 1270 3740; x_wconf 96">Дирекције</span>
<span class="ocrx_word" id="word_1_7" title="bbox 1298 3705 1319 3731; x_wconf 96">и</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_4" title="bbox 1331 135 1340 142">
<p class="ocr_par" id="par_1_3" lang="srp_latn" title="bbox 1331 135 1340 142">
<span class="ocr_line" id="line_1_3" title="bbox 1331 135 1340 142; baseline 0 0; x_size 20; x_descenders 5; x_ascenders 5">
<span class="ocrx_word" id="word_1_8" title="bbox 1331 135 1340 142; x_wconf 65">-</span>
</span>
</p>
</div>
<div class="ocr_photo" id="block_1_5" title="bbox 379 386 756 501"></div>
<div class="ocr_photo" id="block_1_6" title="bbox 379 501 520 611"></div>
<div class="ocr_carea" id="block_1_7" title="bbox 520 581 547 603">
<p class="ocr_par" id="par_1_4" lang="srp" title="bbox 520 581 547 603">
<span class="ocr_line" id="line_1_4" title="bbox 520 581 547 603; baseline 0 0; x_size 30.666666; x_descenders 7.6666665; x_ascenders 7.6666665">
<span class="ocrx_word" id="word_1_9" title="bbox 520 581 547 603; x_wconf 92">»</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_8" title="bbox 781 398 2722 626">
<p class="ocr_par" id="par_1_5" lang="srp" title="bbox 781 398 2722 626">
<span class="ocr_textfloat" id="line_1_5" title="bbox 781 398 2722 626; baseline 0.008 -38; x_size 208.44444; x_descenders 52.111111; x_ascenders 52.111111">
<span class="ocrx_word" id="word_1_10" title="bbox 781 398 2006 593; x_wconf 88">(СЛУЖБЕНИ</span>
<span class="ocrx_word" id="word_1_11" title="bbox 2070 425 2722 626; x_wconf 88">ЛИСТ</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_9" title="bbox 814 649 2634 727">
<p class="ocr_par" id="par_1_6" lang="srp" title="bbox 814 649 2634 727">
<span class="ocr_textfloat" id="line_1_6" title="bbox 814 649 2634 727; baseline 0.003 -8; x_size 81.583336; x_descenders 20.395834; x_ascenders 20.395834">
<span class="ocrx_word" id="word_1_12" title="bbox 814 649 1419 723; x_wconf 29">КЕМОКРаТСКЕ</span>
<span class="ocrx_word" id="word_1_13" title="bbox 1467 657 2020 726; x_wconf 75">ФЕДЕРАТИВНЕ</span>
<span class="ocrx_word" id="word_1_14" title="bbox 2065 662 2634 727; x_wconf 96">ЈУГОСЛАВИЈЕ</span>
</span>
</p>
</div>
<div class="ocr_separator" id="block_1_10" title="bbox 344 763 2703 780"></div>
<div class="ocr_photo" id="block_1_11" title="bbox 1123 772 1940 790"></div>
<div class="ocr_carea" id="block_1_12" title="bbox 344 814 1098 901">
<p class="ocr_par" id="par_1_7" lang="srp" title="bbox 344 814 1098 897">
<span class="ocr_line" id="line_1_7" title="bbox 347 814 1098 846; baseline 0 -5; x_size 32; x_descenders 5; x_ascenders 9">
<span class="ocrx_word" id="word_1_15" title="bbox 347 814 566 844; x_wconf 91">„СЛУЖБЕНИ</span>
<span class="ocrx_word" id="word_1_16" title="bbox 596 815 709 841; x_wconf 82">ЛИСТ'</span>
<span class="ocrx_word" id="word_1_17" title="bbox 738 821 844 841; x_wconf 83">излази</span>
<span class="ocrx_word" id="word_1_18" title="bbox 871 823 928 844; x_wconf 91">два</span>
<span class="ocrx_word" id="word_1_19" title="bbox 953 823 1024 846; x_wconf 93">пута</span>
<span class="ocrx_word" id="word_1_20" title="bbox 1051 821 1098 841; x_wconf 91">не-</span>
</span>
<span class="ocr_line" id="line_1_8" title="bbox 344 855 1098 901; baseline 0 -17; x_size 30; x_descenders 5; x_ascenders 7">
<span class="ocrx_word" id="word_1_21" title="bbox 344 855 452 901; x_wconf 52">дељио.</span>
<span class="ocrx_word" id="word_1_22" title="bbox 470 871 490 880; x_wconf 73">~</span>
<span class="ocrx_word" id="word_1_23" title="bbox 512 855 659 901; x_wconf 21">Кукоциси</span>
<span class="ocrx_word" id="word_1_24" title="bbox 672 868 703 885; x_wconf 86">се</span>
<span class="ocrx_word" id="word_1_25" title="bbox 734 866 771 886; x_wconf 86">це</span>
<span class="ocrx_word" id="word_1_26" title="bbox 797 860 974 891; x_wconf 90">враћају.</span>
<span class="ocrx_word" id="word_1_27" title="bbox 950 855 971 895; x_wconf 92" lang="srp_latn">—</span>
<span class="ocrx_word" id="word_1_28" title="bbox 988 859 1098 885; x_wconf 57">Огласи</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_13" title="bbox 344 902 1412 938">
<p class="ocr_par" id="par_1_8" lang="srp" title="bbox 344 902 1412 938">
<span class="ocr_line" id="line_1_9" title="bbox 344 902 1412 938; baseline -0.005 -10; x_size 31; x_descenders 7; x_ascenders 5">
<span class="ocrx_word" id="word_1_29" title="bbox 344 909 382 927; x_wconf 88">ло</span>
<span class="ocrx_word" id="word_1_30" title="bbox 412 904 538 933; x_wconf 91">тарнфи.</span>
<span class="ocrx_word" id="word_1_31" title="bbox 567 916 599 922; x_wconf 94" lang="srp_latn">—</span>
<span class="ocrx_word" id="word_1_32" title="bbox 628 904 760 929; x_wconf 90">Чековни</span>
<span class="ocrx_word" id="word_1_33" title="bbox 790 907 886 933; x_wconf 72">разуњ</span>
<span class="ocrx_word" id="word_1_34" title="bbox 911 903 984 933; x_wconf 95">број</span>
<span class="ocrx_word" id="word_1_35" title="bbox 1010 902 1098 929; x_wconf 93">62.324</span>
<span class="ocrx_word" id="word_1_36" title="bbox 1229 904 1344 938; x_wconf 93">БРОЈ</span>
<span class="ocrx_word" id="word_1_37" title="bbox 1372 904 1412 936; x_wconf 96">17</span>
</span>
</p>
</div>
<div class="ocr_separator" id="block_1_14" title="bbox 344 985 577 994"></div>
<div class="ocr_carea" id="block_1_15" title="bbox 1318 810 1737 897">
<p class="ocr_par" id="par_1_9" lang="srp" title="bbox 1318 810 1737 897">
<span class="ocr_textfloat" id="line_1_10" title="bbox 1318 810 1737 850; baseline 0.007 -9; x_size 38; x_descenders 6; x_ascenders 10">
<span class="ocrx_word" id="word_1_38" title="bbox 1318 810 1444 848; x_wconf 96">Петак,</span>
<span class="ocrx_word" id="word_1_39" title="bbox 1471 810 1512 843; x_wconf 93" lang="srp_latn">30</span>
<span class="ocrx_word" id="word_1_40" title="bbox 1536 819 1631 850; x_wconf 95">март</span>
<span class="ocrx_word" id="word_1_41" title="bbox 1660 811 1737 844; x_wconf 96">1945</span>
</span>
<span class="ocr_textfloat" id="line_1_11" title="bbox 1424 860 1638 897; baseline -0.005 -4; x_size 39.5; x_descenders 6.5; x_ascenders 10.5">
<span class="ocrx_word" id="word_1_42" title="bbox 1424 860 1638 897; x_wconf 96">БЕОГРАД</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_16" title="bbox 1964 790 2720 823">
<p class="ocr_par" id="par_1_10" lang="srp" title="bbox 1964 790 2720 823">
<span class="ocr_line" id="line_1_12" title="bbox 1964 790 2720 823; baseline 0.001 -6; x_size 33; x_descenders 6; x_ascenders 8">
<span class="ocrx_word" id="word_1_43" title="bbox 1964 790 2044 817; x_wconf 29">Деца</span>
<span class="ocrx_word" id="word_1_44" title="bbox 2070 792 2105 816; x_wconf 73">10.</span>
<span class="ocrx_word" id="word_1_45" title="bbox 2126 797 2191 817; x_wconf 84">дин.</span>
<span class="ocrx_word" id="word_1_46" title="bbox 2217 797 2253 816; x_wconf 93">по</span>
<span class="ocrx_word" id="word_1_47" title="bbox 2281 792 2398 822; x_wconf 91">табаку.</span>
<span class="ocrx_word" id="word_1_48" title="bbox 2425 805 2458 810; x_wconf 93" lang="srp_latn">—</span>
<span class="ocrx_word" id="word_1_49" title="bbox 2486 792 2652 823; x_wconf 6">Прежалата.</span>
<span class="ocrx_word" id="word_1_50" title="bbox 2679 799 2720 818; x_wconf 62">за,</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_17" title="bbox 1961 839 2755 907">
<p class="ocr_par" id="par_1_11" lang="srp" title="bbox 1961 839 2755 907">
<span class="ocr_line" id="line_1_13" title="bbox 1961 839 2715 868; baseline 0.003 -6; x_size 30.165562; x_descenders 6.1655626; x_ascenders 5">
<span class="ocrx_word" id="word_1_51" title="bbox 1961 845 2033 868; x_wconf 87">прво</span>
<span class="ocrx_word" id="word_1_52" title="bbox 2069 839 2215 868; x_wconf 57">пољжугође</span>
<span class="ocrx_word" id="word_1_53" title="bbox 2251 839 2313 864; x_wconf 94">1945</span>
<span class="ocrx_word" id="word_1_54" title="bbox 2348 846 2411 866; x_wconf 71">под.</span>
<span class="ocrx_word" id="word_1_55" title="bbox 2449 846 2514 867; x_wconf 28">див.</span>
<span class="ocrx_word" id="word_1_56" title="bbox 2540 839 2653 864; x_wconf 21" lang="srp_latn">N2G—</span>
<span class="ocrx_word" id="word_1_57" title="bbox 2678 852 2715 859; x_wconf 69" lang="srp_latn">—</span>
</span>
<span class="ocr_line" id="line_1_14" title="bbox 1962 875 2755 907; baseline 0.003 -9; x_size 32; x_descenders 6; x_ascenders 8">
<span class="ocrx_word" id="word_1_58" title="bbox 1962 875 2138 906; x_wconf 93">Редакција:</span>
<span class="ocrx_word" id="word_1_59" title="bbox 2164 877 2318 906; x_wconf 84">Брачкева</span>
<span class="ocrx_word" id="word_1_60" title="bbox 2342 877 2389 907; x_wconf 94">бр.</span>
<span class="ocrx_word" id="word_1_61" title="bbox 2418 877 2458 900; x_wconf 53">39.</span>
<span class="ocrx_word" id="word_1_62" title="bbox 2483 889 2517 895; x_wconf 93" lang="srp_latn">—</span>
<span class="ocrx_word" id="word_1_63" title="bbox 2540 875 2721 907; x_wconf 0">Ђелефових,</span>
<span class="ocrx_word" id="word_1_64" title="bbox 2750 894 2755 900; x_wconf 76" lang="srp_latn">·</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_18" title="bbox 1748 905 2461 943">
<p class="ocr_par" id="par_1_12" lang="srp" title="bbox 1748 905 2461 943">
<span class="ocr_line" id="line_1_15" title="bbox 1748 905 2461 943; baseline 0 -5; x_size 38.387756; x_descenders 5.3877549; x_ascenders 9">
<span class="ocrx_word" id="word_1_65" title="bbox 1748 905 1853 943; x_wconf 81">ГОД.</span>
<span class="ocrx_word" id="word_1_66" title="bbox 1880 907 1892 940; x_wconf 91" lang="srp_latn">1</span>
<span class="ocrx_word" id="word_1_67" title="bbox 2198 914 2289 938; x_wconf 75">20-426</span>
<span class="ocrx_word" id="word_1_68" title="bbox 2304 920 2332 938; x_wconf 43" lang="srp_latn">w</span>
<span class="ocrx_word" id="word_1_69" title="bbox 2358 914 2461 938; x_wconf 86">29-427.</span>
</span>
</p>
</div>
<div class="ocr_separator" id="block_1_19" title="bbox 576 974 2325 997"></div>
<div class="ocr_carea" id="block_1_20" title="bbox 477 1057 583 1104">
<p class="ocr_par" id="par_1_13" lang="srp" title="bbox 477 1057 583 1104">
<span class="ocr_caption" id="line_1_16" title="bbox 477 1057 583 1104; baseline 0 0; x_size 62.333332; x_descenders 15.583333; x_ascenders 15.583333">
<span class="ocrx_word" id="word_1_70" title="bbox 477 1057 583 1104; x_wconf 96">177.</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_21" title="bbox 752 1148 1101 1194">
<p class="ocr_par" id="par_1_14" lang="srp" title="bbox 752 1148 1101 1194">
<span class="ocr_line" id="line_1_17" title="bbox 752 1148 1101 1194; baseline -0.003 -6; x_size 51.666668; x_descenders 12.916667; x_ascenders 12.916667">
<span class="ocrx_word" id="word_1_71" title="bbox 752 1148 1101 1194; x_wconf 95">УРЕДБА</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_22" title="bbox 408 1219 1432 1311">
<p class="ocr_par" id="par_1_15" lang="srp_latn" title="bbox 408 1219 1432 1311">
<span class="ocr_line" id="line_1_18" title="bbox 408 1219 1432 1259; baseline -0.007 -2; x_size 43.64706; x_descenders 10.911765; x_ascenders 10.911765">
<span class="ocrx_word" id="word_1_72" title="bbox 408 1224 437 1257; x_wconf 93">O</span>
<span class="ocrx_word" id="word_1_73" title="bbox 470 1222 742 1257; x_wconf 95" lang="srp">ОСНИВАЊУ</span>
<span class="ocrx_word" id="word_1_74" title="bbox 772 1222 1033 1259; x_wconf 96" lang="srp">ДРЖАВНОГ</span>
<span class="ocrx_word" id="word_1_75" title="bbox 1064 1219 1346 1258; x_wconf 96" lang="srp">ПРЕДУЗЕЋА</span>
<span class="ocrx_word" id="word_1_76" title="bbox 1377 1219 1432 1251; x_wconf 95" lang="srp">ЗА</span>
</span>
<span class="ocr_line" id="line_1_19" title="bbox 533 1273 1317 1311; baseline -0.005 -2; x_size 43.64706; x_descenders 10.911765; x_ascenders 10.911765">
<span class="ocrx_word" id="word_1_77" title="bbox 533 1276 726 1311; x_wconf 95" lang="srp">ПРОМЕТ</span>
<span class="ocrx_word" id="word_1_78" title="bbox 754 1275 938 1310; x_wconf 96" lang="srp">КОЖОМ</span>
<span class="ocrx_word" id="word_1_79" title="bbox 968 1275 999 1307; x_wconf 92" lang="srp">И</span>
<span class="ocrx_word" id="word_1_80" title="bbox 1030 1273 1317 1307; x_wconf 91" lang="srp">ТЕКСТИЛОМ</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_23" title="bbox 345 1336 1498 1469">
<p class="ocr_par" id="par_1_16" lang="srp" title="bbox 345 1336 1498 1469">
<span class="ocr_line" id="line_1_20" title="bbox 428 1336 1496 1379; baseline -0.007 -6; x_size 40; x_descenders 6; x_ascenders 9">
<span class="ocrx_word" id="word_1_81" title="bbox 428 1339 484 1373; x_wconf 86">На</span>
<span class="ocrx_word" id="word_1_82" title="bbox 520 1348 686 1379; x_wconf 96">предлог</span>
<span class="ocrx_word" id="word_1_83" title="bbox 723 1339 925 1379; x_wconf 95">Министра</span>
<span class="ocrx_word" id="word_1_84" title="bbox 963 1347 1147 1377; x_wconf 96">трговине</span>
<span class="ocrx_word" id="word_1_85" title="bbox 1184 1347 1209 1370; x_wconf 96">и</span>
<span class="ocrx_word" id="word_1_86" title="bbox 1249 1336 1496 1372; x_wconf 96">снабдевања,</span>
</span>
<span class="ocr_line" id="line_1_21" title="bbox 345 1381 1498 1424; baseline -0.005 -7; x_size 39; x_descenders 6; x_ascenders 9">
<span class="ocrx_word" id="word_1_87" title="bbox 345 1384 567 1424; x_wconf 96">Привредни</span>
<span class="ocrx_word" id="word_1_88" title="bbox 596 1393 702 1417; x_wconf 96">савет</span>
<span class="ocrx_word" id="word_1_89" title="bbox 723 1392 870 1421; x_wconf 54">доноси</span>
<span class="ocrx_word" id="word_1_90" title="bbox 896 1384 1055 1421; x_wconf 96">следећу</span>
<span class="ocrx_word" id="word_1_91" title="bbox 1078 1381 1228 1421; x_wconf 96">Уредбу</span>
<span class="ocrx_word" id="word_1_92" title="bbox 1253 1392 1277 1415; x_wconf 95">о</span>
<span class="ocrx_word" id="word_1_93" title="bbox 1304 1386 1498 1416; x_wconf 91">оснивању</span>
</span>
<span class="ocr_line" id="line_1_22" title="bbox 347 1428 1496 1469; baseline -0.006 -7; x_size 39; x_descenders 7; x_ascenders 8">
<span class="ocrx_word" id="word_1_94" title="bbox 347 1438 545 1469; x_wconf 95">државног</span>
<span class="ocrx_word" id="word_1_95" title="bbox 578 1428 786 1467; x_wconf 96">предузећа</span>
<span class="ocrx_word" id="word_1_96" title="bbox 815 1438 857 1464; x_wconf 96">за</span>
<span class="ocrx_word" id="word_1_97" title="bbox 887 1435 1033 1466; x_wconf 96">промет</span>
<span class="ocrx_word" id="word_1_98" title="bbox 1064 1435 1197 1458; x_wconf 96">кожом</span>
<span class="ocrx_word" id="word_1_99" title="bbox 1228 1437 1248 1460; x_wconf 93">и</span>
<span class="ocrx_word" id="word_1_100" title="bbox 1280 1431 1496 1457; x_wconf 89">текстилом.</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_24" title="bbox 853 1500 989 1534">
<p class="ocr_par" id="par_1_17" lang="srp" title="bbox 853 1500 989 1534">
<span class="ocr_line" id="line_1_23" title="bbox 853 1500 989 1534; baseline -0.015 0; x_size 39.387756; x_descenders 5.3877549; x_ascenders 10">
<span class="ocrx_word" id="word_1_101" title="bbox 853 1500 952 1534; x_wconf 93">Члан</span>
<span class="ocrx_word" id="word_1_102" title="bbox 977 1502 989 1532; x_wconf 78" lang="srp_latn">1</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_25" title="bbox 344 1552 1498 2144">
<p class="ocr_par" id="par_1_18" lang="srp" title="bbox 345 1552 1498 1721">
<span class="ocr_line" id="line_1_24" title="bbox 435 1552 1498 1593; baseline -0.007 -5; x_size 42; x_descenders 6; x_ascenders 12">
<span class="ocrx_word" id="word_1_103" title="bbox 435 1555 586 1590; x_wconf 95">Оснива</span>
<span class="ocrx_word" id="word_1_104" title="bbox 606 1563 648 1588; x_wconf 96">се</span>
<span class="ocrx_word" id="word_1_105" title="bbox 677 1554 862 1593; x_wconf 96">Државно</span>
<span class="ocrx_word" id="word_1_106" title="bbox 892 1552 1101 1592; x_wconf 96">предузеће</span>
<span class="ocrx_word" id="word_1_107" title="bbox 1123 1561 1165 1588; x_wconf 96">за</span>
<span class="ocrx_word" id="word_1_108" title="bbox 1192 1559 1336 1592; x_wconf 96">промет</span>
<span class="ocrx_word" id="word_1_109" title="bbox 1363 1559 1498 1587; x_wconf 96">кожом</span>
</span>
<span class="ocr_line" id="line_1_25" title="bbox 345 1595 1496 1637; baseline -0.006 -5; x_size 41; x_descenders 8; x_ascenders 10">
<span class="ocrx_word" id="word_1_110" title="bbox 345 1609 370 1632; x_wconf 58">ни</span>
<span class="ocrx_word" id="word_1_111" title="bbox 398 1608 603 1631; x_wconf 92">текстилом</span>
<span class="ocrx_word" id="word_1_112" title="bbox 630 1606 671 1629; x_wconf 96">са</span>
<span class="ocrx_word" id="word_1_113" title="bbox 696 1606 897 1634; x_wconf 96">седиштем</span>
<span class="ocrx_word" id="word_1_114" title="bbox 923 1606 946 1637; x_wconf 96">у</span>
<span class="ocrx_word" id="word_1_115" title="bbox 970 1595 1172 1633; x_wconf 95">Београду,</span>
<span class="ocrx_word" id="word_1_116" title="bbox 1203 1606 1221 1629; x_wconf 95">а</span>
<span class="ocrx_word" id="word_1_117" title="bbox 1249 1602 1287 1634; x_wconf 91">са</span>
<span class="ocrx_word" id="word_1_118" title="bbox 1314 1600 1496 1631; x_wconf 56">дељокру-</span>
</span>
<span class="ocr_line" id="line_1_26" title="bbox 345 1633 1496 1678; baseline -0.006 -7; x_size 41.265919; x_descenders 7.130435; x_ascenders 9.9354839">
<span class="ocrx_word" id="word_1_119" title="bbox 345 1648 413 1671; x_wconf 92" lang="srp_latn">rOM</span>
<span class="ocrx_word" id="word_1_120" title="bbox 444 1647 542 1678; x_wconf 96">рада</span>
<span class="ocrx_word" id="word_1_121" title="bbox 569 1649 615 1673; x_wconf 89">на</span>
<span class="ocrx_word" id="word_1_122" title="bbox 648 1646 892 1676; x_wconf 96">целокупном</span>
<span class="ocrx_word" id="word_1_123" title="bbox 924 1637 1107 1676; x_wconf 96">подручју</span>
<span class="ocrx_word" id="word_1_124" title="bbox 1139 1644 1397 1673; x_wconf 93">демократске</span>
<span class="ocrx_word" id="word_1_125" title="bbox 1429 1633 1496 1671; x_wconf 0">фе•</span>
</span>
<span class="ocr_line" id="line_1_27" title="bbox 345 1682 826 1721; baseline -0.004 -5; x_size 40.071507; x_descenders 7.0715055; x_ascenders 9">
<span class="ocrx_word" id="word_1_126" title="bbox 345 1690 551 1721; x_wconf 90">деративне</span>
<span class="ocrx_word" id="word_1_127" title="bbox 578 1682 826 1720; x_wconf 96">Југославије.</span>
</span>
</p>
<p class="ocr_par" id="par_1_19" lang="srp" title="bbox 344 1732 1498 1918">
<span class="ocr_line" id="line_1_28" title="bbox 432 1732 1496 1775; baseline -0.007 -5; x_size 42; x_descenders 7; x_ascenders 10">
<span class="ocrx_word" id="word_1_128" title="bbox 432 1737 650 1775; x_wconf 96">Федералне</span>
<span class="ocrx_word" id="word_1_129" title="bbox 687 1738 869 1775; x_wconf 92">јединице</span>
<span class="ocrx_word" id="word_1_130" title="bbox 907 1734 1089 1768; x_wconf 38">основаће</span>
<span class="ocrx_word" id="word_1_131" title="bbox 1129 1732 1327 1766; x_wconf 92">Земаљске</span>
<span class="ocrx_word" id="word_1_132" title="bbox 1363 1739 1496 1772; x_wconf 34">дирек·</span>
</span>
<span class="ocr_line" id="line_1_29" title="bbox 351 1784 1498 1820; baseline -0.004 -5; x_size 37; x_descenders 6; x_ascenders 7">
<span class="ocrx_word" id="word_1_133" title="bbox 351 1784 434 1820; x_wconf 91">ције</span>
<span class="ocrx_word" id="word_1_134" title="bbox 459 1791 500 1815; x_wconf 96">за</span>
<span class="ocrx_word" id="word_1_135" title="bbox 520 1790 662 1820; x_wconf 96">промет</span>
<span class="ocrx_word" id="word_1_136" title="bbox 678 1790 817 1814; x_wconf 96">кожом</span>
<span class="ocrx_word" id="word_1_137" title="bbox 841 1790 862 1811; x_wconf 93" lang="srp_latn">H</span>
<span class="ocrx_word" id="word_1_138" title="bbox 884 1787 1104 1816; x_wconf 32">текстилом,</span>
<span class="ocrx_word" id="word_1_139" title="bbox 1129 1790 1147 1813; x_wconf 95">а</span>
<span class="ocrx_word" id="word_1_140" title="bbox 1166 1786 1235 1811; x_wconf 95">ове</span>
<span class="ocrx_word" id="word_1_141" title="bbox 1255 1785 1358 1815; x_wconf 92">опет,</span>
<span class="ocrx_word" id="word_1_142" title="bbox 1377 1784 1498 1816; x_wconf 73">дрема</span>
</span>
<span class="ocr_line" id="line_1_30" title="bbox 347 1824 1496 1864; baseline -0.008 -8; x_size 41.265919; x_descenders 7.130435; x_ascenders 9.9354839">
<span class="ocrx_word" id="word_1_143" title="bbox 347 1826 522 1864; x_wconf 96">потреби,</span>
<span class="ocrx_word" id="word_1_144" title="bbox 554 1831 787 1858; x_wconf 96">пословнице</span>
<span class="ocrx_word" id="word_1_145" title="bbox 821 1832 842 1853; x_wconf 92">и</span>
<span class="ocrx_word" id="word_1_146" title="bbox 871 1829 1158 1860; x_wconf 91">заступништва</span>
<span class="ocrx_word" id="word_1_147" title="bbox 1188 1829 1211 1856; x_wconf 94">у</span>
<span class="ocrx_word" id="word_1_148" title="bbox 1246 1827 1406 1851; x_wconf 93">осталим</span>
<span class="ocrx_word" id="word_1_149" title="bbox 1437 1824 1496 1849; x_wconf 86">ме-</span>
</span>
<span class="ocr_line" id="line_1_31" title="bbox 344 1878 1065 1918; baseline -0.007 -17; x_size 41.265919; x_descenders 7.130435; x_ascenders 9.9354839">
<span class="ocrx_word" id="word_1_150" title="bbox 344 1878 471 1901; x_wconf 92">стима.</span>
<span class="ocrx_word" id="word_1_151" title="bbox 713 1902 720 1918; x_wconf 83">,</span>
<span class="ocrx_word" id="word_1_152" title="bbox 932 1883 935 1886; x_wconf 78" lang="srp_latn">|</span>
<span class="ocrx_word" id="word_1_153" title="bbox 1057 1907 1065 1912; x_wconf 85" lang="srp_latn">.</span>
</span>
</p>
<p class="ocr_par" id="par_1_20" lang="srp" title="bbox 345 1916 1498 2045">
<span class="ocr_line" id="line_1_32" title="bbox 430 1916 1498 1957; baseline -0.008 -3; x_size 41.265919; x_descenders 7.130435; x_ascenders 9.9354839">
<span class="ocrx_word" id="word_1_154" title="bbox 430 1921 626 1955; x_wconf 96">Земаљске</span>
<span class="ocrx_word" id="word_1_155" title="bbox 653 1921 862 1957; x_wconf 96">дирекције</span>
<span class="ocrx_word" id="word_1_156" title="bbox 887 1926 1080 1952; x_wconf 95">пословни</span>
<span class="ocrx_word" id="word_1_157" title="bbox 1107 1926 1150 1955; x_wconf 96">су</span>
<span class="ocrx_word" id="word_1_158" title="bbox 1177 1925 1318 1957; x_wconf 16">органи</span>
<span class="ocrx_word" id="word_1_159" title="bbox 1347 1916 1498 1954; x_wconf 82">Држав-</span>
</span>
<span class="ocr_line" id="line_1_33" title="bbox 347 1964 1498 2004; baseline -0.008 -5; x_size 41.265919; x_descenders 7.130435; x_ascenders 9.9354839">
<span class="ocrx_word" id="word_1_160" title="bbox 347 1975 419 1999; x_wconf 90">нот</span>
<span class="ocrx_word" id="word_1_161" title="bbox 442 1964 659 2004; x_wconf 70">предузећа</span>
<span class="ocrx_word" id="word_1_162" title="bbox 678 1973 734 1999; x_wconf 96">за</span>
<span class="ocrx_word" id="word_1_163" title="bbox 750 1971 893 2002; x_wconf 96">промет</span>
<span class="ocrx_word" id="word_1_164" title="bbox 922 1971 1054 1995; x_wconf 91">кожом</span>
<span class="ocrx_word" id="word_1_165" title="bbox 1080 1973 1105 1995; x_wconf 93">и</span>
<span class="ocrx_word" id="word_1_166" title="bbox 1132 1970 1339 1994; x_wconf 91">текстилом</span>
<span class="ocrx_word" id="word_1_167" title="bbox 1363 1970 1409 1995; x_wconf 93">на</span>
<span class="ocrx_word" id="word_1_168" title="bbox 1434 1968 1498 1991; x_wconf 79">п0-</span>
</span>
<span class="ocr_line" id="line_1_34" title="bbox 345 2004 1363 2045; baseline -0.006 -2; x_size 45.250092; x_descenders 8.2500896; x_ascenders 9">
<span class="ocrx_word" id="word_1_169" title="bbox 345 2009 482 2045; x_wconf 92">дручју</span>
<span class="ocrx_word" id="word_1_170" title="bbox 507 2014 671 2043; x_wconf 96">дотичне</span>
<span class="ocrx_word" id="word_1_171" title="bbox 695 2006 915 2044; x_wconf 90">федералне</span>
<span class="ocrx_word" id="word_1_172" title="bbox 940 2004 1131 2042; x_wconf 48">јединице.</span>
<span class="ocrx_word" id="word_1_173" title="bbox 1355 2006 1363 2013; x_wconf 66" lang="srp_latn">|</span>
</span>
</p>
<p class="ocr_par" id="par_1_21" lang="srp" title="bbox 344 2055 1498 2144">
<span class="ocr_line" id="line_1_35" title="bbox 432 2055 1498 2099; baseline -0.007 -7; x_size 39; x_descenders 7; x_ascenders 9">
<span class="ocrx_word" id="word_1_174" title="bbox 432 2060 653 2099; x_wconf 90">Овлашћује</span>
<span class="ocrx_word" id="word_1_175" title="bbox 686 2069 727 2092; x_wconf 96">се</span>
<span class="ocrx_word" id="word_1_176" title="bbox 760 2058 958 2096; x_wconf 96">Министар</span>
<span class="ocrx_word" id="word_1_177" title="bbox 988 2065 1174 2096; x_wconf 96">трговине</span>
<span class="ocrx_word" id="word_1_178" title="bbox 1202 2066 1229 2089; x_wconf 68">ин</span>
<span class="ocrx_word" id="word_1_179" title="bbox 1258 2055 1498 2092; x_wconf 93">снабдевања</span>
</span>
<span class="ocr_line" id="line_1_36" title="bbox 344 2101 1190 2144; baseline -0.004 -7; x_size 41; x_descenders 8; x_ascenders 10">
<span class="ocrx_word" id="word_1_180" title="bbox 344 2114 389 2140; x_wconf 96">да</span>
<span class="ocrx_word" id="word_1_181" title="bbox 418 2115 470 2137; x_wconf 96">по</span>
<span class="ocrx_word" id="word_1_182" title="bbox 493 2105 662 2144; x_wconf 93">потреби</span>
<span class="ocrx_word" id="word_1_183" title="bbox 688 2102 829 2136; x_wconf 91">ловећа</span>
<span class="ocrx_word" id="word_1_184" title="bbox 859 2102 943 2141; x_wconf 89">број</span>
<span class="ocrx_word" id="word_1_185" title="bbox 972 2101 1190 2139; x_wconf 89">дирекција.</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_26" title="bbox 853 2187 994 2221">
<p class="ocr_par" id="par_1_22" lang="srp" title="bbox 853 2187 994 2221">
<span class="ocr_line" id="line_1_37" title="bbox 853 2187 994 2221; baseline -0.007 0; x_size 38.739132; x_descenders 5.7391305; x_ascenders 11">
<span class="ocrx_word" id="word_1_186" title="bbox 853 2187 994 2221; x_wconf 96">Члан</span>
<span class="ocrx_word" id="word_1_187" title="bbox 969 2183 997 2231; x_wconf 96">2</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_27" title="bbox 345 2252 1502 2514">
<p class="ocr_par" id="par_1_23" lang="srp" title="bbox 345 2252 1502 2514">
<span class="ocr_line" id="line_1_38" title="bbox 428 2252 1500 2294; baseline -0.007 -8; x_size 40; x_descenders 7; x_ascenders 9">
<span class="ocrx_word" id="word_1_188" title="bbox 428 2254 605 2294; x_wconf 96">Предмет</span>
<span class="ocrx_word" id="word_1_189" title="bbox 632 2261 726 2292; x_wconf 96">рада</span>
<span class="ocrx_word" id="word_1_190" title="bbox 751 2252 957 2290; x_wconf 96">предузећа</span>
<span class="ocrx_word" id="word_1_191" title="bbox 983 2252 1020 2289; x_wconf 96">је</span>
<span class="ocrx_word" id="word_1_192" title="bbox 1044 2260 1162 2289; x_wconf 94">откуп</span>
<span class="ocrx_word" id="word_1_193" title="bbox 1188 2260 1211 2289; x_wconf 95">у</span>
<span class="ocrx_word" id="word_1_194" title="bbox 1236 2254 1376 2289; x_wconf 95">земљи,</span>
<span class="ocrx_word" id="word_1_195" title="bbox 1401 2256 1500 2283; x_wconf 0">став.</span>
</span>
<span class="ocr_line" id="line_1_39" title="bbox 347 2294 1496 2337; baseline -0.006 -5; x_size 41; x_descenders 8; x_ascenders 9">
<span class="ocrx_word" id="word_1_196" title="bbox 347 2308 457 2332; x_wconf 92">љање</span>
<span class="ocrx_word" id="word_1_197" title="bbox 485 2310 505 2337; x_wconf 95">у</span>
<span class="ocrx_word" id="word_1_198" title="bbox 533 2306 688 2337; x_wconf 96">промет,</span>
<span class="ocrx_word" id="word_1_199" title="bbox 713 2305 826 2330; x_wconf 95">извоз</span>
<span class="ocrx_word" id="word_1_200" title="bbox 854 2305 874 2328; x_wconf 95">и</span>
<span class="ocrx_word" id="word_1_201" title="bbox 900 2303 1005 2334; x_wconf 96">увоз:</span>
<span class="ocrx_word" id="word_1_202" title="bbox 1035 2294 1069 2335; x_wconf 94">а)</span>
<span class="ocrx_word" id="word_1_203" title="bbox 1098 2303 1186 2326; x_wconf 96">свих</span>
<span class="ocrx_word" id="word_1_204" title="bbox 1211 2301 1325 2331; x_wconf 96">врста</span>
<span class="ocrx_word" id="word_1_205" title="bbox 1346 2301 1453 2325; x_wconf 96">кожа</span>
<span class="ocrx_word" id="word_1_206" title="bbox 1477 2298 1496 2326; x_wconf 95">У</span>
</span>
<span class="ocr_line" id="line_1_40" title="bbox 345 2336 1500 2382; baseline -0.009 -6; x_size 39; x_descenders 7; x_ascenders 8">
<span class="ocrx_word" id="word_1_207" title="bbox 345 2352 524 2382; x_wconf 86">сировом,</span>
<span class="ocrx_word" id="word_1_208" title="bbox 551 2342 924 2381; x_wconf 19">оолупрерађеном</span>
<span class="ocrx_word" id="word_1_209" title="bbox 903 2332 926 2386; x_wconf 93">и</span>
<span class="ocrx_word" id="word_1_210" title="bbox 937 2339 1175 2379; x_wconf 92">прерађеном</span>
<span class="ocrx_word" id="word_1_211" title="bbox 1197 2346 1334 2378; x_wconf 96">стању;</span>
<span class="ocrx_word" id="word_1_212" title="bbox 1359 2336 1395 2375; x_wconf 92" lang="srp_latn">6)</span>
<span class="ocrx_word" id="word_1_213" title="bbox 1410 2342 1500 2368; x_wconf 54">свих</span>
</span>
<span class="ocr_line" id="line_1_41" title="bbox 347 2382 1502 2425; baseline -0.01 -4; x_size 39; x_descenders 7; x_ascenders 8">
<span class="ocrx_word" id="word_1_214" title="bbox 347 2396 546 2425; x_wconf 45">средстава</span>
<span class="ocrx_word" id="word_1_215" title="bbox 578 2395 621 2418; x_wconf 96">за</span>
<span class="ocrx_word" id="word_1_216" title="bbox 656 2393 869 2418; x_wconf 95">штављење</span>
<span class="ocrx_word" id="word_1_217" title="bbox 904 2391 1019 2422; x_wconf 93">кожа;</span>
<span class="ocrx_word" id="word_1_218" title="bbox 1051 2382 1091 2420; x_wconf 92">в)</span>
<span class="ocrx_word" id="word_1_219" title="bbox 1123 2389 1215 2420; x_wconf 95">вуне</span>
<span class="ocrx_word" id="word_1_220" title="bbox 1246 2389 1271 2413; x_wconf 96">и</span>
<span class="ocrx_word" id="word_1_221" title="bbox 1301 2389 1449 2418; x_wconf 95">памука</span>
<span class="ocrx_word" id="word_1_222" title="bbox 1480 2386 1502 2409; x_wconf 92" lang="srp_latn">M</span>
</span>
<span class="ocr_line" id="line_1_42" title="bbox 348 2430 1500 2470; baseline -0.008 -7; x_size 40.815876; x_descenders 7.5714288; x_ascenders 8.8000002">
<span class="ocrx_word" id="word_1_223" title="bbox 348 2440 527 2463; x_wconf 92">њихових</span>
<span class="ocrx_word" id="word_1_224" title="bbox 561 2431 835 2469; x_wconf 44">прерафђевима;</span>
<span class="ocrx_word" id="word_1_225" title="bbox 870 2432 903 2470; x_wconf 59">г)</span>
<span class="ocrx_word" id="word_1_226" title="bbox 934 2434 1096 2460; x_wconf 96">осталих</span>
<span class="ocrx_word" id="word_1_227" title="bbox 1129 2432 1359 2458; x_wconf 93">текстилних</span>
<span class="ocrx_word" id="word_1_228" title="bbox 1393 2430 1500 2461; x_wconf 80">сиро-</span>
</span>
<span class="ocr_line" id="line_1_43" title="bbox 353 2476 775 2514; baseline -0.007 -6; x_size 36; x_descenders 6; x_ascenders 7">
<span class="ocrx_word" id="word_1_229" title="bbox 353 2485 445 2509; x_wconf 44">вина</span>
<span class="ocrx_word" id="word_1_230" title="bbox 462 2485 488 2508; x_wconf 53">и</span>
<span class="ocrx_word" id="word_1_231" title="bbox 509 2476 775 2514; x_wconf 88">прерађевина.</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_28" title="bbox 855 2555 997 2588">
<p class="ocr_par" id="par_1_24" lang="srp" title="bbox 855 2555 997 2588">
<span class="ocr_line" id="line_1_44" title="bbox 855 2555 997 2588; baseline 0 0; x_size 38.38298; x_descenders 5.3829789; x_ascenders 10">
<span class="ocrx_word" id="word_1_232" title="bbox 855 2555 955 2588; x_wconf 96">Члан</span>
<span class="ocrx_word" id="word_1_233" title="bbox 977 2555 997 2588; x_wconf 96">3</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_29" title="bbox 349 2621 1502 2748">
<p class="ocr_par" id="par_1_25" lang="srp" title="bbox 349 2621 1502 2748">
<span class="ocr_line" id="line_1_45" title="bbox 435 2621 1502 2661; baseline -0.008 -5; x_size 41; x_descenders 7; x_ascenders 9">
<span class="ocrx_word" id="word_1_234" title="bbox 435 2622 571 2661; x_wconf 91">Откуп,</span>
<span class="ocrx_word" id="word_1_235" title="bbox 600 2631 700 2661; x_wconf 96">увоз,</span>
<span class="ocrx_word" id="word_1_236" title="bbox 732 2627 843 2654; x_wconf 95">извоз</span>
<span class="ocrx_word" id="word_1_237" title="bbox 869 2629 893 2652; x_wconf 96">и</span>
<span class="ocrx_word" id="word_1_238" title="bbox 923 2625 1121 2651; x_wconf 95">стављање</span>
<span class="ocrx_word" id="word_1_239" title="bbox 1148 2625 1170 2656; x_wconf 95">у</span>
<span class="ocrx_word" id="word_1_240" title="bbox 1197 2623 1346 2656; x_wconf 93">промет</span>
<span class="ocrx_word" id="word_1_241" title="bbox 1368 2621 1502 2652; x_wconf 41">произ“</span>
</span>
<span class="ocr_line" id="line_1_46" title="bbox 349 2657 1502 2710; baseline -0.01 -10; x_size 39; x_descenders 6; x_ascenders 8">
<span class="ocrx_word" id="word_1_242" title="bbox 349 2676 441 2705; x_wconf 96">вода</span>
<span class="ocrx_word" id="word_1_243" title="bbox 470 2677 515 2699; x_wconf 96">из</span>
<span class="ocrx_word" id="word_1_244" title="bbox 549 2674 664 2699; x_wconf 96">члана</span>
<span class="ocrx_word" id="word_1_245" title="bbox 695 2665 715 2697; x_wconf 93" lang="srp_latn">2</span>
<span class="ocrx_word" id="word_1_246" title="bbox 745 2663 898 2704; x_wconf 49">вршиће</span>
<span class="ocrx_word" id="word_1_247" title="bbox 928 2669 1251 2710; x_wconf 34">искључиво.</span>
<span class="ocrx_word" id="word_1_248" title="bbox 1183 2659 1253 2714; x_wconf 34">080</span>
<span class="ocrx_word" id="word_1_249" title="bbox 1283 2657 1502 2697; x_wconf 93">предузеће.</span>
</span>
<span class="ocr_line" id="line_1_47" title="bbox 349 2703 1500 2748; baseline -0.011 -3; x_size 38; x_descenders 6; x_ascenders 8">
<span class="ocrx_word" id="word_1_250" title="bbox 349 2712 401 2747; x_wconf 96">То</span>
<span class="ocrx_word" id="word_1_251" title="bbox 431 2712 474 2744; x_wconf 95">ће</span>
<span class="ocrx_word" id="word_1_252" title="bbox 502 2710 599 2744; x_wconf 85">бити</span>
<span class="ocrx_word" id="word_1_253" title="bbox 624 2716 865 2748; x_wconf 93">непосредно</span>
<span class="ocrx_word" id="word_1_254" title="bbox 890 2715 1014 2744; x_wconf 96">путем</span>
<span class="ocrx_word" id="word_1_255" title="bbox 1039 2703 1340 2744; x_wconf 95">одговарајућих</span>
<span class="ocrx_word" id="word_1_256" title="bbox 1370 2708 1500 2739; x_wconf 80">откуп.</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_30" title="bbox 334 2748 1502 2798">
<p class="ocr_par" id="par_1_26" lang="srp" title="bbox 334 2748 1502 2798">
<span class="ocr_textfloat" id="line_1_48" title="bbox 334 2748 1502 2798; baseline -0.01 -11; x_size 41; x_descenders 8; x_ascenders 9">
<span class="ocrx_word" id="word_1_257" title="bbox 334 2764 421 2787; x_wconf 38">"њих</span>
<span class="ocrx_word" id="word_1_258" title="bbox 448 2764 469 2786; x_wconf 93">и</span>
<span class="ocrx_word" id="word_1_259" title="bbox 497 2755 707 2793; x_wconf 91">продајних</span>
<span class="ocrx_word" id="word_1_260" title="bbox 734 2749 1014 2798; x_wconf 35">организација,</span>
<span class="ocrx_word" id="word_1_261" title="bbox 1040 2748 1138 2780; x_wconf 96">било</span>
<span class="ocrx_word" id="word_1_262" title="bbox 1160 2753 1358 2786; x_wconf 95">посредно,</span>
<span class="ocrx_word" id="word_1_263" title="bbox 1383 2751 1502 2782; x_wconf 96">путем</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_31" title="bbox 1393 2832 1420 2840">
<p class="ocr_par" id="par_1_27" lang="srp_latn" title="bbox 1393 2832 1420 2840">
<span class="ocr_line" id="line_1_49" title="bbox 1393 2832 1420 2840; baseline 0.037 -1; x_size 20; x_descenders 5; x_ascenders 5">
<span class="ocrx_word" id="word_1_264" title="bbox 1393 2832 1420 2840; x_wconf 76">—</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_32" title="bbox 349 2791 1332 2903">
<p class="ocr_par" id="par_1_28" lang="srp" title="bbox 349 2791 1332 2903">
<span class="ocr_line" id="line_1_50" title="bbox 349 2791 1332 2838; baseline -0.01 -6; x_size 40.5; x_descenders 6; x_ascenders 11.5">
<span class="ocrx_word" id="word_1_265" title="bbox 349 2807 518 2838; x_wconf 92">вадруга,</span>
<span class="ocrx_word" id="word_1_266" title="bbox 540 2805 723 2836; x_wconf 96">трговаца</span>
<span class="ocrx_word" id="word_1_267" title="bbox 747 2805 770 2827; x_wconf 95">и</span>
<span class="ocrx_word" id="word_1_268" title="bbox 791 2800 1091 2832; x_wconf 94">индустријских</span>
<span class="ocrx_word" id="word_1_269" title="bbox 1116 2791 1332 2831; x_wconf 90">предузећа.</span>
</span>
<span class="ocr_line" id="line_1_51" title="bbox 378 2858 1066 2903; baseline -0.012 6; x_size 42.76923; x_descenders 5.7692308; x_ascenders 12">
<span class="ocrx_word" id="word_1_270" title="bbox 378 2858 391 2862; x_wconf 45">|</span>
<span class="ocrx_word" id="word_1_271" title="bbox 664 2869 667 2872; x_wconf 93" lang="srp_latn">|</span>
<span class="ocrx_word" id="word_1_272" title="bbox 855 2868 957 2903; x_wconf 57">Члан</span>
<span class="ocrx_word" id="word_1_273" title="bbox 976 2868 997 2901; x_wconf 49" lang="srp_latn">4</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_33" title="bbox 349 2928 1505 3165">
<p class="ocr_par" id="par_1_29" lang="srp" title="bbox 349 2928 1494 3021">
<span class="ocr_line" id="line_1_52" title="bbox 434 2928 1494 2972; baseline -0.01 0; x_size 42.050541; x_descenders 7.0505404; x_ascenders 10">
<span class="ocrx_word" id="word_1_274" title="bbox 434 2938 614 2972; x_wconf 84">Основна</span>
<span class="ocrx_word" id="word_1_275" title="bbox 650 2944 835 2971; x_wconf 81">главница</span>
<span class="ocrx_word" id="word_1_276" title="bbox 875 2933 1086 2971; x_wconf 96">предузећа</span>
<span class="ocrx_word" id="word_1_277" title="bbox 1127 2939 1265 2966; x_wconf 91">износи</span>
<span class="ocrx_word" id="word_1_278" title="bbox 1303 2928 1494 2966; x_wconf 91">30,000.000</span>
</span>
<span class="ocr_line" id="line_1_53" title="bbox 349 2991 500 3021; baseline 0 -5; x_size 42.703434; x_descenders 7.1666665; x_ascenders 10.125">
<span class="ocrx_word" id="word_1_279" title="bbox 349 2991 500 3021; x_wconf 92">динара,</span>
</span>
</p>
<p class="ocr_par" id="par_1_30" lang="srp" title="bbox 352 3034 1505 3165">
<span class="ocr_line" id="line_1_54" title="bbox 437 3034 1503 3075; baseline -0.013 -3; x_size 41.332561; x_descenders 7.332562; x_ascenders 8">
<span class="ocrx_word" id="word_1_280" title="bbox 437 3038 468 3072; x_wconf 96">О</span>
<span class="ocrx_word" id="word_1_281" title="bbox 491 3036 692 3075; x_wconf 89">повећању</span>
<span class="ocrx_word" id="word_1_282" title="bbox 719 3042 931 3068; x_wconf 83">пословног</span>
<span class="ocrx_word" id="word_1_283" title="bbox 956 3040 1143 3068; x_wconf 87">капитада</span>
<span class="ocrx_word" id="word_1_284" title="bbox 1166 3039 1190 3063; x_wconf 91">и</span>
<span class="ocrx_word" id="word_1_285" title="bbox 1219 3036 1413 3068; x_wconf 95">отварању</span>
<span class="ocrx_word" id="word_1_286" title="bbox 1442 3034 1503 3059; x_wconf 81">по</span>
</span>
<span class="ocr_line" id="line_1_55" title="bbox 354 3075 1505 3121; baseline -0.01 -6; x_size 42; x_descenders 7; x_ascenders 11">
<span class="ocrx_word" id="word_1_287" title="bbox 354 3081 518 3121; x_wconf 92">требних</span>
<span class="ocrx_word" id="word_1_288" title="bbox 552 3090 716 3120; x_wconf 92">кредита</span>
<span class="ocrx_word" id="word_1_289" title="bbox 752 3076 992 3117; x_wconf 89">одаучиваће</span>
<span class="ocrx_word" id="word_1_290" title="bbox 1024 3075 1224 3113; x_wconf 95">Министар</span>
<span class="ocrx_word" id="word_1_291" title="bbox 1262 3080 1448 3111; x_wconf 93">трговине</span>
<span class="ocrx_word" id="word_1_292" title="bbox 1484 3079 1505 3103; x_wconf 91" lang="srp_latn">H</span>
</span>
<span class="ocr_line" id="line_1_56" title="bbox 352 3115 1439 3165; baseline -0.011 -5; x_size 42; x_descenders 8; x_ascenders 9">
<span class="ocrx_word" id="word_1_293" title="bbox 352 3128 599 3165; x_wconf 96">снабдевања,</span>
<span class="ocrx_word" id="word_1_294" title="bbox 630 3131 866 3164; x_wconf 79">споразумно</span>
<span class="ocrx_word" id="word_1_295" title="bbox 891 3129 934 3153; x_wconf 76">оса</span>
<span class="ocrx_word" id="word_1_296" title="bbox 959 3120 1191 3158; x_wconf 91">Министром</span>
<span class="ocrx_word" id="word_1_297" title="bbox 1220 3115 1439 3157; x_wconf 38">финванкија.</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_34" title="bbox 437 3198 1507 3308">
<p class="ocr_par" id="par_1_31" lang="srp" title="bbox 437 3198 1507 3308">
<span class="ocr_line" id="line_1_57" title="bbox 864 3198 1005 3230; baseline -0.007 0; x_size 41.548302; x_descenders 9.5483027; x_ascenders 9">
<span class="ocrx_word" id="word_1_298" title="bbox 864 3198 961 3230; x_wconf 96">Члан</span>
<span class="ocrx_word" id="word_1_299" title="bbox 982 3198 1005 3230; x_wconf 91" lang="srp_latn">5</span>
</span>
<span class="ocr_line" id="line_1_58" title="bbox 437 3250 1507 3308; baseline -0.017 -5; x_size 49; x_descenders 11; x_ascenders 11">
<span class="ocrx_word" id="word_1_300" title="bbox 437 3266 685 3308; x_wconf 87">Предузећем</span>
<span class="ocrx_word" id="word_1_301" title="bbox 714 3272 891 3302; x_wconf 96">управља</span>
<span class="ocrx_word" id="word_1_302" title="bbox 923 3263 1096 3301; x_wconf 96">Управни</span>
<span class="ocrx_word" id="word_1_303" title="bbox 1129 3259 1251 3299; x_wconf 96">одбор</span>
<span class="ocrx_word" id="word_1_304" title="bbox 1286 3250 1374 3301; x_wconf 93">Који</span>
<span class="ocrx_word" id="word_1_305" title="bbox 1406 3263 1507 3288; x_wconf 1">сачи.</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_35" title="bbox 354 3297 1523 3351">
<p class="ocr_par" id="par_1_32" lang="srp" title="bbox 354 3297 1523 3351">
<span class="ocr_textfloat" id="line_1_59" title="bbox 354 3297 1523 3351; baseline -0.014 -5; x_size 46; x_descenders 8; x_ascenders 14">
<span class="ocrx_word" id="word_1_306" title="bbox 354 3313 493 3351; x_wconf 91">њавају</span>
<span class="ocrx_word" id="word_1_307" title="bbox 516 3318 709 3349; x_wconf 71">упрааних</span>
<span class="ocrx_word" id="word_1_308" title="bbox 738 3322 760 3344; x_wconf 82">н</span>
<span class="ocrx_word" id="word_1_309" title="bbox 781 3308 957 3346; x_wconf 87">најмање</span>
<span class="ocrx_word" id="word_1_310" title="bbox 977 3306 1008 3341; x_wconf 91">6,</span>
<span class="ocrx_word" id="word_1_311" title="bbox 1033 3312 1057 3335; x_wconf 93">а</span>
<span class="ocrx_word" id="word_1_312" title="bbox 1078 3304 1244 3341; x_wconf 96">највише</span>
<span class="ocrx_word" id="word_1_313" title="bbox 1273 3297 1309 3335; x_wconf 93" lang="srp_latn">|Q</span>
<span class="ocrx_word" id="word_1_314" title="bbox 1334 3308 1523 3333; x_wconf 57">чланова.</span>
<span class="ocrx_word" id="word_1_315" title="bbox 1504 3293 1525 3355; x_wconf 60" lang="srp_latn">.</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_36" title="bbox 352 3346 1510 3562">
<p class="ocr_par" id="par_1_33" lang="srp" title="bbox 352 3346 1510 3562">
<span class="ocr_line" id="line_1_60" title="bbox 355 3346 1508 3395; baseline -0.016 -6; x_size 43; x_descenders 10; x_ascenders 9">
<span class="ocrx_word" id="word_1_316" title="bbox 355 3356 574 3394; x_wconf 91">Управника</span>
<span class="ocrx_word" id="word_1_317" title="bbox 606 3363 632 3387; x_wconf 77" lang="srp_latn">%</span>
<span class="ocrx_word" id="word_1_318" title="bbox 650 3360 824 3395; x_wconf 93">чланове</span>
<span class="ocrx_word" id="word_1_319" title="bbox 857 3349 1050 3385; x_wconf 89">Управиог</span>
<span class="ocrx_word" id="word_1_320" title="bbox 1081 3346 1232 3384; x_wconf 87">одборе</span>
<span class="ocrx_word" id="word_1_321" title="bbox 1262 3348 1453 3376; x_wconf 76">поставља</span>
<span class="ocrx_word" id="word_1_322" title="bbox 1487 3347 1508 3371; x_wconf 84" lang="srp_latn">K</span>
</span>
<span class="ocr_line" id="line_1_61" title="bbox 352 3383 1509 3437; baseline -0.016 -4; x_size 41; x_descenders 6; x_ascenders 12">
<span class="ocrx_word" id="word_1_323" title="bbox 352 3400 519 3437; x_wconf 91">омењује</span>
<span class="ocrx_word" id="word_1_324" title="bbox 554 3396 751 3433; x_wconf 0">Ммивистар</span>
<span class="ocrx_word" id="word_1_325" title="bbox 785 3401 969 3432; x_wconf 92">трговине</span>
<span class="ocrx_word" id="word_1_326" title="bbox 999 3399 1024 3423; x_wconf 83" lang="srp_latn">H</span>
<span class="ocrx_word" id="word_1_327" title="bbox 1057 3389 1304 3425; x_wconf 88">снабдевања,</span>
<span class="ocrx_word" id="word_1_328" title="bbox 1339 3383 1399 3423; x_wconf 92">Од</span>
<span class="ocrx_word" id="word_1_329" title="bbox 1428 3392 1509 3416; x_wconf 92">чла-</span>
</span>
<span class="ocr_line" id="line_1_62" title="bbox 353 3428 1505 3479; baseline -0.016 -3; x_size 41; x_descenders 7; x_ascenders 10">
<span class="ocrx_word" id="word_1_330" title="bbox 353 3452 450 3477; x_wconf 83">нова.</span>
<span class="ocrx_word" id="word_1_331" title="bbox 475 3443 668 3479; x_wconf 89">Управног</span>
<span class="ocrx_word" id="word_1_332" title="bbox 695 3439 844 3476; x_wconf 96">одбора</span>
<span class="ocrx_word" id="word_1_333" title="bbox 868 3435 1068 3473; x_wconf 47">Министар</span>
<span class="ocrx_word" id="word_1_334" title="bbox 1094 3439 1281 3472; x_wconf 32">трговине</span>
<span class="ocrx_word" id="word_1_335" title="bbox 1308 3443 1332 3466; x_wconf 91">и</span>
<span class="ocrx_word" id="word_1_336" title="bbox 1354 3428 1505 3464; x_wconf 43">снабде.</span>
</span>
<span class="ocr_line" id="line_1_63" title="bbox 356 3468 1510 3520; baseline -0.016 -1; x_size 39; x_descenders 6; x_ascenders 9">
<span class="ocrx_word" id="word_1_337" title="bbox 356 3495 459 3519; x_wconf 93">вања</span>
<span class="ocrx_word" id="word_1_338" title="bbox 497 3485 655 3520; x_wconf 92">именује</span>
<span class="ocrx_word" id="word_1_339" title="bbox 698 3489 831 3513; x_wconf 93">стални</span>
<span class="ocrx_word" id="word_1_340" title="bbox 873 3488 1060 3511; x_wconf 93">пословни</span>
<span class="ocrx_word" id="word_1_341" title="bbox 1098 3477 1221 3513; x_wconf 96">одбор</span>
<span class="ocrx_word" id="word_1_342" title="bbox 1262 3482 1314 3511; x_wconf 92">од</span>
<span class="ocrx_word" id="word_1_343" title="bbox 1352 3473 1371 3504; x_wconf 96">3</span>
<span class="ocrx_word" id="word_1_344" title="bbox 1412 3482 1462 3508; x_wconf 95">до</span>
<span class="ocrx_word" id="word_1_345" title="bbox 1491 3468 1510 3501; x_wconf 96">5</span>
</span>
<span class="ocr_line" id="line_1_64" title="bbox 357 3536 526 3562; baseline -0.012 0; x_size 25.214209; x_descenders 4.2142086; x_ascenders 6.1711512">
<span class="ocrx_word" id="word_1_346" title="bbox 357 3536 526 3562; x_wconf 87">чланова.</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_37" title="bbox 866 3595 1005 3630">
<p class="ocr_par" id="par_1_34" lang="srp" title="bbox 866 3595 1005 3630">
<span class="ocr_line" id="line_1_65" title="bbox 866 3595 1005 3630; baseline 0 0; x_size 40.387756; x_descenders 5.3877549; x_ascenders 11">
<span class="ocrx_word" id="word_1_347" title="bbox 866 3595 962 3630; x_wconf 96">Члан</span>
<span class="ocrx_word" id="word_1_348" title="bbox 986 3597 1005 3630; x_wconf 96">6</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_38" title="bbox 441 3656 1511 3729">
<p class="ocr_par" id="par_1_35" lang="srp" title="bbox 441 3656 1511 3729">
<span class="ocr_line" id="line_1_66" title="bbox 441 3656 1511 3700; baseline -0.014 0; x_size 43; x_descenders 7; x_ascenders 12">
<span class="ocrx_word" id="word_1_349" title="bbox 441 3663 669 3699; x_wconf 91">Земаљским</span>
<span class="ocrx_word" id="word_1_350" title="bbox 699 3663 954 3700; x_wconf 91">дирекцијама</span>
<span class="ocrx_word" id="word_1_351" title="bbox 985 3659 1201 3697; x_wconf 96">управљају</span>
<span class="ocrx_word" id="word_1_352" title="bbox 1229 3656 1417 3693; x_wconf 89">пословни</span>
<span class="ocrx_word" id="word_1_353" title="bbox 1449 3659 1511 3685; x_wconf 80">Од-</span>
</span>
<span class="ocr_line" id="line_1_67" title="bbox 1343 3696 1510 3729; baseline -0.024 0; x_size 38.630138; x_descenders 6.6301374; x_ascenders 10">
<span class="ocrx_word" id="word_1_354" title="bbox 1343 3696 1362 3729; x_wconf 95">2</span>
<span class="ocrx_word" id="word_1_355" title="bbox 1387 3703 1510 3727; x_wconf 96">члана.</span>
</span>
</p>
</div>
<div class="ocr_separator" id="block_1_39" title="bbox 786 3968 1487 3983"></div>
<div class="ocr_separator" id="block_1_40" title="bbox 2016 986 2147 993"></div>
<div class="ocr_carea" id="block_1_41" title="bbox 2391 985 2709 993">
<p class="ocr_par" id="par_1_36" lang="srp" title="bbox 2391 985 2709 993">
<span class="ocr_line" id="line_1_68" title="bbox 2391 985 2709 993; baseline -0.006 -1; x_size 20; x_descenders 5; x_ascenders 5">
<span class="ocrx_word" id="word_1_356" title="bbox 2391 985 2709 993; x_wconf 28">бо</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_42" title="bbox 1564 1055 2746 1264">
<p class="ocr_par" id="par_1_37" lang="srp" title="bbox 1564 1055 2746 1264">
<span class="ocr_line" id="line_1_69" title="bbox 1568 1055 2706 1099; baseline -0.001 -10; x_size 41; x_descenders 7; x_ascenders 10">
<span class="ocrx_word" id="word_1_357" title="bbox 1568 1055 1732 1099; x_wconf 43">Чланове</span>
<span class="ocrx_word" id="word_1_358" title="bbox 1760 1057 1975 1091; x_wconf 87">Пословног</span>
<span class="ocrx_word" id="word_1_359" title="bbox 1998 1058 2146 1096; x_wconf 90">одбара</span>
<span class="ocrx_word" id="word_1_360" title="bbox 2172 1066 2360 1091; x_wconf 56">поставља</span>
<span class="ocrx_word" id="word_1_361" title="bbox 2382 1068 2407 1091; x_wconf 53">ин</span>
<span class="ocrx_word" id="word_1_362" title="bbox 2436 1057 2598 1095; x_wconf 95">смењује</span>
<span class="ocrx_word" id="word_1_363" title="bbox 2621 1064 2706 1091; x_wconf 54">мал</span>
</span>
<span class="ocr_line" id="line_1_70" title="bbox 1566 1096 2712 1140; baseline -0.001 -9; x_size 42.161835; x_descenders 8.2884617; x_ascenders 10.409091">
<span class="ocrx_word" id="word_1_364" title="bbox 1566 1108 1694 1132; x_wconf 92">лежни</span>
<span class="ocrx_word" id="word_1_365" title="bbox 1712 1098 1931 1140; x_wconf 91">Повереник</span>
<span class="ocrx_word" id="word_1_366" title="bbox 1946 1109 2112 1138; x_wconf 96">дотичне</span>
<span class="ocrx_word" id="word_1_367" title="bbox 2133 1102 2346 1140; x_wconf 6">федералне</span>
<span class="ocrx_word" id="word_1_368" title="bbox 2366 1102 2555 1138; x_wconf 9">јатинице.</span>
<span class="ocrx_word" id="word_1_369" title="bbox 2573 1096 2712 1136; x_wconf 33">Управ></span>
</span>
<span class="ocr_line" id="line_1_71" title="bbox 1564 1140 2746 1181; baseline 0.002 -8; x_size 42; x_descenders 8; x_ascenders 12">
<span class="ocrx_word" id="word_1_370" title="bbox 1564 1150 1661 1174; x_wconf 35">«иека</span>
<span class="ocrx_word" id="word_1_371" title="bbox 1694 1141 1907 1181; x_wconf 96">Дирекције</span>
<span class="ocrx_word" id="word_1_372" title="bbox 1937 1150 2130 1175; x_wconf 96">поставља</span>
<span class="ocrx_word" id="word_1_373" title="bbox 2166 1148 2366 1179; x_wconf 14">надлежни</span>
<span class="ocrx_word" id="word_1_374" title="bbox 2402 1140 2631 1181; x_wconf 55">Љовереник,</span>
<span class="ocrx_word" id="word_1_375" title="bbox 2668 1142 2712 1175; x_wconf 90">ма</span>
<span class="ocrx_word" id="word_1_376" title="bbox 2744 1164 2746 1166; x_wconf 87" lang="srp_latn">.</span>
</span>
<span class="ocr_line" id="line_1_72" title="bbox 1566 1181 2710 1223; baseline -0.002 -8; x_size 39; x_descenders 8; x_ascenders 8">
<span class="ocrx_word" id="word_1_377" title="bbox 1566 1192 1727 1221; x_wconf 30">предлог</span>
<span class="ocrx_word" id="word_1_378" title="bbox 1765 1184 1957 1223; x_wconf 82">Управног</span>
<span class="ocrx_word" id="word_1_379" title="bbox 1998 1184 2146 1223; x_wconf 85">одборљ</span>
<span class="ocrx_word" id="word_1_380" title="bbox 2180 1183 2386 1223; x_wconf 93">Државног</span>
<span class="ocrx_word" id="word_1_381" title="bbox 2423 1181 2634 1221; x_wconf 92">тредузећа</span>
<span class="ocrx_word" id="word_1_382" title="bbox 2670 1189 2710 1214; x_wconf 81" lang="srp_latn">34</span>
</span>
<span class="ocr_line" id="line_1_73" title="bbox 1567 1235 2155 1264; baseline 0.002 -5; x_size 42.161835; x_descenders 8.2884617; x_ascenders 10.409091">
<span class="ocrx_word" id="word_1_383" title="bbox 1567 1235 1709 1264; x_wconf 91">промет</span>
<span class="ocrx_word" id="word_1_384" title="bbox 1736 1237 1867 1260; x_wconf 95">кожом</span>
<span class="ocrx_word" id="word_1_385" title="bbox 1893 1238 1913 1259; x_wconf 93">и</span>
<span class="ocrx_word" id="word_1_386" title="bbox 1939 1236 2155 1260; x_wconf 91">текстилом.</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_43" title="bbox 2068 1309 2207 1342">
<p class="ocr_par" id="par_1_38" lang="srp" title="bbox 2068 1309 2207 1342">
<span class="ocr_line" id="line_1_74" title="bbox 2068 1309 2207 1342; baseline -0.007 0; x_size 38.372093; x_descenders 5.3720932; x_ascenders 12">
<span class="ocrx_word" id="word_1_387" title="bbox 2068 1309 2166 1342; x_wconf 95">Члан</span>
<span class="ocrx_word" id="word_1_388" title="bbox 2188 1309 2207 1341; x_wconf 95">7</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_44" title="bbox 1559 1370 2712 1642">
<p class="ocr_par" id="par_1_39" lang="srp" title="bbox 1559 1370 2710 1500">
<span class="ocr_line" id="line_1_75" title="bbox 1646 1370 2710 1413; baseline -0.003 -6; x_size 41; x_descenders 7; x_ascenders 10">
<span class="ocrx_word" id="word_1_389" title="bbox 1646 1374 1794 1409; x_wconf 90">Чистим</span>
<span class="ocrx_word" id="word_1_390" title="bbox 1824 1376 2023 1412; x_wconf 92">добитком</span>
<span class="ocrx_word" id="word_1_391" title="bbox 2056 1374 2267 1413; x_wconf 93">предузећа</span>
<span class="ocrx_word" id="word_1_392" title="bbox 2297 1372 2550 1413; x_wconf 91">располагаће</span>
<span class="ocrx_word" id="word_1_393" title="bbox 2584 1370 2710 1409; x_wconf 21">Мини</span>
</span>
<span class="ocr_line" id="line_1_76" title="bbox 1563 1415 2710 1457; baseline 0 -8; x_size 40; x_descenders 6; x_ascenders 10">
<span class="ocrx_word" id="word_1_394" title="bbox 1563 1426 1651 1457; x_wconf 87">стар</span>
<span class="ocrx_word" id="word_1_395" title="bbox 1683 1428 1867 1457; x_wconf 96">трговине</span>
<span class="ocrx_word" id="word_1_396" title="bbox 1899 1428 1926 1449; x_wconf 92">и</span>
<span class="ocrx_word" id="word_1_397" title="bbox 1959 1419 2200 1455; x_wconf 76">онабдевања</span>
<span class="ocrx_word" id="word_1_398" title="bbox 2232 1423 2476 1455; x_wconf 80">споразумно</span>
<span class="ocrx_word" id="word_1_399" title="bbox 2506 1426 2547 1451; x_wconf 93">са</span>
<span class="ocrx_word" id="word_1_400" title="bbox 2584 1415 2710 1456; x_wconf 87">Мини-</span>
</span>
<span class="ocr_line" id="line_1_77" title="bbox 1559 1462 1922 1500; baseline 0 -6; x_size 38; x_descenders 6; x_ascenders 9">
<span class="ocrx_word" id="word_1_401" title="bbox 1559 1471 1682 1500; x_wconf 25">стром</span>
<span class="ocrx_word" id="word_1_402" title="bbox 1705 1462 1922 1500; x_wconf 0">фмнавсија.</span>
</span>
</p>
<p class="ocr_par" id="par_1_40" lang="srp" title="bbox 1561 1514 2712 1642">
<span class="ocr_line" id="line_1_78" title="bbox 1646 1514 2709 1555; baseline -0.003 -8; x_size 41.911327; x_descenders 7.4285712; x_ascenders 10.24138">
<span class="ocrx_word" id="word_1_403" title="bbox 1646 1514 1858 1554; x_wconf 91">Расподелу</span>
<span class="ocrx_word" id="word_1_404" title="bbox 1896 1521 2169 1555; x_wconf 96">прикупљених</span>
<span class="ocrx_word" id="word_1_405" title="bbox 2205 1523 2389 1554; x_wconf 95">сировина</span>
<span class="ocrx_word" id="word_1_406" title="bbox 2423 1524 2447 1547; x_wconf 90">и</span>
<span class="ocrx_word" id="word_1_407" title="bbox 2481 1519 2709 1552; x_wconf 18">полупрера•</span>
</span>
<span class="ocr_line" id="line_1_79" title="bbox 1563 1557 2712 1598; baseline -0.002 -6; x_size 40; x_descenders 7; x_ascenders 9">
<span class="ocrx_word" id="word_1_408" title="bbox 1563 1561 1699 1597; x_wconf 92">ђевина</span>
<span class="ocrx_word" id="word_1_409" title="bbox 1730 1568 1837 1598; x_wconf 96">врши</span>
<span class="ocrx_word" id="word_1_410" title="bbox 1867 1557 2063 1597; x_wconf 96">Министар</span>
<span class="ocrx_word" id="word_1_411" title="bbox 2094 1568 2276 1597; x_wconf 79">трговине</span>
<span class="ocrx_word" id="word_1_412" title="bbox 2310 1566 2332 1590; x_wconf 93">и</span>
<span class="ocrx_word" id="word_1_413" title="bbox 2360 1558 2598 1593; x_wconf 95">снабдевања</span>
<span class="ocrx_word" id="word_1_414" title="bbox 2630 1566 2712 1590; x_wconf 27">сто“</span>
</span>
<span class="ocr_line" id="line_1_80" title="bbox 1561 1602 2299 1642; baseline 0 -7; x_size 41; x_descenders 8; x_ascenders 10">
<span class="ocrx_word" id="word_1_415" title="bbox 1561 1611 1729 1642; x_wconf 91">равумно</span>
<span class="ocrx_word" id="word_1_416" title="bbox 1750 1613 1790 1635; x_wconf 93">са</span>
<span class="ocrx_word" id="word_1_417" title="bbox 1810 1602 2041 1640; x_wconf 92">Министром</span>
<span class="ocrx_word" id="word_1_418" title="bbox 2063 1602 2299 1639; x_wconf 84">индустрије,</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_45" title="bbox 2068 1684 2211 1721">
<p class="ocr_par" id="par_1_41" lang="srp" title="bbox 2068 1684 2211 1721">
<span class="ocr_line" id="line_1_81" title="bbox 2068 1684 2211 1721; baseline -0.007 0; x_size 42.75; x_descenders 5.75; x_ascenders 14">
<span class="ocrx_word" id="word_1_419" title="bbox 2068 1684 2165 1721; x_wconf 96">Члан</span>
<span class="ocrx_word" id="word_1_420" title="bbox 2187 1684 2211 1720; x_wconf 96">8</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_46" title="bbox 1561 1750 2712 2022">
<p class="ocr_par" id="par_1_42" lang="srp" title="bbox 1564 1750 2712 1880">
<span class="ocr_line" id="line_1_82" title="bbox 1647 1750 2710 1794; baseline -0.003 -8; x_size 42; x_descenders 6; x_ascenders 14">
<span class="ocrx_word" id="word_1_421" title="bbox 1647 1750 1863 1793; x_wconf 95">Предузеће</span>
<span class="ocrx_word" id="word_1_422" title="bbox 1899 1754 2002 1792; x_wconf 95">стоји</span>
<span class="ocrx_word" id="word_1_423" title="bbox 2039 1761 2110 1791; x_wconf 93">под</span>
<span class="ocrx_word" id="word_1_424" title="bbox 2141 1757 2335 1790; x_wconf 8">«дАдзором</span>
<span class="ocrx_word" id="word_1_425" title="bbox 2372 1750 2570 1788; x_wconf 92">Министра</span>
<span class="ocrx_word" id="word_1_426" title="bbox 2607 1754 2710 1794; x_wconf 0">Трро:</span>
</span>
<span class="ocr_line" id="line_1_83" title="bbox 1565 1797 2712 1835; baseline -0.006 -4; x_size 39; x_descenders 7; x_ascenders 9">
<span class="ocrx_word" id="word_1_427" title="bbox 1565 1808 1653 1833; x_wconf 92">вине</span>
<span class="ocrx_word" id="word_1_428" title="bbox 1687 1809 1711 1831; x_wconf 94">и</span>
<span class="ocrx_word" id="word_1_429" title="bbox 1741 1799 1982 1834; x_wconf 96">снабдевања</span>
<span class="ocrx_word" id="word_1_430" title="bbox 2013 1799 2101 1834; x_wconf 96">који</span>
<span class="ocrx_word" id="word_1_431" title="bbox 2138 1797 2179 1829; x_wconf 96">ће</span>
<span class="ocrx_word" id="word_1_432" title="bbox 2212 1802 2446 1835; x_wconf 95">одлучивати</span>
<span class="ocrx_word" id="word_1_433" title="bbox 2481 1804 2501 1828; x_wconf 92">о</span>
<span class="ocrx_word" id="word_1_434" title="bbox 2537 1797 2712 1826; x_wconf 96">његовом</span>
</span>
<span class="ocr_line" id="line_1_84" title="bbox 1564 1842 2009 1880; baseline 0 -6; x_size 37; x_descenders 6; x_ascenders 8">
<span class="ocrx_word" id="word_1_435" title="bbox 1564 1847 1767 1880; x_wconf 95">престанку</span>
<span class="ocrx_word" id="word_1_436" title="bbox 1789 1851 1815 1873; x_wconf 90">и</span>
<span class="ocrx_word" id="word_1_437" title="bbox 1838 1842 2009 1878; x_wconf 94">спајању.</span>
</span>
</p>
<p class="ocr_par" id="par_1_43" lang="srp" title="bbox 1561 1894 2711 2022">
<span class="ocr_line" id="line_1_85" title="bbox 1651 1894 2711 1936; baseline -0.007 -8; x_size 39; x_descenders 6; x_ascenders 10">
<span class="ocrx_word" id="word_1_438" title="bbox 1651 1896 1824 1934; x_wconf 95">Одредбе</span>
<span class="ocrx_word" id="word_1_439" title="bbox 1863 1894 2008 1934; x_wconf 96">Уредбе</span>
<span class="ocrx_word" id="word_1_440" title="bbox 2043 1905 2067 1928; x_wconf 95">о</span>
<span class="ocrx_word" id="word_1_441" title="bbox 2105 1899 2312 1936; x_wconf 0">државном</span>
<span class="ocrx_word" id="word_1_442" title="bbox 2352 1897 2652 1930; x_wconf 95">рачуноводству</span>
<span class="ocrx_word" id="word_1_443" title="bbox 2690 1895 2711 1921; x_wconf 89">И</span>
</span>
<span class="ocr_line" id="line_1_86" title="bbox 1563 1934 2710 1975; baseline -0.006 -3; x_size 40.108555; x_descenders 6.826087; x_ascenders 9.818182">
<span class="ocrx_word" id="word_1_444" title="bbox 1563 1939 1703 1972; x_wconf 96">Закона</span>
<span class="ocrx_word" id="word_1_445" title="bbox 1731 1950 1757 1972; x_wconf 96">о</span>
<span class="ocrx_word" id="word_1_446" title="bbox 1785 1938 1937 1975; x_wconf 95">Главној</span>
<span class="ocrx_word" id="word_1_447" title="bbox 1969 1946 2157 1975; x_wconf 93">контроли</span>
<span class="ocrx_word" id="word_1_448" title="bbox 2184 1934 2272 1970; x_wconf 96">неће</span>
<span class="ocrx_word" id="word_1_449" title="bbox 2303 1943 2340 1968; x_wconf 96">се</span>
<span class="ocrx_word" id="word_1_450" title="bbox 2366 1939 2642 1973; x_wconf 96">примењивати</span>
<span class="ocrx_word" id="word_1_451" title="bbox 2668 1940 2710 1966; x_wconf 90">На</span>
</span>
<span class="ocr_line" id="line_1_87" title="bbox 1561 1982 1997 2022; baseline -0.007 -7; x_size 39; x_descenders 7; x_ascenders 8">
<span class="ocrx_word" id="word_1_452" title="bbox 1561 1993 1633 2017; x_wconf 95">ово</span>
<span class="ocrx_word" id="word_1_453" title="bbox 1662 1982 1877 2022; x_wconf 80">предузеће,</span>
<span class="ocrx_word" id="word_1_454" title="bbox 1992 1984 1997 1988; x_wconf 75" lang="srp_latn">|</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_47" title="bbox 1653 2063 2719 2173">
<p class="ocr_par" id="par_1_44" lang="srp" title="bbox 1653 2063 2719 2173">
<span class="ocr_line" id="line_1_88" title="bbox 2069 2063 2207 2100; baseline -0.022 1; x_size 43.011154; x_descenders 7.0111523; x_ascenders 13">
<span class="ocrx_word" id="word_1_455" title="bbox 2069 2064 2166 2100; x_wconf 93">Члан</span>
<span class="ocrx_word" id="word_1_456" title="bbox 2187 2063 2207 2098; x_wconf 93">9</span>
</span>
<span class="ocr_line" id="line_1_89" title="bbox 1653 2126 2719 2173; baseline -0.005 -9; x_size 43; x_descenders 7; x_ascenders 12">
<span class="ocrx_word" id="word_1_457" title="bbox 1653 2130 1926 2173; x_wconf 83">Правилинкем</span>
<span class="ocrx_word" id="word_1_458" title="bbox 1971 2132 2171 2170; x_wconf 90">Министра</span>
<span class="ocrx_word" id="word_1_459" title="bbox 2214 2137 2397 2170; x_wconf 96">трговине</span>
<span class="ocrx_word" id="word_1_460" title="bbox 2429 2135 2449 2161; x_wconf 96">и</span>
<span class="ocrx_word" id="word_1_461" title="bbox 2481 2126 2719 2173; x_wconf 96">снабдевања</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_48" title="bbox 1565 2171 2717 2258">
<p class="ocr_par" id="par_1_45" lang="srp" title="bbox 1565 2171 2717 2258">
<span class="ocr_line" id="line_1_90" title="bbox 1568 2171 2717 2217; baseline -0.008 -8; x_size 45; x_descenders 10; x_ascenders 9">
<span class="ocrx_word" id="word_1_462" title="bbox 1568 2177 1658 2209; x_wconf 96">биће</span>
<span class="ocrx_word" id="word_1_463" title="bbox 1698 2181 1909 2217; x_wconf 34">прописане</span>
<span class="ocrx_word" id="word_1_464" title="bbox 1948 2177 2072 2215; x_wconf 0">ближе</span>
<span class="ocrx_word" id="word_1_465" title="bbox 2108 2174 2277 2211; x_wconf 55">одрељбе</span>
<span class="ocrx_word" id="word_1_466" title="bbox 2315 2179 2341 2204; x_wconf 61">0</span>
<span class="ocrx_word" id="word_1_467" title="bbox 2378 2171 2650 2209; x_wconf 52">ортанизацији</span>
<span class="ocrx_word" id="word_1_468" title="bbox 2688 2174 2717 2200; x_wconf 55">+</span>
</span>
<span class="ocr_line" id="line_1_91" title="bbox 1565 2220 1901 2258; baseline -0.003 -7; x_size 37; x_descenders 5; x_ascenders 12">
<span class="ocrx_word" id="word_1_469" title="bbox 1565 2229 1658 2258; x_wconf 96">раду</span>
<span class="ocrx_word" id="word_1_470" title="bbox 1685 2220 1901 2258; x_wconf 96">предузећа.</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_49" title="bbox 1653 2297 2719 2577">
<p class="ocr_par" id="par_1_46" lang="srp" title="bbox 1653 2297 2719 2577">
<span class="ocr_line" id="line_1_92" title="bbox 2060 2297 2220 2349; baseline 0 -15; x_size 43.239677; x_descenders 6.2396789; x_ascenders 14">
<span class="ocrx_word" id="word_1_471" title="bbox 2060 2297 2158 2349; x_wconf 96">Члан</span>
<span class="ocrx_word" id="word_1_472" title="bbox 2185 2301 2220 2334; x_wconf 96" lang="srp_latn">10</span>
</span>
<span class="ocr_line" id="line_1_93" title="bbox 1653 2362 2718 2407; baseline -0.008 -5; x_size 41; x_descenders 6; x_ascenders 12">
<span class="ocrx_word" id="word_1_473" title="bbox 1653 2369 1728 2402; x_wconf 96">Ова</span>
<span class="ocrx_word" id="word_1_474" title="bbox 1757 2365 1904 2407; x_wconf 96">Уредба</span>
<span class="ocrx_word" id="word_1_475" title="bbox 1934 2372 2042 2406; x_wconf 95">ступа</span>
<span class="ocrx_word" id="word_1_476" title="bbox 2071 2374 2113 2398; x_wconf 95">на</span>
<span class="ocrx_word" id="word_1_477" title="bbox 2142 2373 2250 2402; x_wconf 75">снегу</span>
<span class="ocrx_word" id="word_1_478" title="bbox 2279 2369 2411 2399; x_wconf 84">одмах,</span>
<span class="ocrx_word" id="word_1_479" title="bbox 2713 2362 2718 2372; x_wconf 72" lang="srp_latn">j</span>
</span>
<span class="ocr_line" id="line_1_94" title="bbox 1824 2429 2719 2481; baseline -0.006 -5; x_size 50.952583; x_descenders 8.9525833; x_ascenders 9">
<span class="ocrx_word" id="word_1_480" title="bbox 1824 2443 1886 2481; x_wconf 96">Бр.</span>
<span class="ocrx_word" id="word_1_481" title="bbox 1912 2440 1952 2476; x_wconf 96">36</span>
<span class="ocrx_word" id="word_1_482" title="bbox 2439 2464 2442 2473; x_wconf 95" lang="srp_latn">,</span>
<span class="ocrx_word" id="word_1_483" title="bbox 2710 2429 2719 2438; x_wconf 62" lang="srp_latn">|</span>
</span>
<span class="ocr_line" id="line_1_95" title="bbox 1653 2485 2150 2524; baseline -0.004 -7; x_size 39; x_descenders 7; x_ascenders 10">
<span class="ocrx_word" id="word_1_484" title="bbox 1653 2485 1693 2517; x_wconf 93" lang="srp_latn">97</span>
<span class="ocrx_word" id="word_1_485" title="bbox 1732 2494 1846 2524; x_wconf 95">марта</span>
<span class="ocrx_word" id="word_1_486" title="bbox 1890 2485 1970 2517; x_wconf 84" lang="srp_latn">1945</span>
<span class="ocrx_word" id="word_1_487" title="bbox 2004 2488 2150 2521; x_wconf 96">године</span>
</span>
<span class="ocr_line" id="line_1_96" title="bbox 1815 2540 1982 2577; baseline -0.012 0; x_size 44.86742; x_descenders 7.8674212; x_ascenders 8">
<span class="ocrx_word" id="word_1_488" title="bbox 1815 2540 1982 2577; x_wconf 95">Београд</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_50" title="bbox 2005 2577 2717 2745">
<p class="ocr_par" id="par_1_47" lang="srp" title="bbox 2005 2577 2717 2745">
<span class="ocr_line" id="line_1_97" title="bbox 2005 2577 2717 2644; baseline -0.011 -8.955; x_size 44; x_descenders 6; x_ascenders 14">
<span class="ocrx_word" id="word_1_489" title="bbox 2005 2577 2248 2644; x_wconf 87">Претседник</span>
<span class="ocrx_word" id="word_1_490" title="bbox 2290 2593 2537 2637; x_wconf 77">Привредног</span>
<span class="ocrx_word" id="word_1_491" title="bbox 2576 2599 2717 2634; x_wconf 57">савета,</span>
</span>
<span class="ocr_line" id="line_1_98" title="bbox 2132 2645 2708 2693; baseline -0.01 -5; x_size 43; x_descenders 6; x_ascenders 13">
<span class="ocrx_word" id="word_1_492" title="bbox 2132 2654 2332 2693; x_wconf 96">Министар</span>
<span class="ocrx_word" id="word_1_493" title="bbox 2366 2652 2591 2690; x_wconf 96">индустрије</span>
<span class="ocrx_word" id="word_1_494" title="bbox 2701 2645 2708 2656; x_wconf 72" lang="srp_latn">|</span>
</span>
<span class="ocr_line" id="line_1_99" title="bbox 2123 2704 2607 2745; baseline -0.012 -4; x_size 41.595589; x_descenders 6.5955882; x_ascenders 9">
<span class="ocrx_word" id="word_1_495" title="bbox 2123 2706 2290 2745; x_wconf 95">Андрија</span>
<span class="ocrx_word" id="word_1_496" title="bbox 2316 2704 2492 2743; x_wconf 87">Хебранг,</span>
<span class="ocrx_word" id="word_1_497" title="bbox 2519 2712 2548 2737; x_wconf 95">с.</span>
<span class="ocrx_word" id="word_1_498" title="bbox 2573 2711 2607 2742; x_wconf 80">0.</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_51" title="bbox 1570 2773 2530 2867">
<p class="ocr_par" id="par_1_48" lang="srp" title="bbox 1570 2773 2530 2867">
<span class="ocr_line" id="line_1_100" title="bbox 1570 2773 2335 2816; baseline -0.013 -4; x_size 43.738419; x_descenders 5.7384195; x_ascenders 12">
<span class="ocrx_word" id="word_1_499" title="bbox 1570 2773 1766 2816; x_wconf 96">Министар</span>
<span class="ocrx_word" id="word_1_500" title="bbox 1804 2782 1987 2814; x_wconf 95">трговине</span>
<span class="ocrx_word" id="word_1_501" title="bbox 2025 2782 2049 2805; x_wconf 95">и</span>
<span class="ocrx_word" id="word_1_502" title="bbox 2087 2773 2335 2809; x_wconf 94">снабдевања,</span>
</span>
<span class="ocr_line" id="line_1_101" title="bbox 1700 2824 2530 2867; baseline -0.011 -4; x_size 46; x_descenders 8; x_ascenders 13">
<span class="ocrx_word" id="word_1_503" title="bbox 1700 2825 1852 2865; x_wconf 96">Никола</span>
<span class="ocrx_word" id="word_1_504" title="bbox 1881 2827 2085 2867; x_wconf 96">Петровић,</span>
<span class="ocrx_word" id="word_1_505" title="bbox 2114 2835 2143 2859; x_wconf 96">с.</span>
<span class="ocrx_word" id="word_1_506" title="bbox 2171 2832 2204 2863; x_wconf 78" lang="srp_latn">0.</span>
<span class="ocrx_word" id="word_1_507" title="bbox 2510 2824 2530 2861; x_wconf 22" lang="srp_latn">.</span>
</span>
</p>
</div>
<div class="ocr_separator" id="block_1_52" title="bbox 2020 2901 2274 2917"></div>
<div class="ocr_carea" id="block_1_53" title="bbox 1661 3019 2727 3344">
<p class="ocr_par" id="par_1_49" lang="srp_latn" title="bbox 1661 3019 2727 3344">
<span class="ocr_line" id="line_1_102" title="bbox 1701 3019 1808 3074; baseline -0.028 1; x_size 66.078949; x_descenders 12.078947; x_ascenders 20.605263">
<span class="ocrx_word" id="word_1_508" title="bbox 1701 3019 1808 3074; x_wconf 92">178.</span>
</span>
<span class="ocr_line" id="line_1_103" title="bbox 1707 3092 2320 3147; baseline -0.013 0; x_size 56.289474; x_descenders 10.289474; x_ascenders 17.552631">
<span class="ocrx_word" id="word_1_509" title="bbox 1707 3130 1709 3132; x_wconf 85">|</span>
<span class="ocrx_word" id="word_1_510" title="bbox 1975 3092 2320 3147; x_wconf 96" lang="srp">УРЕДБА</span>
</span>
<span class="ocr_line" id="line_1_104" title="bbox 1685 3162 2614 3227; baseline -0.016 -12; x_size 70.361702; x_descenders 17; x_ascenders 20.361702">
<span class="ocrx_word" id="word_1_511" title="bbox 1685 3179 1715 3216; x_wconf 93" lang="srp">О</span>
<span class="ocrx_word" id="word_1_512" title="bbox 1746 3169 2017 3227; x_wconf 95" lang="srp">ОСНИВАЊУ</span>
<span class="ocrx_word" id="word_1_513" title="bbox 2047 3172 2307 3226; x_wconf 96" lang="srp">ДРЖАВНОГ</span>
<span class="ocrx_word" id="word_1_514" title="bbox 2335 3162 2614 3209; x_wconf 96" lang="srp">ПРЕДУЗЕЋА</span>
</span>
<span class="ocr_line" id="line_1_105" title="bbox 1867 3224 2427 3265; baseline -0.016 0; x_size 39.157894; x_descenders 7.1578946; x_ascenders 12.210526">
<span class="ocrx_word" id="word_1_515" title="bbox 1867 3228 1927 3265; x_wconf 93" lang="srp">ЗА</span>
<span class="ocrx_word" id="word_1_516" title="bbox 1946 3225 2144 3263; x_wconf 91" lang="srp">ПРОМЕТ</span>
<span class="ocrx_word" id="word_1_517" title="bbox 2162 3224 2427 3262; x_wconf 62" lang="srp">ОТПАЦИМА</span>
</span>
<span class="ocr_line" id="line_1_106" title="bbox 1661 3293 2727 3344; baseline -0.018 -4; x_size 43; x_descenders 6; x_ascenders 14">
<span class="ocrx_word" id="word_1_518" title="bbox 1661 3303 1718 3342; x_wconf 93" lang="srp">На</span>
<span class="ocrx_word" id="word_1_519" title="bbox 1759 3310 1919 3344; x_wconf 96" lang="srp">предлог</span>
<span class="ocrx_word" id="word_1_520" title="bbox 1964 3302 2164 3338; x_wconf 96" lang="srp">Министра</span>
<span class="ocrx_word" id="word_1_521" title="bbox 2207 3305 2393 3337; x_wconf 92" lang="srp">трговине</span>
<span class="ocrx_word" id="word_1_522" title="bbox 2423 3302 2445 3328; x_wconf 93">H</span>
<span class="ocrx_word" id="word_1_523" title="bbox 2477 3293 2727 3339; x_wconf 68" lang="srp">снабдевања,</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_54" title="bbox 1575 3342 2727 3454">
<p class="ocr_par" id="par_1_50" lang="srp" title="bbox 1575 3342 2727 3454">
<span class="ocr_line" id="line_1_107" title="bbox 1575 3342 2727 3401; baseline -0.016 -7; x_size 43; x_descenders 8; x_ascenders 12">
<span class="ocrx_word" id="word_1_524" title="bbox 1575 3358 1800 3401; x_wconf 95">Привредни</span>
<span class="ocrx_word" id="word_1_525" title="bbox 1827 3367 1932 3389; x_wconf 96">савет</span>
<span class="ocrx_word" id="word_1_526" title="bbox 1959 3363 2099 3391; x_wconf 96">доноси</span>
<span class="ocrx_word" id="word_1_527" title="bbox 2126 3348 2284 3387; x_wconf 96">следећу</span>
<span class="ocrx_word" id="word_1_528" title="bbox 2310 3342 2460 3388; x_wconf 96">Уредбу</span>
<span class="ocrx_word" id="word_1_529" title="bbox 2486 3356 2508 3380; x_wconf 96">о</span>
<span class="ocrx_word" id="word_1_530" title="bbox 2533 3350 2727 3380; x_wconf 95">оснивању</span>
</span>
<span class="ocr_line" id="line_1_108" title="bbox 1577 3404 2481 3454; baseline -0.015 -7; x_size 44.5; x_descenders 8.5; x_ascenders 12.5">
<span class="ocrx_word" id="word_1_531" title="bbox 1577 3422 1773 3454; x_wconf 96">државног</span>
<span class="ocrx_word" id="word_1_532" title="bbox 1804 3404 2009 3450; x_wconf 94">предузећа</span>
<span class="ocrx_word" id="word_1_533" title="bbox 2038 3416 2078 3439; x_wconf 96">за</span>
<span class="ocrx_word" id="word_1_534" title="bbox 2109 3412 2251 3444; x_wconf 93">промет</span>
<span class="ocrx_word" id="word_1_535" title="bbox 2283 3404 2481 3437; x_wconf 68">отпацима,</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_55" title="bbox 2078 3488 2225 3520">
<p class="ocr_par" id="par_1_51" lang="srp" title="bbox 2078 3488 2225 3520">
<span class="ocr_line" id="line_1_109" title="bbox 2078 3488 2225 3520; baseline 0 0; x_size 37.75; x_descenders 5.75; x_ascenders 9">
<span class="ocrx_word" id="word_1_536" title="bbox 2078 3489 2183 3520; x_wconf 63">Члан:</span>
<span class="ocrx_word" id="word_1_537" title="bbox 2203 3488 2225 3520; x_wconf 93">1.</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_56" title="bbox 1669 3546 2721 3596">
<p class="ocr_par" id="par_1_52" lang="srp" title="bbox 1669 3546 2721 3596">
<span class="ocr_line" id="line_1_110" title="bbox 1669 3546 2721 3596; baseline -0.023 -2; x_size 41.75; x_descenders 6.5; x_ascenders 11.75">
<span class="ocrx_word" id="word_1_538" title="bbox 1669 3560 1812 3594; x_wconf 96">Оснива</span>
<span class="ocrx_word" id="word_1_539" title="bbox 1842 3564 1881 3589; x_wconf 96">се</span>
<span class="ocrx_word" id="word_1_540" title="bbox 1910 3549 2114 3596; x_wconf 50">„Државно</span>
<span class="ocrx_word" id="word_1_541" title="bbox 2143 3548 2350 3589; x_wconf 96">предузеће</span>
<span class="ocrx_word" id="word_1_542" title="bbox 2378 3554 2420 3580; x_wconf 96">за</span>
<span class="ocrx_word" id="word_1_543" title="bbox 2441 3552 2587 3583; x_wconf 91">промет</span>
<span class="ocrx_word" id="word_1_544" title="bbox 2616 3546 2721 3574; x_wconf 80">отпа-</span>
</span>
</p>
</div>
<div class="ocr_carea" id="block_1_57" title="bbox 1577 3581 2730 3681">
<p class="ocr_par" id="par_1_53" lang="srp" title="bbox 1577 3581 2730 3681">
<span class="ocr_line" id="line_1_111" title="bbox 1577 3581 2727 3643; baseline -0.019 -5; x_size 38; x_descenders 6; x_ascenders 8">
<span class="ocrx_word" id="word_1_545" title="bbox 1577 3612 1677 3642; x_wconf 73">цима</span>
<span class="ocrx_word" id="word_1_546" title="bbox 1705 3614 1745 3636; x_wconf 93">са</span>
<span class="ocrx_word" id="word_1_547" title="bbox 1766 3608 1964 3637; x_wconf 60">свдиштем</span>
<span class="ocrx_word" id="word_1_548" title="bbox 1986 3606 2009 3634; x_wconf 93">у</span>
<span class="ocrx_word" id="word_1_549" title="bbox 2035 3596 2240 3643; x_wconf 0">Беотрау,</span>
<span class="ocrx_word" id="word_1_550" title="bbox 2261 3605 2286 3628; x_wconf 74">а,</span>
<span class="ocrx_word" id="word_1_551" title="bbox 2304 3599 2348 3625; x_wconf 68">се</span>
<span class="ocrx_word" id="word_1_552" title="bbox 2375 3592 2527 3647; x_wconf 4">деложру</span>
<span class="ocrx_word" id="word_1_553" title="bbox 2544 3592 2614 3647; x_wconf 71">голе</span>
<span class="ocrx_word" id="word_1_554" title="bbox 2625 3581 2727 3629; x_wconf 93">рада</span>
</span>
<span class="ocr_line" id="line_1_112" title="bbox 1581 3626 2730 3681; baseline -0.021 -1; x_size 35.632652; x_descenders 6; x_ascenders 7.6326532">
<span class="ocrx_word" id="word_1_555" title="bbox 1581 3657 1624 3681; x_wconf 96">на</span>