jpostcode_rs 0.1.4

Japanese postal code lookup library in Rust, powered by jpostcode-data
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
{
  "0000": {
    "postcode": "5840000",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "",
    "town_kana": "",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0001": {
    "postcode": "5840001",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "梅の里",
    "town_kana": "ウメノサト",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0002": {
    "postcode": "5840002",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "平町",
    "town_kana": "ヒラチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0003": {
    "postcode": "5840003",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "喜志新家町",
    "town_kana": "キシシンケチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0004": {
    "postcode": "5840004",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "木戸山町",
    "town_kana": "キドヤマチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0005": {
    "postcode": "5840005",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "喜志町",
    "town_kana": "キシチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0006": {
    "postcode": "5840006",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "旭ケ丘町",
    "town_kana": "アサヒガオカチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0007": {
    "postcode": "5840007",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "南旭ケ丘町",
    "town_kana": "ミナミアサヒガオカチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0008": {
    "postcode": "5840008",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "喜志",
    "town_kana": "キシ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0011": {
    "postcode": "5840011",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "宮町",
    "town_kana": "ミヤチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0012": {
    "postcode": "5840012",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "粟ケ池町",
    "town_kana": "アワガイケチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0013": {
    "postcode": "5840013",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "桜井町",
    "town_kana": "サクライチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0014": {
    "postcode": "5840014",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "川面町",
    "town_kana": "カワヅラチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0015": {
    "postcode": "5840015",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "西条町",
    "town_kana": "サイジョウチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0016": {
    "postcode": "5840016",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "通法寺町",
    "town_kana": "ツウホウジチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0021": {
    "postcode": "5840021",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "中野町",
    "town_kana": "ナカノチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0022": {
    "postcode": "5840022",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "中野町東",
    "town_kana": "ナカノチョウヒガシ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0023": {
    "postcode": "5840023",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "若松町東",
    "town_kana": "ワカマツチョウヒガシ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0024": {
    "postcode": "5840024",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "若松町",
    "town_kana": "ワカマツチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0025": {
    "postcode": "5840025",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "若松町西",
    "town_kana": "ワカマツチョウニシ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0026": {
    "postcode": "5840026",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "緑ケ丘町",
    "town_kana": "ミドリガオカチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0027": {
    "postcode": "5840027",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "中野",
    "town_kana": "ナカノ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0028": {
    "postcode": "5840028",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "中野町西",
    "town_kana": "ナカノチョウニシ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0031": {
    "postcode": "5840031",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "寿町",
    "town_kana": "コトブキチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0032": {
    "postcode": "5840032",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "常盤町",
    "town_kana": "トキワチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0033": {
    "postcode": "5840033",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "富田林町",
    "town_kana": "トンダバヤシチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0034": {
    "postcode": "5840034",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "清水町",
    "town_kana": "シミズチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0035": {
    "postcode": "5840035",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "谷川町",
    "town_kana": "タニガワチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0036": {
    "postcode": "5840036",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "甲田",
    "town_kana": "コウダ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0037": {
    "postcode": "5840037",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "宮甲田町",
    "town_kana": "ミヤコウダチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0038": {
    "postcode": "5840038",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "錦ケ丘町",
    "town_kana": "ニシキガオカチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0039": {
    "postcode": "5840039",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "美山台",
    "town_kana": "ミヤマダイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0040": {
    "postcode": "5840040",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "かがり台",
    "town_kana": "カガリダイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0041": {
    "postcode": "5840041",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "楠町",
    "town_kana": "クスノキチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0042": {
    "postcode": "5840042",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "北大伴町",
    "town_kana": "キタオオトモチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0043": {
    "postcode": "5840043",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "南大伴町",
    "town_kana": "ミナミオオトモチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0044": {
    "postcode": "5840044",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "別井",
    "town_kana": "ベツイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0045": {
    "postcode": "5840045",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "山中田町",
    "town_kana": "ヤマチュウダチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0046": {
    "postcode": "5840046",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "東板持町",
    "town_kana": "ヒガシイタモチチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0047": {
    "postcode": "5840047",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "山手町",
    "town_kana": "ヤマテチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0048": {
    "postcode": "5840048",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "西板持町",
    "town_kana": "ニシイタモチチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0049": {
    "postcode": "5840049",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "川向町",
    "town_kana": "カワムカイチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0051": {
    "postcode": "5840051",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "楠風台",
    "town_kana": "ナンプウダイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0052": {
    "postcode": "5840052",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "佐備",
    "town_kana": "サビ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0053": {
    "postcode": "5840053",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "龍泉",
    "town_kana": "リュウセン",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0054": {
    "postcode": "5840054",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "甘南備",
    "town_kana": "カンナビ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0055": {
    "postcode": "5840055",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "伏見堂",
    "town_kana": "フシミドウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0056": {
    "postcode": "5840056",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "",
    "town_kana": "ウレシ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0057": {
    "postcode": "5840057",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "横山",
    "town_kana": "ヨコヤマ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0058": {
    "postcode": "5840058",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "彼方",
    "town_kana": "オチカタ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0061": {
    "postcode": "5840061",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "伏山",
    "town_kana": "フシヤマ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0062": {
    "postcode": "5840062",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "須賀",
    "town_kana": "スガ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0063": {
    "postcode": "5840063",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "錦織",
    "town_kana": "ニシキオリ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0064": {
    "postcode": "5840064",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "不動ケ丘町",
    "town_kana": "フドウガオカチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0065": {
    "postcode": "5840065",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "金剛伏山台",
    "town_kana": "コンゴウフシヤマダイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0066": {
    "postcode": "5840066",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "錦織北",
    "town_kana": "ニシキオリキタ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0067": {
    "postcode": "5840067",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "錦織南",
    "town_kana": "ニシキオリミナミ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0068": {
    "postcode": "5840068",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "錦織中",
    "town_kana": "ニシキオリナカ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0069": {
    "postcode": "5840069",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "錦織東",
    "town_kana": "ニシキオリヒガシ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0070": {
    "postcode": "5840070",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "金剛錦織台",
    "town_kana": "コンゴウニシキオリダイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0071": {
    "postcode": "5840071",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "藤沢台",
    "town_kana": "フジサワダイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0072": {
    "postcode": "5840072",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "高辺台",
    "town_kana": "タカベダイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0073": {
    "postcode": "5840073",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "寺池台",
    "town_kana": "テライケダイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0074": {
    "postcode": "5840074",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "久野喜台",
    "town_kana": "クノキダイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0076": {
    "postcode": "5840076",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "青葉丘",
    "town_kana": "アオバオカ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0077": {
    "postcode": "5840077",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "新青葉丘町",
    "town_kana": "シンアオバオカチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0078": {
    "postcode": "5840078",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "加太",
    "town_kana": "カダ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0079": {
    "postcode": "5840079",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "五軒家",
    "town_kana": "ゴケンヤ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0081": {
    "postcode": "5840081",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "廿山",
    "town_kana": "ツヅヤマ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0082": {
    "postcode": "5840082",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "向陽台",
    "town_kana": "コウヨウダイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0083": {
    "postcode": "5840083",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "小金台",
    "town_kana": "コガネダイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0084": {
    "postcode": "5840084",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "桜ケ丘町",
    "town_kana": "サクラガオカチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0085": {
    "postcode": "5840085",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "新家",
    "town_kana": "シンケ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0086": {
    "postcode": "5840086",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "津々山台",
    "town_kana": "ツヅヤマダイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0091": {
    "postcode": "5840091",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "新堂",
    "town_kana": "シンドウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0092": {
    "postcode": "5840092",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "昭和町",
    "town_kana": "ショウワチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0093": {
    "postcode": "5840093",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "本町",
    "town_kana": "ホンマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0094": {
    "postcode": "5840094",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "富美ケ丘町",
    "town_kana": "フミガオカチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0095": {
    "postcode": "5840095",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "毛人谷",
    "town_kana": "エビタニ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8501": {
    "postcode": "5848501",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "若松町西",
    "town_kana": "ワカマツチョウニシ",
    "street": "2丁目1697番地1",
    "office_name": "富田林税務署",
    "office_name_kana": "トンダバヤシゼイムシヨ"
  },
  "8511": {
    "postcode": "5848511",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "常盤町",
    "town_kana": "トキワチョウ",
    "street": "1−1",
    "office_name": "富田林市役所",
    "office_name_kana": "トンダバヤシシヤクシヨ"
  },
  "8522": {
    "postcode": "5848522",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "錦織北",
    "town_kana": "ニシキオリキタ",
    "street": "3丁目11番31号",
    "office_name": "大阪大谷短期大学",
    "office_name_kana": "オオサカオオタニタンキダイガク"
  },
  "8531": {
    "postcode": "5848531",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "寿町",
    "town_kana": "コトブキチョウ",
    "street": "2丁目6番1号",
    "office_name": "大阪府 南河内府税事務所",
    "office_name_kana": "オオサカフ ミナミカワチフゼイジムシヨ"
  },
  "8540": {
    "postcode": "5848540",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "錦織北",
    "town_kana": "ニシキオリキタ",
    "street": "3丁目11番1号",
    "office_name": "大阪大谷大学",
    "office_name_kana": "オオサカオオタニダイガク"
  },
  "8585": {
    "postcode": "5848585",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "大字新堂",
    "town_kana": null,
    "street": "2204",
    "office_name": "医療法人 宝生会PL病院",
    "office_name_kana": "イリヨウホウジン ホウシヨウカイピ-エルビヨウイン"
  },
  "8651": {
    "postcode": "5848651",
    "prefecture": "大阪府",
    "prefecture_kana": "オオサカフ",
    "prefecture_code": 27,
    "city": "富田林市",
    "city_kana": "トンダバヤシシ",
    "town": "大字新堂",
    "town_kana": null,
    "street": "2172−1(富田林郵便局私書箱第1号)",
    "office_name": "パーフェクトリバティー教団 (PL)大本庁",
    "office_name_kana": "パ-フエクトリバテイ-キヨウダン ピ-エルダイホンチヨウ"
  }
}