[Linux-kernel-mentees] [RFC 0/3] staging: qlge: Re-writing the debugging features

Shung-Hsi Yu shung-hsi.yu at suse.com
Wed Aug 26 07:52:06 UTC 2020


On Sat, Aug 15, 2020 at 12:05:58AM +0800, Coiby Xu wrote:
> This patch set aims to avoid dumping registers, data structures and
> coredump to dmesg and also to reduce the code size of the qlge driver.
> 
> As pointed out by Benjamin [1],
> 
> > At 2000 lines, qlge_dbg.c alone is larger than some entire ethernet
> > drivers. Most of what it does is dump kernel data structures or pci
> > memory mapped registers to dmesg. There are better facilities for that.
> > My thinking is not simply to delete qlge_dbg.c but to replace it, making
> > sure that most of the same information is still available. For data
> > structures, crash or drgn can be used; possibly with a script for the
> > latter which formats the data. For pci registers, they should be
> > included in the ethtool register dump and a patch added to ethtool to
> > pretty print them. That's what other drivers like e1000e do. For the
> > "coredump", devlink health can be used.
> 
> So the debugging features are re-written following Benjamin's advice,
>    - use ethtool to dump registers
>    - dump kernel data structures in drgn
>    - use devlink health to do coredump
> 
> The get_regs ethtool_ops has already implemented. What lacks is a patch
> for the userland ethtool to do the pretty-printing. I haven't yet provided
> a patch to the userland ethtool because I'm aware ethtool is moving towards
> the netlink interface [2]. I'm curious if a generalized mechanism of
> pretty-printing will be implemented thus making pretty-printing for a
> specific driver unnecessary. As of this writing, `-d|--register-dump`
> hasn't been implemented for the netlink interface.
> 
> 
> To dump kernel data structures, the following Python script can be used
> in drgn,
> 
> 
>     ```python
>     def align(x, a):
>         """the alignment a should be a power of 2
>         """
>         mask = a - 1
>         return (x+ mask) & ~mask
> 
>     def struct_size(struct_type):
>         struct_str = "struct {}".format(struct_type)
>         return sizeof(Object(prog, struct_str, address=0x0))
> 
>     def netdev_priv(netdevice):
>         NETDEV_ALIGN = 32
>         return netdevice.value_() + align(struct_size("net_device"), NETDEV_ALIGN)
> 
>     name = 'xxx'
>     qlge_device = None
>     netdevices = prog['init_net'].dev_base_head.address_of_()
>     for netdevice in list_for_each_entry("struct net_device", netdevices, "dev_list"):
>         if netdevice.name.string_().decode('ascii') == name:
>             print(netdevice.name)
> 
>     ql_adapter = Object(prog, "struct ql_adapter", address=netdev_priv(qlge_device))
>     ```
> 
> The struct ql_adapter will be printed in drgn as follows,
>     >>> ql_adapter
>     (struct ql_adapter){
>             .ricb = (struct ricb){
>                     .base_cq = (u8)0,
>                     .flags = (u8)120,
>                     .mask = (__le16)26637,
>                     .hash_cq_id = (u8 [1024]){ 172, 142, 255, 255 },
>                     .ipv6_hash_key = (__le32 [10]){},
>                     .ipv4_hash_key = (__le32 [4]){},
>             },
>             .flags = (unsigned long)0,
>             .wol = (u32)0,
>             .nic_stats = (struct nic_stats){
>                     .tx_pkts = (u64)0,
>                     .tx_bytes = (u64)0,
>                     .tx_mcast_pkts = (u64)0,
>                     .tx_bcast_pkts = (u64)0,
>                     .tx_ucast_pkts = (u64)0,
>                     .tx_ctl_pkts = (u64)0,
>                     .tx_pause_pkts = (u64)0,
>                     ...
>             },
>             .active_vlans = (unsigned long [64]){
>                     0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52780853100545, 18446744073709551615,
>                     18446619461681283072, 0, 42949673024, 2147483647,
>             },
>             .rx_ring = (struct rx_ring [17]){
>                     {
>                             .cqicb = (struct cqicb){
>                                     .msix_vect = (u8)0,
>                                     .reserved1 = (u8)0,
>                                     .reserved2 = (u8)0,
>                                     .flags = (u8)0,
>                                     .len = (__le16)0,
>                                     .rid = (__le16)0,
>                                     ...
>                             },
>                             .cq_base = (void *)0x0,
>                             .cq_base_dma = (dma_addr_t)0,
>                     }
>                     ...
>             }
>     }
> 
> 
> And the coredump obtained via devlink in json format looks like,
> 
>     $ devlink health dump show DEVICE reporter coredump -p -j
>     {
>         "Core Registers": {
>             "segment": 1,
>             "values": [ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ]
>         },
>         "Test Logic Regs": {
>             "segment": 2,
>             "values": [ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ]
>         },
>         "RMII Registers": {
>             "segment": 3,
>             "values": [ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ]
>         },
>         ...
>         "Sem Registers": {
>             "segment": 50,
>             "values": [ 0,0,0,0 ]
>         }
>     }
> 
> Since I don't have a QLGE device and neither could I find a software
> simulator, I put some functions into e1000 to get the above result.

I'm not familiar with qlge, but I do happen to have one accessible. You can
add me to CC for future version of this patch.

Testing with the refreshed patch set I got from Benjamin (apply over commit
fc80c51fd4b2) with debugging options KASAN, UBSAN, DEBUG_ATOMIC_SLEEP,
PROVE_LOCKING and DEBUG_KMEMLEAK enabled, I can verify coredump through
devlink works.

One thing I notice is that ethtool prevents me from doing a coredump when
the interface is down (that check is done in ql_gen_reg_dump), whereas
devlink does not prevent me from doing so. Doing a coredump when the
interface is down will fail, and seems to cause the NIC goes into an invalid
state.

  $ lspci | grep -i qlogic
  00:04.0 Ethernet controller: QLogic Corp. 10GbE Converged Network Adapter (TCP/IP Networking) (rev 02)
  00:05.0 Ethernet controller: QLogic Corp. 10GbE Converged Network Adapter (TCP/IP Networking) (rev 02)
  00:06.0 Fibre Channel: QLogic Corp. 10GbE Converged Network Adapter (FCoE) (rev 02)
  00:07.0 Fibre Channel: QLogic Corp. 10GbE Converged Network Adapter (FCoE) (rev 02)
  $ ip -br link
  lo               UNKNOWN        00:00:00:00:00:00 <LOOPBACK,UP,LOWER_UP> 
  ens4             DOWN           00:c0:dd:14:54:b8 <BROADCAST,MULTICAST> 
  ens5             DOWN           00:c0:dd:14:54:ba <BROADCAST,MULTICAST> 
  ens3             UP             52:54:00:12:34:56 <BROADCAST,MULTICAST,UP,LOWER_UP> 
  $ ethtool -i ens4
  driver: qlge
  version: 1.00.00.35
  firmware-version: v1.40.8
  expansion-rom-version: 
  bus-info: 0000:00:04.0
  supports-statistics: yes
  supports-test: yes
  supports-eeprom-access: no
  supports-register-dump: yes
  supports-priv-flags: no
  $ ip link set up ens4
  $ devlink health
  pci/0000:00:04.0:
    reporter coredump
      state healthy error 0 recover 0
  pci/0000:00:05.0:
    reporter coredump
      state healthy error 0 recover 0
  $ devlink health dump showpci/0000:00:04.0' reporter coredump -p -j
  {
      "Core Registers": {
          "segment": 1,
          "values": [ 6,12582912,0,0,136943,1053896,18,0,0,0,16,0,2282225665,26,136943,131353,64,65,4096,1054161,4160,136609,136623,270,31488,12288,0,3,1055962,0,3,0,0,0,0,1,0,0,137043,1053539,1053552,0,0,0,0,1053559,0,0,0,0,1054455,0,4224,136619,136639,137011,0,3,0,137016,137021,137026,4352,4416,0,136875,1054031,0,0,0,0,0,0,0,1054217,4288,4352,1,1053723,1053964,0,0,0,0,0,0,0,0,0,0,0,0,4480,4736,0,4352,4672,4096,31744,0,0,7883,131072,139263,226609,4736,0,1,1,2278543115,0,4096,12,0,0,0,65687,66651,2831122355,257,32768,2139372489,138955,0,285278528,132477,136605,3506520881,1246211,137180,9,14199702,14,0,292618560,0,0,32512,296812864,297861440,298910016,299958592,301007168 ]
      },
      "Test Logic Regs": {
          "segment": 2,
          "values": [ 2147483650,2684354560,226609,130,2147483648,8,329387558,204360230,3072,0,1008,306,1728538375,7171,413270016,63,0,0,0,0,6656,788992,4294967039 ]
      },
      "RMII Registers": {
          "segment": 3,
          "values": [ 32782,1518,1080053856,10612792,0,0,0,0,0,0,67109120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1504837760,134217472,0,0,0,0,0,0,0,0,0,0,16383,15,0,0,0,0,0,0,0,0,0,0,0,0,0 ]
      },
      "FCMAC1 Register": {
          "segment": 4,
          "values": [ 0,0,64000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ]
      },
      "FCMAC2 Register": {
          "segment": 5,
          "values": [ 256,0,64008,101,512,1054481,352,0,455149568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ]
      },
      "FC1 MBox Regs": {
          "segment": 6,
          "values": [ 8,0,0,0,3260153856,16,0,33072,48,0,0,0,0,0,268471312,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3260153856,16,0,33072,48,0,0,0,0,0,268471312,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ]
      },
      "IDE Registers": {
          "segment": 7,
          "values": [ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ]
      },
      "NIC1 MBox Regs": {
          "segment": 8,
          "values": [ 291,32644,0,0,1095499776,0,0,0,0,0,0,0,0,0,0,0,16384,65584,9600,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,256,0,1095500032,0,256,0,256,0,256,0,256,0,256,0,16640,65584,9600,0,256,0,256,0,256,0,256,0,256,0,256,0 ]
      },
      "SMBus Registers": {
          "segment": 9,
          "values": [ 0,0,0,0,0,197394432,0,0,16,0,0,0,0,0,0,1536,0,0,0,1431633920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ]
      },
      "FC2 MBox Regs": {
          "segment": 10,
          "values": [ 8,0,0,0,3260153856,16,0,33040,134219014,1048578,1048578,14680066,0,0,268472080,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3260153856,16,0,33040,134219014,1048578,1048578,14680066,0,0,268472080,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ]
      },
      "NIC2 MBox Regs": {
          "segment": 11,
          "values": [ 291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16384,65584,9600,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,256,0,256,0,256,0,256,0,256,0,256,0,256,0,16640,65584,9600,0,256,0,256,0,256,0,256,0,256,0,256,0 ]
      },
      "I2C Registers": {
          "segment": 12,
          "values": [ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,0,1536,48,0,0,0,0,0,0,0,0,0,0,0 ]
      },
      "MEMC Registers": {
          "segment": 13,
          "values": [ 192,271,2099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,1,1,2,0,255,255,255,255,1,1,2,0,0,1,2,3,4,5,6,0,0,1,2,3,4,5,6,0,1054023,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1056000,1056767,1056522,767,0,125786,0,0,0,0,0,0,0,0,0,0,0,1056767,2139095040,101058054,151587081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ]
      },
      "PBUS Registers": {
          "segment": 14,
          "values": [ 0,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127 ]
      },
      "MDE Registers": {
          "segment": 15,
          "values": [ 0,0,0,268435456,0,0 ]
      },
      "NIC1 Registers": {
          "segment": 16,
          "values": [ 3221229970,9600,3,6,33507,1024,65537000,0,1593694576,0,256,2139095040,4408,24833,1,0,0,0,0,536875024,0,0,0,0,0,16384,32520,4672,1,0,2147483980,1,2097151,2097151,3221553663,0,32768,0,0,0,0,0,3355508753,256,0,0,2147910912,0,0,89459371,610347903,2299824390,1048576,8,0,0,0,2284979200,4,3735944941,3221229584,67088,105320,0 ]
      },
      "NIC2 Registers": {
          "segment": 17,
          "values": [ 1073872960,1073872960,3,0,0,1024,1753244800,0,1593694576,0,0,2139095040,4472,0,1,0,0,0,0,536875024,0,0,0,0,0,0,32512,4672,1,0,3221225804,65536,2097151,2097151,3221553663,0,32768,0,0,0,0,0,3355508753,256,0,0,2147910912,0,0,89459371,610347903,2299824390,1048576,0,0,0,0,2150764288,0,3735944941,3221231644,114268212,105320,0 ]
      },
      "NIC1 XGMac Regi": {
          "segment": 18,
          "values": [ 1802201963,1802201963,1802201963,1802201963,1802201963,0,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,2775280491,3149642683,3149642683,2270363584,1579597847,2254174827,4294967295,2252946645,4294967295,2254174827,4294967295,2253606659,4294967295,2253613225,4294967295,2277166035,4294967295,2277507212,4294967295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4294920463,0,2252974965,4294967295,2252975001,4294967295,2252976213,4294967295,2252963790,4294967295,2252942686,4294967295,2252073732,4294967295,2252231926,4294967295,2252235170,4294967295,2253685622,4294967295,2253691886,4294967295,2255428240,4294967295,2253689316,4294967295,2253712958,4294967295,2253715214,4294967295,2253717408,4294967295,2253719871,4294967295,2277166035,4294967295 ]
      },
      "NIC2 XGMac Regi": {
          "segment": 19,
          "values": [ 1515870810,1515870810,1515870810,1515870810,1515870810,0,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810 ]
      },
      "WCS RAM": {
          "segment": 20,
          "values": [ 16904209,0,131072,7883,1107376128,1053559,1084047360,1084057600,1073741824,33683456,137287,1073741824,1614073856,1611137024,1140903936,100530173,1614073856,1610874880,1140903936,100530173,469889024,1677846528,1677846530,1678108673,1678108675,1241638916,4294967295,1611661312,1089239040,1174435840,4294967295,2151446528,2147483712,100534268,1241634820,4294967295,1501825026,1241636868,4294967295,1611689984,1610643456,2416182542,2147483906,2163239951,2550137988,84135943,2349073664,83886085,1140877312,2147511355,1144809472,84013059,1174431744,4294967295,2147748104,2151446528,2151182400,100534256,469889024,1098414080,1501822978,2348811552,83886082,2218556752,2348811554,83886082,2218556754,2151446656,1501822981,2151417088,1208158213,1107326976,137031,1501822996,2348811538,83886083,1678014464,84013058,1677752320,1501822977,2348811582,83886084,1610649632,1611663360,84013059,1610649600,1098385408,1107300352,1055960,1208225794,1208225798,469889024,1281884160,84013062,1107298304,137033,1342439424,2147483648,1140852736,1619265570,1681917952,1492652046,1492654414,1275592704,1275854848,1107298304,67578,134608896,1543510016,1543507968,1678444554,1107298304,137032,1342439424,2147483648,1140852736,2181567744,4294967040,2416448850,1208610830,2181831936,4294967040,2416713042,1208873294,1492647951,2181039360,255,2550137986,100403196,1492649998,2181303552,4294967040,2416184656,1208348686,1492650318,2181303552,4294967040,2416184656,1208349006,1490604267,2154353088,83886094,84016060,1086640128,84015644,2361656610,83886086,1610614818,1342439424,2315256960,8200,100403143,84016054,2160429504,100403190,16906427,1543557120,469889024,1639024641,469889024,1628538880,469889024,84016172,1107298304,2139439104,1476687872,1610637316,2319189120,1431677610,84017281,1074057216,1476712450,1476687875,2154617871,2154617092,84016151,1611161600,2160429504,84017272,1610637344,1476687875,2151446788,2319189120,236,84140146,1476710402,2154352900,2147800090,1087952896,1476714499,2154881284,84015959,1481904136,1610618880,2416212996,2148301839,1346138112,2151182784,83886176,2151182596,2147755022,1074528256,1610637320,2150654144,1477474304,2319189120,1431677610,84017243,1074843648,1477474306,1477498883,2151472155,2154617092,84016113,1611685888,1074528256,2150654144,2160429504,84017232,1477474306,2151446788,2148543503,1343518720,2419852552,83886150,1628463104,2150654176,1614829568,1074528256,2150389952,2150393164,1477474307,2151446788,2319189120,192,84140095,1477474306,2151469316,2148586522,1074558976,1090836480,2151446976,83886084,2959924228,2151446592,100530172,1623777280,84015903,1483503617,2181825536,1054444,1144782848,2154353692,2154617884,1611194368,84015895,2959660032,2423053314,1611194368,84015891,2959660032,2423053314,1477500931,2154881284,2188436608,178,84015884,1074581504,1477474306,2151446788,2148543503,1477734403,1477736452,2151155023,83886088,1090807808,2154353088,83886082,2956225540,1211918340,1211656195,84013058,84016147,1107326976,1054442,1074556928,2151182784,83886084,2151446528,2151182400,100534268,1346109440,2214593792,1140881408,2148276224,2148012096,100534170,84013057,84016051,469889024,1281884160,1282146304,1107351552,131123,84015710,1086588928,1174439936,2299824390,1141145600,1107351552,131124,84015703,1086590976,2215118206,1140883456,1346734080,2227539304,1153730560,1141407744,1281884160,1613811712,84015516,1543557120,1107351552,131129,84015689,1086588928,1107351552,131130,84015685,1086590976,1610618880,1074057216,84016043,2148278480,2416977216,1141934080,1141145600,1165527040,1141407744,84016036,2182096192,65536,1141934080,1141145600,1165527040,1141407744,2148276224,2550924424,100521967,84016026,1107296256,139591680,1140885504,1141145600,1165527040,1141407744,84016019,1107296256,139657216,1140885504,1141145600,1165527040,1141407744,1613811712,84015490,1543559168,1543557120,469889024,84015965,1618008066,84016601,2428865793,83886092,1107351552,131121,84015638,1165527040,1153728512,1107351552,131122,84015633,1165527040,1153728512,84013073,1090846720,2154353088,83886082,2961245188,1484851205,1107351552,131121,84015622,1149536256,1153728512,1484851206,1107351552,131122,84015616,1149536256,1153728512,84015948,469889024,1281884160,1611976704,84015797,1543557120,2187856896,137061,1153697792,469889024,84015923,1281884160,2187856896,137061,1342492672,84015790,1543557120,2160429504,83886165,1107351552,131105,84015592,1086656512,2154353088,1107351552,71686,1107374080,104808,83886085,1107351552,72198,1107374080,105320,1610680320,16908106,2193941760,4190208,2154881304,1083758592,16908106,1086646272,2188702976,130816,2155409680,2188705024,66977792,2155673890,2155611550,83886092,2155611294,83890179,1073801216,84013060,2189224960,511,2155146398,2188641408,255,84021250,2424638785,2188379264,255,84021250,2424638786,2558788739,84017156,1610684416,1610686464,84013068,2558788737,84017157,1610684416,1107369984,67108864,84013062,2558788738,84017178,1107367936,67108864,1610686464,1107298304,134217728,1141147648,1149796352,2223506814,1140883456,1346734080,2227539252,2160330083,1140885504,1149796352,1107298304,671088640,1141147648,1149796352,2223506814,1140883456,1346734080,2227539252,2160330084,1140885504,1149796352,100532124,84015845,469889024,1490550787,2348811520,83886118,1482164225,2315519104,160,83886084,2315519104,162,84017180,1482162180,2181043456,16711680,2148012320,2315781248,256,84021269,84015470,1086640128,1107351552,131098,84015487,1086658560,1482172421,2350122240,83886083,2415920384,84013073,1482227716,2189493504,255,2155938240,83886085,2961179777,84021251,2415920384,84013064,1241559040,16390,84013059,1241559040,16389,1610991616,2415920449,469889024,84015783,100532178,84017222,2350122240,84017204,1275330560,1275592704,1281884160,1082134528,2416448515,2148012292,1482215426,1482217475,1086906368,84015338,1086916608,1543557120,1543507968,1543505920,1490550787,2348811522,83886107,1241559040,16384,1611730944,1610612736,1350834176,2148276480,2181831936,255,1275330560,1275592704,1275068416,17169072,1543503872,1543507968,1543505920,83886110,2155937856,83886113,2415920136,2148012032,2156466240,100534255,2156201984,100530155,1141739520,1610940416,1074059264,1074323456,1082189824,17169756,83886095,1241559040,16384,84013073,1482168324,2181831936,255,1490550787,2348811522,100403185,17169072,83886084,1241559040,16384,84013062,1241559040,16389,1678815233,1611253760,84013058,1610991616,84015377,84015746,84015723,469889024,84015706,100532101,84017202,1490550787,2348811528,84017161,2348811522,83886121,2350122240,84017184,1086916608,17169177,83886116,84013071,17169895,1074059264,1074323456,1082189824,2350122240,83886082,1610934272,1276379136,17169703,1543514112,2350122240,83886083,1355294720,84013072,1482166276,2181567744,255,2416448515,2148012292,1482215426,1482217475,1086906368,84015257,1241559040,16384,1610991616,84013068,17169035,83886086,1209315329,1241559040,16384,1611253760,84013061,1241559040,16389,1678815233,1611253760,84015321,84015690,84015667,469889024,1107550208,2952790016,1107134464,469889024,469889024,469889024,1241559040,32770,1614663680,1610643456,1077727232,1612765184,1079566336,1279000576,16907772,1543534592,2151446528,2554070148,100407288,1492647950,2181039424,255,1208086542,1492648270,2181039424,255,1208086862,469889024,1543557120,1281884160,17168615,1214820353,1215082498,1845493760,1048585,1208004611,1215344644,1215606789,1215868934,1216131079,2221727100,84015609,100532188,84015687,84015621,2160429504,100534256,84015603,100530171,84015601,1080557568,1107359744,196609,2155675840,1610938368,2155679936,1107363840,131353,1149274112,1149534208,2223244670,1140883456,1346705408,2156397859,100403194,84015600,469889024,1080557568,1107326976,196608,2151418048,1107326976,131353,1141147648,1144815616,469889024,1107550208,1342242816,469889024,1107550208,1342177280,469889024,1107324928,65539,2218263934,1140883456,1346664448,2151447834,100403194,469889024,1281884160,1080565760,1080829952,84015208,1086588928,2148038852,2147748088,2147753295,1107349504,268435456,100532206,1142720512,1174437888,65539,1141934080,1174437888,65536,1142196224,1174437888,65537,1141671936,1174437888,65538,1543557120,469889024,2564818050,83886085,2564818051,83886083,84015137,84013068,3087533186,83890178,1627656192,84015185,1091096576,2160429504,83886082,2959660033,1081137152,1074323456,84015335,469889024,2564818050,83886085,2564818051,83886083,84015140,84013068,3087533186,83890178,1627656192,84015167,1091098624,2160429504,83886082,2959924225,1081135104,1074323456,84015317,469889024,1486622720,84015498,1107310592,65536,100532159,2148012480,83886093,1107349504,1073741824,100532146,1107324928,65540,2218263934,1140883456,1346664448,1144840192,2154881024,2148012096,100530163,84015495,469889024,1486622720,84015477,1610627072,100532139,2148012480,83886091,1107349504,536870912,100532126,1349548032,1144817664,1174437888,65541,2154881024,2148012096,100530165,84015477,469889024,2422736004,84021251,2154300475,84013058,2431386628,1342277632,469889024,1088475136,2422736004,84021251,2154300476,84013058,2431648772,1342277632,469889024,1088475136,2422736004,84021251,2154300477,84013058,2431910916,1342277632,469889024,84015420,1086705664,469889024,1501822978,2154353088,84017156,2415920398,2147584258,84013060,2181039360,224,2147584266,469889024,100532214,2160429260,2154662961,469889024,1281884160,1107326976,131084,2218526078,1140883456,1346635776,1610665984,1275330560,100532184,1543505920,1086590976,1098389504,2315781248,4294967295,83886087,1074266112,1610643458,2151444672,2151154945,83886082,2215386432,1610928128,1275330560,1275854848,100532168,1543510016,1543505920,1086590976,2315781248,4294967295,83886087,1074266112,1610643458,2151444672,2151154945,83886082,2215386434,1492678671,2184971520,255,2550138000,84017154,2215386436,1492678991,2184971520,255,2550138000,84017154,2215386438,1074628608,1543557120,469889024,1281884160,100532131,1086588928,2550400130,83890179,2416235650,84013058,2416235522,100532132,1543557120,469889024,1275854848,1276116992,1080586240,100532118,1086613504,2553545858,84021260,1107326976,131084,2218526078,1140883456,1346641920,1077411840,201455636,2160429504,83886095,1610975232,84013069,2553545859,83886083,1492678671,84013058,1492678991,2184971520,255,2550138000,84017155,1610975232,84013058,1610713088,1543512064,1543510016,469889024,132086,132089,132092,132095,2182188288,256,469889024,2182188288,512,469889024,2182188288,1024,469889024,2182188288,2048,469889024,1610713088,469889024,1107550208,1879048192,1107550208,2955935744,1080817664,84033536,469889024,1281884160,1282146304,2154617280,83886085,1677774848,2154616896,2154352640,100530171,1543559168,1543557120,469889024,1281884160,1282146304,1282408448,2154881472,83886086,1416157184,2154881088,2154616832,2154352640,100530170,1543561216,1543559168,1543557120,469889024,1281884160,1282146304,1282408448,1275330560,1275592704,1610713088,2154881472,83886089,1348995072,1349259264,2147747202,84017158,2154881088,2154352640,2154616832,100530167,1610975232,1543507968,1543505920,1543561216,1543559168,1543557120,469889024,1281884160,1282146304,1282408448,2154617280,83886087,1348993024,2617246144,1140903936,2154616896,2154352640,100530169,1543561216,1543559168,1543557120,469889024,1629224997,1342177280,2147585050,469889024,1275330560,1275592704,1629224997,1342179328,2147751066,2181567616,2147483648,83890179,1610713088,84013058,1610975232,1543507968,1543505920,469889024,1501827074,1610881024,1611669504,1610713088,2349335808,83886082,2148371825,2148276418,2148012296,2148540480,100534266,469889024,84015206,1107298304,65536,1610643456,1211947008,1611692032,1610639360,2423026694,1077174272,2150654400,83886084,2151182336,2150654016,100530172,1345847296,2550137985,84017156,1483472899,2147484993,1208014851,2147748034,2150918144,2151446592,100534256,1241559040,33024,1610905600,1611689984,2423024641,2151441421,2153274383,1412454400,2151446528,2151182400,100534267,1612040192,1483472898,2415920432,2550138000,83886105,1483538435,1610680320,1611730944,1610905600,1080557568,2151446720,2151482720,2357200128,83886091,1082445824,100532023,2160429504,83886087,100531917,1086640128,84015135,1086705664,1610665984,16907987,2155938050,2156201984,2156466240,100534257,84013076,1281884160,100531905,1086640128,84015123,1086705664,1610665984,16907987,1543557120,100531990,1086640128,100531999,2160429504,83886087,100531893,1086640128,84015111,1086705664,1610665984,16907987,84015138,469889024,1088475136,2556953732,84021253,1080557568,1610905600,2151516352,84013058,1610713088,469889024,1098383360,1349023744,2151416832,2154352640,2154616896,100534268,1073842176,469889024,2426223757,1214855168,1215117313,1215379458,1215641603,1215903748,1216165893,1216428038,1216690183,1216952328,1217214473,1217476618,1217738763,1218000908,469889024,1486696460,1486694411,1486692362,1486690313,1486688264,1486686215,1486684166,1486682117,1486680068,1486678019,1486675970,1486673921,1486671872,2426223629,469889024,2148276420,1080557568,2148324378,2154300544,84021250,2154616832,469889024,1281884160,1610665984,16907987,1543557120,469889024,2221409662,1140883456,1346734080,2361656638,100403196,469889024,2221409662,1140883456,1346734080,2361656636,100403196,469889024,100531830,1107296256,1054442,2160429504,83886084,2147483648,2160429120,100530172,1342177280,2348811520,84017155,2416020736,84013058,2428865857,469889024,2154331158,2197292032,144,2154300416,1080848384,1409316864,2147483648,2151446528,2151182400,100534268,469889024,100531598,2361656610,1610713088,83886090,1611251712,1610612770,1342177280,2315256960,8200,84017156,33683456,1055563,1610975232,2160429504,469889024,1107326976,2139422852,1090809856,2154353088,83886085,1107326976,2139423108,2956489732,84013063,1480091648,2352219406,83886090,1107326976,2139947152,84013072,1480091648,2352219406,83886084,1107326976,2139947408,84013066,1346109440,2147483936,2214592960,1207988228,2151446528,1346109440,2617246144,1207988227,84013069,1346109440,2147510560,2181039360,65535,2214592960,1207988228,2151446528,1346109440,2147483872,2147485005,2617246144,1207988227,469889024,1283457024,1090846720,2154353088,83886082,2961245188,1484783616,2348811528,84017157,1241579534,65537000,1241579535,1753244800,1543569408,469889024,1107550208,1342242816,1107550208,2684354561,1107552256,132477,1107550208,2147483648,1107550208,2956984320,1107296256,15000000,1074001920,1107550208,536871234,1107296256,536871234,1778384896,1053562,1241712662,4294967039,469889024,469889024,1275068416,1275330560,1275592704,1275854848,1276116992,1276379136,1276641280,1276903424,1277165568,1277427712,1277689856,1277952000,1278214144,1278476288,1278738432,1279000576,1281884160,1282146304,1282408448,1282670592,1282932736,1283194880,1283457024,1283719168,1283981312,1284243456,1284505600,1284767744,1285029888,1287913472,1285292032,1307574272,84037642,1107550208,2147483648,1492647950,2214593886,1208086542,1492648270,2214593886,1208086862,84013062,1501853717,2352743696,84017154,84013058,84013057,1543757824,1543583744,1543604224,1543581696,1543579648,1543577600,1543575552,1543573504,1543571456,1543569408,1543567360,1543565312,1543563264,1543561216,1543559168,1543557120,1543534592,1543532544,1543530496,1543528448,1543526400,1543524352,1543522304,1543520256,1543518208,1543516160,1543514112,1543512064,1543510016,1543507968,1543505920,1543503872,402780160,469889024,1281884160,1282146304,1281884160,1612238848,100531467,1543557120,84015565,2221727100,1147963392,1153728512,84015561,1107351552,131133,100531635,1086642176,2221671806,1140883456,1346734080,1612238848,100531470,1543559168,1543557120,469889024,1281884160,1282146304,1080834048,1281884160,1612238848,100531443,1543557120,84015541,1287913472,1107351552,131133,100531614,1148225536,1153728512,1543604224,1142720512,1153728512,84015531,1612238848,100531447,1543559168,1543557120,469889024,1501822981,1610643458,2154353088,83886082,2151446722,2151446656,2147484943,1208158213,1501853697,2352743742,83886083,84015166,84013058,84015288,2421455872,2154331151,1346109440,2214593792,1140881408,469889024,1282146304,1282408448,1282146304,1611716656,100532154,1543559168,2361656578,84017184,2154617280,83886088,1623250992,1610670080,100532169,1610932224,100532167,1610670080,100532165,1611716656,100532140,2361656608,100403198,1629280312,100532136,2965693760,100532157,1612240956,100532132,2154353088,84017156,2193941760,4294967290,84013059,2193941760,4294967285,100532147,1612765232,100532122,2227496192,100532143,1543561216,1543559168,469889024,100531860,1501853697,2352743742,84017158,1610665984,1611716656,100532110,2428822850,100532131,100531866,469889024,1282146304,1282408448,1281884160,1610665984,1611716656,100532100,2361656578,83886083,2227496194,100532119,1543557120,1623250992,1610670080,100532115,1610932224,100532113,1610670080,100532111,1611716656,100532086,2361656608,100403197,1612240956,100532082,2154353088,84017155,2428822853,84013058,2428822858,100532099,1080557568,1611980800,2154881216,1612765244,100532094,1610670080,100532092,84016112,1611192376,1610670080,100532088,1610932224,100532086,1610670080,100532084,1629280312,100532059,2227496204,100532080,1611716656,100532055,2361656608,100403198,1610930176,84015233,1543561216,1543559168,469889024,1282146304,1282408448,1282146304,1610668048,100532043,1543559168,2361656576,84017208,2154617280,83886090,1637931024,1610670080,100532058,1637931024,1610932224,100532055,1637931024,1610670080,100532052,1610668048,100532027,2361656598,100403197,1619056656,100532023,2227496290,100532044,1621153808,100532019,2227496290,100532040,1623250960,100532015,2227496290,100532036,1625348112,100532011,2227496290,100532032,1612765200,100532007,2227496282,2221991212,100532027,1613813776,100532002,2227496282,2221991212,100532022,1614862352,100531997,2227496282,2221991212,100532017,1615910928,100531992,2227496282,2221991212,100532012,1610668048,100531987,2227496256,100532008,1543561216,1543559168,469889024,1282146304,1282408448,84016023,1619056656,100531977,2227496226,100531998,1621153808,100531973,2227496226,100531994,1623250960,100531969,2227496226,100531990,1625348112,100531965,2227496226,100531986,1612765200,100531961,2227496218,2221991276,100531981,1613813776,100531956,2227496218,2221991276,100531976,1614862352,100531951,2227496218,2221991276,100531971,1615910928,100531946,2227496218,2221991276,100531966,1610668048,100531941,2227496192,100531962,1637931024,1610670080,100531959,1637931024,1610932224,100531956,1637931024,1610670080,100531953,1610668048,100531928,2361656598,100403197,1543561216,1543559168,469889024,1282146304,1282408448,1501822977,2348811582,83886093,1282146304,1612765232,100531915,1543559168,2154617280,84017155,2227496192,84013058,2227496256,1612765232,100531930,84013076,17169641,83886098,1282146304,2154353088,84017155,1627445248,84013058,1627445264,17168824,1613027718,17168860,1543559168,2154617280,84017155,2227496282,84013058,2227496218,1613027718,17168843,1543561216,1543559168,469889024,1282146304,1283981312,1090811904,2154353088,83886082,2956753924,1480396801,2424833294,83886086,1610930176,100532175,1610668032,17169388,84013081,2357724450,83886085,1610668032,100532168,17169388,84013075,1490550787,2348811520,83886094,2187854848,137043,1342177280,2550137986,83886087,1610668032,100532156,2550137984,83886087,17169388,84013061,1610930176,17169388,1610930176,100532148,1543573504,1543559168,469889024,1281884160,1282146304,1285029888,1281884160,2154353088,84017155,1610665984,84013058,1611190272,100531080,1543557120,84015189,2188195136,1073741824,1150846976,1153728512,84015184,2227438974,1140883456,1346711552,2358773050,83886087,1845493760,1054439,2147483648,1778384896,1054439,100530160,1107351552,131103,100531236,1086664704,2224555390,1140883456,1346734080,2154353088,84017155,1610665984,84013058,1611190272,100531067,1543581696,1543559168,1543557120,469889024,100531541,1080834048,1281884160,2154353088,84017155,1610665984,84013058,1611190272,100531036,1543557120,84015145,1287913472,1107351552,131103,100531207,1148225536,1153728512,1543604224,1142720512,1153728512,84015135,2227438974,1140883456,1346711552,2358773050,83886087,1845493760,1054439,2147483648,1778384896,1054439,100530155,2154353088,84017155,1610665984,84013058,1611190272,100531025,100531518,469889024,1282146304,1107351552,131132,100531178,2227438974,1140883456,1346689024,2355889470,100403196,1543559168,469889024,1282146304,1107351552,131102,100531167,2227438974,1140883456,1346689024,2355889470,100403196,1543559168,469889024,1282146304,1090783232,2154353088,83886082,2953055236,1476661249,2416448782,2148012290,2550662274,84017161,1610930176,1501822977,2348811582,83886083,84015140,84013073,84015154,84013071,2550662273,84017161,1610930176,1501822977,2348811582,83886083,84015186,84013063,84015213,84013061,2550662275,84017155,1610930176,17169880,1543559168,469889024,1282146304,1610668032,1501822977,2348811582,83886084,84015115,84015170,84013063,84015128,84015196,1490550787,2348811528,83886082,17169880,1543559168,469889024,1282146304,1282408448,1282146304,1627707448,100531681,1543505920,2147748288,83886083,2227496268,84013058,2227496204,1627707448,100531696,1543561216,1543559168,469889024,1282146304,1282408448,2154617280,83886098,1620105232,100531664,2227496258,100531685,1622202384,100531660,2227496258,100531681,1624299536,100531656,2227496258,100531677,1626396688,100531652,2227496258,100531673,84013073,1620105232,100531647,2227496194,100531668,1622202384,100531643,2227496194,100531664,1624299536,100531639,2227496194,100531660,1626396688,100531635,2227496194,100531656,1543561216,1543559168,469889024,1282146304,1282408448,1282146304,1622202416,100531625,1543505920,2147748288,83886083,2227496302,84013058,2227496238,1622202416,1275330560,100531639,1627445745,17168824,1098438656,17168860,1543505920,2147748288,83886083,2227496284,84013058,2227496220,1098438656,17168843,1543561216,1543559168,469889024,1282146304,1282408448,1282146304,1631639568,100531596,1543505920,2147748288,83886083,2227496300,84013058,2227496236,100531612,1543561216,1543559168,469889024,100531215,2160429256,1501822978,2181039360,196608,2147483920,2147585393,2160429184,2193984768,1008,1501833221,2182360320,4294966287,2160340293,1209468933,469889024,1081110528,1610614784,2151182784,83886096,1077438464,2184447104,240,83890178,1639999489,1496055814,2415920400,100534270,2154566657,1208637445,2150892893,1208113156,2151183501,2150894593,100530160,1496055814,2415920400,100534270,469889024,1282146304,1283194880,1611454464,1281884160,84016019,1543557120,1090836480,2154353088,83886082,2959924228,1080883200,84015749,84015601,2154301644,2147900468,1241667586,129536,2161904666,1677723648,1612765186,100531908,2193941824,3848,100531950,1107353600,197926,1613813762,100531946,1611194388,1614862338,100531943,1610670080,1484521472,2348811530,84017154,2221991236,2348811532,83886082,2221991238,1627445253,100531933,2154353088,84017156,1107351552,1048592,84013059,1107351552,2097184,1282146304,1107351552,131084,100530919,1543559168,1147963392,1153728512,1543567360,1543559168,469889024,1282146304,100531533,1501822977,2348811578,83886088,1610930176,1501853697,2352743742,84017155,100531545,84013058,100531654,1543559168,469889024,100531218,2187856896,137034,1342439424,2147483648,1140852736,1080559616,2147748044,2147900468,1496059905,2181563648,1050368,100534784,1610713088,2953315647,83886250,1686263810,1496055810,2348811530,100534270,1496076302,2150123808,1496078349,1496080396,1496082443,2351957284,83886089,2183922944,2047,2149862400,1107298304,137042,1342439424,2147483648,1140852736,1210689536,1210951681,1211213826,1211475971,1281884160,1612763136,100531045,1086615552,1496059905,2953319743,2148008136,2147484809,84021265,1077465088,1277427712,1278738432,100531039,1543532544,1543522304,2160429504,100403188,1543557120,84015234,1845493760,1054437,2147483648,1778384896,1054437,84013178,1543557120,2418336783,2188436736,4294967280,2154881472,83886190,2154881284,1107359744,1053566,2322596992,384,84008980,2187856896,1053563,1342439424,2147483648,1140852736,1785724928,1053565,1678047232,1081143296,1086904320,1610670083,1610672130,100532041,2188964992,384,1081663488,2323121280,384,100657143,2154881472,84017155,1165555712,84013137,2557478021,83890185,2423317636,1086904320,1610672130,1277427712,100532024,1543522304,2160595996,84013058,1086853120,1686263810,1496055810,2348811530,100534270,1496057870,1208225792,1496057869,1208225793,1496057868,1208225794,1496057867,1208225795,1496059905,2181563648,1050368,100534671,1350303744,2147484096,83886083,1165555712,84013105,1107296256,1055960,2154353088,83886082,2415920132,1476395008,2348811520,83886121,1490288640,2181039360,1792,84017189,1678923778,1489502211,2147483936,2315256960,33024,83886104,1107351552,131125,100530747,2227438974,1140883456,1346635776,2349073670,83886096,1490288642,2147483944,83886093,2418285571,2148276484,2160595971,2148276288,2160593923,1409552384,2550924419,100657147,2181039424,2164260864,1208061955,2418297860,1076238336,1277427712,1080715264,84278147,17430707,1543522304,84013063,1678923778,2187854848,137036,1342208000,2151446528,1144782848,100531048,469889024,100531031,1107351552,131129,100530708,1086646272,1107351552,131130,100530704,1086648320,2194209792,380,1281884160,1613811712,100530521,1081397248,1107361792,67239936,1610682368,100531055,1149274112,1148485632,2223048032,100531057,2222196094,1140883456,1346701312,2155682850,1149573120,2156466176,2155682850,2222458238,1140883456,1346701312,1149573120,2156466176,2559050884,100534254,100531036,1107296256,139591680,1140885504,1148485632,1165527040,1148747776,100531029,1107296256,139657216,1140885504,1148485632,1165527040,1148747776,1543557120,84015126,84015246,1081397248,1610682368,100531017,2155682850,1351419904,2223312180,1149536256,1148485632,2156466176,2155682850,1351419904,1149536256,1148747776,2156466176,2559050884,100534259,1613811712,100530481,100530974,469889024,1282146304,1107351552,131075,100530634,1107296256,134219776,1140885504,1153728512,1543559168,469889024,100530947,1107296256,1055960,2154353088,83886082,2415920132,1476395008,2348811520,83886126,2187856896,137038,1342439424,2147483648,1140852736,1080711168,2167298252,2167299124,2421427200,2154302465,1342439424,2348811524,83886084,2214593796,1140852736,84013068,1613236224,2147747904,83886107,1496055808,2181039360,256,100403195,1496055808,2181039360,255,84017171,1679972354,1496055808,2181039360,256,100534269,1081110528,2419647495,2188436736,4294967288,2154881284,100403407,1610672134,1278738432,100531809,1543532544,1211783171,1682069506,84013062,2187856896,137040,1342439424,2147483648,1140852736,100530903,469889024,2154301644,2147900468,1496059905,2953319743,469889024,1282146304,1282408448,1630590978,100531516,2428822787,83886084,100531558,1081182208,84013058,1098483712,1543561216,1543559168,469889024,1282146304,2420694032,100531122,2428865796,2160429504,83886092,1501853697,2352743742,83886088,1618008112,100531114,2361656578,84017157,2361656584,83886083,84013060,84013059,1098483712,84013058,1610975232,1543559168,469889024,1281884160,1612238848,100530347,1543557120,469889024,1281884160,1612238848,100530360,1543557120,469889024,2154453196,2167299124,1678137346,2421427200,2154302465,1342439424,2214593860,1140852736,1281884160,1610928128,100530624,1543557120,1232754690,469889024,1282146304,1282408448,1612765186,100531457,1086644224,2356151552,84017155,2221991232,100531497,2221991168,100531495,1612765186,100531448,2361656576,100534269,1543561216,1543559168,469889024,1282146304,1282408448,1090836480,2154353088,83886082,2959924228,2423026704,1612740608,1345902592,2154617280,83886087,1480122369,1278738432,1279000576,100531069,1543534592,1543532544,2419618818,2151446592,100534261,1543561216,1543559168,469889024,1282146304,1282408448,1282146304,1483503617,1612765186,2352743712,84017164,100531412,2193941760,4294967231,100531454,1624299522,100531407,2193941760,2147483647,100531449,1543559168,84013071,100531401,2965693760,100531444,1543559168,1483474946,2147803360,2188436800,2147483648,1624299522,1275330560,100531436,1543561216,1625348098,100531433,1543561216,1543559168,469889024,1278214144,1278476288,1618008066,100531426,1107300352,65536,1107351552,131125,100530418,1543530496,2148013389,1141409792,1153728512,1619056642,1543528448,1076944896,100531413,1484316676,1484259331,2181039360,4294901760,2281701824,2221990336,2154882368,1610668034,100531404,1484316675,2188436736,65535,2221990336,1611716610,100531398,1107351552,131121,100530392,1484288005,1144555520,1153728512,1107351552,131122,100530386,1484288006,1144555520,1153728512,469889024,1281884160,1081397248,100530571,2160429504,1543557120,469889024,1282146304,1282408448,1282670592,1107351552,131121,100530370,1165527040,1153728512,1107351552,131122,100530365,1165527040,1153728512,2422791184,2154617042,2188172608,98706,1281884160,1613287424,100530544,1086646272,1543557120,100532196,84017166,16908106,2193984768,4278190080,100534267,2188172544,4294967232,2423053658,100532187,84017157,16908106,2361656594,100534268,84013062,2187856896,1054442,1342439424,2214593866,1140852736,1618008066,1107353600,4294909953,100531333,1107351552,131125,100530327,1107296256,65536,1140885504,1153728512,1619056642,1107353600,2282225665,100531322,1543563264,1543561216,1543559168,469889024,100530634,1080881152,1107351552,131126,100530310,1086650368,1107351552,131127,100530306,1086652416,1484326919,2189757696,255,1484328968,2190021888,255,1107298304,1055960,2154353088,83886082,2416184324,1342470144,1484331009,2185002240,4294967103,2961995040,2151182530,2151185743,1144784896,2962038048,2156730634,2559313024,83886098,84015151,2290877617,84017167,2222720382,1140883456,1346639872,2181831936,255,2290353283,84017160,2222982526,1140883456,1346639872,2181831936,255,2290615427,83886082,100532113,2559313024,83886106,2559313025,84017160,1107353600,4294902528,1610639360,1107320832,2282225665,100532052,84013073,2559313026,84017167,1107353600,4294909952,1610901504,1107320832,2282225921,100532043,2156134608,2156203328,1149536256,1149009920,2156396752,2156467520,1149798400,1149272064,100530571,469889024,1282146304,1618008066,100531190,2428765441,84017165,1107351552,131125,100530227,2227438974,1140883456,1346637824,2416444673,83886083,1611237376,84013060,1610975232,84013058,1610713088,1543559168,469889024,1282146304,1107351552,131114,100530211,1086597120,2215904638,1140883456,1346664448,2352743742,100403196,1543559168,469889024,2215904638,1140883456,1346664448,2352743740,100403196,469889024,100531894,1610614784,1610616836,1107308544,131115,1610665984,1610618880,1611407360,1275330560,100532197,1543505920,1074034688,2151446728,2151447875,1144817664,1142194176,2550924417,83886083,1610643456,84013059,1107326976,2147483648,1144817664,1142456320,2148276224,2148540480,100534254,2147747840,2148012096,100534249,100531869,469889024,1282146304,100531861,1107351552,131115,100270064,1086599168,1276641280,100532167,1543516160,2150107336,2149871840,2147749198,2150396150,2147749198,1141147648,1142194176,1144031232,1142456320,2552497285,84017165,1278476288,1276641280,1275330560,100532151,1543505920,1543516160,1543530496,2416184641,1141147648,1142194176,1144293376,1142456320,100531835,1543559168,469889024,1612204032,100532188,469889024,1611941888,100532185,469889024,1282146304,100531820,100532131,2150107336,2149871840,2147749198,2181303616,67108864,1275330560,1141147648,1142194176,100532134,1107351552,131115,100270013,2227438974,1140883456,1346658304,1610975232,2215904638,1140883456,1346664448,2352743734,84017154,1610713088,1543505920,1287913472,2552497285,84017166,1275330560,100532103,1543505920,2416184641,1141147648,1142194176,100532110,1107351552,131115,100269989,2227438974,1140883456,1346660352,100531784,1543604224,1543559168,469889024,1612204032,100532177,469889024,1611941888,100532174,469889024,1282146304,2154881248,2154839387,1107351552,131128,100269970,1142720512,1153728512,1543559168,469889024,1282146304,1107351552,131128,100269962,1086588928,2214856062,1140883456,1346734080,1543559168,469889024,1282146304,2154576092,2182888768,3221225472,1107351552,131128,100269949,1142720512,1153728512,1543559168,469889024,1610618914,1107304448,1055960,2167826880,83886083,1627396132,2416976900,1477181454,2181051648,2415919103,2147764472,2149070153,2147485062,83886082,1209538574,2416182658,83886086,1477443584,2181039360,2415919103,2147485001,1207967744,469889024,1228195927,84277399,1477706752,2415920464,1207970816,1477706753,2415920464,1207970817,17167899,1228195927,83972096,1241565248,1053893,1678559298,83972096,1241565248,1053896,1678559298,83972096,469889024,1228195927,84277379,1232612352,1232612353,1232612354,469889024,1208272983,2416182403,84021261,1074003968,201453569,134224,134226,134228,134230,1619005440,84013062,1627394048,84013060,1610616833,84013058,1098387456,469889024,1098385408,1497105466,2348811546,84017159,1497105456,2348811546,84017156,1497105446,2348811546,83886082,1610876928,1496842752,2348811536,83886100,1497104445,2348811544,83886084,1497105468,2348811546,84017165,1497104435,2348811544,83886084,1497105458,2348811546,84017159,1497104425,2348811544,83886085,1497105448,2348811546,83886082,2416184642,469889024,1080715264,84015107,1074104320,469889024,84277326,1098385408,1496842752,2348811522,83886123,1477443585,2348811528,83886120,1497104420,2348811526,83886082,2214858056,1497104430,2348811526,83886082,2214858058,1497105465,2181039360,65024,2147483922,2415920516,84017173,1497104440,2348811526,83886098,1497105431,1497109016,2181045632,35078,83886084,2181569920,35078,84017154,2214858060,2181039488,35092,83886084,2181567872,35092,84017160,2214858062,84013062,1497104440,2348811526,83886083,2214858060,2214858062,469889024,1080559616,84015107,1074104320,469889024,1228195927,1208272983,84277272,1275330560,100532168,1543503872,2415920399,2147749184,1497104384,2181039360,2048,83886082,2214858068,1477443585,2348811528,83886082,2214858064,1496842752,2348811536,83886082,2214858066,1497105465,2181039360,65024,2147483922,2415920516,84017162,2349073676,83886088,2349073678,83886086,1497105432,1497109017,2147485058,83886082,2214858070,84277267,84017153,1497105465,2181039360,65024,2147483922,2415920516,84017159,1497105432,2181039360,255,2147483888,2147749184,84013062,1497104407,2181039360,65280,2147483872,2147749184,1497104384,2181039360,4278190080,2147483920,2147749184,469889024,1080559616,1080823808,1098397696,84017107,1477706754,2147484096,83886087,1477706242,2147483648,84017154,2147483648,1207970306,2149332992,1477706753,2147484096,83886087,1477706241,2147483648,84017154,2147483648,1207970305,2149332992,1477706752,2147484096,83886087,1477706240,2147483648,84017154,2147483648,1207970304,2149332992,2149333440,83886094,1275330560,1275592704,1276379136,100532037,2147748288,1610876928,83886082,1611139072,100531966,1543514112,1543507968,1543505920,84013059,2148012480,83886104,1241559040,33040,1276379136,100532112,1543514112,1213778007,1208266753,1477705728,1208004610,1477705729,1208004611,1477705730,1208004612,100531989,1612040192,1612042240,2167826880,83886082,1613352960,1281884160,1098436608,16907987,1543557120,469889024,1275854848,2416712708,2148012274,2148276448,2416706880,2148009280,1207961602,1241516035,3221225472,1543510016,469889024,1208272983,1074003968,2415926408,201330691,1074059264,100269441,134480,134485,134490,134495,134498,134503,134508,134513,1497115674,2182360320,61440,2148804888,84013087,1497115674,2182360320,3840,2148804880,84013082,1497115674,2182360320,240,2148804872,84013077,1497115674,2417241359,84013074,1497115162,2182360320,61440,2148804888,84013069,1497115162,2182360320,3840,2148804880,84013064,1497115162,2182360320,240,2148804872,84013059,1497115162,2417241359,1098403840,2417231247,83886153,1075052544,2415926408,201330691,1074059264,100269390,134531,134539,134546,134554,134561,134569,134576,134584,2351957248,84017210,1497125915,2183681280,65280,2150125840,2217764160,84013108,2351957250,84017202,1497125915,2183681280,255,2217764162,84013101,2351957252,84017195,1497125403,2183681280,65280,2150125840,2217764164,84013093,2351957254,84017187,1497125403,2183681280,255,2217764166,84013086,2351957256,84017180,1497125916,2183681280,65280,2150125840,2217764168,84013078,2351957258,84017172,1497125916,2183681280,255,2217764170,84013071,2351957260,84017165,1497125404,2183681280,65280,2150125840,2217764172,84013063,2351957262,84017157,1497125404,2183681280,255,2217764174,469889024,1281884160,1282146304,1497105465,2181039360,65024,2147483922,2415920516,84017157,1497109528,2181567744,255,84013061,1497108503,2181567744,65280,2148012304,1497105430,2181039360,65280,2147483920,1107310592,1055968,1208499200,2147491074,2148276432,2148016256,2147484932,2148277568,1208760832,1241528322,536870912,1677735937,1612711936,1098399744,1098401792,1098403840,1098405888,1098407936,2147747904,100532060,2349335822,83886099,1478230018,2181045504,58720256,2148276672,84017158,2181039360,4236247039,2147752174,2147484995,1207973890,2417231247,84017157,1478230018,2214593912,1636843520,84013065,2149862410,84013060,2417231247,83886082,2149598218,2148012226,2147748288,100534245,84016843,2416974904,1477193728,1478230018,2348811576,84017174,1076154368,1632688225,1276641280,1276903424,1277165568,33683456,1054839,1543520256,1543518208,1543516160,1478230018,2181039360,4292870144,2193984768,2097151,2147485041,2214593908,2350384420,84017154,2214593844,1207973890,2149597632,83886100,1075892224,1632688225,1276641280,1276903424,33683456,1054839,1543518208,1543516160,1478230017,2181039360,4292870144,2193984768,2097151,2147485041,2214593908,2350384418,84017154,2214593844,1207973889,1543559168,1543557120,469889024,84016792,2436631587,1611141120,1614026752,1276116992,100531966,1543512064,2416976952,1477443593,1208122378,1477443594,2181041408,65280,1208384525,1232763405,2415919552,1208121866,1477443586,1208121867,2415919552,1208122379,1477443587,1208121868,2415919552,1208122380,469889024,84016766,2436631597,1611403264,1611143168,1276116992,100531940,1543512064,2416976952,1477443595,2181041408,65280,2181039360,16711680,2147483936,2147749184,1208384526,469889024,84016749,2436629519,83972096,1208010816,1678559298,83972096,2416976952,1477443584,1611665408,1613764608,1241676815,35078,1617690624,1208121871,1477457931,2182888704,255,2182888768,8448,1209957392,1241676304,35092,1684962321,1209956881,1232763962,2436631607,100529854,1281884160,1282146304,1282408448,1293156352,1292894208,1098403840,1477444608,2181039360,511,2415934466,2149333056,1612201984,1497104445,2181039360,4261478399,2147750112,2147484994,2214593886,1208121405,2149319816,83890222,2147750920,2416444675,83886091,1107314688,1053887,1074319360,1098438656,1612242944,1076242432,1086988288,33683456,138733,84013059,2148008196,2160610304,1478754304,2181049728,2298871835,84017164,1478755329,2181039360,65280,2147483920,2415920545,84017158,1497105410,2147484096,84017154,1208646658,84013070,2181039488,2299789339,84017163,1478755329,2181039360,65280,2147483920,2415920545,84017157,1497104898,2147484096,84017154,1208646146,2418033670,100530130,1543643136,1543645184,1543561216,1543559168,1543557120,469889024,2416182656,84017155,2436635683,84013067,2416182657,84017155,2436635693,84013063,2416182658,84017155,2436635703,84013059,1074059264,100269049,469889024,84016628,1497104384,2348811536,1208010839,83886090,2214593808,1208121344,1477706754,2415920464,1207970818,1232763399,1232763911,1232762888,1232762889,1232762883,2436641818,83972096,1209583680,1679870018,83972096,1098385408,1276379136,100532187,2148276672,84017155,1074583552,100269021,1477181446,2214593816,1207965702,1275854848,1275330560,100531542,1543505920,1543510016,1543514112,1477706754,2147484994,1207970818,2416712708,83972096,1208797248,1678035010,83972096,2147747840,2416182403,100407271,469889024,1281884160,1282146304,84016585,1107298304,1055968,1497104418,2147484096,100142016,1275330560,1276116992,134346752,1543512064,1543505920,1497104420,2348811526,84017157,1241516034,538968063,1241516033,2097151,1497104430,2348811526,84017154,1232603648,1497104440,2348811526,84017155,1241516033,2097151,1476657664,2147488016,2181039360,255,2147484994,1497108480,2181567744,16777215,2147483888,2148013376,1208645632,1477443585,2952791328,1275068416,1477443591,1275068416,1477443592,1275068416,1476657664,2181043456,65280,2148012304,1208492039,2181043456,255,1208492040,2147484096,83886090,2201224192,1054440,1677983744,1477443585,2181039360,4294967199,2952791360,1207967745,84013069,2201224192,1054440,1677721600,1477443585,2952795424,2148012298,2416448898,84017157,2181039360,4294967199,2415920448,1207967745,1093980160,1074845696,1275330560,1276116992,100531121,1543512064,1543505920,1543503872,1207967752,1543503872,1207967751,1543503872,1477447681,2181567744,4294967199,2148013376,1208492033,1093980160,1107351552,1055968,1275330560,33683456,138533,1543505920,1497108480,1476657154,2348811576,84017157,1476657154,2181039360,2097151,83886083,2215122262,84013058,2215122198,1208645632,1543559168,1543557120,469889024,1241676804,522,1677883908,1232762885,1232762886,100529330,1228195927,1611139072,469889024,1080559616,1281884160,1282146304,1282408448,1275330560,100532216,1497104384,2181039360,4294967040,2147484993,1208121344,1543507968,2416444802,1275592704,100536297,84016446,1098385408,1276116992,100532017,1543512064,2148276672,84017155,1074583552,100268850,1477181441,2214593796,2416972856,1476933632,2350646560,83886082,2214593860,2214593858,2214593856,1207965697,1275330560,1276116992,84015512,1543512064,1543505920,2147747840,2416182403,100407272,1543507968,1497104384,2214593812,2214593816,1208121344,84016443,1275592704,84017153,1241675810,134591,100531841,100531866,100531882,1543507968,1107306496,1053893,2167826880,83886083,1107306496,1053896,1477706752,2181039424,224,1207970816,2416444802,84017164,2436682762,2436684818,1612767232,1276379136,100269135,1543514112,1477706753,2181039424,224,1207970817,100532020,1543561216,1543559168,1543557120,469889024,100532132,1098385408,100531950,2148276672,84017155,1074583552,100268784,1275330560,84015440,84015456,1543505920,2147747840,2416182403,100407285,1281884160,1282146304,1282408448,2436682762,2436684818,1612767232,100269104,1543561216,1543559168,1543557120,100531991,100531942,84013649,1281884160,1282146304,1282408448,1292894208,1293156352,1098391552,1477181446,2181039360,3840,2147483920,84016370,84017153,2415922307,201330691,1073797120,100268748,135168,135170,135172,1098387456,84013069,1610878976,84013067,1098391552,1477182468,2181039360,65024,2147483922,2415920516,84017155,1613762560,84013058,1610878976,2148012480,83886092,2416845831,1360142336,2416847881,1360406528,1074843648,1074845696,1074323456,33683456,138816,2160429504,84013058,2415920449,1543645184,1543643136,1543561216,1543559168,1543557120,469889024,1208535127,1208797271,1209059415,1275854848,1293156352,1292894208,1295253504,1281884160,1282146304,1282408448,1098397696,1477181446,2181197056,255,1477181441,2214593858,1207965697,1074405376,2148540864,84017155,2416845831,1360142336,1477181446,2181039360,3840,2147483920,84016301,84017153,1477182468,2181039360,65024,2147483922,2415922310,84021264,201453569,135251,135251,135243,135245,135247,135249,1614036992,84013064,1611153408,84013062,1613774848,84013060,1610891264,84013058,1098399744,2149597632,83886110,1075630080,1075632128,1075896320,1292894208,2416847880,1360406528,33683456,138816,1543643136,2160429504,84017171,1075630080,1075632128,1075896320,2416847880,1360406528,33683456,138733,1477183494,2181303552,3840,2147748112,100531163,1275592704,84016215,1543507968,1477706753,2147484994,1207970817,1543561216,1543559168,1543557120,1543661568,1543643136,1543645184,1543510016,469889024,83972096,1228720192,1694812226,83972096,100531138,1497104425,2684355917,2415920448,2181039424,134217728,1208121385,2436629514,1208121386,2436629522,1208121387,2436629530,1208121388,1497104435,2684355917,2181039424,256,2181039424,33554432,1208121395,2436629518,1208121396,2436629526,1208121397,2436629534,1208121398,1497104445,2684355917,2181039424,512,2181039424,100663296,1208121405,2436629519,1208121406,2436629527,1208121407,2436629535,1208121408,469889024,1610770432,84016198,100532178,1611032576,84016195,100532175,100531081,469889024,1497104389,1497106435,2147749248,84017177,1098385408,100531726,1477181441,2348811528,83886085,2147747840,2416182403,100407290,84013072,1497104389,2147483648,1208121349,100531054,1098385408,100531713,1477181441,2348811520,84017155,2214593864,1207965697,2147747840,2416182403,100407288,84013121,1497104384,2348811544,83886142,1497104384,2348811538,83886124,1497104900,2181041408,255,1497108999,2181567744,255,2181039360,65280,2147483920,1074286592,2147753090,84021250,1074024448,2147487114,83886089,1497104900,2181039360,4294902015,2150125776,2147485002,1208121860,100531015,84013092,1497104900,2181039360,65280,1497106951,2181303552,65280,2147487105,84017180,1497104393,1208121347,1497104384,2214593876,1208121344,1497104392,1497106438,2147487105,83886099,1208121350,100530995,84013072,1208010839,1232762885,1232762886,1232762883,1497104900,2181041408,255,2147748048,2181039360,4294902015,2147484993,1208121860,1497104384,2214593876,1208121344,469889024,1228195927,1208535127,1208797271,1477181441,2415922440,2147748102,2148011393,83886102,2148012230,2181039360,4294967287,2147484994,1207965697,1477183494,2181303552,3840,2147748112,100530986,1107306496,1053893,2167826880,83886083,1107306496,1053896,1477706753,2181039360,255,2147484994,1207970817,469889024,1098387456,1275854848,100532192,1543510016,1477181954,2181041408,255,2147748048,2181039360,4294902015,2147484993,1207966210,1477182467,2214593818,1207966723,1208010839,469889024,1228195927,1208797271,1477182467,2214593820,1477183489,2349073668,83886082,2214593884,2214593822,2349073666,83886082,2214593886,1207966723,2214857992,2349073664,84017154,2214858056,2214857994,1208227841,1497104389,2147483648,1207965696,469889024,1228195927,1208797271,2416710663,2147748288,84017154,2416710665,1342705664,1098391552,1477182469,2348811546,84017154,2148540416,1276116992,100531907,1543507968,1275854848,100532138,1543510016,1477181441,2214593800,1477184515,2349073690,84017154,2214593864,1207965697,2214858010,1208228867,1208272983,469889024,1228195927,1208797271,1610876928,100530144,1228195927,1208797271,1098385408,100530140,1228195927,1208272983,1275330560,100531528,1477181441,2348811530,83886085,2348811528,83886083,100532155,84013242,2348811520,84017169,1098391552,1477182467,2348811550,83886082,2148540416,2416710663,1342705664,100531863,1610878976,1275854848,100532094,1543510016,1477182467,2214593818,1207966723,84013224,1497104384,2348811540,83886245,2348811538,84017171,1098391552,2416710663,1342705664,100531846,1098387456,1275854848,100532077,1543510016,1477181441,2214593800,1207965697,1497104389,2147483648,1207965696,1477182467,2214593882,1207966723,84013201,1477181446,2348811544,84017170,1228195927,1098391552,2416710663,1342705664,100531824,1098387456,1275854848,100532055,1543510016,1477181441,2214593864,1207965697,1477182467,2214593882,1207966723,1208010839,84013181,1477181441,2348811528,84017157,1497104387,1477183488,2147485057,84017270,1477184002,2181303552,255,1477181956,2181043456,255,2147755138,83890178,1074268160,2181039360,65280,2147483920,2147487105,83886100,1477181954,2181047552,255,1477184004,2181303552,255,2148541569,84021253,2181039360,4294967040,2147484993,1207966210,1477181441,2214593800,1207965697,1497104389,2147483648,1207965696,84013141,1477181954,2181039360,65280,2147483920,1477184004,2181303552,65280,2147748112,2147485057,83886085,1477181441,2214593864,1207965697,84013127,1477182467,2348811550,83886122,1477184517,2349073694,83886119,2348811548,83886087,2349073692,84017157,1275854848,100532083,1543510016,84013106,2348811548,84017155,2349073692,84017155,100531686,83886085,1275854848,100532069,1543510016,84013096,1228195927,2416710663,1342705664,1098391552,100531729,1098387456,1275854848,100531960,1543510016,1477181441,2214593864,1477184515,2349073690,84017154,2214593800,1207965697,2214858074,1208228867,1208272983,84013076,1228195927,1098391552,2416710663,1342705664,100531709,1098387456,1275854848,100531940,1543510016,1477181441,2214593864,1477184515,2349073690,83886082,2214593800,1207965697,2214858010,1208228867,1208010839,1477181441,2348811528,84017157,1228195927,1497104389,2147483648,1207965696,1543505920,469889024,100531826,1098385408,100532024,2147747840,2416182403,100407293,1497104384,2214593812,2214593816,1208121344,469889024,1080563712,1080827904,84015107,1074366464,469889024,1208797271,1209059415,2148276672,84017155,1074583552,100268150,2416968835,83890179,1074845696,100268146,1098393600,1074790400,201453569,135773,135785,135797,1477181441,2348811520,84017159,1845493760,137065,2147483648,1778384896,137065,84013083,2416716802,2416712711,84013080,1477181441,2348811520,84017159,1845493760,137066,2147483648,1778384896,137066,84013071,2416716802,2416712712,84013068,1477181446,2348811544,84017159,1845493760,137067,2147483648,1778384896,137067,84013059,2416716804,2416712713,1098387456,2148805056,83886116,1342969856,1477706752,2181059840,511,2181039360,65024,2147483922,2415920516,84017167,1611661312,1477184512,2147748288,83886086,2415920134,1477184001,2147748288,83886082,2415920134,1477708800,2181303552,4294966784,2147749184,1208232960,1612193792,1276379136,1277689856,17430893,1543524352,1543514112,1075318784,1477708800,2181303552,4294966784,2147749194,1208232960,469889024,100532118,1091315712,1276379136,2433620998,2436631556,17430856,2148012480,84017155,1074321408,100268056,1098385408,100531216,1477181441,2348811520,83886089,1610620928,1275330560,100532117,1543505920,2148012480,84017155,1074321408,100268043,2147747840,2416182403,100407282,1543514112,2165048453,83890179,2415920258,84021251,1091360768,100268033,2148804868,2148805682,2181039424,65024,1207970816,1684810240,1497104384,2181039360,255,2181039424,8448,1207970817,469889024,1295253504,2148276672,84017155,1074583552,100007919,1477181446,2181197056,255,2348811550,84017175,1477182466,2181039360,511,1477458944,2182888704,511,2149334400,84017170,1477181446,2214593886,2181039360,4261478399,2147760352,2147484999,1207965702,2181039360,3840,2147483920,2415920514,84017155,2416196614,1209957378,1543661568,2147485056,469889024,1228195927,1543661568,2415920449,469889024,1281884160,1282146304,1282408448,1293156352,1292894208,2416202754,2150126599,2416200710,2149844106,84021410,1076103168,2416182531,83886091,1107437568,1053890,1091837952,1086988288,1074057216,1098438656,1613815808,33683456,138733,84013059,2147746052,2160600064,1477458944,2182888704,511,2417769474,2149862407,2150106249,83890314,1477444608,2181039360,65024,2147483922,2415944838,84021378,201453569,136099,135977,135993,136036,136050,136074,1497128960,2351957266,84017164,1477444608,2181039360,511,2415920522,84017157,2217764178,1211267072,1208384513,100530128,1610885120,84013182,1611147264,84013180,1477444097,1477469186,2150654176,2150655296,1612716032,2419066127,2550137999,83886099,2550137991,84008977,1845493760,137068,2147483648,1778384896,137068,1496842752,2214593808,1208119808,1611409408,1610975232,1543643136,1543645184,1543561216,1543559168,1543557120,469889024,2150654216,2148276288,100534249,2436635683,1276903424,1277165568,1277427712,1277689856,100532090,1543524352,1543522304,1543520256,1543518208,83886083,1611409408,84013138,100530081,2436635693,1276903424,1277165568,1277427712,1277689856,100532076,1543524352,1543522304,1543520256,1543518208,83886083,1611671552,84013124,100530067,2418017666,84017174,1477444609,2181039360,255,2147484096,84017169,1497105465,2181039360,65024,2147483922,2415920516,84017163,1276903424,1277165568,1277427712,1277689856,100530935,1543524352,1543522304,1543520256,1543518208,100530044,100530043,1477444609,2181039360,255,2415920512,84017172,1497105465,2181039360,65024,2147483922,2415920517,84017166,2436635703,1276903424,1277165568,1277427712,1277689856,100532027,1543524352,1543522304,1543520256,1543518208,100403045,1611933696,84013075,100530018,1228195927,100530016,1611933696,84013070,1497104384,2348811538,84017155,1612720128,84013065,1098483712,1098393600,1543643136,1543645184,1543561216,1543559168,1543557120,469889024,1209321559,1098483712,1543643136,1543645184,1543561216,1543559168,1543557120,469889024,1281884160,1282146304,1282408448,1293156352,1292894208,84015364,1098405888,1086988288,2436770823,1497104384,2348811536,83886088,1497158657,1098438656,1613815808,33683456,138816,2160429504,84017166,2418826564,1477706754,2415920464,1207970818,2436770823,1497158657,1098438656,1613815808,33683456,138733,1497104384,2214593872,1208121344,1098385408,1276379136,1277952000,100530915,1543526400,1543514112,2418826563,2148276672,84017155,1074583552,100007650,1477181446,2348811550,83886212,2416182658,84017225,1497105465,2181039360,65024,2147483922,2415920516,84017219,83972096,1241565248,1053883,1678821442,83972096,1107437568,1053883,1086988288,1497157693,2187908352,33488896,2154352928,1098438656,1612242944,33683456,138733,1612189696,1497105410,2147484096,83886092,1107437568,1053883,1086988288,1073795072,1074321408,1612242944,1275592704,33683456,138733,1543507968,2416448518,1497104898,2147484096,83886092,1107437568,1053883,1086988288,1497158146,1074321408,1612242944,1275592704,33683456,138733,1543507968,2416448518,1107314688,1053883,2416448642,1478755328,2181039360,4294966784,2147484994,1207979008,1091969024,1098399744,1613776896,1612206080,84013075,1086988288,1477197830,2183152896,33488896,2149597472,1497125890,1610893312,84013067,1086988288,1477197830,2183152896,33488896,2149597472,2418037766,1477200898,2183417088,511,2418297988,1477181446,2348811544,83886104,2416847876,1075892224,1098438656,1612242944,33683456,138816,2160429504,84017155,2217499968,84013058,2217499904,2416847881,1360406528,1076416512,1098438656,1076158464,33683456,138816,2160429504,84017155,2217499970,84013058,2217499906,2351695104,83886087,2416847876,1075892224,1098438656,1612242944,33683456,138733,2351695106,83886088,2416847881,1360406528,1076416512,1098438656,1076158464,33683456,138733,1477181446,2214593880,1207965702,84013077,1477181446,2348811544,83886096,2214593816,1207965702,1232607236,1232607237,1477181446,2181039360,4261412864,2147483954,2416710665,1342705664,83972096,1208535104,1208010818,83972096,84013059,2217499904,2217499906,2418803971,83886092,2418826564,1275330560,1276379136,1277952000,100270016,1543526400,1543514112,1543505920,1477706754,2147484994,1207970818,2147747840,2416182403,100407117,2351695108,1543643136,1543645184,1543561216,1543559168,1543557120,469889024,1228195927,1497104384,2214593810,1208121344,1232763905,1232763394,1232763906,1098385408,100530722,1477181446,2214593822,2181039360,4261478399,1207965702,2147747840,2416182403,100407288,469889024,2147748288,83886092,100531792,2148805056,84017174,1496842761,2147483648,2181039360,65535,100403197,1208119817,100531975,83886084,1497104384,2214593880,1208121344,100531587,84015114,1477706753,2181039360,224,100534850,1497104389,2147484992,100404603,1098483712,469889024,1107306496,1053893,2167826880,83886083,1107306496,1053896,469889024,1090789376,2167826880,83886082,2969838596,469889024,1241565264,1056000,1107302400,1056767,2181833856,1056000,2416968840,83890192,1241565265,1056767,1209059411,1107296256,1056000,1165492224,2147483648,2148279680,100534269,1241565269,125786,1482948609,2181039424,256,1208010753,469889024,1275068416,2415920449,1543503872,469889024,1080715264,1107458048,1053899,1107456000,1053567,2167826880,83886085,1107458048,1053964,1107456000,1053723,469889024,402780160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2712735659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138806,138793,1053065,12,1054455,0,1055980,2,1,135838,16,1054021,135865,2,138793,1053387,0,0,138953,131983,131806,132950,0,137043,332,0,133649,1055962,3,137184,138196,131083,305419896,4,0,0,1,0,0,0,0,2,0,0,0,0,0,16384,65584,9600,0,0,0,0,0,0,0,0,0,0,0,0,0,33554433,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,65584,9600,3709097145,192,89459371,610347903,8,0,2866,0,0,0,0,65537000,1753244800,7232,8,7171,1,7176,0,7177,63,7178,10,7180,74,7181,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,327682,0,842137600,0,0,0,0,0,0,1,512,67592,137,65584,9600,3709097147,192,89459371,610347903,8,0,2866,0,0,0,0,65537000,1753244800,7232,8,7171,1,7176,0,7177,63,7178,10,7180,74,7181,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,327682,0,842137600,0,0,0,0,0,0,1,512,67592,0,2,0,0,0,0,1,2,3,4294967295,0,1,2,3,4294967295,0,1,0,1,4294967295,1,0,0,0,0,0,0,0,30,0,0,0,2,2,1,1,65537000,1753244800,0,0,0,0,1,1,0,0,0,0,0,0,0,775628,0,0,0,0,0,0,2157787200,1216428032,1098448896,1786773504,1055993,1786773504,1055992,1786773504,1055991,1786773504,1055990,1786773504,1055996,33683456,131131,1481953280,2221462848,1214818304,1481953281,2221462848,1214818305,1216391172,33683456,131093,1610928224,1681707008,1611190368,1241567232,2099,1619054688,1241567232,255,1619316832,1241567232,255,1619578976,1241567232,255,1619841120,1241567232,255,1107349504,2955935744,1080811520,1107349504,4294967295,1080817664,1486684160,2157787136,469889024,74,117,108,32,32,51,32,50,48,49,50,0,1107349504,1048581,1241567232,137119,469889024,49,50,58,50,48,58,51,51,0,1107349504,1048582,1241567232,137136,469889024,2426223750,1216428032,1216690177,1216952322,1217214467,1217476612,1217738757,1080625152,1098457088,2154365128,2155928602,2154617028,2691488769,1483528193,2154617090,2423053575,1610946560,2288780452,67239940,1490606083,2355944712,67240018,1610950656,1490604035,2422789393,2288518309,67108928,1082445824,33683456,133658,1086656512,1082445824,33683456,133645,1086646272,1490604035,2355680512,67108878,2153042977,1483264000,2355680518,67108874,2155926561,2154352836,2691224577,1483264001,2154352898,2422789383,1640030209,2556953728,67108873,1614862336,2559313024,67239963,2155139276,2154620250,2559050880,67239938,2221991242,2156189892,1107349504,1055961,2154617882,1483526144,2187908352,4294966791,2154354012,1214830592,2557478016,67239949,2559837312,67108875,2161957921,1483526144,2556953728,67108896,2556953729,67108904,1610948608,67235889,1098438656,67237861,2161957921,1483526144,2556953730,67108867,1232656384,67235881,1611735040,67237885,2155926561,2154352836,2691224577,1483264001,2154352898,2422789383,2556953728,67241914,1082445824,33683456,1051129,1086662656,67237813,33683456,1051907,1086658560,67237804,1107361792,1055982,2156200992,1622200322,33683456,132170,1220870144,2161955873,1678036992,67235852,1107349504,1055982,2156188698,1483264000,33683456,132174,2562983040,67108868,1611472896,2161955873,1678299136,1083279360,1486694405,1486692356,1486690307,1486688258,1486686209,1486684160,2426223622,469889024,2157787200,1218525184,2426223750,1084047360,2426223751,1216428032,1216690177,1216952322,1217214467,1217476612,1217738757,1218000902,33683456,1050483,33683456,132454,1098452992,1107363840,1055978,1107367936,1055975,1107361792,1055960,2156450849,1232654336,2156450851,1232654336,1082183680,1611716608,33683456,132107,2156466176,2424374276,2559050881,67233781,1611206656,1610932224,1785724928,1055994,1614348322,1682767872,1631131684,1682774016,1098438656,1845547008,4484,2154352928,2322072704,16716,67239938,1081137152,1215080451,1845561344,4098,2156187936,2422789377,2156189986,2423053569,2154355739,1215080456,1098520576,1785724928,1054442,1785724928,1054443,67239715,67239728,1787297792,1055994,33683456,131234,1845547008,4484,2322072704,1095499776,67109054,1611976704,1785200640,1055994,1619316771,1684066304,1619316773,1684066304,1107349504,1073741824,1080811520,1107349504,1207959552,1080811520,67239629,33683456,136401,1612500992,1785200640,1055994,33683456,134010,1612763136,1785200640,1055994,33683456,1052163,1613811712,1785200640,1055994,1610665992,1214857217,1098448896,33683456,131230,2328102016,236,67108870,1610928128,1611978760,1082187776,33683456,131786,33683456,131232,3099853956,67108870,1610928128,1612240904,1082187776,33683456,131786,1216391175,1082200064,1481953288,2556953728,67231832,1107363840,1054446,2156450849,1680396288,1082707968,1107351552,131078,33683456,131982,1627705344,1241567232,65537000,1791229952,64,1082707968,1107351552,65537000,33683456,1050846,2156462276,1107353600,1055960,2155928604,1681971200,1232656385,2153047074,1483788288,2221462854,1214832640,1232656387,1845547008,1055994,2154352640,1785200640,1055994,1082707968,33683456,131372,1082707968,33683456,133704,1082707968,33683456,131372,1082707968,33683456,133569,1082707968,33683456,133690,1107351552,1054442,2156450843,1483264000,2355680512,67239964,1490604035,2355680512,67108873,1107353600,1055962,2155928604,1483526144,2187908352,4294967292,2221462848,1214830592,1845547008,1055994,2154352640,1785200640,1055994,1082707968,33683456,133294,1845547008,1055994,2154352640,1785200640,1055994,1082707968,33683456,1048963,2156466176,1481953288,2288518306,67364780,33683456,132666,33683456,133197,1481953288,2556953729,67362837,1845561344,4098,2189757696,224,2156189890,2188172288,131078,1845551104,4101,2188446976,4294966287,1787035648,4101,1627705344,1241567232,1073758208,1785462784,64,1785724928,4101,1618530304,1785200640,1055994,1490604035,2355680520,67108906,1098452992,1481955336,2288780450,67231782,1107353600,1054442,2156450844,1483264000,2422801665,2355680512,67109711,2156466176,67237878,1845547008,4509,2422789379,2556953728,67110719,1611452416,1785200640,1055994,1681981440,1681987584,1490604267,1785200640,1055977,2556953728,67110709,33683456,132170,1086652416,1082183680,33683456,132174,2562983040,67241773,33683456,132382,2562983040,67110904,67237672,1619316736,1785200640,1055994,1845549056,1055975,2221727048,1785462784,1055975,1845547008,1055976,2221462856,1785200640,1055976,1785462784,4366,1785200640,4686,1241559040,33792,1845547008,1048585,1214820353,1098438656,1845547008,1054442,2355680512,67239938,1611192320,1845547008,1054443,2355680512,67239938,2221727044,1481953283,2556953729,67239938,2221727040,1215082498,1845547008,2139963395,2187908352,983040,2154367264,1107351552,1055971,2156188699,1483264000,1214820355,1107349504,1055984,1415106560,1482215425,1785200640,1055985,1482215426,1785200640,1055986,1482215427,1785200640,1055987,1611714560,1613289472,33683456,132371,1614399488,1614663680,1098436608,33683456,1050323,33683456,1050739,33683456,1050490,1845547008,136457,2322072704,2712735659,67108871,1610928128,1632950282,1107353600,122541,33683456,131786,1845547008,1053409,2322072704,2712735659,67108871,1610928128,1633212426,1107353600,188077,33683456,131786,33683456,131756,2361756942,67240588,33683456,131756,2361756980,67240575,33683456,131756,2361756962,67240557,33683456,131756,2361756964,67240544,1098450944,1082458112,2692799498,1483528720,2692797450,1483265040,2288780442,67239943,2692797450,1483264017,2187908352,196608,2556953728,67108868,1082445824,33683456,1050285,2156201984,2424374326,2558788739,67233774,1098452992,1082722304,1082726400,2156188691,1483264000,2556953728,67108911,1098448896,2156188691,2154355744,1483526150,2556953730,67109170,2155937792,2558526595,67233785,1098448896,2156712995,2154353683,2422791174,1483526144,2556953730,67108869,2155937792,2154616832,2558526595,67233786,2558526596,67239961,1082707968,33683456,131946,1086652416,33683456,131835,2156190739,1483526145,2322072704,288,67109535,2322072704,290,67109539,1082707968,2156190739,33683456,132200,2156190739,1483526145,2556953748,67109506,33683456,131832,2156466176,2425166855,2424638478,2559050883,67233738,1098452992,1481955336,2288780450,67231937,1107353600,1055960,1215381507,1107374080,137043,1107372032,137045,1107349504,1055988,1214857220,1107351552,1055978,1215119365,1107353600,1054442,2156450844,1483264000,2355680512,67239996,1082707968,1107351552,131121,33683456,131982,2227492222,1785200640,64,1845561344,65,1082707968,1107351552,131122,33683456,131982,2227492222,1785200640,64,1845551104,65,2558788736,67109092,2156468424,2156712994,2154352836,2691224577,1483264005,2288518305,67109085,1082707968,33683456,131441,2156712994,2154352836,2691224577,1483264001,2355680520,67240166,2559050880,67240172,1611976704,1214857216,1612503074,1215119362,1490604035,2422791425,2355680512,67240172,1486147584,2556953728,67108868,1486409728,2556953728,67108870,1678059520,1215115264,1082707968,33683456,132899,1082707968,33683456,1050748,1082707968,33683456,1050880,2153042978,1483264000,1098450944,2355680512,67109195,2424624390,2424636673,2556953728,67108947,1486936066,1483538439,2424644866,2357529858,67109191,1082707968,33683456,133569,1082707968,1107351552,131078,33683456,131982,2156468424,2156715042,2154617028,2691488769,1483526159,1785200640,65,1791229952,64,1082707968,1483528207,33683456,1050846,2223048016,1486938114,1216405511,2156470468,1107349504,1055963,2156981274,1484054528,2188432640,255,2154352640,2187908352,255,2188434688,4294967040,2154618202,1080877056,2556953728,67110902,1215096832,1082707968,33683456,131475,1241559040,32785,1107351552,1055960,2156987419,2156712994,2154352836,2691224577,1483264001,2154352846,2187908352,1792,1484838912,2188172544,4294965503,2154618202,1215102976,1215082497,1611253760,1486999552,1098436608,33683456,1050323,1484836864,2221462848,1214840832,2156712994,2154352836,2691224577,1483264001,2424636673,2355680520,67240243,2558526592,67240175,2156466176,1486938117,2154881024,1215381509,1486934020,2154352640,1214857220,2157258752,2157522944,1486936067,2423053316,1215119363,1481955336,2288780450,67364686,1098452992,2288780450,67231769,1082720256,67235845,2156466176,2961245188,2288780450,67231763,2692797441,1483264001,2355680520,67110905,1082707968,33683456,136429,33683456,1052796,1086640128,1098438656,33683456,134383,1481955336,2156466176,2961245188,2288780450,67364847,1098520576,1486938113,2322596992,1024,67109206,1610668040,1215119361,1098448896,33683456,131756,1486938113,2160383260,1611991040,2556953728,67110556,2156202048,2323907712,4294967295,67110552,33683456,131756,1486936065,2160383259,2556953728,67110546,33683456,131835,1082183680,33683456,133308,33683456,131832,2156202048,2323907712,4294967295,67241968,67237510,1483526154,2556953728,67110605,33683456,132174,2562983040,67110601,2156188691,2154353696,1678036998,1232654346,67237572,2557478016,67110700,2156468424,2156712994,2154352836,2691224577,1483264006,2288518300,67110693,1082707968,33683456,131441,2156712994,2154352836,2691224577,1483264001,2355680520,67110684,1082707968,33683456,136429,1082707968,33683456,134913,2559050880,67110678,1613291520,1215381504,1629278244,1214857218,1490604035,2422791425,2355680512,67110678,1486936066,1483538439,1082707968,33683456,1051115,2562983040,67109044,1486938117,1483788288,2556953728,67109121,2556953731,67109187,2556953729,67109208,2556953732,67109214,2556953733,67109125,2156470468,2556953734,67109223,1082707968,33683456,1051129,2562983040,67109115,2223048018,1486936066,1216403463,1107353600,1055962,2156975132,1483264000,2422789379,2556953729,67241724,1241559040,33072,1845547008,4100,1098450944,2355680566,67239942,1845547008,2139963395,2187908352,983040,2154367264,1107351552,1055962,2156975131,1483264000,2154352904,2422789407,1610932224,2556953731,67223786,2189493504,4294964223,1107351552,1055971,2156188699,1483266048,2557215872,67227886,1107353600,1055962,2156981276,1484054528,2154877192,1610936320,2422736159,2155401408,2154616090,2556953728,67240166,1107349504,1055962,2156977178,1483526144,2187908352,4294967292,2221462850,1214830592,2223048022,1678061568,1678059520,1082707968,33683456,132899,1678028801,2153045026,1483526144,2221462854,1214830592,1486936066,1216403463,1107353600,1055960,2156977180,1483528194,2188172544,4294967280,1482215425,2154354011,1214820353,1611253760,1486999552,1098436608,33683456,1050323,67237552,1082707968,33683456,131483,67237647,1082707968,33683456,137150,1086654464,67237554,1486938115,1483788288,2221462784,1214832640,1082707968,1107351552,131078,33683456,131982,1627705344,1241567232,1073758208,1791229952,64,1082707968,1107351552,131078,33683456,131982,2156468424,2156715042,2154617028,2691488769,1483526158,1785200640,65,1791229952,64,1082707968,1483528206,33683456,1050846,2223047952,1486934018,1216401415,1490604035,2355680512,67239995,1241559040,32786,1486936067,1483526145,1214820353,1483526146,1214820354,1611515904,1486999552,1083232256,33683456,1050323,2156712994,2154352836,2691224577,1483264001,2424636673,2355680520,67110607,1082707968,33683456,136429,1082183680,33683456,1052830,67237576,1486934020,1220857856,2189493504,4294963711,2223048020,1486936066,1216403463,1486938117,1220861952,2156470468,1107349504,1055962,2156977178,1483530240,2423313667,2422789250,2556953729,67364437,2221987136,2187908352,4294966797,1214830592,1241559040,33073,1610991616,1486999552,1086640128,33683456,1050323,1678061568,1678059520,67237444,1082707968,33683456,1051129,67237827,1845547008,1055990,2154352640,1785200640,1055990,1611513856,33683456,1055563,67237273,1845547008,1055991,2154352640,1785200640,1055991,1611251712,33683456,1055563,2328102016,8200,67241354,33683456,1050933,67237255,1845547008,1055992,2154352640,1785200640,1055992,1610989568,33683456,1055563,67237242,1845547008,1055993,2154352640,1785200640,1055993,1098498048,33683456,1055563,67237229,1610666000,1214857217,1610940416,67237547,1107349504,1055980,2156463130,1637928967,33683456,132170,1220870144,1486936069,1678563328,67237487,2223047954,67237638,2156470468,1107349504,1055962,2156977178,1483526144,2187908352,4294967292,2221462848,1214830592,1486936069,1679349760,67237620,1082707968,33683456,1051594,1086644224,2189493504,4294964223,1107351552,1055971,2156188699,1483266048,2557215872,67360532,2557478016,67110685,67237649,2423313731,1214834688,2189493568,3072,1678323712,1215899648,1082707968,33683456,132899,1232646145,2153045026,1483526144,2221462790,67237664,1082707968,1610930176,33683456,1051677,2562983040,67240015,1481955336,67237035,1082183680,2154616832,33683456,1049544,33683456,131832,67237243,1107353600,1055980,2156450844,1483264000,33683456,132174,2562983040,67110445,1486934021,1678036992,67237418,1082183680,1107351552,4294967295,1098440704,33683456,1049553,67237215,1082183680,2154616832,33683456,1049638,67237210,1082707968,33683456,1051516,2562983040,67239970,1486938117,1678827520,67237398,1082707968,33683456,1051516,2562983040,67239966,1486936068,1483526144,2154352640,1214830592,2556953731,67241483,1486938117,1679089664,67237384,1082707968,33683456,1051516,2562983040,67110550,1486938117,1678303232,1107349504,1055962,2156977178,1483526144,2187908352,4294967292,2221462848,1214830592,67237515,1486936069,1678301184,2156470468,67237511,1486934021,1678299136,2156470468,67237507,1614336034,1241567232,254,1631113252,1241567232,254,1241559040,33793,1845547008,1048585,1214820353,1086642176,1481953283,2556953729,67239938,2227494208,1215082498,1107349504,1055984,1415106560,1482215425,1785200640,1055985,1482215426,1785200640,1055986,1611452416,1613551616,33683456,132371,1614399488,1614663680,1082183680,33683456,1050323,33683456,1050855,33683456,132382,33683456,132382,67237884,1486696454,1486694405,1486692356,1486690307,1486688258,1486686209,1486684160,2426223629,1486700544,2157787136,469889024,2157787200,1216428032,1080885248,1107351552,131105,33683456,131982,1484836865,1627707392,1214830592,1627443200,1220857856,1484849154,1216403456,1220857856,1486684160,2157787136,469889024,2426223748,1216428032,1216690177,1216952322,1217214467,1080625152,2154371272,2156712986,2154369220,2693325825,1483788297,2959672639,1107349504,1055970,1241567232,536870912,1483788297,2154352910,2422791425,2355680512,67108883,2154617080,2221727098,1785462784,1055970,1483788297,2154352862,2187908352,58720256,2154618202,1785462784,1055970,1098448896,1107349504,1055969,1232654336,3095397539,67231775,67235893,2558526592,67110905,1082183680,1632688225,33683456,1054839,2193937664,2097151,1845549056,1055970,2188172544,4292870144,2154618202,1785462784,1055970,2693321729,1483264009,2154352862,2187908352,67108864,2221727028,2154618202,1785462784,1055970,1107349504,1055969,1232654336,3095397539,67364835,2156712993,2154352836,2691224577,1483264009,2154352852,2187908352,67108864,1785200640,1055969,1636880384,2154353824,1632688225,33683456,1054839,2193939712,2097151,1845547008,1055969,2187908352,4292870144,2154354011,1785200640,1055969,1486690307,1486688258,1486686209,1486684160,2426223620,469889024,1080877056,2154617092,2154617882,1483528192,2154877056,2422793475,2154823878,2154617088,2188217600,255,469889024,4294967040,4294902015,4278255615,16777215,2154621188,2154616960,2423059715,2154353693,1107351552,138659,2155404315,1483270144,1483528192,2155146523,2188436736,255,2155348166,2154881216,2155146588,1215614976,469889024,1080877056,2154617092,2154353691,1483270144,2423317763,2557478016,67108872,2154823878,2155145408,1483264001,1619056640,2154562688,2154352896,2155146586,1081444352,469889024,2426223746,1216428032,1216690177,1080625152,1081147392,2154623236,2423053571,2154357790,2557215872,67108887,2154617030,1619060736,2155150491,1081868288,1107349504,4294967295,2154363072,1080819712,2155929856,2156190750,1483526144,2154353951,2154354012,1214830592,2155086976,2155937984,2155409408,2155406369,2155665536,1483788288,2154353947,2155939162,1216405504,1486686209,1486684160,2426223618,469889024,2426223750,1216428032,1216690177,1216952322,1217214467,1217476612,1217738757,1080625152,1080889344,1081147392,1091641344,1091901440,2424909059,2559837312,67108880,2558526592,67108878,1082447872,2156201984,1083232256,67239831,1082710016,2156466176,1082970112,1086644224,67239841,2155937856,2424909059,2559837312,67241970,2558526592,67108896,2156187908,2156995610,2424638723,2156450052,2156731418,1083510784,2558526595,67231754,2558788736,67239959,1485885440,2156994560,1214846976,2156730368,2424374404,2558526595,67364856,2558526592,67108877,1082447872,2156201984,1083232256,67239797,1082710016,2156466176,1082970112,1086644224,67239807,2155937856,2558526592,67241973,67235852,1083232256,2156994560,1082447872,67239816,1082970112,2156730368,1083496448,1086644224,67239827,2424374404,67237861,1486694405,1486692356,1486690307,1486688258,1486686209,1486684160,2426223622,469889024,2157787200,1218525184,2426223746,1084047360,2426223751,1216428032,1216690177,1216952322,1217214467,1217476612,1217738757,1218000902,1081149440,2154371332,2154631428,2422789379,2154373318,1619054592,2154362020,2423053571,2154637510,2154378405,2289566886,67108914,2558788736,67108910,2425410847,1214857216,2425683231,2693583876,2156730368,1483276288,1486934016,2556953728,67108872,1083179008,2155927744,2165363747,1483264000,1081606144,2154352896,2154628442,2693321733,2156466176,1483270144,2558264448,67108872,1083441152,2155141312,2165625890,1483264000,1083703296,2154352896,2154622298,2558788739,67362827,2156189894,1619054592,2154355867,1080819712,1107349504,4294967295,2154356928,2155939100,2155146524,1611728896,2290091165,67239983,2424638596,2558788736,67241943,1610932224,67235883,2557478019,67233742,2559575168,67108887,2156974342,2154353692,2422803588,1083179008,1107349504,4294967295,2154356992,2693585924,1483528192,2154618140,2693321733,1483264000,2154353948,2156466176,2156730368,1098440704,2288780442,67239957,1081143296,1081155584,1081159680,1081157632,2156200196,2165363747,2165627938,1082187776,1215905793,33683456,132132,1086644224,1486942209,2562983040,67108870,2156731424,2156467232,2424638723,67237799,1098440704,1081182208,1486696454,1486694405,1486692356,1486690307,1486688258,1486686209,1486684160,2426223625,1486700544,2157787136,469889024,2154354900,2154356934,2154618204,2154352842,2154663066,469889024,67239930,1086640128,33683456,132170,469889024,2388915123,3423303445,2250475822,1141144481,3080861122,4274510026,4189600196,2017998339,919939907,60475222,1836250958,1971902637,1772933837,1840448872,3025474610,4056594415,2198172223,3370363837,1298416173,3895107001,498572313,681989324,509003005,835744954,662339287,2321125896,641408379,1186208595,243157494,3674882870,3158648241,806004571,1802654004,104481414,4132129667,860615536,1205257446,6253134,937193398,1644448179,3554875469,4285933168,173522867,2374932918,733435475,3582912170,2927139381,2095714960,3538726003,2722387046,3798210622,2270859689,3708503683,1469520916,1437009036,2859042801,3662450641,3881607518,303672336,2926217912,3396406347,1868184342,1160010081,3086607524,1365171059,1409240947,2098178097,849494770,3867862574,130605898,2740372187,4285907544,3721177651,3183248418,3461053728,1501398812,141938747,2062307536,1276965681,427435767,3455021813,3714199982,2157447359,3675061211,3839560721,3763205091,3405464762,4180836015,4200385050,4052778354,3339079053,3246209669,2955499530,2130632057,1603623203,2031435769,1585165745,2557645082,2133670080,734448199,81212968,2076471306,1861034582,4225152606,3242640417,161304930,3150615393,1871667745,3893104881,3320269365,4000538731,1575480356,3066399867,2166854729,553031733,1866175995,3450480643,341831258,2548165434,2429499,3361954175,2373697781,1568538361,1538607553,1670164968,2217972948,2045095060,1417432622,3728041382,822093533,2922740795,751013670,3651246813,340508455,703572491,1889612361,239061893,642894338,1214981429,2434806034,518629981,1837522069,2763771986,24854739,3601681512,1828044996,2086634790,4067756677,4288467166,1106131965,1194842327,2316504693,1711272170,1989437202,1438787992,3559184728,2333645988,746603090,4189679624,3793565675,2142230106,1873198380,3414573743,2213178947,175099059,596212239,2815137926,2446369120,4245338525,3427053698,2418376367,3638744492,1936957882,1693246774,2851521948,3801651182,1079507879,2854230245,2757803086,596795497,964592888,1420604838,159635798,1455461608,302897155,293750337,1357985324,1712072116,1314727443,1007488172,3783840425,1258222506,4240001788,451005026,1925826366,3538000755,1469131728,4276872799,2194049721,3087209867,676519660,4034327331,2786840980,1925022132,2266467244,4214905126,4268281502,762581810,1091728128,4077692666,1491119986,3613367066,2753023496,4240594893,2581511070,3874602196,1798883172,2569946145,966248798,3564683677,3935489836,2777523186,1592659024,2380955869,1264375534,998004788,901132065,3147108011,57235771,1938259105,550110824,2295355160,1072762181,1737146868,2239327914,511819626,2425715157,2438596782,1564548746,1056084628,4223564322,68423001,3222592550,3686858732,3466638372,2918905261,1785280695,3987786360,3271026261,4132988699,3600226779,4006202713,3980053858,2537471879,3925226097,502936504,1013138444,2295006952,1670724814,3391117661,2125943416,3334768034,1846257403,4159207155,114007414,2495045270,760881074,3394839572,3725784344,3737639778,1919817491,474767612,1200296521,3893014187,3446784059,460440467,2755722024,27543036,1454193807,2942818595,4067140650,3675725522,3230621819,2471962802,2910657955,2905767588,2228577456,2421088538,245062805,1820831115,951392435,2868755426,3845809400,2479882094,3259903797,3885674692,1259329988,472896194,600823745,1274467072,2241648455,3945282159,2348123400,48728865,2549970041,1781124710,3113631842,1479306209,1399336089,2752143529 ]
      },
      "MEMC RAM": {
          "segment": 21,
          "values": [ 84013073,131072,1048576,7422,136839424,137119,137136,335544320,134217744,75784,20,268435464,84013061,131072,1048588,0,0,1107554304,136607,1073741824,1107550208,2415919254,1073741824,84013066,1107298304,136458,1107300352,136608,1610805248,1165494272,2147747840,2148015233,100534269,1107298304,136457,1107300352,137069,1610805248,1165494272,2147747840,2148015233,100534269,1107298304,136608,1174407168,305419896,1107298304,1053409,1107300352,1054839,1610805248,1165494272,2147747840,2148015233,100534269,84015114,1107298304,136457,1174407168,2712735659,1107298304,1053409,1174407168,2712735659,126980,1610805248,1098385408,1098387456,1098389504,1098391552,1098393600,1098395648,1098397696,1098399744,1098401792,1098403840,1098405888,1098407936,1098409984,1098412032,1098414080,1627422720,1627686912,1098420224,1107335168,1054161,1627430944,1107339264,136609,1107341312,136623,1614329858,1610662134,1610664032,1098436608,1098438656,1098440704,1098442752,1098444800,1098446848,1098448896,1098450944,1098452992,1098455040,1098457088,1098459136,1098461184,1098463232,1098465280,1098467328,1098469376,1098471424,1098473472,1098475520,1098477568,1098479616,1098481664,1098483712,1107398656,1054455,1098487808,1610719265,1107404800,136619,1107406848,136639,1107408896,137011,1107410944,137013,1107412992,137014,1107415040,137015,1107417088,137016,1107419136,137021,1107421184,137026,1610739746,1627519010,1098514432,1107429376,136875,1107431424,1054031,1098520576,1098522624,1098524672,1098526720,1098528768,1098530816,1098532864,1107447808,1054217,1098536960,1610768418,1098541056,1098543104,1098545152,1098547200,1098549248,1098551296,1098553344,1098555392,1098557440,1098559488,1098561536,1098563584,1098565632,1098567680,1098569728,1610813688,1610811424,1610838016,1098637312,1098639360,469889024,1281884160,1241559040,16384,1610991616,129921,130291,1543557120,469889024,1079539712,1107296256,1055984,1342205952,2318926976,33793,83886085,1611714560,1613289472,1611689984,84013060,1611452416,1613551616,1611427840,1409316864,2147483648,2151446528,2151182400,100534268,1482190850,2184738112,32768,1211674626,130323,1614399488,1614663680,130291,469889024,100532188,469889024,1241559040,16384,1614923776,129921,130291,469889024,1107296256,1048585,1342177280,1208004609,1481900034,1208004610,1490551808,1481930755,2185002240,192,84017154,2214593888,1208004611,1107296256,1048586,1342177280,1208004612,1107296256,2139963395,1342177280,2181039360,983040,2147483936,2181039104,1055971,1342177280,1208004613,1241559040,16384,1612302336,129921,130291,469889024,1281884160,1282146304,1282408448,1482192897,1482190856,2151182560,2151212367,1482192901,1482190852,2151182560,2151159119,1482192899,1482190850,2151182560,2151208271,1482192903,1482190854,2151182560,2151210319,129860,100532127,1543561216,1543559168,1543557120,469889024,130254,1482192897,1482190856,2151182560,2151212367,1482192901,1482190852,2151182560,2151159119,1482192899,1482190850,2151182560,2151208271,1482192903,1482190854,2151182560,2151210319,129881,100532104,130269,469889024,1482192897,1482190856,2151182560,2151157071,1482192898,1482190851,2151182560,2151159119,1141377024,100532092,469889024,1482192897,1482190856,2151182560,2151157071,1342443520,1241559040,16384,1232646145,2181569792,65535,1208791042,2181569792,4294901760,2148276512,1208791043,1611778048,129921,130291,469889024,130254,1482192897,2151446752,1482190850,2151210319,1482192899,2151446752,1482190852,2151208271,1482192901,2151446752,1482190854,2151212367,2154881220,33683456,138733,100532055,130269,469889024,84015487,469889024,1080557568,1090783232,1107300352,1055960,2147484096,83886085,2953055236,2416448516,2147483712,100530171,1476657153,2348811528,84017169,1476657161,2952791359,84017155,2348811534,83886092,1476919296,2214593910,2181039360,4177526783,1476663305,2181831936,1792,2148276496,2148276464,2148271424,84013060,1476919296,2181039360,4043309055,1207963648,469889024,1282146304,1283457024,391284,131033,130999,1281884160,33683456,138551,1543557120,1107351552,1055968,1281884160,33683456,138533,1543557120,1090846720,2154353088,83886082,2961245188,1484785665,2416182542,83886083,2181303552,1073610751,1208287233,130851,130392,1107351552,131078,129934,1484783630,1140885504,1153728512,1282146304,1073797120,84016952,1543559168,1610876928,1080715264,654574,84279068,100532149,1484783621,2315256960,89459370,84017155,2147483648,1208025093,1484783622,2315256960,610347902,84017155,2147483648,1208025094,129393,1543569408,1543559168,469889024,130254,130308,1611927680,83886166,1612189824,1482162180,2415920131,2147483908,2315256960,512,84017231,1482215426,1482217475,1087954944,1638928385,129860,1610618882,130284,1281884160,129913,1543557120,1090838528,2160429504,83886082,2960188420,1623724032,129860,1623726080,130284,2423317554,1611141120,129860,1627396096,130284,2423317506,1611141120,129860,1627396096,130284,2423317506,1614286848,129860,129913,1086640128,1090809856,1107355648,1055960,2154353088,83886083,2956489732,2423581700,1480065028,2147484096,84017157,1480065027,2147484096,84017154,130349,1490550787,2348811520,83886084,1483997186,2415920449,1208018946,391284,1080612864,84015570,2160429504,84017166,100531889,1107326976,1054442,129913,2160429504,83886084,2151446528,2160429120,100534268,1346109440,2214593792,1140881408,84013068,1241559040,16389,1220849665,129921,1611253760,130291,84013061,1208528896,129921,1610991616,130291,130269,469889024,130254,1482215426,1482217475,1482162180,2415920131,2147483908,2315256960,428,84017258,2154353088,84017156,2154617280,84017154,84013146,1281884160,1282146304,1638928385,1087954944,129881,1543559168,1543557120,1638930433,130284,1281884160,129913,1543557120,1090838528,2160429504,83886082,2960188420,1623724032,1483794433,2193945600,1054444,1350041600,1208016897,1281884160,1282146304,1282408448,129881,1543561216,1543559168,1543557120,1215619073,1623726080,130284,2423317554,1611141120,1281884160,1282146304,1282408448,129881,1543561216,1543559168,1543557120,1626896384,1086877696,1165520896,2151182336,2151446592,100534269,1282408448,1086906368,1611143168,130284,1626869760,1281884160,1282146304,1282408448,129881,1543561216,1543559168,1543557120,1543561216,1626871808,130284,2423317506,1611141120,1281884160,1282146304,1282408448,129881,1543561216,1543559168,1543557120,1282408448,1086906368,1611143168,130284,1626869760,1281884160,1282146304,1282408448,129881,1543561216,1543559168,1543557120,1543561216,1626871808,130284,2423317506,1614286848,129881,1241559040,16384,1232646145,1232646146,1232646147,1241559044,428,1612040192,129921,130291,84013061,1241559040,16390,1610991616,100530170,130269,469889024,129913,2193884160,1054442,1342177280,1208004609,1241559040,16384,1611253760,129921,130291,469889024,130237,1086588928,129905,1086590976,1482168321,2416712975,1074558976,1078730752,2151446976,83886084,2416976910,2151446592,100530172,1477443584,2147484096,84017164,1241559040,16389,1241559041,47826,1208528898,1208791041,1611778048,1074122752,130291,2422789121,469889024,2550924416,84004868,2550924419,84140034,84013068,1241559040,16390,1241559041,47825,1208528898,1208791043,1611780096,1074122752,130291,2422789121,469889024,2147485056,469889024,100532179,84017156,2148008964,1677721606,100531683,469889024,1079564288,1088475136,84015189,2160429504,83886086,1220849664,1208266753,129921,1611253760,130291,100531671,469889024,129905,1086588928,2426223750,2426147841,1612216320,1074294784,1165520896,2151182336,2151446592,100534269,1241518080,256,1482192896,2151446752,1490579457,2151182544,2151185743,2147777871,1482162176,2315256960,290,83886085,2315256960,288,83886082,84013069,2218556744,1211895809,1074057216,129990,1086640128,130238,1220808706,2328102016,4294967295,84017161,1232605186,84013063,1211895809,1074057216,130238,2160328832,2415920399,1207963650,1482162176,2315256960,290,84017158,1482162177,1207963651,1482162178,1207963652,84013061,2550138004,84017155,1482162177,1207963651,1074321408,1088475136,84015120,1086593024,129921,2148276672,83886086,1208791040,1208266753,1611253760,130291,84013061,1241559040,4096,1610991616,130291,2426223622,469889024,130254,129906,1086588928,1483479041,2416712975,1078730752,1074034688,2151446976,83886084,2416976910,2151446592,100530172,1477474304,2151446976,83886083,1632110965,84013162,2281964675,83886083,1632635253,84013158,1483503617,2419862832,2148804872,1281884160,1282146304,2185024768,3840,2154352912,1637931015,33683456,1054839,1543559168,1543557120,1086599168,2148805056,84017159,1483487234,2417769743,2149333440,84017166,1632897397,84013136,2551448705,83886083,1632373109,84013132,1281884160,1074057216,129990,1086640128,130238,1543557120,1086601216,83972096,1209059392,1681442882,83972096,2416999425,1415084032,2151446528,1611661312,2423014401,1079537664,2151182336,1411414016,1411411968,2151446528,2151182336,2149597184,2147483712,100534266,1677991936,1611685888,1098405888,1610895360,2149319946,83886119,1281884160,1076678656,130001,1610893312,1543557120,2160429504,83886109,1281884160,1076678656,129898,1086640128,1241559040,33025,1612040192,130238,1086705664,1276116992,1276641280,1276903424,130291,1543518208,1543516160,1543512064,1543557120,1610631168,2551710848,84008969,1611155456,1281884160,1075367936,130122,1543557120,2416999434,2151447563,1153726464,2416999430,2151445515,1143238656,2150389760,2150125762,2150654016,100534229,1610713088,84013058,1612286080,130269,469889024,130254,100531960,84017182,1482162177,2181092608,3840,2154352912,1637931015,33683456,1054839,1086640128,130122,2148008964,1220804618,1074581504,129898,1086640128,130238,1086705664,1241559040,33026,2421718017,2416997378,1611661312,1412986880,2151182336,2151446528,2147483712,100534268,1612040192,130291,100531438,130269,469889024,1483503619,2352743680,83886082,1678182416,84013056,469889024,1088475136,100531983,469889024,1281884160,1282146304,2322334848,4294967295,83886083,1080872960,84013059,129914,1086640128,1610668032,130812,84277264,1501822977,2348811582,83886084,1610930176,130576,84013059,1610930176,130687,2161902618,1342177280,2550137986,84017191,2432173070,2154353088,83886083,2197292032,334,1342208000,2218556688,1144782848,1281884160,1241559040,32786,1107296256,1055960,2154353088,83886082,2415920132,1476425728,2218556672,1211891712,1679863809,1476425730,1211936770,1611515904,2556953728,84017155,1612042240,84013058,1613352960,130291,1543557120,2161902618,1677721600,1281884160,1080715264,654574,1098436608,84278417,1543557120,129324,130556,391752,391738,130556,1501822977,2348811582,83886082,84013063,1490550787,2348811528,83886084,84277250,2160429504,84017155,100531557,1098483712,1543559168,1543557120,469889024,1088475136,100531898,469889024,130254,1080621056,129914,1086640128,1090848768,2154353088,83886082,2961509380,1485111297,1483542531,2187955200,1054444,1149863936,1216940033,1483472900,1208027138,2187928576,1054440,2357724424,83886095,1351614464,2147484096,84017167,2961704224,2147483914,2550137986,84017160,2189952256,4294967199,1208027137,1082447872,391940,1216940033,84013060,1677795328,1082447872,391940,1082447872,391793,2156397984,2348811528,83886088,1281884160,1080715264,654574,1611401216,84278387,1543557120,100531467,2424370446,2155409666,2424892686,2155145474,2557740160,83886083,2223576354,1216940033,2558264448,83886087,2558264449,83886085,1610668032,130812,1610930176,130812,130851,2289566877,83886088,131033,2557740160,84017156,1080612864,100532067,84013058,130999,130269,469889024,129913,1090781184,2160429504,83886082,2952791044,2193984512,1054444,1355053056,1211936769,1476425730,1211936770,1611515904,1241559040,16384,129921,130291,469889024,129913,1107296256,1055960,1090783232,2160429504,83886083,2415920132,2953055236,1241559040,16384,1476685825,2419619086,2151182594,2151182544,1476425728,2185002240,4294965503,2151447886,1211936769,1476425729,1211936770,1476425730,1211936771,1214826583,1086744576,654574,654533,1496842761,2147483872,1496873993,2147485007,1208004612,1477706240,2147514608,1477706241,2147483872,2151447872,1477706242,2147483856,2151447872,1107296256,1055960,2167826880,83886082,2415920132,1476395011,2181039360,255,2151447872,1211936773,1612302336,129921,130291,469889024,129913,1086640128,1107351552,131078,129934,1482162177,1140885504,1153728512,1282146304,1073797120,84016154,1543559168,100531181,469889024,129913,1086640128,1107351552,131078,129934,2227438974,1140883456,1346664448,1241559040,16384,1211936769,1611253760,129921,130291,469889024,2154617092,1080920064,2322334848,236,84004899,1107396608,4294967295,2322334848,256,84004895,2423098516,2322334848,308,84004887,1107396608,4294967295,2322334848,370,84004886,2959969426,2322334848,372,84004878,1107396608,4294967295,2322334848,434,84004877,2188217472,144,2322334848,448,84004868,1107396608,4294967295,84013061,2154353088,83886082,2965736452,2160430134,469889024,1281884160,1282146304,129913,1086640128,1482217473,2422998275,84017165,2322334848,2048,84135946,100532173,2328102016,4294967295,83886083,1482162178,1140951040,1241559040,16384,84013059,1241559040,16390,1611515904,129921,130291,1543559168,1543557120,469889024,1281884160,1282146304,129913,1086640128,1482217473,2422998275,84017166,2322334848,2048,84135947,1677766657,100532145,2328102016,4294967295,83886083,1355022336,1208004609,1241559040,16384,84013059,1241559040,16390,1611253760,129921,130291,1543559168,1543557120,469889024,130254,129913,1086640128,2187858944,1054442,1342701568,1482164225,2550400129,83886086,2550400130,83886137,1241559040,16390,84013159,2348811528,83886084,1241559040,16389,84013154,2214593864,1140854784,392193,2187856896,1054435,1153697792,1098438656,1643962879,392183,1098403840,1098455040,1277689856,392180,1543524352,2160429504,83886089,1076363264,1610881024,2148270272,2156731712,1098405888,1277689856,392128,1543524352,2150125568,2552759432,100534257,1098403840,1277689856,392177,1543524352,2160429504,83886089,1076363264,1610618882,2148270272,2156731712,1098405888,1277689856,392125,1543524352,2150125568,2552759440,100534257,2187856896,1054433,1150027776,84013104,2348811528,84017156,1241559040,16389,84013101,2214593800,1140854784,2187856896,1054435,1342494720,1643962879,392183,2187856896,1054433,1342509056,1098403840,1610946560,2156397859,2147484096,83886088,1277689856,392180,1543524352,1610897408,1277689856,392128,1543524352,2150125568,2156730562,2552759432,100534259,1098403840,1610684418,2156397859,2147484096,83886088,1277689856,392177,1543524352,1610897408,1277689856,392125,1543524352,2150125568,2156730562,2552759440,100534259,1241559040,16384,1610991616,129921,130291,130269,469889024,129913,1086640128,2187854848,1054442,1342181376,1232646145,2349335816,83886085,1678028801,391688,84017154,1678553089,1241559040,16384,1611253760,129921,130291,469889024,129913,1086640128,1090811904,2154353088,83886082,2956753924,1480353792,2187858944,1054442,2187860992,1054446,1342730240,1482164225,2550400129,83886086,2550400128,83886097,1241559040,16390,84013076,2218028368,2218292556,1241559040,16390,1482164226,2147748288,83886093,2147748034,1141118976,2187865088,137063,1141123072,84013059,2218028304,2218292492,1211398144,1144524800,1241559040,16384,1610991616,129921,130291,469889024,2187856896,1054442,1342439424,2214593808,2154617280,83886082,2214593872,1140852736,469889024,1241559040,16385,1614923776,129921,130291,469889024,2556953732,137928,1080557568,201455654,1610618880,2282488987,83890179,1610643456,84013059,2154853379,1345878016,2148037635,1144811520,2148276224,2147747904,100534262,2556953730,84004881,2557215879,84008975,1612453888,1610612736,2282488987,83890179,1610643456,84013059,2154853379,1345878016,2149610496,1144811520,2148276224,2147483648,2550924429,100521973,1611151360,2148540864,83886083,1075568640,84013058,1142695936,469889024,1050153,1050162,1050171,1050177,1614809088,2197296128,144,1610883072,2197302272,161,1107308544,805306369,469889024,1614809088,2197296128,400,1610883072,2197302272,417,1107308544,939524097,469889024,1612449792,2432177159,1610620928,2432183329,2432189441,469889024,1612449792,2197296128,327,1610620928,2197302272,353,2197308416,321,469889024,1080557568,2550137989,137928,201455634,83886083,1610975232,84013058,1610713088,469889024,1627420672,84013059,1107326976,33554432,129708,2160329999,469889024,1496317985,84013058,1496318305,2415920386,469889024,1050195,1050197,1050202,1050204,1282146304,1624823808,33683456,1054839,2166885425,1476688400,1476662288,2282226831,133832,2416452614,2551186596,84004866,1098391552,2148039681,1480327186,2315256960,33056,83886093,1241544722,33056,2151446528,1678014482,2151446528,1207990290,1611399168,2151446528,1232631826,2151446528,2147483712,100534269,2147775492,2419618834,2419620866,1412986880,2151182336,2147777538,2419883027,1346109440,2147483648,1140879360,2151182400,1174433792,33056,2419618819,2151446528,1611399168,1413246976,2151182336,2151446528,2147483712,100534268,1543532544,1612185600,2147777538,2419883026,1412986880,2151182336,2151446528,2147483712,100534268,1209011216,1209010704,1476657169,2348811552,83886089,2181070080,65535,2285634690,84017157,2181039360,4294901760,2148533568,1207961617,469889024,130254,100532124,2160429504,84017185,84015281,2160429504,84017182,1624823808,33683456,1054839,2697264138,1484591121,2357724448,83886091,2190019840,65535,1484588048,2290353312,84017158,2223576352,1216935953,2424103936,1614862336,84013068,1484522512,2415977490,2154882079,2415920134,2550138020,84017154,1610612736,1208024080,2223576354,1216935953,1612240896,100532012,130269,469889024,130254,1482162176,2315256960,33792,83886087,2315256960,32768,84004868,2315256960,33793,84017155,1614645248,84013058,129938,2160448826,1614862336,2154562745,2153307193,2147484096,83886085,1165547520,2154616832,2147483712,100530171,1080629248,1610665984,1611726848,1098457088,2162807232,83886104,130238,2160397626,83886098,84015214,2160429504,83886088,100532051,2160429504,84017157,1088739328,1079566336,100531968,84013062,1082972160,84015116,2160429504,83886082,2156209508,2156202112,2156254522,2154352640,2155937856,100534248,1083279360,130269,469889024,130254,1282146304,1624823808,33683456,1054839,1543559168,2697264138,1482162176,2315256960,32768,84135951,1484521489,2214593888,1208023057,1614807040,2424112128,1079576576,1418002432,2156201984,2155937792,2147483712,100534268,1484522000,1208023569,84013091,1484521489,2348811554,83886085,1484522000,1484588048,2281702560,83886100,1612185600,1079574528,2424114194,1484591632,2156207138,2156466176,1216936464,1417746432,2155937792,2147483712,100534265,1484522000,2550138020,84017154,1232665104,1484521489,2214593890,1208023057,84013065,2154617280,84017156,1079564288,100532002,84013060,1107396608,4294967295,84013058,1610713088,130269,469889024,469889024,1282146304,1281884160,1613287424,129757,1543557120,1282146304,1107351552,131134,129934,1543559168,1147963392,1153728512,1107351552,131135,129934,2227438974,1140883456,1346734080,1281884160,1613287424,129775,1543557120,1543559168,469889024,130254,1624823808,33683456,1054839,2697264138,1610713088,1484522512,1484587536,2281702560,84017158,1484521489,2181039360,196608,84017154,1610975232,130269,469889024,1492647950,2214593822,1208086542,1492648270,2214593822,1208086862,469889024,130254,1501822996,2348811568,83886103,1501878283,2221726992,1215236107,1501878283,2355889424,100534267,1611190272,130052,1501822996,2348811568,100534262,1501880339,2221991270,1215498259,1611190272,130052,2221991206,1215498259,1501822996,2348811568,100403198,100530155,1107363840,1054452,1107365888,1054453,1351149568,2557740160,84017174,1501886474,2424046860,83886142,84015511,84013115,2356937990,83886137,1845493760,1054454,2147483648,1778384896,1054454,1681065994,1501822986,2348811526,84017201,1618530304,130122,1153763328,1678053376,84013100,1492647951,2550137988,84135944,1350881280,130126,2160429504,83886117,2557740161,83886094,84013086,1492648271,2550137988,84004868,2557740161,83886088,84013080,1350881280,130126,2160429504,83886104,2557740162,83886098,129787,1501884420,1501888531,2223048038,1216546835,1611190272,130052,2223047974,1216546835,2222519646,1216022532,129784,1618530304,130122,1153763328,1678315520,84013061,1611452416,84015468,1677791232,1681065994,1845493760,1053561,2147484096,84017157,2214593856,1778384896,1053561,84013062,1845547008,1053560,130126,2160429504,83886218,1610665984,2187918336,1054446,2187920384,137063,2187924480,1054442,1351151616,1090809856,2154353088,83886082,2956489732,1480136704,2357986576,84017155,2356675856,83886147,1107351552,65536,2422737921,2147748050,2154618177,100532044,2428865807,2562983045,83886083,2562983046,84017208,2154616832,100532037,2428865807,2562983045,83886083,2562983046,84017201,2188172544,4294967232,2423053648,100532028,2361656576,84017157,2154616832,100532024,2361656576,83886091,2188172544,4294967232,2423053650,100532018,2361656576,84017185,2154616832,100532014,2361656576,84017181,2222519630,1148784640,2356675856,83886092,1610993664,2154353088,83886082,1611255808,1241559040,32774,1232646145,1611253760,130291,2357986576,83886094,1350303744,2147483712,2147484096,1140914176,84017166,129324,1107351552,131075,129934,1107296256,2147516416,1140885504,1153728512,2356675852,84017155,1680406528,84013058,1417738240,1481902088,2154352640,2288518273,100534182,1492647950,2214663518,2181039104,4096,2181039360,28672,2190021888,4294938623,2156467520,1216999438,1492717902,2190021952,32768,2190021888,4294938623,2156467520,1216999758,1641074691,130122,1791229952,1053560,1492707342,1492709710,1628176421,1342246912,2357724448,83886087,2356413738,84017158,2222255466,1611780096,84015302,84013058,2222255402,2357724452,83886087,2356675882,84017158,2222519658,1612828672,84015293,84013058,2222519594,1215688718,1215951182,130269,469889024,1281884160,1610928128,84015311,1543557120,1845493760,1053562,2214593794,1073995776,469889024,130254,1490550787,2348811530,83886173,2187856896,137051,1342439424,2147484096,84017156,2214593856,1140852736,84013073,2187856896,137053,1342439424,2348811520,83886084,2214593792,1140852736,84013065,2187920384,137049,1281884160,1350619136,130126,1543557120,2160429504,83886149,2187916288,137047,1350103040,1107351552,131078,129934,1086644224,2227438974,1140883456,1346693120,1107351552,131099,129934,1086650368,1610680320,1107351552,131084,129934,2227438974,1140883456,1346637824,2349335808,83886086,2188700928,4294901760,2189757760,25166080,84013066,1282932736,2188965120,65535,2188700928,4294901760,2155146590,1543565312,2189757760,25166208,2154353088,84017155,1492647951,84013058,1492648271,2181039360,255,2315256960,255,84017158,2188700928,65535,2189757760,201328640,84013064,2188965120,4294901760,2188700928,65535,2155146590,2189757760,201329664,1165527040,1148223488,1149536256,1149009920,1148487680,1148223488,1631637519,130122,1153761280,130269,469889024,2187856896,137047,1147930624,2187856896,137053,1342439424,2214593856,1140852736,469889024,1281884160,1282146304,1490550787,2348811530,83886098,1610665984,1107351552,131078,129934,1165527040,1153728512,1107351552,131099,129934,1107298304,226494720,1141147648,1153728512,1481902088,2154352640,2288518273,100534257,1543559168,1543557120,469889024,130254,1090846720,2154353088,83886082,2961245188,1484840965,2187856896,137059,1342498816,2154353088,84017155,1492647951,84013058,1492648271,2348811536,84017159,2155145664,83886102,2222255360,2188436608,536879104,84013062,2155145664,84017168,2222255424,2188436480,536879104,1148454912,1215365125,1107351552,131121,129934,2227438974,1140883456,1346635776,2147748288,83886083,1148225536,1153728512,130269,469889024,1241559040,32770,1241559041,2147483648,1232646146,1845493760,1048585,1208004611,1678028804,1612040192,130291,469889024,1281884160,1610665984,2187858944,1054442,1342701568,2348811520,84017155,129324,391617,1481902088,2154352640,2288518273,100534262,1543557120,469889024,1214976000,1502085120,2348811520,100403197,1610612736,1611687936,1107324928,1054448,1208008739,2556953729,83886084,1345878016,1211940894,84013059,1482717214,1144811520,2147483648,2151182336,2150918208,100534261,2556953729,83886170,1107308544,2139881472,1477967872,1477998605,2315256960,3401205793,84017231,1477980164,2149069248,83886156,1343776768,2150918592,83886153,2149068800,1075329024,1611139072,1107300352,2281701376,1501839362,2183136512,3584,2147483906,1610618880,2415920451,1208160256,1343758336,2149068800,1343760384,2149068800,2349860128,84017188,2148533506,2282226816,84017185,2182096128,65535,3088057473,84017180,2148276224,2148271245,84021284,1075070976,1343758336,2149068800,1343760384,2149068800,2349860128,84017171,2148533506,2282226816,84017168,2182096128,65535,3088057472,84017163,2316567680,4112,83886089,1075060736,1076111360,2349860130,83886084,1142196224,1141932032,84013058,1142169600,2148276224,2148271245,84021256,2352743712,100403155,2550924418,100534225,1616386048,2417505320,100534222,2147747904,83886088,1075589120,1107300352,1207959552,2183136512,57344,2147483914,100530114,1502085256,2214593862,1208160392,1678032940,1677922304,469889024,469889024,469889024,469889024,1282146304,1282408448,84015114,1080877056,1627445256,130937,130892,2160385436,133832,1543561216,1543559168,469889024,1282146304,1631639560,130892,2361656576,100534269,1543559168,469889024,1282146304,1282408448,100532215,1282408448,1080877056,1623250952,130937,1543561216,1610668040,130937,1619056648,1610932224,130937,100532204,1543561216,1543559168,469889024,1282146304,1282408448,100532198,1080877056,1623250952,130937,1619056648,1611194368,130937,100532191,1614862344,130892,1543561216,1543559168,469889024,1282146304,1107351552,131098,129934,2227438974,1140883456,1346635776,2349073664,83886083,1098483712,84013058,1610975232,1543559168,469889024,130254,1107365888,1055961,2154353088,83886082,2424902660,1351157760,1107351552,131098,129934,2227438974,1140883456,1346635776,2349073670,84017156,2223312128,1610975232,84013059,2223312192,1098483712,1149571072,130269,469889024,1617219584,1611141120,1637881863,1107296256,1811966976,1140885504,1150058496,2148276288,84017157,2148012096,84017179,2415920384,84013080,1107296256,1207959552,1140885504,1150058496,2223768958,1140883456,1346662400,2184738048,4608,2184738176,4608,100534251,130052,1107296256,1610629120,1140885504,1150058496,130052,1107296256,201328640,1140885504,1150058496,2415920449,469889024,1613764608,130052,1107296256,201329664,1140885504,1150058496,130052,1107296256,201328640,1140885504,1150058496,2148276288,100534261,100530128,1107296256,1610629120,1140885504,1150058496,1613287424,130052,1107296256,201329664,1140885504,1150058496,130052,1107296256,1610637312,1140885504,1150058496,469889024,1281884160,1612713984,1080563712,2181825792,128,2147483852,2181039424,1610629120,1140885504,1150058496,1613287424,130052,1107296256,201329664,1140885504,1150058496,130052,1107296256,201328640,1140885504,1150058496,2148276418,2148012096,100534252,1107296256,1610637312,1140885504,1150058496,130052,1107296256,201329664,1140885504,1150058496,130052,1638168583,1107296256,1073741824,1140885504,1150058496,2151446592,83886086,2223768958,1140883456,1346637824,2349335832,100534266,1107296256,201328640,1140885504,1150058496,1275592704,130052,1543507968,2349335832,1543557120,469889024,1283457024,1283719168,1074069504,1074333696,100532097,83886091,1082183680,100532161,84017163,1082445824,100532158,84017160,1082132480,84015113,83886082,2415920449,1543571456,1543569408,469889024,100532133,2147485056,100530171,1275330560,100532078,1543505920,83886088,2416235841,100532141,84017158,84015140,84015199,100532121,2415920449,469889024,100532118,2147485056,100530173,1283457024,1283719168,1283981312,1074069504,1074333696,1074597888,100532058,83886094,1082183680,100532122,84017167,1082445824,100532119,84017164,1082707968,100532116,84017161,100532098,1612763175,130052,2415920449,1543573504,1543571456,1543569408,469889024,100532090,2147485056,100530170,1281884160,1283457024,1283719168,1107296256,1610637312,1140885504,1150058496,1612713984,1098393600,1637941255,1613287424,130052,1107296256,201329664,1140885504,1150058496,1107296256,201326592,1140885504,1150058496,2223768958,1140883456,1346701312,2357462290,84017155,2155937856,100534266,84013063,1613287424,130052,1107296256,201329664,1140885504,1150058496,1613287424,130052,1107296256,1073741824,1140885504,1150058496,2223768958,1140883456,1346664448,2185002240,4096,2151446808,2148804802,2151427397,1107296256,201328640,1140885504,1150058496,2148012096,100534247,1107296256,201328640,1543571456,1543569408,1543557120,469889024,1107296256,1610637312,1140885504,1150058496,1613287424,130052,1107296256,201329664,1140885504,1150058496,1613287424,130052,1107296256,201328640,1140885504,1150058496,469889024,130254,1610682368,1611683840,1610612736,1275330560,1275592704,1277952000,1275068416,100532074,1543503872,1543526400,1543507968,1543505920,83886094,2148804800,2148865378,2155937856,83886088,2415920136,2148012032,2150389824,100534255,1149831168,2156201984,100530153,1149831168,2415920449,130269,469889024,2559050883,84017219,2559313028,84017217,2356937988,83886085,2357462272,83886083,1611761664,84013116,2356937990,83886085,2357462276,83886083,1612023808,84013110,2189427968,255,3087008932,83890185,2356937988,84017157,2188117248,255,2550138017,84017155,1612285952,84013098,2356151564,83886083,1610975232,84013094,2356151562,83886083,1611237376,84013090,2356151560,83886083,1611499520,84013086,2356675840,83886083,1612548096,84013082,2356675842,83886083,1612810240,84013078,2356675844,83886083,1613072384,84013074,2356675846,83886083,1613334528,84013070,2189427968,255,3087008932,84021257,2356937988,84017157,2188117248,255,2550138017,84017155,1613596672,84013058,1614645248,469889024,130254,1281884160,1490550787,2348811528,83886083,84015664,84013106,1107351552,131098,129934,1086658560,1619003393,1610616832,100531970,83886125,1075122176,1619003393,1611141120,100531965,83886120,1075107840,1619003393,1611403264,100531960,83886115,1075109888,1619003393,1612189696,100531955,83886110,1075113984,1619003393,1612713984,100531950,83886105,1075116032,1619003393,1613762560,100531945,83886100,1075118080,1619003393,1626345472,100531940,83886095,1075120128,1619003393,1615335424,100531935,83886090,1075126272,1619003393,1610878976,100531930,83886085,1075124224,100532098,1086662656,84013060,1098483712,1098457088,1614620672,1543557120,1107296256,1055962,2154353088,83886082,2415920132,1342208000,2185002240,4278255119,2157258952,2157215055,2156994784,2156952911,1144782848,130269,469889024,130254,1107351552,131098,129934,1086658560,1490550787,2348811528,84017160,1086916608,1612251136,1619003393,1635782656,100532035,83886098,84013061,1619056641,1635835904,1612244992,84015435,1355315200,2319189120,1735347281,84017161,1489532929,2185002240,65535,2319189120,25449,84017155,1610975232,84013058,1610713088,130269,469889024,1282146304,1490550787,2348811520,83886095,2154617280,83886084,1107298304,25166080,84013059,1107298304,25166208,1275330560,1107351552,131098,129934,1543505920,1141147648,1153728512,1543559168,469889024,1282146304,2154617280,83886084,1107298304,393220,84013059,1107298304,393222,1275330560,1107351552,131100,129934,1543505920,1141147648,1153728512,1543559168,469889024,469889024,1282146304,2154353088,84017155,1627445249,84013058,1627445265,100531616,1639504303,100531650,1543559168,469889024,130254,1610680320,2154353088,84017155,1610690560,84013058,1610690576,1610930176,100532187,1281884160,1637928967,130052,1543557120,1098438656,100532181,1281884160,1637928967,130052,1543557120,2962808128,100531591,1610668422,1098440704,100531607,1611192710,1098440704,100531604,1617222022,1625350144,100531601,1617484166,1616961537,100531598,2191056192,192,100531576,1620629504,1610670108,100531592,1620891648,1615388672,100531589,1621153792,1621156170,100531586,2962808128,100531565,1610668422,1611194368,100531581,2191056192,192,100531559,1632688592,1627447297,100531575,84015252,84017211,1281884160,1107349504,2139471872,1348993024,1543557120,2315256960,1431681979,84017286,1281884160,1107349504,2139471872,1483210755,1483266050,2147539995,130246,1543557120,2160429504,84017276,1610668288,1107372032,2139471872,1486094338,2157259776,1351950336,1611732992,2190533888,255,100531545,2156994832,2154616832,2156730432,100534266,2157258752,2322334848,49152,100534260,2191056192,256,100531515,1610668288,1351950336,1611732992,2190533888,255,100531528,2156994832,2154616832,2156730432,100534266,2157258752,2322334848,40960,100534260,2187854848,1054442,1342208000,2218556740,1144782848,2191056192,192,100531493,1632688592,1627447296,100531509,1281884160,1637928967,130052,1543557120,100532087,1086656512,1281884160,1614860366,130122,1086652416,1543557120,1281884160,1082183680,130126,1543557120,2160429504,84017215,100532074,2294547618,100403192,2191056192,192,100531467,1643436463,1281884160,1614860366,130122,1086652416,1543557120,1281884160,1082183680,130126,1543557120,2160429504,84017197,100531490,2160429504,100403192,2562983056,100403190,1107372032,2139471872,1486094340,2617246144,1208002562,2191056192,192,100531442,1614862754,100531476,2428865795,2562983043,83886098,2562983040,83886083,2562983041,100534265,2962808128,100531431,1610668320,1635049472,100531447,1610930464,1643438088,100531444,1611192608,1612242944,100531441,1098483712,84013067,2156202432,84017160,1281884160,84015122,1543557120,2156201984,100529980,1610713089,84013058,1610713090,130269,469889024,1610713088,2187854848,1054442,1342177280,2348811524,83886083,1610975232,2415920449,469889024,2187854848,1054442,1342208000,2218556742,1144782848,1107351552,131098,129934,1086658560,100531477,1612974080,1275330560,100531525,1543505920,2147747904,100534268,469889024,130254,2187920384,137055,2187922432,137057,1107351552,131099,129934,2227438974,1140883456,1346689024,2355889432,83886085,1677787136,1677789184,1610975232,84013073,2154353088,84017155,1627445248,84013058,1627445264,100531359,1611454752,100531393,1153761280,1611716896,100531390,1153763328,1611192608,1612242944,100531369,1098483712,130269,469889024,469889024,130254,1080893440,1081157632,1081421824,2154353088,84017155,1610684416,84013058,1610684432,2322334848,160,83886089,2322334848,162,84017189,2962021696,100531329,1612515584,1610682624,84013062,2190269760,192,100531323,1610680736,1610682786,1086914560,1098446848,2157239329,1098383360,1611722752,1275068416,100531350,1543503872,2193984768,255,2160429248,2160393567,2154616832,2415920136,2157523008,83886089,2155409472,100534260,1149042688,2155937792,1098446848,1098383360,1611722752,100530158,1149042688,84013057,130269,469889024,130254,1080893440,1081157632,1081421824,1619585024,2324694144,160,83886087,2324694144,162,84017224,1612515584,2222255436,84013058,1610680736,2154353088,84017155,1610682368,84013058,1610682384,2190007616,192,100531270,1086914560,2157247521,1098383360,1611722752,2324694144,162,84017157,2961759552,1275068416,100531260,1543503872,1081923584,1350623232,2154881280,2188436736,255,1275068416,100531271,1543503872,2324694144,162,84017158,2190007616,192,1275068416,100531244,1543503872,2189223168,255,1610930594,1275068416,100531257,1543503872,1081401344,1610668450,1275068416,100531252,1543503872,1275068416,100531266,1543503872,2428865804,2562983052,83886096,2562983044,100534265,2155673600,2415920136,2157523008,83886087,2155409472,100534225,2155937792,1098383360,1611722752,100530125,130269,2415920449,84013059,130269,2415920384,469889024,2154353088,84017155,1627445249,84013058,1627445265,100531202,1614862754,100531236,2428865795,2562983041,100534268,1610668448,100531231,1086656512,1610930592,100531228,1086658560,1611454880,100531225,1086644224,1612241312,100531222,1086648320,1612765600,100531219,1086650368,1613814176,100531216,1086652416,1626397088,100531213,1086654464,1615387040,100531210,1086660608,1611192736,100531207,1086642176,469889024,1282146304,2154353088,84017155,1627445248,84013058,1627445264,100531162,1610668032,100531196,2193941760,4294967294,1543503872,2154882368,100531174,469889024,1275330560,1275592704,1281884160,1283457024,1284243456,1276379136,1611456512,2315519104,160,83886082,1628233728,1627445249,2154353088,83886082,1627445265,100531138,1610668450,100531155,100531171,2361656578,100534270,1543514112,1543575552,1543569408,1543557120,1543507968,1543505920,469889024,1803026432,1054030,1610770432,654574,84015110,1611032576,654574,84015107,653479,469889024,1281884160,1093980160,1612468224,1098405888,1098407936,1098409984,392128,1093980160,1614565376,1098405888,1098407936,392125,1543557120,469889024,1496842752,2214593860,1208119808,469889024,654540,2416706945,84017158,1477454385,1477455922,1477457971,2436383762,84013061,1477454897,1477455924,1477457973,2973254678,2148805056,83886085,2417230985,83890194,1612720128,84013072,1612457984,1477443587,2617246144,1073756160,1477443588,2214592960,1073750016,2149318896,2148540624,2147484996,2415932740,2416715137,83886082,2415932739,2149333264,1209286656,1209548801,1209810946,469889024,654540,654533,1496843264,2181039360,4294967040,2415920449,1208120320,1496843418,2181039360,4294902271,2181039424,1536,2181039360,4294966784,2415920450,1208120474,1477444150,1496849050,2147491203,83886088,1208119962,1477706752,2415920452,1207970816,1477706753,2415920452,1207970817,1496842752,2214593796,1208119808,1678406159,1477444150,1208119825,1496842752,2181039360,4294963711,2181039424,2560,1208119808,1678144528,1678144527,469889024,1496843264,2181045504,65280,2148276496,2416713089,84019229,1496842752,1208010839,1496842752,2348811520,84017154,469889024,1496843264,2181039360,4294902015,2181039424,512,1208120320,1496842752,2214593804,1208119808,1496842254,2147484096,84017156,1496842752,2348811536,84019282,1496842752,2348811528,84019284,1496842752,2348811520,100403168,469889024,1281884160,1282146304,1496843264,2181039360,4294902015,2181039424,256,1208120320,1496842752,2214593806,2214593800,1208119808,84015153,1093980160,1612468224,2172147712,1107320832,3254779918,1610639363,392128,1093980160,1614565376,654540,1477468208,1209059415,1211156567,2419088641,2184209664,4293918720,2150654248,2217764192,392125,1610668032,1093980160,392203,1543559168,1543557120,469889024,1228195927,1228720215,1228458071,1496843264,2181045504,65280,2148276496,2416713088,83886085,2181039360,4294902015,2415920448,1208120320,1496842752,2348811536,83886084,1496842254,2147484096,83888137,1496842752,2348811522,100534179,469889024,1496842752,2214593808,1208119808,390865,100532220,1496842243,2147483648,1208119299,1232760846,1497104384,2214593880,1208121344,469889024,100532211,1497104384,2214593880,1208121344,469889024,392257,654488,1496842752,2214593800,1208119808,84015113,1208272983,1496842752,2348811532,84017156,1496843281,2147484096,100403183,469889024,1281884160,1282146304,1282408448,1496842246,2147483648,1208119302,1086988288,1496842753,1073743872,1275330560,1276116992,84015783,1543512064,1543505920,1477182464,2181049600,65024,2148804882,2417241473,84017160,2181039360,511,2181049472,257,84021251,2415930498,84021259,1496842752,2214593868,1208119808,1496842244,2147483648,1208119300,1496842245,2147483648,1208119301,84013349,1073756160,2416182274,2147484679,1073743872,1086988288,1275330560,1276903424,1277165568,84015749,1543520256,1543518208,1543505920,1477182464,2181055744,511,2181049600,65024,2148804882,2417241474,100534243,2181039360,511,2181049472,257,100538334,2415930498,100407260,2416184322,1477192704,2182360320,511,2147746821,1073743872,1086988288,1275330560,1276903424,1277165568,84015720,1543520256,1543518208,1543505920,1477182464,2181039360,511,2415920130,2147492865,1477182464,2181049600,65024,2148804882,2417241475,100534211,2181039360,511,2415930498,100407231,2165048449,100407229,1477181952,1208120337,2147484096,83886311,1098401792,1477182464,2181039360,65024,2147483922,2415920512,83886173,2165047296,2148533376,84021338,1074792448,1074003968,1275330560,1276116992,1276903424,1277165568,1277427712,1277689856,1277952000,84015676,1543526400,1543524352,1543522304,1543520256,1543518208,1543512064,1543505920,1477182464,2181039360,511,2415920130,2147755008,2165048452,83890242,1477182464,2181039360,65024,2147483922,2952801727,83886094,2415930505,84021302,201453569,1052595,1052548,1052548,1052548,1052587,1052587,1052587,1052587,1052587,100530055,2149861824,84017185,1477181952,1477192705,2182360320,65280,2148804880,2147483856,2148805952,2182350208,6945,83886085,1496842248,2147483648,1208119304,100530109,1477182465,2181039360,255,2415930754,84017155,1611137024,84013058,1098383360,2147484096,100403123,1074022400,1477202944,2183681280,511,1477204993,2183945472,255,100530091,1496842247,2147483648,1208119303,100530087,1496842247,2147483648,1208119303,100530083,1496842248,2147483648,1208119304,100530079,1107306496,1053893,2167826880,83886083,1107306496,1053896,1477706754,2181039360,255,2415920451,1207970818,1496842752,2348811536,83886118,1496843285,2181039360,511,2147485063,84017165,2436508693,1615122432,1611454464,2149376064,33683456,138816,2160429504,83886085,1477706754,2181039360,4294967294,1207970818,1496843353,2181039360,511,2147485064,84017168,2973379609,1496842753,2415973378,2154353671,2422789123,1611454464,2149638208,33683456,138816,2160429504,83886085,1477706754,2181039360,4294967293,1207970818,1477706754,2415920387,83886130,1496842752,2348811536,83886104,1496855195,1276379136,1276641280,1276903424,1277165568,1277427712,1277689856,1277952000,100531929,1543526400,1543524352,1543522304,1543520256,1543518208,1543516160,1543514112,1496842752,2214593870,1208119808,1496842253,2149057664,83890178,1209692173,2436508693,1496896001,1098438656,2417812482,33683456,138733,2973379609,1496842753,2415973378,2154353671,1098438656,2418074626,33683456,138733,1496842752,2214593872,1208119808,1477706754,2415920452,1207970818,1497104384,2214593880,1208121344,1496855195,2201627648,155,1496842753,2415973378,2154353671,2422789122,2154353672,1098438656,1611718656,33683456,138733,1496842907,2147485062,83886084,1477706754,2415920452,1207970818,1496896529,33683456,138949,1220964366,1076103168,1076377600,1076641792,654506,2160429504,100533971,1208272983,1543561216,1543559168,1543557120,469889024,1496843264,2181039360,65280,2147483920,2415922311,137928,201453569,1052342,1052270,1052282,1052745,1052745,1052745,1052745,469889024,1080559616,1080823808,1081088000,1228195927,1208272983,1208535127,1208797271,1281884160,1282146304,1282408448,1107306496,1053881,1477706752,2181039360,4294902271,2147748050,2147484993,2181039360,4294966784,2147484994,1207970816,1074581504,2416448515,2148012292,1074321408,130107,1611145216,1275592704,1275854848,84015366,1543510016,1543507968,1074581504,1074321408,130107,1543561216,1543559168,1543557120,469889024,1496843264,2181041408,255,2416184705,100535759,1496842752,2348811522,83886083,2348811520,84017612,469889024,84015107,1074104320,469889024,84015277,83886083,1611925504,84013063,1497104384,2348811544,83886083,1611663360,84013058,1610614784,2416182656,84017156,1496842752,2348811524,83886096,1275330560,100532140,1543505920,1497104384,2348811544,83886087,2416182656,84017154,1611663360,1275330560,653885,1543505920,1275330560,84015391,1543505920,469889024,1080559616,654540,2147748288,83886089,1496842752,2214593806,2214593858,1208119808,393170,100532184,1612187648,84013064,1496842752,2214593794,1208119808,1232761361,100531720,100532162,1612449792,1610878976,390385,654540,1477443585,2348811528,83886096,84015461,2147748288,83886093,1208381953,1496842752,2214593864,1208119808,100532093,1496842752,2214593800,1208119808,653885,1098387456,1611663360,390385,469889024,1275330560,654540,1496848896,1543505920,1275854848,1275330560,1477443585,2348811528,83886115,1610881024,100531534,1611143168,100531532,654533,1477706752,2415920451,1207970816,1477706753,2415920451,1207970817,1496842752,2214593856,1208119808,1610876928,392214,100531556,100531631,1543505920,1275330560,393088,1107304448,1055960,2167826880,83886082,2416976900,1477443584,2348811520,83886100,1496842752,2214593858,1208119808,100532111,84013071,1543505920,1275330560,2416182659,84017159,1496842752,2348811520,83886084,2214593792,1208119808,84015295,100531473,653435,1610614784,392214,1543505920,1543510016,2416182657,84017163,1845493760,0,2167826880,83886084,1107296256,1055976,1342177280,1208010839,2415920400,83886086,1610878976,1496842752,2147484995,2348811520,394481,469889024,1226098775,1225574487,1281884160,1282146304,1282408448,2433486083,2147748288,83886093,1611661312,2147486849,1275330560,1091883008,1091360768,2165184512,1098440704,33683456,138663,2147747904,100534265,1543505920,1543561216,1543559168,1543557120,469889024,1281884160,2436371466,1611929600,1098385408,1342754816,2154353088,83886092,1275330560,1275592704,1275854848,130126,1543510016,1543507968,1543505920,2160429504,83886083,1165496320,2147747840,2148012032,2148276288,100534256,2147748288,1543557120,469889024,1080559616,84015107,1074366464,469889024,1208272983,1225574487,1281884160,1282146304,1282408448,1292894208,1293156352,1476658176,2181039360,511,2415977474,1282408448,1074143232,1086990336,1098436608,1091360768,33683456,138733,1543507968,1275592704,2165185538,1845493760,1054029,2147484096,83886086,1086990336,100532146,1543507968,2148013057,1275592704,1543507968,1543645184,1543643136,1543561216,1543559168,1543557120,469889024,1208797271,1209059415,1209321559,1281884160,1282146304,1282408448,1292894208,1293156352,1074847744,1075191808,1086990336,1098436608,1091360768,33683456,138733,2165185540,1477706752,2181039360,511,2415920130,2147542148,1282408448,1074667520,1086990336,1098436608,1091360768,33683456,138733,1543516160,1276641280,2165185542,1845493760,1054029,2147484096,83886088,1086990336,1276116992,100532098,1543512064,1543516160,2149069825,1276641280,1543516160,2149069828,1543645184,1543643136,1543561216,1543559168,1543557120,469889024,1208010839,1225836631,1281884160,1282146304,1282408448,1292894208,1293156352,2415922435,83886091,1107437568,1053879,1073795072,1098438656,1612767232,33683456,138733,1107302400,1053879,84013059,2147483908,2684361732,1543645184,1543643136,1543561216,1543559168,1543557120,469889024,1496843264,2181039360,255,2415922309,84021259,201453569,1053125,1053125,1053126,1053127,1053128,100529836,84013184,84013097,84013058,469889024,1281884160,1282146304,1282408448,1496843264,2181039360,4294967040,2415920452,1208120320,84015275,1496843273,2147483648,2181039360,65535,100403197,1208120329,1093980160,1086904320,1091362816,391627,1496844800,2181301504,3584,2147483922,2147483712,83890182,2147483858,2181303552,4294963711,2147749184,1208381952,1496842242,2147483648,1208119298,84015195,1543561216,1543559168,1543557120,469889024,1281884160,1282146304,1282408448,1228195927,1225574487,1496843264,2181041408,255,2416184707,83886108,2181039360,4294967040,2415920451,1208120320,84015231,1093980160,1086904320,1091362816,391627,1496844800,2181301504,3584,2147483922,2147483712,83890182,2147483858,2181303552,4294963711,2147749184,1208381952,1496842242,2147483648,1208119298,1496896015,33683456,138949,1220964362,1496842250,2147484096,100404826,1543561216,1543559168,1543557120,469889024,654540,1496842752,1208010839,1098387456,1086851072,1342439424,2181039488,25215488,84017183,2147747840,1342439424,2147483936,2415920526,84017178,1098387456,1477443632,2348811520,83886084,2181043456,4293918720,2148012328,1490288642,2181039360,4293918720,2147483944,2147485058,84017165,1489507331,1614284800,2181563776,33024,84017155,1489507332,1615333376,2181567872,35020,84017155,2165048449,84021251,1228195927,1098385408,469889024,1281884160,654540,1496843264,2181041408,255,2416184706,83886112,2181039360,4294967040,2415920450,1208120320,1496842752,2181039360,3584,2147483922,2147484096,83886084,1678144528,1678144527,84013062,1496842769,2415920131,2147483908,1208120336,1678406671,1477444150,1208119825,1496842752,2214593796,1208119808,1496896527,33683456,138949,1220964363,1496896528,33683456,138949,1220964364,1496842752,2348811520,84017155,100532097,84013067,1496842251,2147484096,84017160,1496842252,2147484096,83886084,1496842752,2348811524,83886082,100532048,1543557120,469889024,1228195927,1281884160,1282146304,1282408448,1292894208,1293156352,654540,1241616896,49664,1241617408,384,1681495041,1477443588,1208062465,1477443587,1208062466,2415919552,1208062978,1477443632,2348811520,83886097,2181039360,4293918720,2147483944,1477445680,2181303552,458752,2147748102,2147484993,1208062467,1241617411,33024,1241617412,35020,1232704004,1615468544,84013061,1241617411,35020,1232704003,1614419968,1803026432,1054029,1086990336,1610876928,1496846354,2436373523,1276116992,100531616,1611139072,1496846422,2973244439,100531612,1543512064,1098385408,1496843264,2181039360,255,2415920515,83886082,1477445686,1208382106,2201488384,154,100531851,1496843264,2181039360,255,2415920515,658087,1107435520,1054030,1086990336,1098436608,1091360768,1611194368,33683456,138733,2433620994,1543645184,1543643136,1543561216,1543559168,1543557120,469889024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2712735659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,16,54,0,0,1053559,0,136639,16,0,3,0,3,0,16,54,0,0,0,332,1,0,3,0,0,0,0,1,0,0,137043,6,4112,1055962,0,3,0,0,0,0,1,0,0,137043,268471312,0,0,0,0,137045,0,0,0,0,0,0,0,5,2048,4359,1055960,1055988,1055978,1053559,0,776048,1,536871234,0,0,0,0,33622533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65538,65536,120,7,3720347652,12145684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,3720347651,12145684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100794488,0,33685507,0,30,0,0,0,0,0,0,1966080,0,0,786378,0,0,131074,1966080,120,7,3720347652,12276756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,3720347651,12276756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100794488,0,0,0,67567616,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2050,0,0,0,34209792,0,0,0,0,0,65536,842137600,0,33554432,134283264,2298871835,554207508,1777928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134591,1,7,68222976,3221225472,0,0,134217728,1053909,1053917,1053925,1,7,101056512,3221225472,0,0,33554688,1053913,1053921,1053929,1,7,135266304,3221225472,0,0,100663808,1053914,1053922,1053930,2050,0,0,0,34209792,1,0,0,0,0,65536,842137600,0,33554432,134283264,2298871835,554207508,1777928,65536,842137600,0,33554432,134283264,2298871835,554207508,1777928,0,0,0,0,0,0,0,0,134591,1,7,68222976,3221225472,0,0,134217729,1053974,1053982,1053990,1,7,101056512,3221225472,0,0,33554689,1053978,1053986,1053994,1,7,135266304,3221225472,0,0,100663809,1053979,1053987,1053995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16384,65584,9600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,786444,0,33040,256,16187393,1507329,14680065,0,33040,134219014,1048578,1048578,14680066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65584,65584,10,10,24776823,24776823,24711287,24711287,0,0,0,25215488,917696,3709097147,2295071239,67158237,341097220,117637312,3709097147,100794488,4265410587,553779722,0,65536,1041,49152,65536,842137600,0,33949184,12582920,17305600,12583049,100670241,143201280,455149568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2157787200,1219835904,1084057600,2157787200,1208039424,2157787200,1214855168,2157787200,1215117312,2157787200,1215379456,2157787200,1215641600,2157787200,1215903744,1610670080,2422789248,67108897,2423053440,67108895,1610672128,1610612736,2355680574,67108868,2154352768,2154352640,2222255486,2355944766,67108868,2154616960,2154616832,2214593918,2155146624,1080819712,2154361984,67112963,1080557568,1080872960,2422789248,67108871,2355680512,67108866,2154882048,2154352898,2147483842,67237881,2356473150,67108867,2154881152,2154881024,1081182208,1486680064,2157787136,1486678016,2157787136,1486675968,2157787136,1486673920,2157787136,1486671872,2157787136,1486618624,2157787136,1486710784,2157787136,469889024,1088475136,33683456,131962,1482215425,2187914496,255,1080612864,2187908352,983040,2154357024,2155140124,3093824641,67362819,2557478021,67231748,1241559040,16390,67235874,2557215872,67227669,1611198464,2154881088,2322596992,4294967295,67108877,2160382156,2154363953,2155664413,2691224578,2155404310,2155409408,1416417280,2155145216,2154881088,2322596992,4294967295,67241975,1241559040,16384,67235852,1098438656,2160382156,2154353713,2691228674,2154877979,1232654336,2154616832,3094086784,67233788,1241559040,16384,1610991616,1088475136,33683456,132286,1086705664,1098436608,33683456,1050323,469889024,1088475136,33683456,131962,1482215425,2187914496,255,2187908352,983040,2154357024,2557478016,67239942,1241559040,16384,1694806017,1611253760,67235870,2155140124,3093824641,67362840,2557478028,67362838,2154940416,1610936320,2154881088,2322596992,4294967295,67108877,2160382156,2154363953,2155404310,2155664413,2691224578,2155145216,1416157184,2155409408,2154881088,2322596992,4294967295,67241975,1241559040,16384,67235844,1241559040,16390,1610991616,1088475136,33683456,132286,1086705664,1098436608,33683456,1050323,469889024,2157787200,1216428032,1088475136,33683456,131962,1086652416,1610991616,1482215425,2154299456,2550138003,67362840,1241559040,16384,201453569,1055061,1055071,1055081,1055087,1055093,1055099,1055052,1055052,1055052,1055052,1055052,1055052,1055052,1055052,1055052,1055052,1055052,1055052,1055105,1055056,1241559040,16389,1611253760,67235894,1086640128,1098438656,33683456,1050093,67235889,1086640128,1482217474,33683456,1051064,1082183680,1482217475,1482219524,33683456,1051083,67235879,1086640128,1482217474,33683456,1051064,1082183680,1482217475,33683456,1051100,1220849665,67237862,1086640128,1482217474,1482219523,33683456,132581,67235863,1086640128,1482217474,33683456,132558,1220849665,67237850,1086640128,1482217474,1482219523,33683456,132985,67235851,1086640128,1482217474,33683456,132940,1220849665,67237838,1086640128,1610930176,33683456,1050093,1088475136,33683456,132286,1086705664,1098436608,33683456,1050323,1486684160,2157787136,469889024,2157787200,1216428032,1088475136,33683456,131962,1086652416,1482215424,2322072704,304,67239982,1482223618,1482217475,1482215428,1613817856,2422789123,2154352900,2288518301,67244047,1080616960,2556953728,67239948,2155925704,2154353696,2154352836,2691224577,1483264001,2355680520,67239953,1241559040,16384,1610991616,67235864,2157787200,2160386248,2154882097,2154881220,2691752961,1215641600,1081659392,2423317560,33683456,131907,2157787136,67237866,1082183680,33683456,136429,1611190272,33683456,135039,1611190272,1610930176,33683456,134383,67237862,1088475136,33683456,132286,1086705664,1098436608,33683456,1050323,1486684160,2157787136,469889024,2426223749,1216428032,1216690177,1216952322,1217214467,1217476612,1482231810,1482235907,1482229764,1613830144,1088475136,33683456,131962,1086652416,2559050880,67239939,2559575168,67108904,2430653570,1610930176,2288518299,67362838,2424624131,2154352900,2556953740,67244036,1080629248,2556953728,67108893,2557215872,67108879,2155925704,2154353696,2154352836,2691224577,2155927756,2154617888,2422789176,2691488770,1082974208,33683456,132118,67235855,1098438656,67237866,2157787200,2155929800,2154882080,2154881220,2691752961,1217214464,1082707968,1083234304,2423317560,33683456,131928,2157787136,1241559040,16384,1082183680,33683456,136429,1098436608,33683456,134318,1220849665,1232646146,1232646147,2156712132,1214820356,1612040192,1088475136,33683456,132286,1086705664,1098436608,33683456,1050323,1486692356,1486690307,1486688258,1486686209,1486684160,2426223621,469889024,2157787200,1218525184,2426223747,1084047360,2426223751,1216428032,1216690177,1216952322,1217214467,1217476612,1217738757,1218000902,1482231809,1482215426,1214857216,1482217475,1215119361,1482237956,1088475136,33683456,131962,1086654464,1086744576,2562983040,67239969,1107361792,1053567,1107374080,1053899,1107349504,1053893,1214857218,1482215425,2422807811,2156187848,2154353697,2154352836,2691224577,1483264001,2154352904,2422791425,2355680512,67108867,2559313026,67231765,2188170240,16389,1214820352,1610991616,1088475136,33683456,132286,1086705664,1098436608,33683456,1050323,67236067,1107361792,1053723,1107374080,1053964,1107351552,1053896,1215119362,67237856,1610930176,1785462784,1054029,1098520576,2559313026,67108952,2357794080,67108872,2559313026,67109051,1080872960,1484838930,2424366099,33683456,1052746,2357794082,67108872,2559313026,67109038,1611190272,1484838998,2961237015,33683456,1052746,2357794084,67108873,2189480960,155,2559313026,67108867,2189480960,154,33683456,1052996,2357794088,67108871,2425934855,2559313026,67108866,2425934852,33683456,1052996,2357794090,67240000,2357794092,67239990,2357794094,67240071,2433537027,2154373380,2559575168,67240007,1083254784,1241559040,16384,1082445824,33683456,136429,1486409728,2154352912,2422789384,2221475154,33683456,134266,2155939185,1486409785,2154352946,2556953732,67108962,2190005504,16187395,2154354016,1214820353,2559313025,67108951,2559313025,67113001,2559313026,67108986,1098448896,1216393218,2156974276,1214820355,1217703940,1612040192,1088475136,33683456,132286,1086705664,1098436608,33683456,1050323,67235966,1484836864,2355680528,67241895,2190021888,4278779903,67237838,2425934893,1082972160,33683456,135752,2562983040,67241926,2223576364,67237828,2425934883,1082972160,33683456,135752,2562983040,67241916,2223576362,2357794092,67110843,67237871,1486936066,1483526144,2187920640,255,67237847,1107349504,1054455,1083234304,33683456,132155,2430653570,1610930176,2288518299,67362876,1486934016,2556953728,67239942,1486934017,2556953728,67239939,2557215872,67108942,2425672707,2154365188,2290091172,67231746,1083244544,2558526592,67108878,2557215872,67108922,3095397505,67231746,1627717632,2156189900,2154617889,1107349504,1054455,2691488770,1082187776,33683456,132118,2155948228,67237781,1486936066,1483526145,2187920640,255,67237803,2189481216,192,2322072704,192,67241883,1486411800,2154617120,2188172544,255,1486409753,2187908352,255,2288780442,67110802,2223048004,67237776,2425934903,1082972160,33683456,135752,2562983040,67241845,2223576366,67237747,1098438656,67237828,2961232921,33683456,1052996,67237717,2424362005,33683456,1052996,67237704,1486936066,1483526146,2187920640,255,67237764,2157787200,1216428032,1486934016,1486936065,1107353600,1054455,33683456,131928,2157787136,2155948228,67237726,1486956545,67237724,1486696454,1486694405,1486692356,1486690307,1486688258,1486686209,1486684160,2426223626,1486700544,2157787136,469889024,2426223749,1216428032,1216690177,1216952322,1217214467,1217476612,1088489472,1088421888,2564818051,67362822,201453569,1055685,1055689,1055693,1055697,1611190272,1624299539,1098440704,33683456,131786,1082445824,33683456,131962,1086658560,1082445824,1624823808,33683456,1054839,2697253898,1483264017,2355680544,67239946,1082445824,33683456,1050186,2562983040,67108883,1485885440,2322072704,32767,67362831,1107351552,1054442,2156715035,1483526144,2221462850,1214830592,1082392576,2558788739,67362859,201453569,1055664,1055664,1055662,1055662,1098440704,67235845,2153307164,2155926556,1416157184,2154881024,2289042594,67115003,1482227712,1082445824,33683456,132356,2562983040,67239977,2323645568,258,67109043,2323645568,258,67362880,2558526612,67109088,2558526612,67362914,2558526602,67109024,2558526602,67363008,2558526598,67109134,2558526598,67363035,2558526592,67240071,33683456,1048791,67237844,1611190272,1629018133,1098440704,33683456,131786,1098440704,67236131,1681989658,67237885,1107349504,1073741824,2558788736,67108867,1107349504,1207959552,1080811520,67237877,2323645568,288,67108925,2323645568,288,67362864,3095397537,67108920,2189481088,256,3095397537,67244082,67237836,1614876672,1610678307,1614880803,67237783,1614876672,1610678309,1614880805,67237779,1612517376,1610678306,1612521506,67237775,1612517376,1627455524,1629298724,67237771,2323645568,304,67109027,2323645568,304,67362878,2323645568,292,67108965,2323645568,292,67362952,2323645568,290,67109071,2323645568,290,67362990,2323645568,288,67240001,33683456,1049550,67237774,2323645568,290,67114913,2323645568,291,67231749,2189481088,304,2556953730,67364762,1241559040,16389,1610991616,67235862,3095397536,67108930,3095397536,67362902,2558526634,67109031,2558526634,67113000,2424362160,2556953729,67362853,1107349504,1055978,2156712986,1483264000,2556953730,67109037,1241559040,16389,1686679553,1611253760,1088475136,33683456,132286,1086705664,1098436608,33683456,1050323,67235868,2323645568,353,67108894,2323645568,353,67362859,2323645568,306,67108997,2323645568,306,67113079,2323645568,336,67109015,2323645568,352,67109020,1845547008,1055996,2154352640,1785200640,1055996,1786773504,1055995,33683456,1050102,2323645568,8200,67241797,1082187776,67235993,33683456,1050032,67237696,33683456,1048908,67237693,1082445824,33683456,1049021,67237689,33683456,1049732,67237686,33683456,1049510,67237683,2323645568,512,67108966,2323645568,512,67362868,2323645568,368,67241946,33683456,1050050,67237671,3095397545,67108960,3095397545,67362868,3095397537,67241937,33683456,1049116,67237662,2558526604,67108932,2558526604,67113015,2558526605,67108957,2558526607,67241926,33683456,1048889,67237651,2323645568,294,67108917,2323645568,294,67113007,2323645568,295,67108946,2323645568,296,67241911,33683456,1049883,67237636,33683456,1048927,67237633,67239189,67237631,2558526600,67241901,33683456,1048799,67237626,2323645568,513,67108933,2323645568,8200,67241892,33683456,131164,1082187776,67235910,2323645568,256,67108925,2323645568,257,67241882,33683456,1049292,67237607,33683456,1049715,67237789,33683456,1048832,67237786,67239222,67237784,33683456,1049786,67237781,33683456,1049800,67237593,33683456,1048857,67237590,67239296,67237588,1611190272,1615124500,1082187776,33683456,131786,67237582,33683456,1048793,67237579,67238921,67237577,33683456,1049635,67237574,33683456,1049236,67237571,2558526641,67108884,33683456,131623,67237751,67239021,67237564,33683456,1048878,67237561,33683456,1049856,67237558,33683456,1049911,67237555,67238957,67237553,33683456,1049298,67237550,33683456,131700,67237547,1081182208,1486692356,1486690307,1486688258,1486686209,1486684160,2426223621,469889024,268435536,97,55,0,268435537,0,55,1,0,2097151,538968063,126,2147483774,44,2147483692,16,16,0,2,2,1048,1048,0,1378,33792,75784,7,2147483692,0,0,1,1,11,13,33,0,0,2941284098,3224619226,3743443931,32510317,1053974,32510318,6,32510319,1054001,31593037,1054009,31593038,0,32510317,1053978,32510318,6,32510319,1054011,31593037,1054019,31593038,0,32510317,1053979,32510318,6,32510319,1054021,263197309,1,263196749,1,263196750,1,263196751,7,263196752,1053742,263197037,1053742,263197038,2,263197039,1053881,263196749,1,263196750,2,263196751,7,263196752,1053810,263197037,1053810,263197038,2,263197039,1053881,263197000,1053877,263197001,32,262279543,1,262279544,0,262279543,1,262279544,1,262279543,1,262279544,2,263197000,1053968,263197001,42,262279757,1053999,262279758,0,263197037,1053974,263197038,6,263197039,1054001,262279757,1054009,262279758,0,263197037,1053978,263197038,6,263197039,1054011,262279757,1054019,262279758,0,263197037,1053979,263197038,6,263197039,1054021,493884029,1,493883469,1,493883470,1,493883471,7,493883472,1053742,493883757,1053742,493883758,2,493883759,1053881,493883469,1,493883470,2,493883471,7,493883472,1053810,493883757,1053810,493883758,2,493883759,1053881,493883720,1053877,493883721,32,492966263,1,492966264,0,492966263,1,492966264,1,492966263,1,492966264,2,493883720,1053968,493883721,42,492966477,1053999,492966478,0,493883757,1053974,493883758,6,493883759,1054001,492966477,1054009,492966478,0,493883757,1053978,493883758,6,493883759,1054011,492966477,1054019,492966478,0,493883757,1053979,493883758,6,493883759,1054021,187699837,1,187699277,1,187699278,1,187699279,7,187699280,1053742,187699565,1053742,187699566,2,187699567,1053881,187699277,1,187699278,2,187699279,7,187699280,1053810,187699565,1053810,187699566,2,187699567,1053881,187699528,1053877,187699529,32,186782071,1,186782072,0,186782071,1,186782072,1,186782071,1,186782072,2,187699528,1053968,187699529,42,186782285,1053999,186782286,0,187699565,1053974,187699566,6,187699567,1054001,186782285,1054009,186782286,0,187699565,1053978,187699566,6,187699567,1054011,188879437,1054019,188879438,0,189796717,1053979,189796718,6,189796719,1054021,420483709,1,420483149,1,420483150,1,420483151,7,420483152,1053742,420483437,1053742,420483438,2,420483439,1053881,420483149,1,420483150,2,420483151,7,420483152,1053810,420483437,1053810,420483438,2,420483439,1053881,420483400,1053877,420483401,32,419565943,1,419565944,0,419565943,1,419565944,1,419565943,1,419565944,2,420483400,1053968,420483401,42,419566157,1053999,419566158,0,420483437,1053974,420483438,6,420483439,1054001,419566157,1054009,419566158,0,420483437,1053978,420483438,6,420483439,1054011,419566157,1054019,419566158,0,420483437,1053979,420483438,6,420483439,1054021,287444290,7,287444290,6,287444290,5,287444290,4,287444290,3,287444290,2,287444290,1,287444290,0,114299517,1,114298957,1,114298958,1,114298959,7,114298960,1053742,114299245,1053742,114299246,2,114299247,1053881,114298957,1,114298958,2,114298959,7,114298960,1053810,114299245,1053810,114299246,2,114299247,1053881,114299208,1053877,114299209,32,113381751,1,113381752,0,113381751,1,113381752,1,113381751,1,113381752,2,114299208,1053968,114299209,42,113381965,1053999,113381966,0,114299245,1053974,114299246,6,114299247,1054001,113381965,1054009,113381966,0,114299245,1053978,114299246,6,114299247,1054011,113381965,1054019,113381966,0,114299245,1053979,114299246,6,114299247,1054021,344986237,1,344985677,1,344985678,1,344985679,7,344985680,1053742,344985965,1053742,344985966,2,344985967,1053881,344985677,1,344985678,2,344985679,7,344985680,1053810,344985965,1053810,344985966,2,344985967,1053881,344985928,1053877,344985929,32,344068471,1,344068472,0,344068471,1,344068472,1,344068471,1,344068472,2,344985928,1053968,344985929,42,344068685,1053999,344068686,0,344985965,1053974,344985966,6,344985967,1054001,344068685,1054009,344068686,0,344985965,1053978,344985966,6,344985967,1054011,344068685,1054019,344068686,0,344985965,1053979,344985966,6,344985967,1054021,412094793,42,411177549,1053999,411177550,0,412094829,1053974,412094830,6,412094831,1054001,411177549,1054009,411177550,0,412094829,1053978,412094830,6,412094831,1054011,411177549,1054019,411177550,0,412094829,1053979,412094830,6,412094831,1054021,105910909,1,105910349,1,105910350,1,105910351,7,105910352,1053742,105910637,1053742,105910638,2,105910639,1053881,105910349,1,105910350,2,105910351,7,105910352,1053810,105910637,1053810,105910638,2,105910639,1053881,105910600,1053877,105910601,32,104993143,1,104993144,0,104993143,1,104993144,1,104993143,1,104993144,2,105910600,1053968,105910601,42,104993357,1053999,104993358,0,105910637,1053974,105910638,6,105910639,1054001,104993357,1054009,104993358,0,105910637,1053978,105910638,6,105910639,1054011,104993357,1054019,104993358,0,105910637,1053979,105910638,6,105910639,1054021,336597629,1,336597069,1,336597070,1,336597071,7,336597072,1053742,336597357,1053742,336597358,2,336597359,1053881,336597069,1,336597070,2,336597071,7,336597072,1053810,336597357,1053810,336597358,2,336597359,1053881,336597320,1053877,336597321,32,335679863,1,335679864,0,335679863,1,335679864,1,335679863,1,335679864,2,336597320,1053968,336597321,42,335680077,1053999,335680078,0,336597357,1053974,336597358,6,336597359,1054001,335680077,1054009,335680078,0,336597357,1053978,336597358,6,336597359,1054011,335680077,1054019,335680078,0,336597357,1053979,336597358,6,336597359,1054021,32510589,1,32510029,1,32510030,1,32510031,7,32510032,1053742,32510317,1053742,32510318,2,32510319,1053881,32510029,1,32510030,2,32510031,7,32510032,1053810,32510317,1053810,32510318,2,32510319,1053881,32510280,1053877,32510281,32,31592823,1,31592824,0,31592823,1,31592824,1,31592823,1,31592824,2,32510280,1053968,32510281,42,31593037,1053999,31593038,0 ]
      },
      "XAUI AN Registe": {
          "segment": 22,
          "values": [ 3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559 ]
      },
      "XAUI HSS PCS Re": {
          "segment": 23,
          "values": [ 3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559 ]
      },
      "XFI AN Register": {
          "segment": 24,
          "values": [ 7391234,8,0,0,67088,1025,128,0,0,0,0,0,0,0 ]
      },
      "XFI TRAIN Regis": {
          "segment": 25,
          "values": [ 16,0,0,0,0,0,0,0,196708,0,1,80 ]
      },
      "XFI HSS PCS Reg": {
          "segment": 26,
          "values": [ 8,232465,1,0,0,50331648,0,46137378,0,2,0,262687,0,1728,0 ]
      },
      "XFI HSS TX Regi": {
          "segment": 27,
          "values": [ 8,0,0,1,24,512,4,0,0,63,10,0,74,34,0,0,0,63,10,0,0,18,0,0,0,31,10,0,89,0,2,0 ]
      },
      "XFI HSS RX Regi": {
          "segment": 28,
          "values": [ 8,0,52480,1808,16128,47,1,8736,194,42411,7,12418,8,484,9216,8738,18504,256,13006,3,0,0,1024,33153,17989,9506,8739,9249,2064,0,24607,32765 ]
      },
      "XFI HSS PLL Reg": {
          "segment": 29,
          "values": [ 11,20,0,0,0,0,255,255,0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ]
      },
      "MISC NIC INFO": {
          "segment": 30,
          "values": [ 4,2,2,0 ]
      },
      "INTR States": {
          "segment": 31,
          "values": [ 58112,58113,58113,58113,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810 ]
      },
      "CAM Entries": {
          "segment": 32,
          "values": [ 0,0,17,0,2147483648,0,0,2147483648,0,0,2147483648,0,0,2147483648,0,0,2147483648,0,0,2147483648,0,0,2147483648,0,0,2147483648,0,0,2147483648,0,0,2147483648,0,0,2147483648,0,0,2147483648,0,0,2147483648,0,0,2147483648,0,0,2147483648,0,1,13107,1577058305,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810 ]
      },
      "Routing Words": {
          "segment": 33,
          "values": [ 0,33554432,16777216,1,4,0,0,0,2147483648,0,0,0,128,0,0,0 ]
      },
      "ETS Registers": {
          "segment": 34,
          "values": [ 2097151,538968063,1075838975,1612709887,2149580799,2686451711,3223322623,3760193535,2097151,538968063 ]
      },
      "Probe Dump": {
          "segment": 35,
          "values": [ 65536,857870592,1144201745,33686018,134744072,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,66048,0,0,0,0,5,0,5,0,5,0,4232069184,16531520,0,0,0,0,128,0,128,0,128,0,128,0,0,0,257,1,257,1,257,1,0,0,0,0,0,0,0,0,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,2097152,8192,0,0,0,0,16843009,16843009,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,66560,0,0,0,0,5,0,5,0,5,0,4232069184,16531520,0,0,0,0,128,0,128,0,128,0,128,0,0,0,16843266,65794,16843266,65794,16843266,65794,0,0,0,0,0,0,0,0,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,2097152,8192,0,0,0,0,16843009,16843009,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,16843266,65794,67584,0,2147483648,2147483648,8388608,0,2147483648,33554432,131072,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,1028,4,68096,0,2147483648,2147483648,8388608,0,2147483648,33554432,131072,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,16844037,65797,68608,0,0,0,2147483648,0,0,0,2147483648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1071509512,20962800,0,16777216,0,16777216,0,33554432,12289,2130706480,4128768,16793344,1577062402,2405302288,12845176,3825255424,0,0,0,0,0,0,0,0,0,0,872415232,3407872,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,69120,0,0,0,2147483648,0,0,0,2147483648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4026532112,15728641,15,0,1349746688,5272448,16,0,0,2130706432,4128768,16128,1073745920,2151677968,0,67108864,0,0,0,0,0,0,0,0,0,0,268435456,1048576,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,69632,131072,33554944,131072,33554944,2,16777216,2,16777216,622743798,723852880,2528282212,630633094,3017558774,615767114,2821749791,665333884,622743798,723852880,2528282212,630633094,3017558774,615767114,2821749791,665333884,622743798,723852880,2528282212,630633094,3017558774,615767114,2821749791,665333884,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,0,0,0,0,2991711503,28463589,1500194918,22637352,1262339247,21708228,2055407553,24806151,129097,16777720,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,4096,16,150112132,586375,26921217,105161,93762180,366258,3842965504,31788800,100704259,1963327648,2055407553,8028935,1258296495,4915220,1500194918,5860136,2991711503,11686373,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,70144,131072,33554944,131072,33554944,2,16777216,2,16777216,2574442285,664367839,353885164,538253275,1510316296,660211097,1176960276,658908925,2574442285,664367839,353885164,538253275,1510316296,660211097,1176960276,658908925,2574442285,664367839,353885164,538253275,1510316296,660211097,1176960276,658908925,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,0,0,0,0,2039950834,24745773,22117822,16863613,1973442960,24485977,1952608209,24404591,461889,16779020,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,4096,16,194443520,759545,117040641,457190,1382336,5399,770834432,19788288,3288375298,1757675680,1952608209,7627375,1962940816,7667737,22117822,86397,2039950834,7968557,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,70656,0,2147483648,0,2147483648,0,2147483648,0,2147483648,0,2147483648,0,2147483648,0,2147483648,0,2147483648,0,2147483648,0,2147483648,0,2147483648,0,2147483648,0,2147483648,0,2147483648,2570,10,2570,10,3735944941,316583422,0,134217728,0,0,0,0,0,268435456,0,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0,33554432,0,33554432,0,0,0,0,738197632,19660800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2952790016,78643200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67108864,33554432,131072,2129920,8320,33685504,131584,0,33554432,134217728,524288,1073741824,4194304,268435456,1048576,131072,512,131072,512,0,67108864,2570,10,2570,10,2570,10,71168,0,2147483648,0,2147483648,0,2147483648,0,2147483648,0,2147483648,0,2147483648,0,2147483648,33554432,2147614720,2260992,2147492480,0,2147483648,0,2147483648,0,2147483648,0,2147483648,0,2147483648,16845579,65803,16845579,65803,3735944941,316583422,0,134217728,0,0,168430090,168430090,0,268435456,0,268435456,0,0,168430090,168430090,0,0,0,0,0,0,0,0,0,33554432,0,33554432,168430090,168430090,168430090,168430090,738197632,19660800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2952790016,78643200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67108864,33554432,131072,2129920,8320,33685504,131584,0,33554432,134217728,524288,1073741824,4194304,268435456,1048576,131072,512,131072,512,0,67108864,16845579,65803,16845579,65803,16845579,65803,71680,0,0,0,0,0,0,0,0,67108896,262144,1048576,4096,8384512,32752,65536,256,8192,32,0,0,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,72192,0,0,0,0,0,0,0,0,67108896,262144,1048576,4096,8384512,32752,65536,256,8192,32,0,0,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,72704,0,0,72705,412,284,1,72707,412,72708,134218140,0,0,72710,134218140,0,0,0,2415919104,0,16777216,201326592,786432,101056513,805701580,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,73728,24852,97,32287,126,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,74240,24852,97,32287,126,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,74752,0,0,0,0,872415232,3407872,0,0,0,0,1572895,6144,0,0,0,0,0,0,4626,18,0,2483027968,0,2147483648,0,2147483648,0,2415919104,0,2147483648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4626,18,4626,18,4626,18,4626,18,4626,18,4626,18,4626,18,4626,18,1015963332,3745287774,1944351290,7595122,0,0,0,0,0,0,4254163532,352162146,371508240,3642107076,0,2147483648,4131752192,1408648585,0,1090519040,4626,18,4626,18,4626,18,4626,18,4626,18,4626,18,4626,18,4626,18,4626,18,4626,18,4626,18,4626,18,4626,18,4626,18,4626,18,4626,18,4626,18,4626,18,4626,18,4626,18,4626,18,4626,18,75264,0,0,0,0,805306368,3145728,0,0,0,0,1572879,6144,0,0,0,0,0,0,16847635,65811,0,2483027968,0,2147483648,0,2147483648,0,2415919104,0,2147483648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16847635,65811,16847635,65811,16847635,65811,16847635,65811,16847635,65811,16847635,65811,16847635,65811,16847635,65811,2344844046,646693755,1454494191,5681617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16847635,65811,16847635,65811,16847635,65811,16847635,65811,16847635,65811,16847635,65811,16847635,65811,16847635,65811,16847635,65811,16847635,65811,16847635,65811,16847635,65811,16847635,65811,16847635,65811,16847635,65811,16847635,65811,16847635,65811,16847635,65811,16847635,65811,16847635,65811,16847635,65811,16847635,65811,65538,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,68610,0,0,0,2147483648,0,0,0,2147483648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16777216,0,33554432,0,16777216,0,33554432,1577062402,2405302288,12845176,3825255424,1577062402,2405302288,12845176,3825255424,0,0,0,0,0,0,0,0,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,1542,6,69122,0,0,0,2147483648,0,0,0,2147483648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1349746688,5272448,16,0,1349746688,5272448,16,0,1073745920,2151677968,0,67108864,1073745920,2151677968,0,67108864,0,0,0,0,0,0,0,0,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,16844551,65799,72706,284,1,72707,412,284,1,72707,412,72710,134218140,0,0,72710,134218140,0,0,201326592,786432,1510490624,811206930,201326592,786432,1526824960,811270738,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,65542,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,67078,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,69638,3017558774,615767114,2821749791,665333884,3017558774,615767114,2821749791,665333884,3017558774,615767114,2821749791,665333884,3017558774,615767114,2821749791,665333884,3017558774,615767114,2821749791,665333884,3017558774,615767114,2821749791,665333884,3017558774,615767114,2821749791,665333884,3017558774,615767114,2821749791,665333884,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,129097,16777720,2056,8,129097,16777720,2056,8,129097,16777720,2056,8,129097,16777720,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2055407553,8028935,1258296495,4915220,2055407553,8028935,1258296495,4915220,2055407553,8028935,1258296495,4915220,2055407553,8028935,1258296495,4915220,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,2056,8,70150,1510316296,660211097,1176960276,658908925,1510316296,660211097,1176960276,658908925,1510316296,660211097,1176960276,658908925,1510316296,660211097,1176960276,658908925,1510316296,660211097,1176960276,658908925,1510316296,660211097,1176960276,658908925,1510316296,660211097,1176960276,658908925,1510316296,660211097,1176960276,658908925,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,461889,16779020,16845065,65801,461889,16779020,16845065,65801,461889,16779020,16845065,65801,461889,16779020,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,1952608209,7627375,1962940816,7667737,1952608209,7627375,1962940816,7667737,1952608209,7627375,1962940816,7667737,1952608209,7627375,1962940816,7667737,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,16845065,65801,71686,8384512,32752,65536,256,8384512,32752,65536,256,8384512,32752,65536,256,8384512,32752,65536,256,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,72198,8384512,32752,65536,256,8384512,32752,65536,256,8384512,32752,65536,256,8384512,32752,65536,256,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,72710,72710,134218140,0,0,72710,134218140,0,0,72710,134218140,0,0,72710,134218140,0,0,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,235802126,73734,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,4112,16,74246,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,16847121,65809,65541,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,3735936685,4259229150,71685,1048576,4096,1048576,4096,65536,256,65536,256,1048576,4096,1048576,4096,65536,256,65536,256,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,3084,12,72197,1048576,4096,1048576,4096,65536,256,65536,256,1048576,4096,1048576,4096,65536,256,65536,256,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805,16846093,65805 ]
      },
      "Routing Regs": {
          "segment": 36,
          "values": [ 0,0,3423600640,64,0,1,3288334592,0,0,2,3288334848,0,0,3,3288335104,0,0,4,3288335360,0,0,5,3288335616,0,0,6,3288335872,0,0,7,3288336128,0,1,0,3423666176,0,1,1,3288400128,0,1,2,3288400384,0,1,3,3288400640,0,1,4,3288400896,0,1,5,3288401152,0,1,6,3288401408,0,1,7,3288401664,0,2,0,3291611136,0,2,1,3425829120,33554432,2,2,3425829376,16777216,2,3,3425829632,1,2,4,3425829888,4,2,5,3291612416,0,2,6,3291612672,0,2,7,3291612928,0,2,8,3422685184,2147483648,2,9,3291613440,0,2,10,3291613696,0,2,11,3291613952,0,2,12,3423734784,128,2,13,3291614464,0,2,14,3291614720,0,2,15,3291614976,0,3,0,3291676672,0,3,1,3425894656,0,3,2,3425894912,0,3,3,3425895168,0,3,4,3425895424,0,3,5,3291677952,0,3,6,3291678208,0,3,7,3291678464,0,3,8,3422750720,0,3,9,3291678976,0,3,10,3291679232,0,3,11,3291679488,0,3,12,3423800320,0,3,13,3291680000,0,3,14,3291680256,0,3,15,3291680512,0 ]
      },
      "MAC Prot Regs": {
          "segment": 37,
          "values": [ 3321888768,0,3321888769,0,3321888770,17,3321888784,0,3321888785,2147483648,3321888786,0,3321888800,0,3321888801,2147483648,3321888802,0,3321888816,0,3321888817,2147483648,3321888818,0,3321888832,0,3321888833,2147483648,3321888834,0,3321888848,0,3321888849,2147483648,3321888850,0,3321888864,0,3321888865,2147483648,3321888866,0,3321888880,0,3321888881,2147483648,3321888882,0,3321888896,0,3321888897,2147483648,3321888898,0,3321888912,0,3321888913,2147483648,3321888914,0,3321888928,0,3321888929,2147483648,3321888930,0,3321888944,0,3321888945,2147483648,3321888946,0,3321888960,0,3321888961,2147483648,3321888962,0,3321888976,0,3321888977,2147483648,3321888978,0,3321888992,0,3321888993,2147483648,3321888994,0,3321889008,0,3321889009,2147483648,3321889010,0,3321889024,0,3321889025,2147483648,3321889026,0,3321889040,0,3321889041,2147483648,3321889042,0,3321889056,0,3321889057,2147483648,3321889058,0,3321889072,0,3321889073,2147483648,3321889074,0,3321889088,0,3321889089,2147483648,3321889090,0,3321889104,0,3321889105,2147483648,3321889106,0,3321889120,0,3321889121,2147483648,3321889122,0,3321889136,0,3321889137,2147483648,3321889138,0,3321889152,0,3321889153,2147483648,3321889154,0,3321889168,0,3321889169,2147483648,3321889170,0,3321889184,0,3321889185,2147483648,3321889186,0,3321889200,0,3321889201,2147483648,3321889202,0,3321889216,0,3321889217,2147483648,3321889218,0,3321889232,0,3321889233,2147483648,3321889234,0,3321889248,0,3321889249,2147483648,3321889250,0,3321889264,0,3321889265,2147483648,3321889266,0,3321889280,0,3321889281,2147483648,3321889282,0,3321889296,0,3321889297,2147483648,3321889298,0,3321889312,0,3321889313,2147483648,3321889314,0,3321889328,0,3321889329,2147483648,3321889330,0,3321889344,0,3321889345,2147483648,3321889346,0,3321889360,0,3321889361,2147483648,3321889362,0,3321889376,0,3321889377,2147483648,3321889378,0,3321889392,0,3321889393,2147483648,3321889394,0,3321889408,0,3321889409,2147483648,3321889410,0,3321889424,0,3321889425,2147483648,3321889426,0,3321889440,0,3321889441,2147483648,3321889442,0,3321889456,0,3321889457,2147483648,3321889458,0,3321889472,0,3321889473,2147483648,3321889474,0,3321889488,0,3321889489,2147483648,3321889490,0,3321889504,0,3321889505,2147483648,3321889506,0,3321889520,0,3321889521,2147483648,3321889522,0,3321889536,0,3321889537,2147483648,3321889538,0,3321889552,0,3321889553,2147483648,3321889554,0,3321889568,0,3321889569,2147483648,3321889570,0,3321889584,0,3321889585,2147483648,3321889586,0,3321889600,0,3321889601,2147483648,3321889602,0,3321889616,0,3321889617,2147483648,3321889618,0,3321889632,0,3321889633,2147483648,3321889634,0,3321889648,0,3321889649,2147483648,3321889650,0,3321889664,0,3321889665,2147483648,3321889666,0,3321889680,0,3321889681,2147483648,3321889682,0,3321889696,0,3321889697,2147483648,3321889698,0,3321889712,0,3321889713,2147483648,3321889714,0,3321889728,0,3321889729,2147483648,3321889730,0,3321889744,0,3321889745,2147483648,3321889746,0,3321889760,0,3321889761,2147483648,3321889762,0,3321889776,0,3321889777,2147483648,3321889778,0,3321889792,0,3321889793,2147483648,3321889794,0,3321889808,0,3321889809,2147483648,3321889810,0,3321889824,0,3321889825,2147483648,3321889826,0,3321889840,0,3321889841,2147483648,3321889842,0,3321889856,0,3321889857,2147483648,3321889858,0,3321889872,0,3321889873,2147483648,3321889874,0,3321889888,0,3321889889,2147483648,3321889890,0,3321889904,0,3321889905,2147483648,3321889906,0,3321889920,0,3321889921,2147483648,3321889922,0,3321889936,0,3321889937,2147483648,3321889938,0,3321889952,0,3321889953,2147483648,3321889954,0,3321889968,0,3321889969,2147483648,3321889970,0,3321889984,0,3321889985,2147483648,3321889986,0,3321890000,0,3321890001,2147483648,3321890002,0,3321890016,0,3321890017,2147483648,3321890018,0,3321890032,0,3321890033,2147483648,3321890034,0,3321890048,0,3321890049,2147483648,3321890050,0,3321890064,0,3321890065,2147483648,3321890066,0,3321890080,0,3321890081,2147483648,3321890082,0,3321890096,0,3321890097,2147483648,3321890098,0,3321890112,0,3321890113,2147483648,3321890114,0,3321890128,0,3321890129,2147483648,3321890130,0,3321890144,0,3321890145,2147483648,3321890146,0,3321890160,0,3321890161,2147483648,3321890162,0,3321890176,0,3321890177,2147483648,3321890178,0,3321890192,0,3321890193,2147483648,3321890194,0,3321890208,0,3321890209,2147483648,3321890210,0,3321890224,0,3321890225,2147483648,3321890226,0,3321890240,0,3321890241,2147483648,3321890242,0,3321890256,0,3321890257,2147483648,3321890258,0,3321890272,0,3321890273,2147483648,3321890274,0,3321890288,0,3321890289,2147483648,3321890290,0,3321890304,0,3321890305,2147483648,3321890306,0,3321890320,0,3321890321,2147483648,3321890322,0,3321890336,0,3321890337,2147483648,3321890338,0,3321890352,0,3321890353,2147483648,3321890354,0,3321890368,0,3321890369,2147483648,3321890370,0,3321890384,0,3321890385,2147483648,3321890386,0,3321890400,0,3321890401,2147483648,3321890402,0,3321890416,0,3321890417,2147483648,3321890418,0,3321890432,0,3321890433,2147483648,3321890434,0,3321890448,0,3321890449,2147483648,3321890450,0,3321890464,0,3321890465,2147483648,3321890466,0,3321890480,0,3321890481,2147483648,3321890482,0,3321890496,0,3321890497,2147483648,3321890498,0,3321890512,0,3321890513,2147483648,3321890514,0,3321890528,0,3321890529,2147483648,3321890530,0,3321890544,0,3321890545,2147483648,3321890546,0,3321890560,0,3321890561,2147483648,3321890562,0,3321890576,0,3321890577,2147483648,3321890578,0,3321890592,0,3321890593,2147483648,3321890594,0,3321890608,0,3321890609,2147483648,3321890610,0,3321890624,0,3321890625,2147483648,3321890626,0,3321890640,0,3321890641,2147483648,3321890642,0,3321890656,0,3321890657,2147483648,3321890658,0,3321890672,0,3321890673,2147483648,3321890674,0,3321890688,0,3321890689,2147483648,3321890690,0,3321890704,0,3321890705,2147483648,3321890706,0,3321890720,0,3321890721,2147483648,3321890722,0,3321890736,0,3321890737,2147483648,3321890738,0,3321890752,0,3321890753,2147483648,3321890754,0,3321890768,0,3321890769,2147483648,3321890770,0,3321890784,0,3321890785,2147483648,3321890786,0,3321890800,0,3321890801,2147483648,3321890802,0,3321890816,0,3321890817,0,3321890818,21,3321890832,0,3321890833,2147483648,3321890834,0,3321890848,0,3321890849,2147483648,3321890850,0,3321890864,0,3321890865,2147483648,3321890866,0,3321890880,0,3321890881,2147483648,3321890882,0,3321890896,0,3321890897,2147483648,3321890898,0,3321890912,0,3321890913,2147483648,3321890914,0,3321890928,0,3321890929,2147483648,3321890930,0,3321890944,0,3321890945,2147483648,3321890946,0,3321890960,0,3321890961,2147483648,3321890962,0,3321890976,0,3321890977,2147483648,3321890978,0,3321890992,0,3321890993,2147483648,3321890994,0,3321891008,0,3321891009,2147483648,3321891010,0,3321891024,0,3321891025,2147483648,3321891026,0,3321891040,0,3321891041,2147483648,3321891042,0,3321891056,0,3321891057,2147483648,3321891058,0,3321891072,0,3321891073,2147483648,3321891074,0,3321891088,0,3321891089,2147483648,3321891090,0,3321891104,0,3321891105,2147483648,3321891106,0,3321891120,0,3321891121,2147483648,3321891122,0,3321891136,0,3321891137,2147483648,3321891138,0,3321891152,0,3321891153,2147483648,3321891154,0,3321891168,0,3321891169,2147483648,3321891170,0,3321891184,0,3321891185,2147483648,3321891186,0,3321891200,0,3321891201,2147483648,3321891202,0,3321891216,0,3321891217,2147483648,3321891218,0,3321891232,0,3321891233,2147483648,3321891234,0,3321891248,0,3321891249,2147483648,3321891250,0,3321891264,0,3321891265,2147483648,3321891266,0,3321891280,0,3321891281,2147483648,3321891282,0,3321891296,0,3321891297,2147483648,3321891298,0,3321891312,0,3321891313,2147483648,3321891314,0,3321891328,0,3321891329,2147483648,3321891330,0,3321891344,0,3321891345,2147483648,3321891346,0,3321891360,0,3321891361,2147483648,3321891362,0,3321891376,0,3321891377,2147483648,3321891378,0,3321891392,0,3321891393,2147483648,3321891394,0,3321891408,0,3321891409,2147483648,3321891410,0,3321891424,0,3321891425,2147483648,3321891426,0,3321891440,0,3321891441,2147483648,3321891442,0,3321891456,0,3321891457,2147483648,3321891458,0,3321891472,0,3321891473,2147483648,3321891474,0,3321891488,0,3321891489,2147483648,3321891490,0,3321891504,0,3321891505,2147483648,3321891506,0,3321891520,0,3321891521,2147483648,3321891522,0,3321891536,0,3321891537,2147483648,3321891538,0,3321891552,0,3321891553,2147483648,3321891554,0,3321891568,0,3321891569,2147483648,3321891570,0,3321891584,0,3321891585,2147483648,3321891586,0,3321891600,0,3321891601,2147483648,3321891602,0,3321891616,0,3321891617,2147483648,3321891618,0,3321891632,0,3321891633,2147483648,3321891634,0,3321891648,0,3321891649,2147483648,3321891650,0,3321891664,0,3321891665,2147483648,3321891666,0,3321891680,0,3321891681,2147483648,3321891682,0,3321891696,0,3321891697,2147483648,3321891698,0,3321891712,0,3321891713,2147483648,3321891714,0,3321891728,0,3321891729,2147483648,3321891730,0,3321891744,0,3321891745,2147483648,3321891746,0,3321891760,0,3321891761,2147483648,3321891762,0,3321891776,0,3321891777,2147483648,3321891778,0,3321891792,0,3321891793,2147483648,3321891794,0,3321891808,0,3321891809,2147483648,3321891810,0,3321891824,0,3321891825,2147483648,3321891826,0,3321891840,0,3321891841,2147483648,3321891842,0,3321891856,0,3321891857,2147483648,3321891858,0,3321891872,0,3321891873,2147483648,3321891874,0,3321891888,0,3321891889,2147483648,3321891890,0,3321891904,0,3321891905,2147483648,3321891906,0,3321891920,0,3321891921,2147483648,3321891922,0,3321891936,0,3321891937,2147483648,3321891938,0,3321891952,0,3321891953,2147483648,3321891954,0,3321891968,0,3321891969,2147483648,3321891970,0,3321891984,0,3321891985,2147483648,3321891986,0,3321892000,0,3321892001,2147483648,3321892002,0,3321892016,0,3321892017,2147483648,3321892018,0,3321892032,0,3321892033,2147483648,3321892034,0,3321892048,0,3321892049,2147483648,3321892050,0,3321892064,0,3321892065,2147483648,3321892066,0,3321892080,0,3321892081,2147483648,3321892082,0,3321892096,0,3321892097,2147483648,3321892098,0,3321892112,0,3321892113,2147483648,3321892114,0,3321892128,0,3321892129,2147483648,3321892130,0,3321892144,0,3321892145,2147483648,3321892146,0,3321892160,0,3321892161,2147483648,3321892162,0,3321892176,0,3321892177,2147483648,3321892178,0,3321892192,0,3321892193,2147483648,3321892194,0,3321892208,0,3321892209,2147483648,3321892210,0,3321892224,0,3321892225,2147483648,3321892226,0,3321892240,0,3321892241,2147483648,3321892242,0,3321892256,0,3321892257,2147483648,3321892258,0,3321892272,0,3321892273,2147483648,3321892274,0,3321892288,0,3321892289,2147483648,3321892290,0,3321892304,0,3321892305,2147483648,3321892306,0,3321892320,0,3321892321,2147483648,3321892322,0,3321892336,0,3321892337,2147483648,3321892338,0,3321892352,0,3321892353,2147483648,3321892354,0,3321892368,0,3321892369,2147483648,3321892370,0,3321892384,0,3321892385,2147483648,3321892386,0,3321892400,0,3321892401,2147483648,3321892402,0,3321892416,0,3321892417,2147483648,3321892418,0,3321892432,0,3321892433,2147483648,3321892434,0,3321892448,0,3321892449,2147483648,3321892450,0,3321892464,0,3321892465,2147483648,3321892466,0,3321892480,0,3321892481,2147483648,3321892482,0,3321892496,0,3321892497,2147483648,3321892498,0,3321892512,0,3321892513,2147483648,3321892514,0,3321892528,0,3321892529,2147483648,3321892530,0,3321892544,0,3321892545,2147483648,3321892546,0,3321892560,0,3321892561,2147483648,3321892562,0,3321892576,0,3321892577,2147483648,3321892578,0,3321892592,0,3321892593,2147483648,3321892594,0,3321892608,0,3321892609,2147483648,3321892610,0,3321892624,0,3321892625,2147483648,3321892626,0,3321892640,0,3321892641,2147483648,3321892642,0,3321892656,0,3321892657,2147483648,3321892658,0,3321892672,0,3321892673,2147483648,3321892674,0,3321892688,0,3321892689,2147483648,3321892690,0,3321892704,0,3321892705,2147483648,3321892706,0,3321892720,0,3321892721,2147483648,3321892722,0,3321892736,0,3321892737,2147483648,3321892738,0,3321892752,0,3321892753,2147483648,3321892754,0,3321892768,0,3321892769,2147483648,3321892770,0,3321892784,0,3321892785,2147483648,3321892786,0,3321892800,0,3321892801,2147483648,3321892802,0,3321892816,0,3321892817,2147483648,3321892818,0,3321892832,0,3321892833,2147483648,3321892834,0,3321892848,0,3321892849,2147483648,3321892850,0,3321892864,0,3321892865,2147483648,3321892866,0,3321892880,0,3321892881,2147483648,3321892882,0,3321892896,0,3321892897,2147483648,3321892898,0,3321892912,0,3321892913,2147483648,3321892914,0,3321892928,0,3321892929,2147483648,3321892930,0,3321892944,0,3321892945,2147483648,3321892946,0,3321892960,0,3321892961,2147483648,3321892962,0,3321892976,0,3321892977,2147483648,3321892978,0,3321892992,0,3321892993,2147483648,3321892994,0,3321893008,0,3321893009,2147483648,3321893010,0,3321893024,0,3321893025,2147483648,3321893026,0,3321893040,0,3321893041,2147483648,3321893042,0,3321893056,0,3321893057,2147483648,3321893058,0,3321893072,0,3321893073,2147483648,3321893074,0,3321893088,0,3321893089,2147483648,3321893090,0,3321893104,0,3321893105,2147483648,3321893106,0,3321893120,0,3321893121,2147483648,3321893122,0,3321893136,0,3321893137,2147483648,3321893138,0,3321893152,0,3321893153,2147483648,3321893154,0,3321893168,0,3321893169,2147483648,3321893170,0,3321893184,0,3321893185,2147483648,3321893186,0,3321893200,0,3321893201,2147483648,3321893202,0,3321893216,0,3321893217,2147483648,3321893218,0,3321893232,0,3321893233,2147483648,3321893234,0,3321893248,0,3321893249,2147483648,3321893250,0,3321893264,0,3321893265,2147483648,3321893266,0,3321893280,0,3321893281,2147483648,3321893282,0,3321893296,0,3321893297,2147483648,3321893298,0,3321893312,0,3321893313,2147483648,3321893314,0,3321893328,0,3321893329,2147483648,3321893330,0,3321893344,0,3321893345,2147483648,3321893346,0,3321893360,0,3321893361,2147483648,3321893362,0,3321893376,0,3321893377,2147483648,3321893378,0,3321893392,0,3321893393,2147483648,3321893394,0,3321893408,0,3321893409,2147483648,3321893410,0,3321893424,0,3321893425,2147483648,3321893426,0,3321893440,0,3321893441,2147483648,3321893442,0,3321893456,0,3321893457,2147483648,3321893458,0,3321893472,0,3321893473,2147483648,3321893474,0,3321893488,0,3321893489,2147483648,3321893490,0,3321893504,0,3321893505,2147483648,3321893506,0,3321893520,0,3321893521,2147483648,3321893522,0,3321893536,0,3321893537,2147483648,3321893538,0,3321893552,0,3321893553,2147483648,3321893554,0,3321893568,0,3321893569,2147483648,3321893570,0,3321893584,0,3321893585,2147483648,3321893586,0,3321893600,0,3321893601,2147483648,3321893602,0,3321893616,0,3321893617,2147483648,3321893618,0,3321893632,0,3321893633,2147483648,3321893634,0,3321893648,0,3321893649,2147483648,3321893650,0,3321893664,0,3321893665,2147483648,3321893666,0,3321893680,0,3321893681,2147483648,3321893682,0,3321893696,0,3321893697,2147483648,3321893698,0,3321893712,0,3321893713,2147483648,3321893714,0,3321893728,0,3321893729,2147483648,3321893730,0,3321893744,0,3321893745,2147483648,3321893746,0,3321893760,0,3321893761,2147483648,3321893762,0,3321893776,0,3321893777,2147483648,3321893778,0,3321893792,0,3321893793,2147483648,3321893794,0,3321893808,0,3321893809,2147483648,3321893810,0,3321893824,0,3321893825,2147483648,3321893826,0,3321893840,0,3321893841,2147483648,3321893842,0,3321893856,0,3321893857,2147483648,3321893858,0,3321893872,0,3321893873,2147483648,3321893874,0,3321893888,0,3321893889,2147483648,3321893890,0,3321893904,0,3321893905,2147483648,3321893906,0,3321893920,0,3321893921,2147483648,3321893922,0,3321893936,0,3321893937,2147483648,3321893938,0,3321893952,0,3321893953,2147483648,3321893954,0,3321893968,0,3321893969,2147483648,3321893970,0,3321893984,0,3321893985,2147483648,3321893986,0,3321894000,0,3321894001,2147483648,3321894002,0,3321894016,0,3321894017,2147483648,3321894018,0,3321894032,0,3321894033,2147483648,3321894034,0,3321894048,0,3321894049,2147483648,3321894050,0,3321894064,0,3321894065,2147483648,3321894066,0,3321894080,0,3321894081,2147483648,3321894082,0,3321894096,0,3321894097,2147483648,3321894098,0,3321894112,0,3321894113,2147483648,3321894114,0,3321894128,0,3321894129,2147483648,3321894130,0,3321894144,0,3321894145,2147483648,3321894146,0,3321894160,0,3321894161,2147483648,3321894162,0,3321894176,0,3321894177,2147483648,3321894178,0,3321894192,0,3321894193,2147483648,3321894194,0,3321894208,0,3321894209,2147483648,3321894210,0,3321894224,0,3321894225,2147483648,3321894226,0,3321894240,0,3321894241,2147483648,3321894242,0,3321894256,0,3321894257,2147483648,3321894258,0,3321894272,0,3321894273,2147483648,3321894274,0,3321894288,0,3321894289,2147483648,3321894290,0,3321894304,0,3321894305,2147483648,3321894306,0,3321894320,0,3321894321,2147483648,3321894322,0,3321894336,0,3321894337,2147483648,3321894338,0,3321894352,0,3321894353,2147483648,3321894354,0,3321894368,0,3321894369,2147483648,3321894370,0,3321894384,0,3321894385,2147483648,3321894386,0,3321894400,0,3321894401,2147483648,3321894402,0,3321894416,0,3321894417,2147483648,3321894418,0,3321894432,0,3321894433,2147483648,3321894434,0,3321894448,0,3321894449,2147483648,3321894450,0,3321894464,0,3321894465,2147483648,3321894466,0,3321894480,0,3321894481,2147483648,3321894482,0,3321894496,0,3321894497,2147483648,3321894498,0,3321894512,0,3321894513,2147483648,3321894514,0,3321894528,0,3321894529,2147483648,3321894530,0,3321894544,0,3321894545,2147483648,3321894546,0,3321894560,0,3321894561,2147483648,3321894562,0,3321894576,0,3321894577,2147483648,3321894578,0,3321894592,0,3321894593,2147483648,3321894594,0,3321894608,0,3321894609,2147483648,3321894610,0,3321894624,0,3321894625,2147483648,3321894626,0,3321894640,0,3321894641,2147483648,3321894642,0,3321894656,0,3321894657,2147483648,3321894658,0,3321894672,0,3321894673,2147483648,3321894674,0,3321894688,0,3321894689,2147483648,3321894690,0,3321894704,0,3321894705,2147483648,3321894706,0,3321894720,0,3321894721,2147483648,3321894722,0,3321894736,0,3321894737,2147483648,3321894738,0,3321894752,0,3321894753,2147483648,3321894754,0,3321894768,0,3321894769,2147483648,3321894770,0,3321894784,0,3321894785,2147483648,3321894786,0,3321894800,0,3321894801,2147483648,3321894802,0,3321894816,0,3321894817,2147483648,3321894818,0,3321894832,0,3321894833,2147483648,3321894834,0,3321894848,0,3321894849,2147483648,3321894850,0,3321894864,0,3321894865,2147483648,3321894866,0,3321894880,0,3321894881,2147483648,3321894882,0,3321894896,0,3321894897,2147483648,3321894898,0,3321894912,0,3321894913,2147483648,3321894914,0,3321894928,0,3321894929,2147483648,3321894930,0,3321894944,0,3321894945,2147483648,3321894946,0,3321894960,0,3321894961,2147483648,3321894962,0,3321894976,0,3321894977,2147483648,3321894978,0,3321894992,0,3321894993,2147483648,3321894994,0,3321895008,0,3321895009,2147483648,3321895010,0,3321895024,0,3321895025,2147483648,3321895026,0,3321895040,0,3321895041,2147483648,3321895042,0,3321895056,0,3321895057,2147483648,3321895058,0,3321895072,0,3321895073,2147483648,3321895074,0,3321895088,0,3321895089,2147483648,3321895090,0,3321895104,0,3321895105,2147483648,3321895106,0,3321895120,0,3321895121,2147483648,3321895122,0,3321895136,0,3321895137,2147483648,3321895138,0,3321895152,0,3321895153,2147483648,3321895154,0,3321895168,0,3321895169,2147483648,3321895170,0,3321895184,0,3321895185,2147483648,3321895186,0,3321895200,0,3321895201,2147483648,3321895202,0,3321895216,0,3321895217,2147483648,3321895218,0,3321895232,0,3321895233,2147483648,3321895234,0,3321895248,0,3321895249,2147483648,3321895250,0,3321895264,0,3321895265,2147483648,3321895266,0,3321895280,0,3321895281,2147483648,3321895282,0,3321895296,0,3321895297,2147483648,3321895298,0,3321895312,0,3321895313,2147483648,3321895314,0,3321895328,0,3321895329,2147483648,3321895330,0,3321895344,0,3321895345,2147483648,3321895346,0,3321895360,0,3321895361,2147483648,3321895362,0,3321895376,0,3321895377,2147483648,3321895378,0,3321895392,0,3321895393,2147483648,3321895394,0,3321895408,0,3321895409,2147483648,3321895410,0,3321895424,0,3321895425,2147483648,3321895426,0,3321895440,0,3321895441,2147483648,3321895442,0,3321895456,0,3321895457,2147483648,3321895458,0,3321895472,0,3321895473,2147483648,3321895474,0,3321895488,0,3321895489,2147483648,3321895490,0,3321895504,0,3321895505,2147483648,3321895506,0,3321895520,0,3321895521,2147483648,3321895522,0,3321895536,0,3321895537,2147483648,3321895538,0,3321895552,0,3321895553,2147483648,3321895554,0,3321895568,0,3321895569,2147483648,3321895570,0,3321895584,0,3321895585,2147483648,3321895586,0,3321895600,0,3321895601,2147483648,3321895602,0,3321895616,0,3321895617,2147483648,3321895618,0,3321895632,0,3321895633,2147483648,3321895634,0,3321895648,0,3321895649,2147483648,3321895650,0,3321895664,0,3321895665,2147483648,3321895666,0,3321895680,0,3321895681,2147483648,3321895682,0,3321895696,0,3321895697,2147483648,3321895698,0,3321895712,0,3321895713,2147483648,3321895714,0,3321895728,0,3321895729,2147483648,3321895730,0,3321895744,0,3321895745,2147483648,3321895746,0,3321895760,0,3321895761,2147483648,3321895762,0,3321895776,0,3321895777,2147483648,3321895778,0,3321895792,0,3321895793,2147483648,3321895794,0,3321895808,0,3321895809,2147483648,3321895810,0,3321895824,0,3321895825,2147483648,3321895826,0,3321895840,0,3321895841,2147483648,3321895842,0,3321895856,0,3321895857,2147483648,3321895858,0,3321895872,0,3321895873,2147483648,3321895874,0,3321895888,0,3321895889,2147483648,3321895890,0,3321895904,0,3321895905,2147483648,3321895906,0,3321895920,0,3321895921,2147483648,3321895922,0,3321895936,0,3321895937,2147483648,3321895938,0,3321895952,0,3321895953,2147483648,3321895954,0,3321895968,0,3321895969,2147483648,3321895970,0,3321895984,0,3321895985,2147483648,3321895986,0,3321896000,0,3321896001,2147483648,3321896002,0,3321896016,0,3321896017,2147483648,3321896018,0,3321896032,0,3321896033,2147483648,3321896034,0,3321896048,0,3321896049,2147483648,3321896050,0,3321896064,0,3321896065,2147483648,3321896066,0,3321896080,0,3321896081,2147483648,3321896082,0,3321896096,0,3321896097,2147483648,3321896098,0,3321896112,0,3321896113,2147483648,3321896114,0,3321896128,0,3321896129,2147483648,3321896130,0,3321896144,0,3321896145,2147483648,3321896146,0,3321896160,0,3321896161,2147483648,3321896162,0,3321896176,0,3321896177,2147483648,3321896178,0,3321896192,0,3321896193,2147483648,3321896194,0,3321896208,0,3321896209,2147483648,3321896210,0,3321896224,0,3321896225,2147483648,3321896226,0,3321896240,0,3321896241,2147483648,3321896242,0,3321896256,0,3321896257,2147483648,3321896258,0,3321896272,0,3321896273,2147483648,3321896274,0,3321896288,0,3321896289,2147483648,3321896290,0,3321896304,0,3321896305,2147483648,3321896306,0,3321896320,0,3321896321,2147483648,3321896322,0,3321896336,0,3321896337,2147483648,3321896338,0,3321896352,0,3321896353,2147483648,3321896354,0,3321896368,0,3321896369,2147483648,3321896370,0,3321896384,0,3321896385,2147483648,3321896386,0,3321896400,0,3321896401,2147483648,3321896402,0,3321896416,0,3321896417,2147483648,3321896418,0,3321896432,0,3321896433,2147483648,3321896434,0,3321896448,0,3321896449,2147483648,3321896450,0,3321896464,0,3321896465,2147483648,3321896466,0,3321896480,0,3321896481,2147483648,3321896482,0,3321896496,0,3321896497,2147483648,3321896498,0,3321896512,0,3321896513,2147483648,3321896514,0,3321896528,0,3321896529,2147483648,3321896530,0,3321896544,0,3321896545,2147483648,3321896546,0,3321896560,0,3321896561,2147483648,3321896562,0,3321896576,0,3321896577,2147483648,3321896578,0,3321896592,0,3321896593,2147483648,3321896594,0,3321896608,0,3321896609,2147483648,3321896610,0,3321896624,0,3321896625,2147483648,3321896626,0,3321896640,0,3321896641,2147483648,3321896642,0,3321896656,0,3321896657,2147483648,3321896658,0,3321896672,0,3321896673,2147483648,3321896674,0,3321896688,0,3321896689,2147483648,3321896690,0,3321896704,0,3321896705,2147483648,3321896706,0,3321896720,0,3321896721,2147483648,3321896722,0,3321896736,0,3321896737,2147483648,3321896738,0,3321896752,0,3321896753,2147483648,3321896754,0,3321896768,0,3321896769,2147483648,3321896770,0,3321896784,0,3321896785,2147483648,3321896786,0,3321896800,0,3321896801,2147483648,3321896802,0,3321896816,0,3321896817,2147483648,3321896818,0,3321896832,0,3321896833,2147483648,3321896834,0,3321896848,0,3321896849,2147483648,3321896850,0,3321896864,0,3321896865,2147483648,3321896866,0,3321896880,0,3321896881,2147483648,3321896882,0,3321896896,0,3321896897,2147483648,3321896898,0,3321896912,0,3321896913,2147483648,3321896914,0,3321896928,0,3321896929,2147483648,3321896930,0,3321896944,0,3321896945,2147483648,3321896946,0,3456172032,1,3456172033,13107,3456172034,13107,3456172048,1577058305,3456172049,256,3456172050,256,3321954336,0,3321954337,0,3321954338,0,3322019840,0,3322019841,0,3322019842,0,3322019856,0,3322019857,0,3322019858,0,3322019872,0,3322019873,0,3322019874,0,3322085376,0,3322085377,0,3322085378,0,3322085392,0,3322085393,0,3322085394,0,3322085408,0,3322085409,0,3322085410,0,3322150912,0,3322150913,0,3322150928,0,3322150929,0,3322150944,0,3322150945,0,3322150960,0,3322150961,0,3322216448,0,3322216449,0,3322216464,0,3322216465,0,3322216480,0,3322216481,0,3322216496,0,3322216497,0,3322216512,0,3322216513,0,3322216528,0,3322216529,0,3322216544,0,3322216545,0,3456434288,3254779918,3456434289,384,3322281984,0,3322282000,0,3322282016,0,3322282032,0,3322282048,0,3322282064,0,3322282080,0,3322282096,0,3322282112,0,3322282128,0,3322282144,0,3322282160,0,3322282176,0,3322282192,0,3322282208,0,3322282224,65536,3322347520,0,3322347536,0,3322347552,0,3322347568,0,3322413056,0,3322413057,0,3322413058,0,3322413059,0,3322413072,0,3322413073,0,3322413074,0,3322413075,0,3322413088,0,3322413089,0,3322413090,0,3322413091,0,3322413104,0,3322413105,0,3322413106,0,3322413107,0,3322478592,0,3322478608,0,3322478624,0,3322478640,0,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,2775280491,3149642683,3149642683,3113926592,2703837591,2256016726,4294967295,2252947860,4294967295,2256016726,4294967295,2253860179,4294967295,2253668434,4294967295,2253668723,4294967295,2277166035,4294967295,2277507212,4294967295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4294920464,0,2252974965,4294967295,2252975001,4294967295,2252976213,4294967295,2252963790,4294967295,2252942686,4294967295,2252073732,4294967295,2252231926,4294967295,2252235170,4294967295,2253685622,4294967295,2253691886,4294967295,2255428240,4294967295,2253689316,4294967295,2253712958,4294967295,2253715214,4294967295,2253717408,4294967295,2253719871,4294967295,2277166035,4294967295,0,1236,4294920819,0,1,2518679828,0,0,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,2775280491,3149642683,3149642683,4284295406,3878549779,2253834847,4294967295,2252943203,4294967295,2253834847,4294967295,2253850221,4294967295,2253676866,4294967295,2253678373,4294967295,2277166035,4294967295,2277507212,4294967295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4294911103,0,2252974965,4294967295,2252975001,4294967295,2252976213,4294967295,2252963790,4294967295,2252942686,4294967295,2253834847,4294967295,2253548055,4294967295,2253551920,4294967295,2277166035,4294967295,2277507212,4294967295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4294911315,0,1,3814719716,0,0,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,2775280491,3149642683,3149642683,3247915566,1491104147,2253834847,4294967295,2252943203,4294967295,2253834847,4294967295,2253850221,4294967295,2253676866,4294967295,2253678373,4294967295,2277166035,4294967295,2277507212,4294967295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4294911103,0,2252974965,4294967295,2252975001,4294967295,2252976213,4294967295,2252963790,4294967295,2252942686,4294967295,2253834847,4294967295,2253548055,4294967295,2253551920,4294967295,2277166035,4294967295,2277507212,4294967295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4294911315,0,1,3814719716,0,0,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,2775280491,3149642683,3149642683,3247927790,2565960083,2253834847,4294967295,2252943203,4294967295,2253834847,4294967295,2253850221,4294967295,2253676866,4294967295,2253678373,4294967295,2277166035,4294967295,2277507212,4294967295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4294911103,0,2252974965,4294967295,2252975001,4294967295,2252976213,4294967295,2252963790,4294967295,2252942686,4294967295,2253834847,4294967295,2253548055,4294967295,2253551920,4294967295,2277166035,4294967295,2277507212,4294967295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4294911315,0,1,3814719716,0,0,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,2775280491,3149642683,3149642683,3247901486,3632755091,2253834847,4294967295,2252943203,4294967295,2253834847,4294967295,2253850221,4294967295,2253676866,4294967295,2253678373,4294967295,2277166035,4294967295,2277507212,4294967295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4294911103,0,2252974965,4294967295,2252975001,4294967295,2252976213,4294967295,2252963790,4294967295,2252942686,4294967295,2253834847,4294967295,2253548055,4294967295,2253551920,4294967295,2277166035,4294967295,2277507212,4294967295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4294911315,0,1,3814719716,0,0,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,2775280491,3149642683,3149642683,3247909038,412447123,2253834847,4294967295,2252943203,4294967295,2253834847,4294967295,2253850221,4294967295,2253676866,4294967295,2253678373,4294967295,2277166035,4294967295,2277507212,4294967295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4294911103,0,2252974965,4294967295,2252975001,4294967295,2252976213,4294967295,2252963790,4294967295,2252942686,4294967295,2253834847,4294967295,2253548055,4294967295,2253551920,4294967295,2277166035,4294967295,2277507212,4294967295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4294911315,0,1,3814719716,0,0,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,2775280491,3149642683,3149642683,3247927214,1487630739,2253834847,4294967295,2252943203,4294967295,2253834847,4294967295,2253850221,4294967295,2253676866,4294967295,2253678373,4294967295,2277166035,4294967295,2277507212,4294967295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4294911103,0,2252974965,4294967295,2252975001,4294967295,2252976213,4294967295,2252963790,4294967295,2252942686,4294967295,2253834847,4294967295,2253548055,4294967295,2253551920,4294967295,2277166035,4294967295,2277507212,4294967295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4294911315,0,1,3814719716,0,0,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,2775280491,3149642683,3149642683,3247906158,2562224531,2253834847,4294967295,2252943203,4294967295,2253834847,4294967295,2253850221,4294967295,2253676866,4294967295,2253678373,4294967295,2277166035,4294967295,2277507212,4294967295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4294911103,0,2252974965,4294967295,2252975001,4294967295,2252976213,4294967295,2252963790,4294967295,2252942686,4294967295,2253834847,4294967295,2253548055,4294967295,2253551920,4294967295,2277166035,4294967295,2277507212,4294967295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4294911315,0,1,3814719716,0,0,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,2775280491,3149642683,3149642683,3247946478,408056211,2253834847,4294967295,2252943203,4294967295,2253834847,4294967295,2253850221,4294967295,2253676866,4294967295,2253678373,4294967295,2277166035,4294967295,2277507212,4294967295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4294911103,0,2252974965,4294967295,2252975001,4294967295,2252976213,4294967295,2252963790,4294967295,2252942686,4294967295,2253834847,4294967295,2253548055,4294967295,2253551920,4294967295,2277166035,4294967295,2277507212,4294967295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4294911315,0,1,3814719716,0,0,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,2775280491,3149642683,3149642683,3247960558,1482715539,2253834847,4294967295,2252943203,4294967295,2253834847,4294967295,2253850221,4294967295,2253676866,4294967295,2253678373,4294967295,2277166035,4294967295,2277507212,4294967295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4294911103,0,2252974965,4294967295,2252975001,4294967295,2252976213,4294967295,2252963790,4294967295,2252942686,4294967295,2253834847,4294967295,2253548055,4294967295,2253551920,4294967295,2277166035,4294967295,2277507212,4294967295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4294911315,0,1,3814719716,0,0,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,1515870810,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,3149642683,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963,1802201963 ]
      },
      "XAUI2 AN Regist": {
          "segment": 38,
          "values": [ 3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559 ]
      },
      "XAUI2 HSS PCS R": {
          "segment": 39,
          "values": [ 3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559,3735928559 ]
      },
      "XFI2 AN Registe": {
          "segment": 40,
          "values": [ 7391234,8,0,0,68884,1025,128,0,0,0,0,0,0,0 ]
      },
      "XFI2 TRAIN Regi": {
          "segment": 41,
          "values": [ 16,0,0,0,0,0,0,0,196708,0,1,80 ]
      },
      "XFI2 HSS PCS Re": {
          "segment": 42,
          "values": [ 8,756753,1,0,0,50331648,0,114268212,0,2,0,262687,0,1760,0 ]
      },
      "XFI2 HSS TX Reg": {
          "segment": 43,
          "values": [ 8,0,0,1,24,512,4,0,0,63,10,0,74,34,0,0,0,63,10,0,0,18,0,0,0,31,10,0,89,0,2,0 ]
      },
      "XFI2 HSS RX Reg": {
          "segment": 44,
          "values": [ 8,0,52480,1808,14134,10,1025,32,194,51432,48,12419,8,484,9251,8487,16932,2306,24482,6229,221,14336,1024,33409,17217,4370,8465,4400,2064,16799,57503,32765 ]
      },
      "XFI2 HSS PLL Re": {
          "segment": 45,
          "values": [ 11,20,0,0,0,0,255,255,0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ]
      },
      "Sem Registers": {
          "segment": 50,
          "values": [ 3735928559,3735928559,3735928559,3735928559 ]
      }
  }
  $ devlink health
  pci/0000:00:04.0:
    reporter coredump
      state healthy error 0 recover 0 last_dump_date 2020-08-26 last_dump_time 14:37:31
  pci/0000:00:05.0:
    reporter coredump
      state healthy error 0 recover 0

> I notice with the qlge_force_coredump module parameter set, ethtool
> can also get the coredump. I'm not sure which tool is more suitable for
> the coredump feature.
> 
> [1] https://lkml.org/lkml/2020/6/30/19
> [2] https://www.kernel.org/doc/html/latest/networking/ethtool-netlink.html
> 
> Coiby Xu (3):
>   Initialize devlink health dump framework for the dlge driver
>   coredump via devlink health reporter
>   clean up code that dump info to dmesg
> 
>  drivers/staging/qlge/Makefile       |   2 +-
>  drivers/staging/qlge/qlge.h         |  91 +---
>  drivers/staging/qlge/qlge_dbg.c     | 672 ----------------------------
>  drivers/staging/qlge/qlge_ethtool.c |   1 -
>  drivers/staging/qlge/qlge_health.c  | 156 +++++++
>  drivers/staging/qlge/qlge_health.h  |   2 +
>  drivers/staging/qlge/qlge_main.c    |  27 +-
>  7 files changed, 189 insertions(+), 762 deletions(-)
>  create mode 100644 drivers/staging/qlge/qlge_health.c
>  create mode 100644 drivers/staging/qlge/qlge_health.h
> 
> --
> 2.27.0
> 

Best regards,
Shung-Hsi Yu




More information about the Linux-kernel-mentees mailing list