Commit 85762c1a authored by Xiaowei.zhang's avatar Xiaowei.zhang
Browse files

Init the main branch for aiter

parent ae0b3521
Pipeline #3505 canceled with stages
[submodule "3rdparty/composable_kernel"]
path = 3rdparty/composable_kernel
url = ../composable_kernel
branch = rel-5.7.1
[submodule "3rdparty/moe_c"]
path = 3rdparty/moe_c
url = ../Moe
branch = W8A8
Copyright ©
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
graft aiter
graft aiter_meta
\ No newline at end of file
## Installation
method build for develop:
```
git submodule update --init
python setup.py develop
```
method build for whl package:
```
bash das_build.sh
```
If you happen to forget the `--recursive` during `clone`, you can use the following command after `cd aiter`
```
git submodule sync && git submodule update --init --recursive
```
## Run operators supported by aiter
There are number of op test, you can run them with: `python3 op_tests/test_layernorm2d.py`
| **Ops** | **Description** |
|-------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|ELEMENT WISE | ops: + - * / |
|SIGMOID | (x) = 1 / (1 + e^-x) |
|AllREDUCE | Reduce + Broadcast |
|KVCACHE | W_K W_V |
|MHA | Multi-Head Attention |
|MLA | Multi-head Latent Attention with [KV-Cache layout](https://docs.flashinfer.ai/tutorials/kv_layout.html#page-table-layout ) |
|PA | Paged Attention |
|FusedMoe | Mixture of Experts |
|QUANT | BF16/FP16 -> FP8/INT4 |
|RMSNORM | root mean square |
|LAYERNORM | x = (x - u) / (σ2 + ϵ) e*0.5 |
|ROPE | Rotary Position Embedding |
|GEMM | D=αAβB+C |
# SPDX-License-Identifier: MIT
import torch
import os
import logging
logger = logging.getLogger("aiter")
def getLogger():
global logger
if not logger.handlers:
logger.setLevel(logging.DEBUG)
console_handler = logging.StreamHandler()
if int(os.environ.get("AITER_LOG_MORE", 0)):
formatter = logging.Formatter(
fmt="[%(name)s %(levelname)s] %(asctime)s.%(msecs)03d - %(processName)s:%(process)d - %(pathname)s:%(lineno)d - %(funcName)s\n%(message)s",
datefmt="%Y-%m-%d %H:%M:%S",
)
else:
formatter = logging.Formatter(
fmt="[%(name)s] %(message)s",
)
console_handler.setFormatter(formatter)
console_handler.setLevel(logging.INFO)
logger.addHandler(console_handler)
if hasattr(torch._dynamo.config, "ignore_logger_methods"):
torch._dynamo.config.ignore_logger_methods = (
logging.Logger.info,
logging.Logger.warning,
logging.Logger.debug,
logger.warning,
logger.info,
logger.debug,
)
return logger
logger = getLogger()
import importlib.util
if importlib.util.find_spec("aiter_") is not None:
from aiter_ import *
from .jit import core
# from .ops.enum import *
from .ops.norm import *
from .ops.quant import *
# from .ops.gemm_op_a8w8 import *
# from .ops.batched_gemm_op_a8w8 import *
# from .ops.batched_gemm_op_bf16 import *
from .ops.aiter_operator import *
from .ops.activation import *
# from .ops.attention import *
# from .ops.custom import *
from .ops.custom_all_reduce import *
from .ops.moe_op import *
from .ops.moe_c_op import *
from .ops.moe_sorting import *
from .ops.pos_encoding import *
# from .ops.cache import *
from .ops.rmsnorm import *
from .ops.awq_gemm_asm import *
from .ops.awq_dq_asm import *
# from .ops.communication import *
from .ops.rope import *
from .ops.topk import *
# from .ops.mha import *
from .ops.gradlib import *
# from .ops.trans_ragged_layout import *
# from . import mla
from .utility import dtypes,fp4_utils
import torch
import torch.nn.functional as F
import ctypes
from typing import Optional
import aiter
from aiter import ActivationType, QuantType, dtypes
from aiter.ops.awq_gemm_asm import *
from aiter.ops.shuffle import reverse_awq_order
from aiter.ops.awq_gemm_asm import awq_gemm_asm
from aiter.ops.awq_dq_asm import awq_dq_asm
def pack_int4_to_int8(low_4bits):
if len(low_4bits) % 2 != 0:
low_4bits = torch.cat([low_4bits, torch.tensor([0], dtype=torch.uint8)])
# 3. 将相邻两个低4位拼成一个 int8 值
# 偶数索引:左移4位作为高4位;奇数索引:低4位
packed = (low_4bits[::2]) | (low_4bits[1::2] << 4)
packed = packed.to(torch.int8) # 转回 int8(有符号)
return packed
def pack_int4_to_int8_64K(low_4bits):
if len(low_4bits) % 2 != 0:
low_4bits = torch.cat([low_4bits, torch.tensor([0], dtype=torch.uint8)])
# 3. 将相邻两个低4位拼成一个 int8 值
# 偶数索引:左移4位作为高4位;奇数索引:低4位
packed = (low_4bits[::128]) | (low_4bits[64::128] << 4)
packed = packed.to(torch.int8) # 转回 int8(有符号)
return packed
# qweight - [K, N // 8]
# qzeros - [K // G, N // 8]
# scales - [K // G, N]
def asm_awq_reorder_and_repack(
qweight: torch.Tensor,
qzeros: torch.Tensor,
) -> tuple[torch.Tensor, torch.Tensor]:
#WARNING: Only support awq group_size=64
N = qweight.shape[1] * 8
K = qweight.shape[0]
G = K // qzeros.shape[0]
assert K // qzeros.shape[0] == 64, "[ERROR] ASM_AWQ_GEMM not support K Groupsize other than 64!"
# assert (N % 512==0 or N==576), "[ERROR]ASM_AWQ_GEMM Not support Weight N other than 576 or multiplies of 512!"
device = qzeros.device
bits = 4
shifts = torch.arange(0, 32, bits, device=device)
iweights = torch.bitwise_right_shift(
qweight[:, :, None],
shifts[None, None, :],
).to(torch.int8)
iweights = iweights.view(iweights.shape[0], -1)
zeros = torch.bitwise_right_shift(
qzeros[:, :, None],
shifts[None, None, :],
).to(torch.int8)
zeros = zeros.view(qzeros.shape[0], -1)
zeros = reverse_awq_order(zeros)
iweights = reverse_awq_order(iweights)
iweights = torch.bitwise_and(iweights, (2**bits) - 1)
zeros = torch.bitwise_and(zeros, (2**bits) - 1)
iweights_packed = iweights.view(K, -1, 2)
zeros_packed = zeros.view(K//G, -1, 2)
# Repack weight to int32 and pack along the K direction
# [K, N] -> [N, K]
# iweights = iweights.transpose(1, 0).contiguous()
packed_weights = torch.zeros([K, N//2], dtype=torch.int8, device=qweight.device)
packed_zeros = torch.zeros([K//G, N//2], dtype=torch.int8, device=zeros.device)
for i in range(2):
packed_weights |= (iweights_packed[:, :, i].to(torch.int8) << (i * bits))
packed_zeros |= (zeros_packed[:, :, i].to(torch.int8) << (i * bits))
return packed_weights,packed_zeros
def asm_awq_post_dequant_torch(
qweight: torch.Tensor,
scales: torch.Tensor,
qzeros: torch.Tensor,
group_size: int,
) -> torch.Tensor:
"""Dequantize weights using PyTorch implementation.
Args:
qweight: Quantized weight tensor
scales: Scale factors tensor
qzeros: Zero points tensor
group_size: Size of groups for quantization
Returns:
Dequantized tensor
"""
if group_size == -1:
group_size = qweight.shape[0]
bits = 4
shifts = torch.arange(0, 8, bits, device=qzeros.device)
#只需要8 bit 展开
iweights = torch.bitwise_right_shift(
qweight[:, :, None],
shifts[None, None, :],
).to(torch.int8)
iweights = iweights.view(iweights.shape[0], -1)
zeros = torch.bitwise_right_shift(
qzeros[:, :, None],
shifts[None, None, :],
).to(torch.int8)
zeros = zeros.view(qzeros.shape[0], -1)
iweights = torch.bitwise_and(iweights, (2**bits) - 1)
zeros = torch.bitwise_and(zeros, (2**bits) - 1)
scales = scales.repeat_interleave(group_size, dim=0)
zeros = zeros.repeat_interleave(group_size, dim=0)
return (iweights - zeros) * scales
def asm_awq_post_dequant(
qweight: torch.Tensor,
scales: torch.Tensor,
qzeros: torch.Tensor,
group_size: int,
) -> torch.Tensor:
K = scales.shape[0] * group_size
N = scales.shape[-1]
# device = scales.device
out = torch.empty((K, N), dtype=scales.dtype, device=qweight.device)
awq_dq_asm(out, qweight, qzeros, scales)
return out
# The inference function
# input - [m, k]
# qweight - [n, k // 2]
# qzeros - [k//g, n//2]
# scales - [k//g, n]
def asm_awq_gemm_a16w4(input: torch.tensor,
qweight: torch.tensor,
scales: torch.tensor,
qzeros: torch.tensor) -> torch.tensor:
M,K = input.shape
N = scales.shape[1]
assert K % 256 == 0
device = qzeros.device
out_asm = torch.empty((M, N),
dtype=input.dtype,
device=device)
awq_gemm_asm(out_asm, qweight, input, qzeros, scales)
# out_asm = out_asm.reshape(out_asm.shape[1], -1)
return out_asm
\ No newline at end of file
import torch
import torch.nn.functional as F
from einops import rearrange, repeat
class IndexFirstAxis(torch.autograd.Function):
@staticmethod
def forward(ctx, input, indices):
ctx.save_for_backward(indices)
assert input.ndim >= 2
ctx.first_axis_dim, other_shape = input.shape[0], input.shape[1:]
second_dim = other_shape.numel()
# TD [2022-03-04] For some reason torch.gather is a bit faster than indexing.
# return input[indices]
return torch.gather(
rearrange(input, "b ... -> b (...)"),
0,
repeat(indices, "z -> z d", d=second_dim),
).reshape(-1, *other_shape)
@staticmethod
def backward(ctx, grad_output):
(indices,) = ctx.saved_tensors
assert grad_output.ndim >= 2
other_shape = grad_output.shape[1:]
grad_output = rearrange(grad_output, "b ... -> b (...)")
grad_input = torch.zeros(
[ctx.first_axis_dim, grad_output.shape[1]],
device=grad_output.device,
dtype=grad_output.dtype,
)
# TD [2022-03-04] For some reason torch.scatter is a bit faster than indexing.
# grad_input[indices] = grad_output
grad_input.scatter_(
0, repeat(indices, "z -> z d", d=grad_output.shape[1]), grad_output
)
return grad_input.reshape(ctx.first_axis_dim, *other_shape), None
index_first_axis = IndexFirstAxis.apply
class IndexPutFirstAxis(torch.autograd.Function):
@staticmethod
def forward(ctx, values, indices, first_axis_dim):
ctx.save_for_backward(indices)
assert indices.ndim == 1
assert values.ndim >= 2
output = torch.zeros(
first_axis_dim, *values.shape[1:], device=values.device, dtype=values.dtype
)
# TD [2022-03-04] For some reason torch.scatter is a bit faster than indexing.
output[indices] = values
# output.scatter_(0, repeat(indices, 'z -> z d', d=values.shape[1]), values)
return output
@staticmethod
def backward(ctx, grad_output):
(indices,) = ctx.saved_tensors
# TD [2022-03-04] For some reason torch.gather is a bit faster than indexing.
grad_values = grad_output[indices]
# grad_values = torch.gather(grad_output, 0, repeat(indices, 'z -> z d', d=grad_output.shape[1]))
return grad_values, None, None
index_put_first_axis = IndexPutFirstAxis.apply
class IndexFirstAxisResidual(torch.autograd.Function):
@staticmethod
def forward(ctx, input, indices):
ctx.save_for_backward(indices)
assert input.ndim >= 2
ctx.first_axis_dim, other_shape = input.shape[0], input.shape[1:]
second_dim = other_shape.numel()
# TD [2022-03-04] For some reason torch.gather is a bit faster than indexing.
output = input[indices]
# We don't want to reshape input (b ... -> b (...)) since it could change the channel_last
# memory format to channel_first. In other words, input might not be contiguous.
# If we don't detach, Pytorch complains about output being a view and is being modified inplace
return output, input.detach()
@staticmethod
def backward(ctx, grad_output, grad_residual):
(indices,) = ctx.saved_tensors
assert grad_output.ndim >= 2
other_shape = grad_output.shape[1:]
assert grad_residual.shape[1:] == other_shape
grad_input = grad_residual
# grad_input[indices] += grad_output
indices = indices.reshape(indices.shape[0], *((1,) * (grad_output.ndim - 1)))
indices = indices.expand_as(grad_output)
grad_input.scatter_add_(0, indices, grad_output)
return grad_input.reshape(ctx.first_axis_dim, *other_shape), None
index_first_axis_residual = IndexFirstAxisResidual.apply
def unpad_input(hidden_states, attention_mask, unused_mask=None):
"""
Arguments:
hidden_states: (batch, seqlen, ...)
attention_mask: (batch, seqlen), bool / int, 1 means valid and 0 means not valid.
unused_mask: (batch, seqlen), bool / int, 1 means the element is allocated but unused.
Return:
hidden_states: (total_nnz, ...), where total_nnz = number of tokens selected in attention_mask + unused_mask.
indices: (total_nnz), the indices of masked tokens from the flattened input sequence.
cu_seqlens: (batch + 1), the cumulative sequence lengths, used to index into hidden_states.
max_seqlen_in_batch: int
seqused: (batch), returns the number of tokens selected in attention_mask + unused_mask.
"""
all_masks = (
(attention_mask + unused_mask) if unused_mask is not None else attention_mask
)
seqlens_in_batch = all_masks.sum(dim=-1, dtype=torch.int32)
used_seqlens_in_batch = attention_mask.sum(dim=-1, dtype=torch.int32)
indices = torch.nonzero(all_masks.flatten(), as_tuple=False).flatten()
max_seqlen_in_batch = seqlens_in_batch.max().item()
cu_seqlens = F.pad(torch.cumsum(seqlens_in_batch, dim=0, dtype=torch.int32), (1, 0))
# TD [2022-03-04] We don't want to index with a bool mask, because Pytorch will expand the
# bool mask, then call nonzero to get the indices, then index with those. The indices is @dim
# times larger than it needs to be, wasting memory. It's faster and more memory-efficient to
# index with integer indices. Moreover, torch's index is a bit slower than it needs to be,
# so we write custom forward and backward to make it a bit faster.
return (
index_first_axis(rearrange(hidden_states, "b s ... -> (b s) ..."), indices),
indices,
cu_seqlens,
max_seqlen_in_batch,
used_seqlens_in_batch,
)
def unpad_input_for_concatenated_sequences(hidden_states, attention_mask_in_length):
"""
Supports concatenating short samples in one sequence. The attention_mask_in_length is utilized to mask other short samples. It helps efficient training of variant lengths-based samples (e.g., the supervised fine-tuning task in large language model).
The motivation for this function is explained [here](https://github.com/Dao-AILab/flash-attention/issues/432#issuecomment-1668822286).
For example, if batch = 3 and seqlen = 6, the attention_mask_in_length is:
```
[
[2, 3, 0, 0, 0, 0],
[3, 2, 0, 0, 0, 0],
[6, 0, 0, 0, 0, 0]
]
```
, which refers to the 3D-attention mask:
```
[
[
[1, 0, 0, 0, 0, 0],
[1, 1, 0, 0, 0, 0],
[0, 0, 1, 0, 0, 0],
[0, 0, 1, 1, 0, 0],
[0, 0, 1, 1, 1, 0],
[0, 0, 0, 0, 0, 1]
],
[
[1, 0, 0, 0, 0, 0],
[1, 1, 0, 0, 0, 0],
[1, 1, 1, 0, 0, 0],
[0, 0, 0, 1, 0, 0],
[0, 0, 0, 1, 1, 0],
[0, 0, 0, 0, 0, 1]
],
[
[1, 0, 0, 0, 0, 0],
[1, 1, 0, 0, 0, 0],
[1, 1, 1, 0, 0, 0],
[1, 1, 1, 1, 0, 0],
[1, 1, 1, 1, 1, 0],
[1, 1, 1, 1, 1, 1]
]
]
```.
Arguments:
hidden_states: (batch, seqlen, ...)
attention_mask_in_length: (batch, seqlen), int, a nonzero number (e.g., 1, 2, 3, etc.) means length of concatenated sequence in b-th batch, and 0 means none.
Return:
hidden_states: (total_nnz, ...), where total_nnz = number of tokens in selected in attention_mask.
indices: (total_nnz), the indices of non-masked tokens from the flattened input sequence.
cu_seqlens: (batch + 1), the cumulative sequence lengths, used to index into hidden_states.
max_seqlen_in_batch: int
"""
length = attention_mask_in_length.sum(dim=-1)
seqlen = attention_mask_in_length.size(-1)
attention_mask_2d = torch.arange(
seqlen, device=length.device, dtype=length.dtype
).expand(len(length), seqlen) < length.unsqueeze(1)
real_indices_idx = torch.nonzero(
attention_mask_in_length.flatten(), as_tuple=False
).flatten()
seqlens_in_batch = attention_mask_in_length.flatten()[real_indices_idx]
indices = torch.nonzero(attention_mask_2d.flatten(), as_tuple=False).flatten()
max_seqlen_in_batch = seqlens_in_batch.max().item()
cu_seqlens = F.pad(torch.cumsum(seqlens_in_batch, dim=0, dtype=torch.int32), (1, 0))
# TD [2022-03-04] We don't want to index with a bool mask, because Pytorch will expand the
# bool mask, then call nonzero to get the indices, then index with those. The indices is @dim
# times larger than it needs to be, wasting memory. It's faster and more memory-efficient to
# index with integer indices. Moreover, torch's index is a bit slower than it needs to be,
# so we write custom forward and backward to make it a bit faster.
return (
index_first_axis(rearrange(hidden_states, "b s ... -> (b s) ..."), indices),
indices,
cu_seqlens,
max_seqlen_in_batch,
)
def pad_input(hidden_states, indices, batch, seqlen):
"""
Arguments:
hidden_states: (total_nnz, ...), where total_nnz = number of tokens in selected in attention_mask.
indices: (total_nnz), the indices that represent the non-masked tokens of the original padded input sequence.
batch: int, batch size for the padded sequence.
seqlen: int, maximum sequence length for the padded sequence.
Return:
hidden_states: (batch, seqlen, ...)
"""
dim = hidden_states.shape[-1]
# output = torch.zeros((batch * seqlen), dim, device=hidden_states.device, dtype=hidden_states.dtype)
# output[indices] = hidden_states
output = index_put_first_axis(hidden_states, indices, batch * seqlen)
return rearrange(output, "(b s) ... -> b s ...", b=batch)
import os
from pathlib import Path
import functools
import pandas as pd
import torch
import torch.nn.functional as F
from aiter import hipb_create_extension, hipb_mm, getHipblasltKernelName
from aiter import rocb_create_extension, rocb_mm
from aiter import logger, dtypes
from aiter.jit.utils.torch_guard import torch_compile_guard
from typing import Optional
extensions_created = False
@torch_compile_guard()
def scale_mm(
inp: torch.Tensor,
weights: torch.Tensor,
bias: Optional[torch.Tensor] = None,
otype: Optional[torch.dtype] = None,
scale_a: Optional[torch.Tensor] = None,
scale_b: Optional[torch.Tensor] = None,
scale_c: Optional[torch.Tensor] = None,
scale_type: Optional[int] = None,
)-> torch.Tensor:
# scale_type=0, scalar scale
# scale_type=1, channel scale
# scale_type=2, block scale
global extensions_created
if otype is None:
otype = inp.dtype
if extensions_created == False:
hipb_create_extension()
extensions_created = True
if inp.dim() >= 3:
assert(False, "not support 3dim input")
inp_view = inp
return hipb_mm(inp_view, weights.t(), -1, bias, otype, scale_a, scale_b, scale_c, scale_type)
\ No newline at end of file
M,N,K
16, 1536, 7168
16, 3072, 1536
16, 576, 7168
16, 7168, 256
16, 7168, 2048
16, 4608, 7168
16, 7168, 2304
16, 512, 7168
16, 4096, 512
32, 1536, 7168
32, 3072, 1536
32, 576, 7168
32, 7168, 256
32, 7168, 2048
32, 4608, 7168
32, 7168, 2304
32, 512, 7168
32, 4096, 512
64, 1536, 7168
64, 3072, 1536
64, 576, 7168
64, 7168, 256
64, 7168, 2048
64, 4608, 7168
64, 7168, 2304
64, 512, 7168
64, 4096, 512
128, 1536, 7168
128, 3072, 1536
128, 576, 7168
128, 7168, 256
128, 7168, 2048
128, 4608, 7168
128, 7168, 2304
128, 512, 7168
128, 4096, 512
256, 1536, 7168
256, 3072, 1536
256, 576, 7168
256, 7168, 256
256, 7168, 2048
256, 4608, 7168
256, 7168, 2304
256, 512, 7168
256, 4096, 512
512, 1536, 7168
512, 3072, 1536
512, 576, 7168
512, 7168, 256
512, 7168, 2048
512, 4608, 7168
512, 7168, 2304
512, 512, 7168
512, 4096, 512
1024, 1536, 7168
1024, 3072, 1536
1024, 576, 7168
1024, 7168, 256
1024, 7168, 2048
1024, 4608, 7168
1024, 7168, 2304
1024, 512, 7168
1024, 4096, 512
1536, 1536, 7168
1536, 3072, 1536
1536, 576, 7168
1536, 7168, 256
1536, 7168, 2048
1536, 4608, 7168
1536, 7168, 2304
1536, 512, 7168
1536, 4096, 512
2048, 1536, 7168
2048, 3072, 1536
2048, 576, 7168
2048, 7168, 256
2048, 7168, 2048
2048, 4608, 7168
2048, 7168, 2304
2048, 512, 7168
2048, 4096, 512
4096, 1536, 7168
4096, 3072, 1536
4096, 576, 7168
4096, 7168, 256
4096, 7168, 2048
4096, 4608, 7168
4096, 7168, 2304
4096, 512, 7168
4096, 4096, 512
8192, 1536, 7168
8192, 3072, 1536
8192, 576, 7168
8192, 7168, 256
8192, 7168, 2048
8192, 4608, 7168
8192, 7168, 2304
8192, 512, 7168
8192, 4096, 512
16384, 1536, 7168
16384, 3072, 1536
16384, 576, 7168
16384, 7168, 256
16384, 7168, 2048
16384, 4608, 7168
16384, 7168, 2304
16384, 512, 7168
16384, 4096, 512
20480, 1536, 7168
20480, 3072, 1536
20480, 576, 7168
20480, 7168, 256
20480, 7168, 2048
20480, 4608, 7168
20480, 7168, 2304
20480, 512, 7168
20480, 4096, 512
\ No newline at end of file
B,M,N,K
16, 1, 1280, 8192
16, 32, 1280, 8192
16, 64, 1280, 8192
16, 128, 1280, 8192
16, 192, 1280, 8192
16, 256, 1280, 8192
16, 320, 1280, 8192
16, 512, 1280, 8192
16, 1024, 1280, 8192
16, 2048, 1280, 8192
16, 4096, 1280, 8192
16, 8192, 1280, 8192
16, 16384, 1280, 8192
16, 1, 8192, 1024
16, 32, 8192, 1024
16, 64, 8192, 1024
16, 128, 8192, 1024
16, 192, 8192, 1024
16, 256, 8192, 1024
16, 320, 8192, 1024
16, 512, 8192, 1024
16, 1024, 8192, 1024
16, 2048, 8192, 1024
16, 4096, 8192, 1024
16, 8192, 8192, 1024
16, 16384, 8192, 1024
M,N,K
1, 1280, 8192
32, 1280, 8192
64, 1280, 8192
128, 1280, 8192
192, 1280, 8192
256, 1280, 8192
320, 1280, 8192
512, 1280, 8192
1024, 1280, 8192
2048, 1280, 8192
4096, 1280, 8192
8192, 1280, 8192
16384, 1280, 8192
1, 8192, 1024
32, 8192, 1024
64, 8192, 1024
128, 8192, 1024
192, 8192, 1024
256, 8192, 1024
320, 8192, 1024
512, 8192, 1024
1024, 8192, 1024
2048, 8192, 1024
4096, 8192, 1024
8192, 8192, 1024
16384, 8192, 1024
M,N,K,bias,outdtype,splitK,us
128,1280,8192,True,torch.bfloat16,3,13.85
192,1280,8192,True,torch.bfloat16,3,13.90
256,1280,8192,True,torch.bfloat16,3,25.54
320,1280,8192,True,torch.bfloat16,3,25.56
512,1280,8192,True,torch.bfloat16,3,48.06
1024,1280,8192,True,torch.bfloat16,3,94.45
2048,1280,8192,True,torch.bfloat16,3,186.90
4096,1280,8192,True,torch.bfloat16,3,371.85
8192,1280,8192,True,torch.bfloat16,3,742.90
16384,1280,8192,True,torch.bfloat16,3,1483.54
128,8192,1024,True,torch.bfloat16,0,12.67
192,8192,1024,True,torch.bfloat16,0,12.70
256,8192,1024,True,torch.bfloat16,0,23.80
320,8192,1024,True,torch.bfloat16,0,23.82
512,8192,1024,True,torch.bfloat16,0,44.61
1024,8192,1024,True,torch.bfloat16,0,76.33
2048,8192,1024,True,torch.bfloat16,0,140.05
4096,8192,1024,True,torch.bfloat16,0,277.80
8192,8192,1024,True,torch.bfloat16,0,552.69
16384,8192,1024,True,torch.bfloat16,0,1095.12
\ No newline at end of file
{
"tunedCSV": "tuned_awq_gemm_NN.csv",
"kernels": [
{
"solutionId": 0,
"kernel_name": "Cijk_Ailk_Bljk_HHS_BH_UserArgs_MT64x32x32_SN_K1_PGR6_SB1_TT2_2_WG16_16_2",
"co_file": "Cijk_Ailk_Bljk_HHS_BH_UserArgs_MT64x32x32_SN_K1_PGR6_SB1_TT4_2_w4a16.co",
"Kconfigs": { "mt0": 64, "mt1": 32, "numThreads": 512, "wgm": 1 }
},
{
"solutionId": 1,
"kernel_name": "Cijk_Ailk_Bljk_HHS_BH_UserArgs_MT64x64x32_SN_K1_PGR6_SB1_TT2_2_WG16_16_2",
"co_file": "Cijk_Ailk_Bljk_HHS_BH_UserArgs_MT64x64x32_SN_K1_PGR6_SB1_TT4_2_w4a16.co",
"Kconfigs": { "mt0": 64, "mt1": 64, "numThreads": 512, "wgm": 1 }
},
{
"solutionId": 2,
"kernel_name": "Cijk_Ailk_Bljk_HHS_BH_UserArgs_MT64x128x32_SN_K1_PGR6_SB1_TT2_8_WG16_16_2",
"co_file": "Cijk_Ailk_Bljk_HHS_BH_UserArgs_MT64x128x32_SN_K1_PGR6_SB1_TT4_2_w4a16.co",
"Kconfigs": { "mt0": 64, "mt1": 128, "numThreads": 512, "wgm": 1 }
},
{
"solutionId": 3,
"kernel_name": "Cijk_Ailk_Bljk_HHS_BH_UserArgs_MT16x32x32_SN_K1_PGR6_SB1_TT2_2_WG16_16_2",
"co_file": "Cijk_Ailk_Bljk_HHS_BH_UserArgs_MT16x32x32_SN_K1_PGR6_SB1_TT4_2_w4a16.co",
"Kconfigs": { "mt0": 16, "mt1": 32, "numThreads": 512, "wgm": 1 }
},
{
"solutionId": 4,
"kernel_name": "Cijk_Ailk_Bljk_HHS_BH_UserArgs_MT64x32x32_SN_K1_PGR6_SB1_TT2_2_WG16_16_3",
"co_file": "Cijk_Ailk_Bljk_HHS_BH_UserArgs_MT64x32x32_SN_K1_PGR6_SB1_TT4_2_w4a16_splitK.co",
"Kconfigs": { "mt0": 64, "mt1": 32, "numThreads": 768, "wgm": 1 }
},
{
"solutionId": 5,
"kernel_name": "Cijk_Ailk_Bljk_HHS_BH_UserArgs_MT64x64x32_SN_K1_PGR6_SB1_TT2_2_WG16_16_3",
"co_file": "Cijk_Ailk_Bljk_HHS_BH_UserArgs_MT64x64x32_SN_K1_PGR6_SB1_TT4_2_w4a16_splitK.co",
"Kconfigs": { "mt0": 64, "mt1": 64, "numThreads": 768, "wgm": 1 }
},
{
"solutionId": 6,
"kernel_name": "Cijk_Ailk_Bljk_HHS_BH_UserArgs_MT64x128x32_SN_K1_PGR6_SB1_TT2_2_WG16_16_3",
"co_file": "Cijk_Ailk_Bljk_HHS_BH_UserArgs_MT64x128x32_SN_K1_PGR6_SB1_TT4_2_w4a16_splitK.co",
"Kconfigs": { "mt0": 64, "mt1": 128, "numThreads": 768, "wgm": 1 }
}
],
"Untunedkernels": [
{
"solutionId": 4,
"kernel_name": "Cijk_Ailk_Bljk_HHS_BH_UserArgs_MT32x32x32_SN_K1_PGR6_SB1_TT2_2_WG16_16_3",
"co_file": "Cijk_Ailk_Bljk_HHS_BH_UserArgs_MT32x32x32_SN_K1_PGR6_SB1_TT4_2_w4a16.co",
"Kconfigs": { "mt0": 32, "mt1": 32, "numThreads": 768, "wgm": 1 }
}
]
}
{
"tunedCSV": "tuned_awq_bf16_gemm_NN.csv",
"kernels": [
{
"solutionId": 0,
"kernel_name": "Cijk_Ailk_Bljk_BBS_BH_UserArgs_MT64x32x32_SN_K1_PGR6_SB1_TT2_2_WG16_16_2",
"co_file": "Cijk_Ailk_Bljk_BBS_BH_UserArgs_MT64x32x32_SN_K1_PGR6_SB1_TT4_2_w4a16.co",
"Kconfigs": { "mt0": 64, "mt1": 32, "numThreads": 512, "wgm": 1 }
},
{
"solutionId": 1,
"kernel_name": "Cijk_Ailk_Bljk_BBS_BH_UserArgs_MT64x64x32_SN_K1_PGR6_SB1_TT2_2_WG16_16_2",
"co_file": "Cijk_Ailk_Bljk_BBS_BH_UserArgs_MT64x64x32_SN_K1_PGR6_SB1_TT4_2_w4a16.co",
"Kconfigs": { "mt0": 64, "mt1": 64, "numThreads": 512, "wgm": 1 }
},
{
"solutionId": 2,
"kernel_name": "Cijk_Ailk_Bljk_BBS_BH_UserArgs_MT64x128x32_SN_K1_PGR6_SB1_TT2_8_WG16_16_2",
"co_file": "Cijk_Ailk_Bljk_BBS_BH_UserArgs_MT64x128x32_SN_K1_PGR6_SB1_TT4_2_w4a16.co",
"Kconfigs": { "mt0": 64, "mt1": 128, "numThreads": 512, "wgm": 1 }
},
{
"solutionId": 3,
"kernel_name": "Cijk_Ailk_Bljk_BBS_BH_UserArgs_MT16x32x32_SN_K1_PGR6_SB1_TT2_2_WG16_16_2",
"co_file": "Cijk_Ailk_Bljk_BBS_BH_UserArgs_MT16x32x32_SN_K1_PGR6_SB1_TT4_2_w4a16.co",
"Kconfigs": { "mt0": 16, "mt1": 32, "numThreads": 512, "wgm": 1 }
},
{
"solutionId": 4,
"kernel_name": "Cijk_Ailk_Bljk_BBS_BH_UserArgs_MT64x32x32_SN_K1_PGR6_SB1_TT2_2_WG16_16_3",
"co_file": "Cijk_Ailk_Bljk_BBS_BH_UserArgs_MT64x32x32_SN_K1_PGR6_SB1_TT4_2_w4a16_splitK.co",
"Kconfigs": { "mt0": 64, "mt1": 32, "numThreads": 768, "wgm": 1 }
},
{
"solutionId": 5,
"kernel_name": "Cijk_Ailk_Bljk_BBS_BH_UserArgs_MT64x64x32_SN_K1_PGR6_SB1_TT2_2_WG16_16_3",
"co_file": "Cijk_Ailk_Bljk_BBS_BH_UserArgs_MT64x64x32_SN_K1_PGR6_SB1_TT4_2_w4a16_splitK.co",
"Kconfigs": { "mt0": 64, "mt1": 64, "numThreads": 768, "wgm": 1 }
},
{
"solutionId": 6,
"kernel_name": "Cijk_Ailk_Bljk_BBS_BH_UserArgs_MT64x128x32_SN_K1_PGR6_SB1_TT2_2_WG16_16_3",
"co_file": "Cijk_Ailk_Bljk_BBS_BH_UserArgs_MT64x128x32_SN_K1_PGR6_SB1_TT4_2_w4a16_splitK.co",
"Kconfigs": { "mt0": 64, "mt1": 128, "numThreads": 768, "wgm": 1 }
}
],
"Untunedkernels": [
{
"solutionId": 4,
"kernel_name": "Cijk_Ailk_Bljk_BBS_BH_UserArgs_MT32x32x32_SN_K1_PGR6_SB1_TT2_2_WG16_16_3",
"co_file": "Cijk_Ailk_Bljk_BBS_BH_UserArgs_MT32x32x32_SN_K1_PGR6_SB1_TT4_2_w4a16.co",
"Kconfigs": { "mt0": 32, "mt1": 32, "numThreads": 768, "wgm": 1 }
}
]
}
GPU_ARCHS=gfx936 python3 gradlib/gradlib/gemm_tuner.py \
--tuned_file aiter/configs/asm_tune/tuned_awq_gemm_NN.csv \
--inputSols_file aiter/configs/asm_tune/awq_NN_solutions.json \
--input_file aiter/configs/asm_tune/untuned_awqgemm_NN.csv \
--warmupIters 1 --runIters 3 --fastNoCheck 1 --hsacoOnly 1
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
M,N,K,G,bias,dtype,outdtype,scaleAB,awqgemm
1,576,256,64,0,f16,f16,0,1
1,1536,256,64,0,f16,f16,0,1
1,3072,256,64,0,f16,f16,0,1
1,4096,256,64,0,f16,f16,0,1
1,4608,256,64,0,f16,f16,0,1
1,7168,256,64,0,f16,f16,0,1
1,576,512,64,0,f16,f16,0,1
1,1536,512,64,0,f16,f16,0,1
1,3072,512,64,0,f16,f16,0,1
1,4096,512,64,0,f16,f16,0,1
1,4608,512,64,0,f16,f16,0,1
1,7168,512,64,0,f16,f16,0,1
1,576,1536,64,0,f16,f16,0,1
1,1536,1536,64,0,f16,f16,0,1
1,3072,1536,64,0,f16,f16,0,1
1,4096,1536,64,0,f16,f16,0,1
1,4608,1536,64,0,f16,f16,0,1
1,7168,1536,64,0,f16,f16,0,1
1,512,2048,64,0,f16,f16,0,1
1,1536,2048,64,0,f16,f16,0,1
1,3072,2048,64,0,f16,f16,0,1
1,4096,2048,64,0,f16,f16,0,1
1,4608,2048,64,0,f16,f16,0,1
1,7168,2048,64,0,f16,f16,0,1
1,512,2304,64,0,f16,f16,0,1
1,1536,2304,64,0,f16,f16,0,1
1,3072,2304,64,0,f16,f16,0,1
1,4096,2304,64,0,f16,f16,0,1
1,4608,2304,64,0,f16,f16,0,1
1,7168,2304,64,0,f16,f16,0,1
1,512,7168,64,0,f16,f16,0,1
1,1536,7168,64,0,f16,f16,0,1
1,3072,7168,64,0,f16,f16,0,1
1,4096,7168,64,0,f16,f16,0,1
1,4608,7168,64,0,f16,f16,0,1
1,7168,7168,64,0,f16,f16,0,1
2,576,256,64,0,f16,f16,0,1
2,1536,256,64,0,f16,f16,0,1
2,3072,256,64,0,f16,f16,0,1
2,4096,256,64,0,f16,f16,0,1
2,4608,256,64,0,f16,f16,0,1
2,7168,256,64,0,f16,f16,0,1
2,576,512,64,0,f16,f16,0,1
2,1536,512,64,0,f16,f16,0,1
2,3072,512,64,0,f16,f16,0,1
2,4096,512,64,0,f16,f16,0,1
2,4608,512,64,0,f16,f16,0,1
2,7168,512,64,0,f16,f16,0,1
2,576,1536,64,0,f16,f16,0,1
2,1536,1536,64,0,f16,f16,0,1
2,3072,1536,64,0,f16,f16,0,1
2,4096,1536,64,0,f16,f16,0,1
2,4608,1536,64,0,f16,f16,0,1
2,7168,1536,64,0,f16,f16,0,1
2,512,2048,64,0,f16,f16,0,1
2,1536,2048,64,0,f16,f16,0,1
2,3072,2048,64,0,f16,f16,0,1
2,4096,2048,64,0,f16,f16,0,1
2,4608,2048,64,0,f16,f16,0,1
2,7168,2048,64,0,f16,f16,0,1
2,512,2304,64,0,f16,f16,0,1
2,1536,2304,64,0,f16,f16,0,1
2,3072,2304,64,0,f16,f16,0,1
2,4096,2304,64,0,f16,f16,0,1
2,4608,2304,64,0,f16,f16,0,1
2,7168,2304,64,0,f16,f16,0,1
2,512,7168,64,0,f16,f16,0,1
2,1536,7168,64,0,f16,f16,0,1
2,3072,7168,64,0,f16,f16,0,1
2,4096,7168,64,0,f16,f16,0,1
2,4608,7168,64,0,f16,f16,0,1
2,7168,7168,64,0,f16,f16,0,1
3,576,256,64,0,f16,f16,0,1
3,1536,256,64,0,f16,f16,0,1
3,3072,256,64,0,f16,f16,0,1
3,4096,256,64,0,f16,f16,0,1
3,4608,256,64,0,f16,f16,0,1
3,7168,256,64,0,f16,f16,0,1
3,576,512,64,0,f16,f16,0,1
3,1536,512,64,0,f16,f16,0,1
3,3072,512,64,0,f16,f16,0,1
3,4096,512,64,0,f16,f16,0,1
3,4608,512,64,0,f16,f16,0,1
3,7168,512,64,0,f16,f16,0,1
3,576,1536,64,0,f16,f16,0,1
3,1536,1536,64,0,f16,f16,0,1
3,3072,1536,64,0,f16,f16,0,1
3,4096,1536,64,0,f16,f16,0,1
3,4608,1536,64,0,f16,f16,0,1
3,7168,1536,64,0,f16,f16,0,1
3,512,2048,64,0,f16,f16,0,1
3,1536,2048,64,0,f16,f16,0,1
3,3072,2048,64,0,f16,f16,0,1
3,4096,2048,64,0,f16,f16,0,1
3,4608,2048,64,0,f16,f16,0,1
3,7168,2048,64,0,f16,f16,0,1
3,512,2304,64,0,f16,f16,0,1
3,1536,2304,64,0,f16,f16,0,1
3,3072,2304,64,0,f16,f16,0,1
3,4096,2304,64,0,f16,f16,0,1
3,4608,2304,64,0,f16,f16,0,1
3,7168,2304,64,0,f16,f16,0,1
3,512,7168,64,0,f16,f16,0,1
3,1536,7168,64,0,f16,f16,0,1
3,3072,7168,64,0,f16,f16,0,1
3,4096,7168,64,0,f16,f16,0,1
3,4608,7168,64,0,f16,f16,0,1
3,7168,7168,64,0,f16,f16,0,1
4,576,256,64,0,f16,f16,0,1
4,1536,256,64,0,f16,f16,0,1
4,3072,256,64,0,f16,f16,0,1
4,4096,256,64,0,f16,f16,0,1
4,4608,256,64,0,f16,f16,0,1
4,7168,256,64,0,f16,f16,0,1
4,576,512,64,0,f16,f16,0,1
4,1536,512,64,0,f16,f16,0,1
4,3072,512,64,0,f16,f16,0,1
4,4096,512,64,0,f16,f16,0,1
4,4608,512,64,0,f16,f16,0,1
4,7168,512,64,0,f16,f16,0,1
4,576,1536,64,0,f16,f16,0,1
4,1536,1536,64,0,f16,f16,0,1
4,3072,1536,64,0,f16,f16,0,1
4,4096,1536,64,0,f16,f16,0,1
4,4608,1536,64,0,f16,f16,0,1
4,7168,1536,64,0,f16,f16,0,1
4,512,2048,64,0,f16,f16,0,1
4,1536,2048,64,0,f16,f16,0,1
4,3072,2048,64,0,f16,f16,0,1
4,4096,2048,64,0,f16,f16,0,1
4,4608,2048,64,0,f16,f16,0,1
4,7168,2048,64,0,f16,f16,0,1
4,512,2304,64,0,f16,f16,0,1
4,1536,2304,64,0,f16,f16,0,1
4,3072,2304,64,0,f16,f16,0,1
4,4096,2304,64,0,f16,f16,0,1
4,4608,2304,64,0,f16,f16,0,1
4,7168,2304,64,0,f16,f16,0,1
4,512,7168,64,0,f16,f16,0,1
4,1536,7168,64,0,f16,f16,0,1
4,3072,7168,64,0,f16,f16,0,1
4,4096,7168,64,0,f16,f16,0,1
4,4608,7168,64,0,f16,f16,0,1
4,7168,7168,64,0,f16,f16,0,1
5,576,256,64,0,f16,f16,0,1
5,1536,256,64,0,f16,f16,0,1
5,3072,256,64,0,f16,f16,0,1
5,4096,256,64,0,f16,f16,0,1
5,4608,256,64,0,f16,f16,0,1
5,7168,256,64,0,f16,f16,0,1
5,576,512,64,0,f16,f16,0,1
5,1536,512,64,0,f16,f16,0,1
5,3072,512,64,0,f16,f16,0,1
5,4096,512,64,0,f16,f16,0,1
5,4608,512,64,0,f16,f16,0,1
5,7168,512,64,0,f16,f16,0,1
5,576,1536,64,0,f16,f16,0,1
5,1536,1536,64,0,f16,f16,0,1
5,3072,1536,64,0,f16,f16,0,1
5,4096,1536,64,0,f16,f16,0,1
5,4608,1536,64,0,f16,f16,0,1
5,7168,1536,64,0,f16,f16,0,1
5,512,2048,64,0,f16,f16,0,1
5,1536,2048,64,0,f16,f16,0,1
5,3072,2048,64,0,f16,f16,0,1
5,4096,2048,64,0,f16,f16,0,1
5,4608,2048,64,0,f16,f16,0,1
5,7168,2048,64,0,f16,f16,0,1
5,512,2304,64,0,f16,f16,0,1
5,1536,2304,64,0,f16,f16,0,1
5,3072,2304,64,0,f16,f16,0,1
5,4096,2304,64,0,f16,f16,0,1
5,4608,2304,64,0,f16,f16,0,1
5,7168,2304,64,0,f16,f16,0,1
5,512,7168,64,0,f16,f16,0,1
5,1536,7168,64,0,f16,f16,0,1
5,3072,7168,64,0,f16,f16,0,1
5,4096,7168,64,0,f16,f16,0,1
5,4608,7168,64,0,f16,f16,0,1
5,7168,7168,64,0,f16,f16,0,1
6,576,256,64,0,f16,f16,0,1
6,1536,256,64,0,f16,f16,0,1
6,3072,256,64,0,f16,f16,0,1
6,4096,256,64,0,f16,f16,0,1
6,4608,256,64,0,f16,f16,0,1
6,7168,256,64,0,f16,f16,0,1
6,576,512,64,0,f16,f16,0,1
6,1536,512,64,0,f16,f16,0,1
6,3072,512,64,0,f16,f16,0,1
6,4096,512,64,0,f16,f16,0,1
6,4608,512,64,0,f16,f16,0,1
6,7168,512,64,0,f16,f16,0,1
6,576,1536,64,0,f16,f16,0,1
6,1536,1536,64,0,f16,f16,0,1
6,3072,1536,64,0,f16,f16,0,1
6,4096,1536,64,0,f16,f16,0,1
6,4608,1536,64,0,f16,f16,0,1
6,7168,1536,64,0,f16,f16,0,1
6,512,2048,64,0,f16,f16,0,1
6,1536,2048,64,0,f16,f16,0,1
6,3072,2048,64,0,f16,f16,0,1
6,4096,2048,64,0,f16,f16,0,1
6,4608,2048,64,0,f16,f16,0,1
6,7168,2048,64,0,f16,f16,0,1
6,512,2304,64,0,f16,f16,0,1
6,1536,2304,64,0,f16,f16,0,1
6,3072,2304,64,0,f16,f16,0,1
6,4096,2304,64,0,f16,f16,0,1
6,4608,2304,64,0,f16,f16,0,1
6,7168,2304,64,0,f16,f16,0,1
6,512,7168,64,0,f16,f16,0,1
6,1536,7168,64,0,f16,f16,0,1
6,3072,7168,64,0,f16,f16,0,1
6,4096,7168,64,0,f16,f16,0,1
6,4608,7168,64,0,f16,f16,0,1
6,7168,7168,64,0,f16,f16,0,1
7,576,256,64,0,f16,f16,0,1
7,1536,256,64,0,f16,f16,0,1
7,3072,256,64,0,f16,f16,0,1
7,4096,256,64,0,f16,f16,0,1
7,4608,256,64,0,f16,f16,0,1
7,7168,256,64,0,f16,f16,0,1
7,576,512,64,0,f16,f16,0,1
7,1536,512,64,0,f16,f16,0,1
7,3072,512,64,0,f16,f16,0,1
7,4096,512,64,0,f16,f16,0,1
7,4608,512,64,0,f16,f16,0,1
7,7168,512,64,0,f16,f16,0,1
7,576,1536,64,0,f16,f16,0,1
7,1536,1536,64,0,f16,f16,0,1
7,3072,1536,64,0,f16,f16,0,1
7,4096,1536,64,0,f16,f16,0,1
7,4608,1536,64,0,f16,f16,0,1
7,7168,1536,64,0,f16,f16,0,1
7,512,2048,64,0,f16,f16,0,1
7,1536,2048,64,0,f16,f16,0,1
7,3072,2048,64,0,f16,f16,0,1
7,4096,2048,64,0,f16,f16,0,1
7,4608,2048,64,0,f16,f16,0,1
7,7168,2048,64,0,f16,f16,0,1
7,512,2304,64,0,f16,f16,0,1
7,1536,2304,64,0,f16,f16,0,1
7,3072,2304,64,0,f16,f16,0,1
7,4096,2304,64,0,f16,f16,0,1
7,4608,2304,64,0,f16,f16,0,1
7,7168,2304,64,0,f16,f16,0,1
7,512,7168,64,0,f16,f16,0,1
7,1536,7168,64,0,f16,f16,0,1
7,3072,7168,64,0,f16,f16,0,1
7,4096,7168,64,0,f16,f16,0,1
7,4608,7168,64,0,f16,f16,0,1
7,7168,7168,64,0,f16,f16,0,1
8,576,256,64,0,f16,f16,0,1
8,1536,256,64,0,f16,f16,0,1
8,3072,256,64,0,f16,f16,0,1
8,4096,256,64,0,f16,f16,0,1
8,4608,256,64,0,f16,f16,0,1
8,7168,256,64,0,f16,f16,0,1
8,576,512,64,0,f16,f16,0,1
8,1536,512,64,0,f16,f16,0,1
8,3072,512,64,0,f16,f16,0,1
8,4096,512,64,0,f16,f16,0,1
8,4608,512,64,0,f16,f16,0,1
8,7168,512,64,0,f16,f16,0,1
8,576,1536,64,0,f16,f16,0,1
8,1536,1536,64,0,f16,f16,0,1
8,3072,1536,64,0,f16,f16,0,1
8,4096,1536,64,0,f16,f16,0,1
8,4608,1536,64,0,f16,f16,0,1
8,7168,1536,64,0,f16,f16,0,1
8,512,2048,64,0,f16,f16,0,1
8,1536,2048,64,0,f16,f16,0,1
8,3072,2048,64,0,f16,f16,0,1
8,4096,2048,64,0,f16,f16,0,1
8,4608,2048,64,0,f16,f16,0,1
8,7168,2048,64,0,f16,f16,0,1
8,512,2304,64,0,f16,f16,0,1
8,1536,2304,64,0,f16,f16,0,1
8,3072,2304,64,0,f16,f16,0,1
8,4096,2304,64,0,f16,f16,0,1
8,4608,2304,64,0,f16,f16,0,1
8,7168,2304,64,0,f16,f16,0,1
8,512,7168,64,0,f16,f16,0,1
8,1536,7168,64,0,f16,f16,0,1
8,3072,7168,64,0,f16,f16,0,1
8,4096,7168,64,0,f16,f16,0,1
8,4608,7168,64,0,f16,f16,0,1
8,7168,7168,64,0,f16,f16,0,1
9,576,256,64,0,f16,f16,0,1
9,1536,256,64,0,f16,f16,0,1
9,3072,256,64,0,f16,f16,0,1
9,4096,256,64,0,f16,f16,0,1
9,4608,256,64,0,f16,f16,0,1
9,7168,256,64,0,f16,f16,0,1
9,576,512,64,0,f16,f16,0,1
9,1536,512,64,0,f16,f16,0,1
9,3072,512,64,0,f16,f16,0,1
9,4096,512,64,0,f16,f16,0,1
9,4608,512,64,0,f16,f16,0,1
9,7168,512,64,0,f16,f16,0,1
9,576,1536,64,0,f16,f16,0,1
9,1536,1536,64,0,f16,f16,0,1
9,3072,1536,64,0,f16,f16,0,1
9,4096,1536,64,0,f16,f16,0,1
9,4608,1536,64,0,f16,f16,0,1
9,7168,1536,64,0,f16,f16,0,1
9,512,2048,64,0,f16,f16,0,1
9,1536,2048,64,0,f16,f16,0,1
9,3072,2048,64,0,f16,f16,0,1
9,4096,2048,64,0,f16,f16,0,1
9,4608,2048,64,0,f16,f16,0,1
9,7168,2048,64,0,f16,f16,0,1
9,512,2304,64,0,f16,f16,0,1
9,1536,2304,64,0,f16,f16,0,1
9,3072,2304,64,0,f16,f16,0,1
9,4096,2304,64,0,f16,f16,0,1
9,4608,2304,64,0,f16,f16,0,1
9,7168,2304,64,0,f16,f16,0,1
9,512,7168,64,0,f16,f16,0,1
9,1536,7168,64,0,f16,f16,0,1
9,3072,7168,64,0,f16,f16,0,1
9,4096,7168,64,0,f16,f16,0,1
9,4608,7168,64,0,f16,f16,0,1
9,7168,7168,64,0,f16,f16,0,1
10,576,256,64,0,f16,f16,0,1
10,1536,256,64,0,f16,f16,0,1
10,3072,256,64,0,f16,f16,0,1
10,4096,256,64,0,f16,f16,0,1
10,4608,256,64,0,f16,f16,0,1
10,7168,256,64,0,f16,f16,0,1
10,576,512,64,0,f16,f16,0,1
10,1536,512,64,0,f16,f16,0,1
10,3072,512,64,0,f16,f16,0,1
10,4096,512,64,0,f16,f16,0,1
10,4608,512,64,0,f16,f16,0,1
10,7168,512,64,0,f16,f16,0,1
10,576,1536,64,0,f16,f16,0,1
10,1536,1536,64,0,f16,f16,0,1
10,3072,1536,64,0,f16,f16,0,1
10,4096,1536,64,0,f16,f16,0,1
10,4608,1536,64,0,f16,f16,0,1
10,7168,1536,64,0,f16,f16,0,1
10,512,2048,64,0,f16,f16,0,1
10,1536,2048,64,0,f16,f16,0,1
10,3072,2048,64,0,f16,f16,0,1
10,4096,2048,64,0,f16,f16,0,1
10,4608,2048,64,0,f16,f16,0,1
10,7168,2048,64,0,f16,f16,0,1
10,512,2304,64,0,f16,f16,0,1
10,1536,2304,64,0,f16,f16,0,1
10,3072,2304,64,0,f16,f16,0,1
10,4096,2304,64,0,f16,f16,0,1
10,4608,2304,64,0,f16,f16,0,1
10,7168,2304,64,0,f16,f16,0,1
10,512,7168,64,0,f16,f16,0,1
10,1536,7168,64,0,f16,f16,0,1
10,3072,7168,64,0,f16,f16,0,1
10,4096,7168,64,0,f16,f16,0,1
10,4608,7168,64,0,f16,f16,0,1
10,7168,7168,64,0,f16,f16,0,1
11,576,256,64,0,f16,f16,0,1
11,1536,256,64,0,f16,f16,0,1
11,3072,256,64,0,f16,f16,0,1
11,4096,256,64,0,f16,f16,0,1
11,4608,256,64,0,f16,f16,0,1
11,7168,256,64,0,f16,f16,0,1
11,576,512,64,0,f16,f16,0,1
11,1536,512,64,0,f16,f16,0,1
11,3072,512,64,0,f16,f16,0,1
11,4096,512,64,0,f16,f16,0,1
11,4608,512,64,0,f16,f16,0,1
11,7168,512,64,0,f16,f16,0,1
11,576,1536,64,0,f16,f16,0,1
11,1536,1536,64,0,f16,f16,0,1
11,3072,1536,64,0,f16,f16,0,1
11,4096,1536,64,0,f16,f16,0,1
11,4608,1536,64,0,f16,f16,0,1
11,7168,1536,64,0,f16,f16,0,1
11,512,2048,64,0,f16,f16,0,1
11,1536,2048,64,0,f16,f16,0,1
11,3072,2048,64,0,f16,f16,0,1
11,4096,2048,64,0,f16,f16,0,1
11,4608,2048,64,0,f16,f16,0,1
11,7168,2048,64,0,f16,f16,0,1
11,512,2304,64,0,f16,f16,0,1
11,1536,2304,64,0,f16,f16,0,1
11,3072,2304,64,0,f16,f16,0,1
11,4096,2304,64,0,f16,f16,0,1
11,4608,2304,64,0,f16,f16,0,1
11,7168,2304,64,0,f16,f16,0,1
11,512,7168,64,0,f16,f16,0,1
11,1536,7168,64,0,f16,f16,0,1
11,3072,7168,64,0,f16,f16,0,1
11,4096,7168,64,0,f16,f16,0,1
11,4608,7168,64,0,f16,f16,0,1
11,7168,7168,64,0,f16,f16,0,1
12,576,256,64,0,f16,f16,0,1
12,1536,256,64,0,f16,f16,0,1
12,3072,256,64,0,f16,f16,0,1
12,4096,256,64,0,f16,f16,0,1
12,4608,256,64,0,f16,f16,0,1
12,7168,256,64,0,f16,f16,0,1
12,576,512,64,0,f16,f16,0,1
12,1536,512,64,0,f16,f16,0,1
12,3072,512,64,0,f16,f16,0,1
12,4096,512,64,0,f16,f16,0,1
12,4608,512,64,0,f16,f16,0,1
12,7168,512,64,0,f16,f16,0,1
12,576,1536,64,0,f16,f16,0,1
12,1536,1536,64,0,f16,f16,0,1
12,3072,1536,64,0,f16,f16,0,1
12,4096,1536,64,0,f16,f16,0,1
12,4608,1536,64,0,f16,f16,0,1
12,7168,1536,64,0,f16,f16,0,1
12,512,2048,64,0,f16,f16,0,1
12,1536,2048,64,0,f16,f16,0,1
12,3072,2048,64,0,f16,f16,0,1
12,4096,2048,64,0,f16,f16,0,1
12,4608,2048,64,0,f16,f16,0,1
12,7168,2048,64,0,f16,f16,0,1
12,512,2304,64,0,f16,f16,0,1
12,1536,2304,64,0,f16,f16,0,1
12,3072,2304,64,0,f16,f16,0,1
12,4096,2304,64,0,f16,f16,0,1
12,4608,2304,64,0,f16,f16,0,1
12,7168,2304,64,0,f16,f16,0,1
12,512,7168,64,0,f16,f16,0,1
12,1536,7168,64,0,f16,f16,0,1
12,3072,7168,64,0,f16,f16,0,1
12,4096,7168,64,0,f16,f16,0,1
12,4608,7168,64,0,f16,f16,0,1
12,7168,7168,64,0,f16,f16,0,1
13,576,256,64,0,f16,f16,0,1
13,1536,256,64,0,f16,f16,0,1
13,3072,256,64,0,f16,f16,0,1
13,4096,256,64,0,f16,f16,0,1
13,4608,256,64,0,f16,f16,0,1
13,7168,256,64,0,f16,f16,0,1
13,576,512,64,0,f16,f16,0,1
13,1536,512,64,0,f16,f16,0,1
13,3072,512,64,0,f16,f16,0,1
13,4096,512,64,0,f16,f16,0,1
13,4608,512,64,0,f16,f16,0,1
13,7168,512,64,0,f16,f16,0,1
13,576,1536,64,0,f16,f16,0,1
13,1536,1536,64,0,f16,f16,0,1
13,3072,1536,64,0,f16,f16,0,1
13,4096,1536,64,0,f16,f16,0,1
13,4608,1536,64,0,f16,f16,0,1
13,7168,1536,64,0,f16,f16,0,1
13,512,2048,64,0,f16,f16,0,1
13,1536,2048,64,0,f16,f16,0,1
13,3072,2048,64,0,f16,f16,0,1
13,4096,2048,64,0,f16,f16,0,1
13,4608,2048,64,0,f16,f16,0,1
13,7168,2048,64,0,f16,f16,0,1
13,512,2304,64,0,f16,f16,0,1
13,1536,2304,64,0,f16,f16,0,1
13,3072,2304,64,0,f16,f16,0,1
13,4096,2304,64,0,f16,f16,0,1
13,4608,2304,64,0,f16,f16,0,1
13,7168,2304,64,0,f16,f16,0,1
13,512,7168,64,0,f16,f16,0,1
13,1536,7168,64,0,f16,f16,0,1
13,3072,7168,64,0,f16,f16,0,1
13,4096,7168,64,0,f16,f16,0,1
13,4608,7168,64,0,f16,f16,0,1
13,7168,7168,64,0,f16,f16,0,1
14,576,256,64,0,f16,f16,0,1
14,1536,256,64,0,f16,f16,0,1
14,3072,256,64,0,f16,f16,0,1
14,4096,256,64,0,f16,f16,0,1
14,4608,256,64,0,f16,f16,0,1
14,7168,256,64,0,f16,f16,0,1
14,576,512,64,0,f16,f16,0,1
14,1536,512,64,0,f16,f16,0,1
14,3072,512,64,0,f16,f16,0,1
14,4096,512,64,0,f16,f16,0,1
14,4608,512,64,0,f16,f16,0,1
14,7168,512,64,0,f16,f16,0,1
14,576,1536,64,0,f16,f16,0,1
14,1536,1536,64,0,f16,f16,0,1
14,3072,1536,64,0,f16,f16,0,1
14,4096,1536,64,0,f16,f16,0,1
14,4608,1536,64,0,f16,f16,0,1
14,7168,1536,64,0,f16,f16,0,1
14,512,2048,64,0,f16,f16,0,1
14,1536,2048,64,0,f16,f16,0,1
14,3072,2048,64,0,f16,f16,0,1
14,4096,2048,64,0,f16,f16,0,1
14,4608,2048,64,0,f16,f16,0,1
14,7168,2048,64,0,f16,f16,0,1
14,512,2304,64,0,f16,f16,0,1
14,1536,2304,64,0,f16,f16,0,1
14,3072,2304,64,0,f16,f16,0,1
14,4096,2304,64,0,f16,f16,0,1
14,4608,2304,64,0,f16,f16,0,1
14,7168,2304,64,0,f16,f16,0,1
14,512,7168,64,0,f16,f16,0,1
14,1536,7168,64,0,f16,f16,0,1
14,3072,7168,64,0,f16,f16,0,1
14,4096,7168,64,0,f16,f16,0,1
14,4608,7168,64,0,f16,f16,0,1
14,7168,7168,64,0,f16,f16,0,1
15,576,256,64,0,f16,f16,0,1
15,1536,256,64,0,f16,f16,0,1
15,3072,256,64,0,f16,f16,0,1
15,4096,256,64,0,f16,f16,0,1
15,4608,256,64,0,f16,f16,0,1
15,7168,256,64,0,f16,f16,0,1
15,576,512,64,0,f16,f16,0,1
15,1536,512,64,0,f16,f16,0,1
15,3072,512,64,0,f16,f16,0,1
15,4096,512,64,0,f16,f16,0,1
15,4608,512,64,0,f16,f16,0,1
15,7168,512,64,0,f16,f16,0,1
15,576,1536,64,0,f16,f16,0,1
15,1536,1536,64,0,f16,f16,0,1
15,3072,1536,64,0,f16,f16,0,1
15,4096,1536,64,0,f16,f16,0,1
15,4608,1536,64,0,f16,f16,0,1
15,7168,1536,64,0,f16,f16,0,1
15,512,2048,64,0,f16,f16,0,1
15,1536,2048,64,0,f16,f16,0,1
15,3072,2048,64,0,f16,f16,0,1
15,4096,2048,64,0,f16,f16,0,1
15,4608,2048,64,0,f16,f16,0,1
15,7168,2048,64,0,f16,f16,0,1
15,512,2304,64,0,f16,f16,0,1
15,1536,2304,64,0,f16,f16,0,1
15,3072,2304,64,0,f16,f16,0,1
15,4096,2304,64,0,f16,f16,0,1
15,4608,2304,64,0,f16,f16,0,1
15,7168,2304,64,0,f16,f16,0,1
15,512,7168,64,0,f16,f16,0,1
15,1536,7168,64,0,f16,f16,0,1
15,3072,7168,64,0,f16,f16,0,1
15,4096,7168,64,0,f16,f16,0,1
15,4608,7168,64,0,f16,f16,0,1
15,7168,7168,64,0,f16,f16,0,1
16,576,256,64,0,f16,f16,0,1
16,1536,256,64,0,f16,f16,0,1
16,3072,256,64,0,f16,f16,0,1
16,4096,256,64,0,f16,f16,0,1
16,4608,256,64,0,f16,f16,0,1
16,7168,256,64,0,f16,f16,0,1
16,576,512,64,0,f16,f16,0,1
16,1536,512,64,0,f16,f16,0,1
16,3072,512,64,0,f16,f16,0,1
16,4096,512,64,0,f16,f16,0,1
16,4608,512,64,0,f16,f16,0,1
16,7168,512,64,0,f16,f16,0,1
16,576,1536,64,0,f16,f16,0,1
16,1536,1536,64,0,f16,f16,0,1
16,3072,1536,64,0,f16,f16,0,1
16,4096,1536,64,0,f16,f16,0,1
16,4608,1536,64,0,f16,f16,0,1
16,7168,1536,64,0,f16,f16,0,1
16,512,2048,64,0,f16,f16,0,1
16,1536,2048,64,0,f16,f16,0,1
16,3072,2048,64,0,f16,f16,0,1
16,4096,2048,64,0,f16,f16,0,1
16,4608,2048,64,0,f16,f16,0,1
16,7168,2048,64,0,f16,f16,0,1
16,512,2304,64,0,f16,f16,0,1
16,1536,2304,64,0,f16,f16,0,1
16,3072,2304,64,0,f16,f16,0,1
16,4096,2304,64,0,f16,f16,0,1
16,4608,2304,64,0,f16,f16,0,1
16,7168,2304,64,0,f16,f16,0,1
16,512,7168,64,0,f16,f16,0,1
16,1536,7168,64,0,f16,f16,0,1
16,3072,7168,64,0,f16,f16,0,1
16,4096,7168,64,0,f16,f16,0,1
16,4608,7168,64,0,f16,f16,0,1
16,7168,7168,64,0,f16,f16,0,1
17,576,256,64,0,f16,f16,0,1
17,1536,256,64,0,f16,f16,0,1
17,3072,256,64,0,f16,f16,0,1
17,4096,256,64,0,f16,f16,0,1
17,4608,256,64,0,f16,f16,0,1
17,7168,256,64,0,f16,f16,0,1
17,576,512,64,0,f16,f16,0,1
17,1536,512,64,0,f16,f16,0,1
17,3072,512,64,0,f16,f16,0,1
17,4096,512,64,0,f16,f16,0,1
17,4608,512,64,0,f16,f16,0,1
17,7168,512,64,0,f16,f16,0,1
17,576,1536,64,0,f16,f16,0,1
17,1536,1536,64,0,f16,f16,0,1
17,3072,1536,64,0,f16,f16,0,1
17,4096,1536,64,0,f16,f16,0,1
17,4608,1536,64,0,f16,f16,0,1
17,7168,1536,64,0,f16,f16,0,1
17,512,2048,64,0,f16,f16,0,1
17,1536,2048,64,0,f16,f16,0,1
17,3072,2048,64,0,f16,f16,0,1
17,4096,2048,64,0,f16,f16,0,1
17,4608,2048,64,0,f16,f16,0,1
17,7168,2048,64,0,f16,f16,0,1
17,512,2304,64,0,f16,f16,0,1
17,1536,2304,64,0,f16,f16,0,1
17,3072,2304,64,0,f16,f16,0,1
17,4096,2304,64,0,f16,f16,0,1
17,4608,2304,64,0,f16,f16,0,1
17,7168,2304,64,0,f16,f16,0,1
17,512,7168,64,0,f16,f16,0,1
17,1536,7168,64,0,f16,f16,0,1
17,3072,7168,64,0,f16,f16,0,1
17,4096,7168,64,0,f16,f16,0,1
17,4608,7168,64,0,f16,f16,0,1
17,7168,7168,64,0,f16,f16,0,1
18,576,256,64,0,f16,f16,0,1
18,1536,256,64,0,f16,f16,0,1
18,3072,256,64,0,f16,f16,0,1
18,4096,256,64,0,f16,f16,0,1
18,4608,256,64,0,f16,f16,0,1
18,7168,256,64,0,f16,f16,0,1
18,576,512,64,0,f16,f16,0,1
18,1536,512,64,0,f16,f16,0,1
18,3072,512,64,0,f16,f16,0,1
18,4096,512,64,0,f16,f16,0,1
18,4608,512,64,0,f16,f16,0,1
18,7168,512,64,0,f16,f16,0,1
18,576,1536,64,0,f16,f16,0,1
18,1536,1536,64,0,f16,f16,0,1
18,3072,1536,64,0,f16,f16,0,1
18,4096,1536,64,0,f16,f16,0,1
18,4608,1536,64,0,f16,f16,0,1
18,7168,1536,64,0,f16,f16,0,1
18,512,2048,64,0,f16,f16,0,1
18,1536,2048,64,0,f16,f16,0,1
18,3072,2048,64,0,f16,f16,0,1
18,4096,2048,64,0,f16,f16,0,1
18,4608,2048,64,0,f16,f16,0,1
18,7168,2048,64,0,f16,f16,0,1
18,512,2304,64,0,f16,f16,0,1
18,1536,2304,64,0,f16,f16,0,1
18,3072,2304,64,0,f16,f16,0,1
18,4096,2304,64,0,f16,f16,0,1
18,4608,2304,64,0,f16,f16,0,1
18,7168,2304,64,0,f16,f16,0,1
18,512,7168,64,0,f16,f16,0,1
18,1536,7168,64,0,f16,f16,0,1
18,3072,7168,64,0,f16,f16,0,1
18,4096,7168,64,0,f16,f16,0,1
18,4608,7168,64,0,f16,f16,0,1
18,7168,7168,64,0,f16,f16,0,1
19,576,256,64,0,f16,f16,0,1
19,1536,256,64,0,f16,f16,0,1
19,3072,256,64,0,f16,f16,0,1
19,4096,256,64,0,f16,f16,0,1
19,4608,256,64,0,f16,f16,0,1
19,7168,256,64,0,f16,f16,0,1
19,576,512,64,0,f16,f16,0,1
19,1536,512,64,0,f16,f16,0,1
19,3072,512,64,0,f16,f16,0,1
19,4096,512,64,0,f16,f16,0,1
19,4608,512,64,0,f16,f16,0,1
19,7168,512,64,0,f16,f16,0,1
19,576,1536,64,0,f16,f16,0,1
19,1536,1536,64,0,f16,f16,0,1
19,3072,1536,64,0,f16,f16,0,1
19,4096,1536,64,0,f16,f16,0,1
19,4608,1536,64,0,f16,f16,0,1
19,7168,1536,64,0,f16,f16,0,1
19,512,2048,64,0,f16,f16,0,1
19,1536,2048,64,0,f16,f16,0,1
19,3072,2048,64,0,f16,f16,0,1
19,4096,2048,64,0,f16,f16,0,1
19,4608,2048,64,0,f16,f16,0,1
19,7168,2048,64,0,f16,f16,0,1
19,512,2304,64,0,f16,f16,0,1
19,1536,2304,64,0,f16,f16,0,1
19,3072,2304,64,0,f16,f16,0,1
19,4096,2304,64,0,f16,f16,0,1
19,4608,2304,64,0,f16,f16,0,1
19,7168,2304,64,0,f16,f16,0,1
19,512,7168,64,0,f16,f16,0,1
19,1536,7168,64,0,f16,f16,0,1
19,3072,7168,64,0,f16,f16,0,1
19,4096,7168,64,0,f16,f16,0,1
19,4608,7168,64,0,f16,f16,0,1
19,7168,7168,64,0,f16,f16,0,1
20,576,256,64,0,f16,f16,0,1
20,1536,256,64,0,f16,f16,0,1
20,3072,256,64,0,f16,f16,0,1
20,4096,256,64,0,f16,f16,0,1
20,4608,256,64,0,f16,f16,0,1
20,7168,256,64,0,f16,f16,0,1
20,576,512,64,0,f16,f16,0,1
20,1536,512,64,0,f16,f16,0,1
20,3072,512,64,0,f16,f16,0,1
20,4096,512,64,0,f16,f16,0,1
20,4608,512,64,0,f16,f16,0,1
20,7168,512,64,0,f16,f16,0,1
20,576,1536,64,0,f16,f16,0,1
20,1536,1536,64,0,f16,f16,0,1
20,3072,1536,64,0,f16,f16,0,1
20,4096,1536,64,0,f16,f16,0,1
20,4608,1536,64,0,f16,f16,0,1
20,7168,1536,64,0,f16,f16,0,1
20,512,2048,64,0,f16,f16,0,1
20,1536,2048,64,0,f16,f16,0,1
20,3072,2048,64,0,f16,f16,0,1
20,4096,2048,64,0,f16,f16,0,1
20,4608,2048,64,0,f16,f16,0,1
20,7168,2048,64,0,f16,f16,0,1
20,512,2304,64,0,f16,f16,0,1
20,1536,2304,64,0,f16,f16,0,1
20,3072,2304,64,0,f16,f16,0,1
20,4096,2304,64,0,f16,f16,0,1
20,4608,2304,64,0,f16,f16,0,1
20,7168,2304,64,0,f16,f16,0,1
20,512,7168,64,0,f16,f16,0,1
20,1536,7168,64,0,f16,f16,0,1
20,3072,7168,64,0,f16,f16,0,1
20,4096,7168,64,0,f16,f16,0,1
20,4608,7168,64,0,f16,f16,0,1
20,7168,7168,64,0,f16,f16,0,1
21,576,256,64,0,f16,f16,0,1
21,1536,256,64,0,f16,f16,0,1
21,3072,256,64,0,f16,f16,0,1
21,4096,256,64,0,f16,f16,0,1
21,4608,256,64,0,f16,f16,0,1
21,7168,256,64,0,f16,f16,0,1
21,576,512,64,0,f16,f16,0,1
21,1536,512,64,0,f16,f16,0,1
21,3072,512,64,0,f16,f16,0,1
21,4096,512,64,0,f16,f16,0,1
21,4608,512,64,0,f16,f16,0,1
21,7168,512,64,0,f16,f16,0,1
21,576,1536,64,0,f16,f16,0,1
21,1536,1536,64,0,f16,f16,0,1
21,3072,1536,64,0,f16,f16,0,1
21,4096,1536,64,0,f16,f16,0,1
21,4608,1536,64,0,f16,f16,0,1
21,7168,1536,64,0,f16,f16,0,1
21,512,2048,64,0,f16,f16,0,1
21,1536,2048,64,0,f16,f16,0,1
21,3072,2048,64,0,f16,f16,0,1
21,4096,2048,64,0,f16,f16,0,1
21,4608,2048,64,0,f16,f16,0,1
21,7168,2048,64,0,f16,f16,0,1
21,512,2304,64,0,f16,f16,0,1
21,1536,2304,64,0,f16,f16,0,1
21,3072,2304,64,0,f16,f16,0,1
21,4096,2304,64,0,f16,f16,0,1
21,4608,2304,64,0,f16,f16,0,1
21,7168,2304,64,0,f16,f16,0,1
21,512,7168,64,0,f16,f16,0,1
21,1536,7168,64,0,f16,f16,0,1
21,3072,7168,64,0,f16,f16,0,1
21,4096,7168,64,0,f16,f16,0,1
21,4608,7168,64,0,f16,f16,0,1
21,7168,7168,64,0,f16,f16,0,1
22,576,256,64,0,f16,f16,0,1
22,1536,256,64,0,f16,f16,0,1
22,3072,256,64,0,f16,f16,0,1
22,4096,256,64,0,f16,f16,0,1
22,4608,256,64,0,f16,f16,0,1
22,7168,256,64,0,f16,f16,0,1
22,576,512,64,0,f16,f16,0,1
22,1536,512,64,0,f16,f16,0,1
22,3072,512,64,0,f16,f16,0,1
22,4096,512,64,0,f16,f16,0,1
22,4608,512,64,0,f16,f16,0,1
22,7168,512,64,0,f16,f16,0,1
22,576,1536,64,0,f16,f16,0,1
22,1536,1536,64,0,f16,f16,0,1
22,3072,1536,64,0,f16,f16,0,1
22,4096,1536,64,0,f16,f16,0,1
22,4608,1536,64,0,f16,f16,0,1
22,7168,1536,64,0,f16,f16,0,1
22,512,2048,64,0,f16,f16,0,1
22,1536,2048,64,0,f16,f16,0,1
22,3072,2048,64,0,f16,f16,0,1
22,4096,2048,64,0,f16,f16,0,1
22,4608,2048,64,0,f16,f16,0,1
22,7168,2048,64,0,f16,f16,0,1
22,512,2304,64,0,f16,f16,0,1
22,1536,2304,64,0,f16,f16,0,1
22,3072,2304,64,0,f16,f16,0,1
22,4096,2304,64,0,f16,f16,0,1
22,4608,2304,64,0,f16,f16,0,1
22,7168,2304,64,0,f16,f16,0,1
22,512,7168,64,0,f16,f16,0,1
22,1536,7168,64,0,f16,f16,0,1
22,3072,7168,64,0,f16,f16,0,1
22,4096,7168,64,0,f16,f16,0,1
22,4608,7168,64,0,f16,f16,0,1
22,7168,7168,64,0,f16,f16,0,1
23,576,256,64,0,f16,f16,0,1
23,1536,256,64,0,f16,f16,0,1
23,3072,256,64,0,f16,f16,0,1
23,4096,256,64,0,f16,f16,0,1
23,4608,256,64,0,f16,f16,0,1
23,7168,256,64,0,f16,f16,0,1
23,576,512,64,0,f16,f16,0,1
23,1536,512,64,0,f16,f16,0,1
23,3072,512,64,0,f16,f16,0,1
23,4096,512,64,0,f16,f16,0,1
23,4608,512,64,0,f16,f16,0,1
23,7168,512,64,0,f16,f16,0,1
23,576,1536,64,0,f16,f16,0,1
23,1536,1536,64,0,f16,f16,0,1
23,3072,1536,64,0,f16,f16,0,1
23,4096,1536,64,0,f16,f16,0,1
23,4608,1536,64,0,f16,f16,0,1
23,7168,1536,64,0,f16,f16,0,1
23,512,2048,64,0,f16,f16,0,1
23,1536,2048,64,0,f16,f16,0,1
23,3072,2048,64,0,f16,f16,0,1
23,4096,2048,64,0,f16,f16,0,1
23,4608,2048,64,0,f16,f16,0,1
23,7168,2048,64,0,f16,f16,0,1
23,512,2304,64,0,f16,f16,0,1
23,1536,2304,64,0,f16,f16,0,1
23,3072,2304,64,0,f16,f16,0,1
23,4096,2304,64,0,f16,f16,0,1
23,4608,2304,64,0,f16,f16,0,1
23,7168,2304,64,0,f16,f16,0,1
23,512,7168,64,0,f16,f16,0,1
23,1536,7168,64,0,f16,f16,0,1
23,3072,7168,64,0,f16,f16,0,1
23,4096,7168,64,0,f16,f16,0,1
23,4608,7168,64,0,f16,f16,0,1
23,7168,7168,64,0,f16,f16,0,1
24,576,256,64,0,f16,f16,0,1
24,1536,256,64,0,f16,f16,0,1
24,3072,256,64,0,f16,f16,0,1
24,4096,256,64,0,f16,f16,0,1
24,4608,256,64,0,f16,f16,0,1
24,7168,256,64,0,f16,f16,0,1
24,576,512,64,0,f16,f16,0,1
24,1536,512,64,0,f16,f16,0,1
24,3072,512,64,0,f16,f16,0,1
24,4096,512,64,0,f16,f16,0,1
24,4608,512,64,0,f16,f16,0,1
24,7168,512,64,0,f16,f16,0,1
24,576,1536,64,0,f16,f16,0,1
24,1536,1536,64,0,f16,f16,0,1
24,3072,1536,64,0,f16,f16,0,1
24,4096,1536,64,0,f16,f16,0,1
24,4608,1536,64,0,f16,f16,0,1
24,7168,1536,64,0,f16,f16,0,1
24,512,2048,64,0,f16,f16,0,1
24,1536,2048,64,0,f16,f16,0,1
24,3072,2048,64,0,f16,f16,0,1
24,4096,2048,64,0,f16,f16,0,1
24,4608,2048,64,0,f16,f16,0,1
24,7168,2048,64,0,f16,f16,0,1
24,512,2304,64,0,f16,f16,0,1
24,1536,2304,64,0,f16,f16,0,1
24,3072,2304,64,0,f16,f16,0,1
24,4096,2304,64,0,f16,f16,0,1
24,4608,2304,64,0,f16,f16,0,1
24,7168,2304,64,0,f16,f16,0,1
24,512,7168,64,0,f16,f16,0,1
24,1536,7168,64,0,f16,f16,0,1
24,3072,7168,64,0,f16,f16,0,1
24,4096,7168,64,0,f16,f16,0,1
24,4608,7168,64,0,f16,f16,0,1
24,7168,7168,64,0,f16,f16,0,1
25,576,256,64,0,f16,f16,0,1
25,1536,256,64,0,f16,f16,0,1
25,3072,256,64,0,f16,f16,0,1
25,4096,256,64,0,f16,f16,0,1
25,4608,256,64,0,f16,f16,0,1
25,7168,256,64,0,f16,f16,0,1
25,576,512,64,0,f16,f16,0,1
25,1536,512,64,0,f16,f16,0,1
25,3072,512,64,0,f16,f16,0,1
25,4096,512,64,0,f16,f16,0,1
25,4608,512,64,0,f16,f16,0,1
25,7168,512,64,0,f16,f16,0,1
25,576,1536,64,0,f16,f16,0,1
25,1536,1536,64,0,f16,f16,0,1
25,3072,1536,64,0,f16,f16,0,1
25,4096,1536,64,0,f16,f16,0,1
25,4608,1536,64,0,f16,f16,0,1
25,7168,1536,64,0,f16,f16,0,1
25,512,2048,64,0,f16,f16,0,1
25,1536,2048,64,0,f16,f16,0,1
25,3072,2048,64,0,f16,f16,0,1
25,4096,2048,64,0,f16,f16,0,1
25,4608,2048,64,0,f16,f16,0,1
25,7168,2048,64,0,f16,f16,0,1
25,512,2304,64,0,f16,f16,0,1
25,1536,2304,64,0,f16,f16,0,1
25,3072,2304,64,0,f16,f16,0,1
25,4096,2304,64,0,f16,f16,0,1
25,4608,2304,64,0,f16,f16,0,1
25,7168,2304,64,0,f16,f16,0,1
25,512,7168,64,0,f16,f16,0,1
25,1536,7168,64,0,f16,f16,0,1
25,3072,7168,64,0,f16,f16,0,1
25,4096,7168,64,0,f16,f16,0,1
25,4608,7168,64,0,f16,f16,0,1
25,7168,7168,64,0,f16,f16,0,1
26,576,256,64,0,f16,f16,0,1
26,1536,256,64,0,f16,f16,0,1
26,3072,256,64,0,f16,f16,0,1
26,4096,256,64,0,f16,f16,0,1
26,4608,256,64,0,f16,f16,0,1
26,7168,256,64,0,f16,f16,0,1
26,576,512,64,0,f16,f16,0,1
26,1536,512,64,0,f16,f16,0,1
26,3072,512,64,0,f16,f16,0,1
26,4096,512,64,0,f16,f16,0,1
26,4608,512,64,0,f16,f16,0,1
26,7168,512,64,0,f16,f16,0,1
26,576,1536,64,0,f16,f16,0,1
26,1536,1536,64,0,f16,f16,0,1
26,3072,1536,64,0,f16,f16,0,1
26,4096,1536,64,0,f16,f16,0,1
26,4608,1536,64,0,f16,f16,0,1
26,7168,1536,64,0,f16,f16,0,1
26,512,2048,64,0,f16,f16,0,1
26,1536,2048,64,0,f16,f16,0,1
26,3072,2048,64,0,f16,f16,0,1
26,4096,2048,64,0,f16,f16,0,1
26,4608,2048,64,0,f16,f16,0,1
26,7168,2048,64,0,f16,f16,0,1
26,512,2304,64,0,f16,f16,0,1
26,1536,2304,64,0,f16,f16,0,1
26,3072,2304,64,0,f16,f16,0,1
26,4096,2304,64,0,f16,f16,0,1
26,4608,2304,64,0,f16,f16,0,1
26,7168,2304,64,0,f16,f16,0,1
26,512,7168,64,0,f16,f16,0,1
26,1536,7168,64,0,f16,f16,0,1
26,3072,7168,64,0,f16,f16,0,1
26,4096,7168,64,0,f16,f16,0,1
26,4608,7168,64,0,f16,f16,0,1
26,7168,7168,64,0,f16,f16,0,1
27,576,256,64,0,f16,f16,0,1
27,1536,256,64,0,f16,f16,0,1
27,3072,256,64,0,f16,f16,0,1
27,4096,256,64,0,f16,f16,0,1
27,4608,256,64,0,f16,f16,0,1
27,7168,256,64,0,f16,f16,0,1
27,576,512,64,0,f16,f16,0,1
27,1536,512,64,0,f16,f16,0,1
27,3072,512,64,0,f16,f16,0,1
27,4096,512,64,0,f16,f16,0,1
27,4608,512,64,0,f16,f16,0,1
27,7168,512,64,0,f16,f16,0,1
27,576,1536,64,0,f16,f16,0,1
27,1536,1536,64,0,f16,f16,0,1
27,3072,1536,64,0,f16,f16,0,1
27,4096,1536,64,0,f16,f16,0,1
27,4608,1536,64,0,f16,f16,0,1
27,7168,1536,64,0,f16,f16,0,1
27,512,2048,64,0,f16,f16,0,1
27,1536,2048,64,0,f16,f16,0,1
27,3072,2048,64,0,f16,f16,0,1
27,4096,2048,64,0,f16,f16,0,1
27,4608,2048,64,0,f16,f16,0,1
27,7168,2048,64,0,f16,f16,0,1
27,512,2304,64,0,f16,f16,0,1
27,1536,2304,64,0,f16,f16,0,1
27,3072,2304,64,0,f16,f16,0,1
27,4096,2304,64,0,f16,f16,0,1
27,4608,2304,64,0,f16,f16,0,1
27,7168,2304,64,0,f16,f16,0,1
27,512,7168,64,0,f16,f16,0,1
27,1536,7168,64,0,f16,f16,0,1
27,3072,7168,64,0,f16,f16,0,1
27,4096,7168,64,0,f16,f16,0,1
27,4608,7168,64,0,f16,f16,0,1
27,7168,7168,64,0,f16,f16,0,1
28,576,256,64,0,f16,f16,0,1
28,1536,256,64,0,f16,f16,0,1
28,3072,256,64,0,f16,f16,0,1
28,4096,256,64,0,f16,f16,0,1
28,4608,256,64,0,f16,f16,0,1
28,7168,256,64,0,f16,f16,0,1
28,576,512,64,0,f16,f16,0,1
28,1536,512,64,0,f16,f16,0,1
28,3072,512,64,0,f16,f16,0,1
28,4096,512,64,0,f16,f16,0,1
28,4608,512,64,0,f16,f16,0,1
28,7168,512,64,0,f16,f16,0,1
28,576,1536,64,0,f16,f16,0,1
28,1536,1536,64,0,f16,f16,0,1
28,3072,1536,64,0,f16,f16,0,1
28,4096,1536,64,0,f16,f16,0,1
28,4608,1536,64,0,f16,f16,0,1
28,7168,1536,64,0,f16,f16,0,1
28,512,2048,64,0,f16,f16,0,1
28,1536,2048,64,0,f16,f16,0,1
28,3072,2048,64,0,f16,f16,0,1
28,4096,2048,64,0,f16,f16,0,1
28,4608,2048,64,0,f16,f16,0,1
28,7168,2048,64,0,f16,f16,0,1
28,512,2304,64,0,f16,f16,0,1
28,1536,2304,64,0,f16,f16,0,1
28,3072,2304,64,0,f16,f16,0,1
28,4096,2304,64,0,f16,f16,0,1
28,4608,2304,64,0,f16,f16,0,1
28,7168,2304,64,0,f16,f16,0,1
28,512,7168,64,0,f16,f16,0,1
28,1536,7168,64,0,f16,f16,0,1
28,3072,7168,64,0,f16,f16,0,1
28,4096,7168,64,0,f16,f16,0,1
28,4608,7168,64,0,f16,f16,0,1
28,7168,7168,64,0,f16,f16,0,1
29,576,256,64,0,f16,f16,0,1
29,1536,256,64,0,f16,f16,0,1
29,3072,256,64,0,f16,f16,0,1
29,4096,256,64,0,f16,f16,0,1
29,4608,256,64,0,f16,f16,0,1
29,7168,256,64,0,f16,f16,0,1
29,576,512,64,0,f16,f16,0,1
29,1536,512,64,0,f16,f16,0,1
29,3072,512,64,0,f16,f16,0,1
29,4096,512,64,0,f16,f16,0,1
29,4608,512,64,0,f16,f16,0,1
29,7168,512,64,0,f16,f16,0,1
29,576,1536,64,0,f16,f16,0,1
29,1536,1536,64,0,f16,f16,0,1
29,3072,1536,64,0,f16,f16,0,1
29,4096,1536,64,0,f16,f16,0,1
29,4608,1536,64,0,f16,f16,0,1
29,7168,1536,64,0,f16,f16,0,1
29,512,2048,64,0,f16,f16,0,1
29,1536,2048,64,0,f16,f16,0,1
29,3072,2048,64,0,f16,f16,0,1
29,4096,2048,64,0,f16,f16,0,1
29,4608,2048,64,0,f16,f16,0,1
29,7168,2048,64,0,f16,f16,0,1
29,512,2304,64,0,f16,f16,0,1
29,1536,2304,64,0,f16,f16,0,1
29,3072,2304,64,0,f16,f16,0,1
29,4096,2304,64,0,f16,f16,0,1
29,4608,2304,64,0,f16,f16,0,1
29,7168,2304,64,0,f16,f16,0,1
29,512,7168,64,0,f16,f16,0,1
29,1536,7168,64,0,f16,f16,0,1
29,3072,7168,64,0,f16,f16,0,1
29,4096,7168,64,0,f16,f16,0,1
29,4608,7168,64,0,f16,f16,0,1
29,7168,7168,64,0,f16,f16,0,1
30,576,256,64,0,f16,f16,0,1
30,1536,256,64,0,f16,f16,0,1
30,3072,256,64,0,f16,f16,0,1
30,4096,256,64,0,f16,f16,0,1
30,4608,256,64,0,f16,f16,0,1
30,7168,256,64,0,f16,f16,0,1
30,576,512,64,0,f16,f16,0,1
30,1536,512,64,0,f16,f16,0,1
30,3072,512,64,0,f16,f16,0,1
30,4096,512,64,0,f16,f16,0,1
30,4608,512,64,0,f16,f16,0,1
30,7168,512,64,0,f16,f16,0,1
30,576,1536,64,0,f16,f16,0,1
30,1536,1536,64,0,f16,f16,0,1
30,3072,1536,64,0,f16,f16,0,1
30,4096,1536,64,0,f16,f16,0,1
30,4608,1536,64,0,f16,f16,0,1
30,7168,1536,64,0,f16,f16,0,1
30,512,2048,64,0,f16,f16,0,1
30,1536,2048,64,0,f16,f16,0,1
30,3072,2048,64,0,f16,f16,0,1
30,4096,2048,64,0,f16,f16,0,1
30,4608,2048,64,0,f16,f16,0,1
30,7168,2048,64,0,f16,f16,0,1
30,512,2304,64,0,f16,f16,0,1
30,1536,2304,64,0,f16,f16,0,1
30,3072,2304,64,0,f16,f16,0,1
30,4096,2304,64,0,f16,f16,0,1
30,4608,2304,64,0,f16,f16,0,1
30,7168,2304,64,0,f16,f16,0,1
30,512,7168,64,0,f16,f16,0,1
30,1536,7168,64,0,f16,f16,0,1
30,3072,7168,64,0,f16,f16,0,1
30,4096,7168,64,0,f16,f16,0,1
30,4608,7168,64,0,f16,f16,0,1
30,7168,7168,64,0,f16,f16,0,1
31,576,256,64,0,f16,f16,0,1
31,1536,256,64,0,f16,f16,0,1
31,3072,256,64,0,f16,f16,0,1
31,4096,256,64,0,f16,f16,0,1
31,4608,256,64,0,f16,f16,0,1
31,7168,256,64,0,f16,f16,0,1
31,576,512,64,0,f16,f16,0,1
31,1536,512,64,0,f16,f16,0,1
31,3072,512,64,0,f16,f16,0,1
31,4096,512,64,0,f16,f16,0,1
31,4608,512,64,0,f16,f16,0,1
31,7168,512,64,0,f16,f16,0,1
31,576,1536,64,0,f16,f16,0,1
31,1536,1536,64,0,f16,f16,0,1
31,3072,1536,64,0,f16,f16,0,1
31,4096,1536,64,0,f16,f16,0,1
31,4608,1536,64,0,f16,f16,0,1
31,7168,1536,64,0,f16,f16,0,1
31,512,2048,64,0,f16,f16,0,1
31,1536,2048,64,0,f16,f16,0,1
31,3072,2048,64,0,f16,f16,0,1
31,4096,2048,64,0,f16,f16,0,1
31,4608,2048,64,0,f16,f16,0,1
31,7168,2048,64,0,f16,f16,0,1
31,512,2304,64,0,f16,f16,0,1
31,1536,2304,64,0,f16,f16,0,1
31,3072,2304,64,0,f16,f16,0,1
31,4096,2304,64,0,f16,f16,0,1
31,4608,2304,64,0,f16,f16,0,1
31,7168,2304,64,0,f16,f16,0,1
31,512,7168,64,0,f16,f16,0,1
31,1536,7168,64,0,f16,f16,0,1
31,3072,7168,64,0,f16,f16,0,1
31,4096,7168,64,0,f16,f16,0,1
31,4608,7168,64,0,f16,f16,0,1
31,7168,7168,64,0,f16,f16,0,1
32,576,256,64,0,f16,f16,0,1
32,1536,256,64,0,f16,f16,0,1
32,3072,256,64,0,f16,f16,0,1
32,4096,256,64,0,f16,f16,0,1
32,4608,256,64,0,f16,f16,0,1
32,7168,256,64,0,f16,f16,0,1
32,576,512,64,0,f16,f16,0,1
32,1536,512,64,0,f16,f16,0,1
32,3072,512,64,0,f16,f16,0,1
32,4096,512,64,0,f16,f16,0,1
32,4608,512,64,0,f16,f16,0,1
32,7168,512,64,0,f16,f16,0,1
32,576,1536,64,0,f16,f16,0,1
32,1536,1536,64,0,f16,f16,0,1
32,3072,1536,64,0,f16,f16,0,1
32,4096,1536,64,0,f16,f16,0,1
32,4608,1536,64,0,f16,f16,0,1
32,7168,1536,64,0,f16,f16,0,1
32,512,2048,64,0,f16,f16,0,1
32,1536,2048,64,0,f16,f16,0,1
32,3072,2048,64,0,f16,f16,0,1
32,4096,2048,64,0,f16,f16,0,1
32,4608,2048,64,0,f16,f16,0,1
32,7168,2048,64,0,f16,f16,0,1
32,512,2304,64,0,f16,f16,0,1
32,1536,2304,64,0,f16,f16,0,1
32,3072,2304,64,0,f16,f16,0,1
32,4096,2304,64,0,f16,f16,0,1
32,4608,2304,64,0,f16,f16,0,1
32,7168,2304,64,0,f16,f16,0,1
32,512,7168,64,0,f16,f16,0,1
32,1536,7168,64,0,f16,f16,0,1
32,3072,7168,64,0,f16,f16,0,1
32,4096,7168,64,0,f16,f16,0,1
32,4608,7168,64,0,f16,f16,0,1
32,7168,7168,64,0,f16,f16,0,1
33,576,256,64,0,f16,f16,0,1
33,1536,256,64,0,f16,f16,0,1
33,3072,256,64,0,f16,f16,0,1
33,4096,256,64,0,f16,f16,0,1
33,4608,256,64,0,f16,f16,0,1
33,7168,256,64,0,f16,f16,0,1
33,576,512,64,0,f16,f16,0,1
33,1536,512,64,0,f16,f16,0,1
33,3072,512,64,0,f16,f16,0,1
33,4096,512,64,0,f16,f16,0,1
33,4608,512,64,0,f16,f16,0,1
33,7168,512,64,0,f16,f16,0,1
33,576,1536,64,0,f16,f16,0,1
33,1536,1536,64,0,f16,f16,0,1
33,3072,1536,64,0,f16,f16,0,1
33,4096,1536,64,0,f16,f16,0,1
33,4608,1536,64,0,f16,f16,0,1
33,7168,1536,64,0,f16,f16,0,1
33,512,2048,64,0,f16,f16,0,1
33,1536,2048,64,0,f16,f16,0,1
33,3072,2048,64,0,f16,f16,0,1
33,4096,2048,64,0,f16,f16,0,1
33,4608,2048,64,0,f16,f16,0,1
33,7168,2048,64,0,f16,f16,0,1
33,512,2304,64,0,f16,f16,0,1
33,1536,2304,64,0,f16,f16,0,1
33,3072,2304,64,0,f16,f16,0,1
33,4096,2304,64,0,f16,f16,0,1
33,4608,2304,64,0,f16,f16,0,1
33,7168,2304,64,0,f16,f16,0,1
33,512,7168,64,0,f16,f16,0,1
33,1536,7168,64,0,f16,f16,0,1
33,3072,7168,64,0,f16,f16,0,1
33,4096,7168,64,0,f16,f16,0,1
33,4608,7168,64,0,f16,f16,0,1
33,7168,7168,64,0,f16,f16,0,1
34,576,256,64,0,f16,f16,0,1
34,1536,256,64,0,f16,f16,0,1
34,3072,256,64,0,f16,f16,0,1
34,4096,256,64,0,f16,f16,0,1
34,4608,256,64,0,f16,f16,0,1
34,7168,256,64,0,f16,f16,0,1
34,576,512,64,0,f16,f16,0,1
34,1536,512,64,0,f16,f16,0,1
34,3072,512,64,0,f16,f16,0,1
34,4096,512,64,0,f16,f16,0,1
34,4608,512,64,0,f16,f16,0,1
34,7168,512,64,0,f16,f16,0,1
34,576,1536,64,0,f16,f16,0,1
34,1536,1536,64,0,f16,f16,0,1
34,3072,1536,64,0,f16,f16,0,1
34,4096,1536,64,0,f16,f16,0,1
34,4608,1536,64,0,f16,f16,0,1
34,7168,1536,64,0,f16,f16,0,1
34,512,2048,64,0,f16,f16,0,1
34,1536,2048,64,0,f16,f16,0,1
34,3072,2048,64,0,f16,f16,0,1
34,4096,2048,64,0,f16,f16,0,1
34,4608,2048,64,0,f16,f16,0,1
34,7168,2048,64,0,f16,f16,0,1
34,512,2304,64,0,f16,f16,0,1
34,1536,2304,64,0,f16,f16,0,1
34,3072,2304,64,0,f16,f16,0,1
34,4096,2304,64,0,f16,f16,0,1
34,4608,2304,64,0,f16,f16,0,1
34,7168,2304,64,0,f16,f16,0,1
34,512,7168,64,0,f16,f16,0,1
34,1536,7168,64,0,f16,f16,0,1
34,3072,7168,64,0,f16,f16,0,1
34,4096,7168,64,0,f16,f16,0,1
34,4608,7168,64,0,f16,f16,0,1
34,7168,7168,64,0,f16,f16,0,1
35,576,256,64,0,f16,f16,0,1
35,1536,256,64,0,f16,f16,0,1
35,3072,256,64,0,f16,f16,0,1
35,4096,256,64,0,f16,f16,0,1
35,4608,256,64,0,f16,f16,0,1
35,7168,256,64,0,f16,f16,0,1
35,576,512,64,0,f16,f16,0,1
35,1536,512,64,0,f16,f16,0,1
35,3072,512,64,0,f16,f16,0,1
35,4096,512,64,0,f16,f16,0,1
35,4608,512,64,0,f16,f16,0,1
35,7168,512,64,0,f16,f16,0,1
35,576,1536,64,0,f16,f16,0,1
35,1536,1536,64,0,f16,f16,0,1
35,3072,1536,64,0,f16,f16,0,1
35,4096,1536,64,0,f16,f16,0,1
35,4608,1536,64,0,f16,f16,0,1
35,7168,1536,64,0,f16,f16,0,1
35,512,2048,64,0,f16,f16,0,1
35,1536,2048,64,0,f16,f16,0,1
35,3072,2048,64,0,f16,f16,0,1
35,4096,2048,64,0,f16,f16,0,1
35,4608,2048,64,0,f16,f16,0,1
35,7168,2048,64,0,f16,f16,0,1
35,512,2304,64,0,f16,f16,0,1
35,1536,2304,64,0,f16,f16,0,1
35,3072,2304,64,0,f16,f16,0,1
35,4096,2304,64,0,f16,f16,0,1
35,4608,2304,64,0,f16,f16,0,1
35,7168,2304,64,0,f16,f16,0,1
35,512,7168,64,0,f16,f16,0,1
35,1536,7168,64,0,f16,f16,0,1
35,3072,7168,64,0,f16,f16,0,1
35,4096,7168,64,0,f16,f16,0,1
35,4608,7168,64,0,f16,f16,0,1
35,7168,7168,64,0,f16,f16,0,1
36,576,256,64,0,f16,f16,0,1
36,1536,256,64,0,f16,f16,0,1
36,3072,256,64,0,f16,f16,0,1
36,4096,256,64,0,f16,f16,0,1
36,4608,256,64,0,f16,f16,0,1
36,7168,256,64,0,f16,f16,0,1
36,576,512,64,0,f16,f16,0,1
36,1536,512,64,0,f16,f16,0,1
36,3072,512,64,0,f16,f16,0,1
36,4096,512,64,0,f16,f16,0,1
36,4608,512,64,0,f16,f16,0,1
36,7168,512,64,0,f16,f16,0,1
36,576,1536,64,0,f16,f16,0,1
36,1536,1536,64,0,f16,f16,0,1
36,3072,1536,64,0,f16,f16,0,1
36,4096,1536,64,0,f16,f16,0,1
36,4608,1536,64,0,f16,f16,0,1
36,7168,1536,64,0,f16,f16,0,1
36,512,2048,64,0,f16,f16,0,1
36,1536,2048,64,0,f16,f16,0,1
36,3072,2048,64,0,f16,f16,0,1
36,4096,2048,64,0,f16,f16,0,1
36,4608,2048,64,0,f16,f16,0,1
36,7168,2048,64,0,f16,f16,0,1
36,512,2304,64,0,f16,f16,0,1
36,1536,2304,64,0,f16,f16,0,1
36,3072,2304,64,0,f16,f16,0,1
36,4096,2304,64,0,f16,f16,0,1
36,4608,2304,64,0,f16,f16,0,1
36,7168,2304,64,0,f16,f16,0,1
36,512,7168,64,0,f16,f16,0,1
36,1536,7168,64,0,f16,f16,0,1
36,3072,7168,64,0,f16,f16,0,1
36,4096,7168,64,0,f16,f16,0,1
36,4608,7168,64,0,f16,f16,0,1
36,7168,7168,64,0,f16,f16,0,1
37,576,256,64,0,f16,f16,0,1
37,1536,256,64,0,f16,f16,0,1
37,3072,256,64,0,f16,f16,0,1
37,4096,256,64,0,f16,f16,0,1
37,4608,256,64,0,f16,f16,0,1
37,7168,256,64,0,f16,f16,0,1
37,576,512,64,0,f16,f16,0,1
37,1536,512,64,0,f16,f16,0,1
37,3072,512,64,0,f16,f16,0,1
37,4096,512,64,0,f16,f16,0,1
37,4608,512,64,0,f16,f16,0,1
37,7168,512,64,0,f16,f16,0,1
37,576,1536,64,0,f16,f16,0,1
37,1536,1536,64,0,f16,f16,0,1
37,3072,1536,64,0,f16,f16,0,1
37,4096,1536,64,0,f16,f16,0,1
37,4608,1536,64,0,f16,f16,0,1
37,7168,1536,64,0,f16,f16,0,1
37,512,2048,64,0,f16,f16,0,1
37,1536,2048,64,0,f16,f16,0,1
37,3072,2048,64,0,f16,f16,0,1
37,4096,2048,64,0,f16,f16,0,1
37,4608,2048,64,0,f16,f16,0,1
37,7168,2048,64,0,f16,f16,0,1
37,512,2304,64,0,f16,f16,0,1
37,1536,2304,64,0,f16,f16,0,1
37,3072,2304,64,0,f16,f16,0,1
37,4096,2304,64,0,f16,f16,0,1
37,4608,2304,64,0,f16,f16,0,1
37,7168,2304,64,0,f16,f16,0,1
37,512,7168,64,0,f16,f16,0,1
37,1536,7168,64,0,f16,f16,0,1
37,3072,7168,64,0,f16,f16,0,1
37,4096,7168,64,0,f16,f16,0,1
37,4608,7168,64,0,f16,f16,0,1
37,7168,7168,64,0,f16,f16,0,1
38,576,256,64,0,f16,f16,0,1
38,1536,256,64,0,f16,f16,0,1
38,3072,256,64,0,f16,f16,0,1
38,4096,256,64,0,f16,f16,0,1
38,4608,256,64,0,f16,f16,0,1
38,7168,256,64,0,f16,f16,0,1
38,576,512,64,0,f16,f16,0,1
38,1536,512,64,0,f16,f16,0,1
38,3072,512,64,0,f16,f16,0,1
38,4096,512,64,0,f16,f16,0,1
38,4608,512,64,0,f16,f16,0,1
38,7168,512,64,0,f16,f16,0,1
38,576,1536,64,0,f16,f16,0,1
38,1536,1536,64,0,f16,f16,0,1
38,3072,1536,64,0,f16,f16,0,1
38,4096,1536,64,0,f16,f16,0,1
38,4608,1536,64,0,f16,f16,0,1
38,7168,1536,64,0,f16,f16,0,1
38,512,2048,64,0,f16,f16,0,1
38,1536,2048,64,0,f16,f16,0,1
38,3072,2048,64,0,f16,f16,0,1
38,4096,2048,64,0,f16,f16,0,1
38,4608,2048,64,0,f16,f16,0,1
38,7168,2048,64,0,f16,f16,0,1
38,512,2304,64,0,f16,f16,0,1
38,1536,2304,64,0,f16,f16,0,1
38,3072,2304,64,0,f16,f16,0,1
38,4096,2304,64,0,f16,f16,0,1
38,4608,2304,64,0,f16,f16,0,1
38,7168,2304,64,0,f16,f16,0,1
38,512,7168,64,0,f16,f16,0,1
38,1536,7168,64,0,f16,f16,0,1
38,3072,7168,64,0,f16,f16,0,1
38,4096,7168,64,0,f16,f16,0,1
38,4608,7168,64,0,f16,f16,0,1
38,7168,7168,64,0,f16,f16,0,1
39,576,256,64,0,f16,f16,0,1
39,1536,256,64,0,f16,f16,0,1
39,3072,256,64,0,f16,f16,0,1
39,4096,256,64,0,f16,f16,0,1
39,4608,256,64,0,f16,f16,0,1
39,7168,256,64,0,f16,f16,0,1
39,576,512,64,0,f16,f16,0,1
39,1536,512,64,0,f16,f16,0,1
39,3072,512,64,0,f16,f16,0,1
39,4096,512,64,0,f16,f16,0,1
39,4608,512,64,0,f16,f16,0,1
39,7168,512,64,0,f16,f16,0,1
39,576,1536,64,0,f16,f16,0,1
39,1536,1536,64,0,f16,f16,0,1
39,3072,1536,64,0,f16,f16,0,1
39,4096,1536,64,0,f16,f16,0,1
39,4608,1536,64,0,f16,f16,0,1
39,7168,1536,64,0,f16,f16,0,1
39,512,2048,64,0,f16,f16,0,1
39,1536,2048,64,0,f16,f16,0,1
39,3072,2048,64,0,f16,f16,0,1
39,4096,2048,64,0,f16,f16,0,1
39,4608,2048,64,0,f16,f16,0,1
39,7168,2048,64,0,f16,f16,0,1
39,512,2304,64,0,f16,f16,0,1
39,1536,2304,64,0,f16,f16,0,1
39,3072,2304,64,0,f16,f16,0,1
39,4096,2304,64,0,f16,f16,0,1
39,4608,2304,64,0,f16,f16,0,1
39,7168,2304,64,0,f16,f16,0,1
39,512,7168,64,0,f16,f16,0,1
39,1536,7168,64,0,f16,f16,0,1
39,3072,7168,64,0,f16,f16,0,1
39,4096,7168,64,0,f16,f16,0,1
39,4608,7168,64,0,f16,f16,0,1
39,7168,7168,64,0,f16,f16,0,1
40,576,256,64,0,f16,f16,0,1
40,1536,256,64,0,f16,f16,0,1
40,3072,256,64,0,f16,f16,0,1
40,4096,256,64,0,f16,f16,0,1
40,4608,256,64,0,f16,f16,0,1
40,7168,256,64,0,f16,f16,0,1
40,576,512,64,0,f16,f16,0,1
40,1536,512,64,0,f16,f16,0,1
40,3072,512,64,0,f16,f16,0,1
40,4096,512,64,0,f16,f16,0,1
40,4608,512,64,0,f16,f16,0,1
40,7168,512,64,0,f16,f16,0,1
40,576,1536,64,0,f16,f16,0,1
40,1536,1536,64,0,f16,f16,0,1
40,3072,1536,64,0,f16,f16,0,1
40,4096,1536,64,0,f16,f16,0,1
40,4608,1536,64,0,f16,f16,0,1
40,7168,1536,64,0,f16,f16,0,1
40,512,2048,64,0,f16,f16,0,1
40,1536,2048,64,0,f16,f16,0,1
40,3072,2048,64,0,f16,f16,0,1
40,4096,2048,64,0,f16,f16,0,1
40,4608,2048,64,0,f16,f16,0,1
40,7168,2048,64,0,f16,f16,0,1
40,512,2304,64,0,f16,f16,0,1
40,1536,2304,64,0,f16,f16,0,1
40,3072,2304,64,0,f16,f16,0,1
40,4096,2304,64,0,f16,f16,0,1
40,4608,2304,64,0,f16,f16,0,1
40,7168,2304,64,0,f16,f16,0,1
40,512,7168,64,0,f16,f16,0,1
40,1536,7168,64,0,f16,f16,0,1
40,3072,7168,64,0,f16,f16,0,1
40,4096,7168,64,0,f16,f16,0,1
40,4608,7168,64,0,f16,f16,0,1
40,7168,7168,64,0,f16,f16,0,1
41,576,256,64,0,f16,f16,0,1
41,1536,256,64,0,f16,f16,0,1
41,3072,256,64,0,f16,f16,0,1
41,4096,256,64,0,f16,f16,0,1
41,4608,256,64,0,f16,f16,0,1
41,7168,256,64,0,f16,f16,0,1
41,576,512,64,0,f16,f16,0,1
41,1536,512,64,0,f16,f16,0,1
41,3072,512,64,0,f16,f16,0,1
41,4096,512,64,0,f16,f16,0,1
41,4608,512,64,0,f16,f16,0,1
41,7168,512,64,0,f16,f16,0,1
41,576,1536,64,0,f16,f16,0,1
41,1536,1536,64,0,f16,f16,0,1
41,3072,1536,64,0,f16,f16,0,1
41,4096,1536,64,0,f16,f16,0,1
41,4608,1536,64,0,f16,f16,0,1
41,7168,1536,64,0,f16,f16,0,1
41,512,2048,64,0,f16,f16,0,1
41,1536,2048,64,0,f16,f16,0,1
41,3072,2048,64,0,f16,f16,0,1
41,4096,2048,64,0,f16,f16,0,1
41,4608,2048,64,0,f16,f16,0,1
41,7168,2048,64,0,f16,f16,0,1
41,512,2304,64,0,f16,f16,0,1
41,1536,2304,64,0,f16,f16,0,1
41,3072,2304,64,0,f16,f16,0,1
41,4096,2304,64,0,f16,f16,0,1
41,4608,2304,64,0,f16,f16,0,1
41,7168,2304,64,0,f16,f16,0,1
41,512,7168,64,0,f16,f16,0,1
41,1536,7168,64,0,f16,f16,0,1
41,3072,7168,64,0,f16,f16,0,1
41,4096,7168,64,0,f16,f16,0,1
41,4608,7168,64,0,f16,f16,0,1
41,7168,7168,64,0,f16,f16,0,1
42,576,256,64,0,f16,f16,0,1
42,1536,256,64,0,f16,f16,0,1
42,3072,256,64,0,f16,f16,0,1
42,4096,256,64,0,f16,f16,0,1
42,4608,256,64,0,f16,f16,0,1
42,7168,256,64,0,f16,f16,0,1
42,576,512,64,0,f16,f16,0,1
42,1536,512,64,0,f16,f16,0,1
42,3072,512,64,0,f16,f16,0,1
42,4096,512,64,0,f16,f16,0,1
42,4608,512,64,0,f16,f16,0,1
42,7168,512,64,0,f16,f16,0,1
42,576,1536,64,0,f16,f16,0,1
42,1536,1536,64,0,f16,f16,0,1
42,3072,1536,64,0,f16,f16,0,1
42,4096,1536,64,0,f16,f16,0,1
42,4608,1536,64,0,f16,f16,0,1
42,7168,1536,64,0,f16,f16,0,1
42,512,2048,64,0,f16,f16,0,1
42,1536,2048,64,0,f16,f16,0,1
42,3072,2048,64,0,f16,f16,0,1
42,4096,2048,64,0,f16,f16,0,1
42,4608,2048,64,0,f16,f16,0,1
42,7168,2048,64,0,f16,f16,0,1
42,512,2304,64,0,f16,f16,0,1
42,1536,2304,64,0,f16,f16,0,1
42,3072,2304,64,0,f16,f16,0,1
42,4096,2304,64,0,f16,f16,0,1
42,4608,2304,64,0,f16,f16,0,1
42,7168,2304,64,0,f16,f16,0,1
42,512,7168,64,0,f16,f16,0,1
42,1536,7168,64,0,f16,f16,0,1
42,3072,7168,64,0,f16,f16,0,1
42,4096,7168,64,0,f16,f16,0,1
42,4608,7168,64,0,f16,f16,0,1
42,7168,7168,64,0,f16,f16,0,1
43,576,256,64,0,f16,f16,0,1
43,1536,256,64,0,f16,f16,0,1
43,3072,256,64,0,f16,f16,0,1
43,4096,256,64,0,f16,f16,0,1
43,4608,256,64,0,f16,f16,0,1
43,7168,256,64,0,f16,f16,0,1
43,576,512,64,0,f16,f16,0,1
43,1536,512,64,0,f16,f16,0,1
43,3072,512,64,0,f16,f16,0,1
43,4096,512,64,0,f16,f16,0,1
43,4608,512,64,0,f16,f16,0,1
43,7168,512,64,0,f16,f16,0,1
43,576,1536,64,0,f16,f16,0,1
43,1536,1536,64,0,f16,f16,0,1
43,3072,1536,64,0,f16,f16,0,1
43,4096,1536,64,0,f16,f16,0,1
43,4608,1536,64,0,f16,f16,0,1
43,7168,1536,64,0,f16,f16,0,1
43,512,2048,64,0,f16,f16,0,1
43,1536,2048,64,0,f16,f16,0,1
43,3072,2048,64,0,f16,f16,0,1
43,4096,2048,64,0,f16,f16,0,1
43,4608,2048,64,0,f16,f16,0,1
43,7168,2048,64,0,f16,f16,0,1
43,512,2304,64,0,f16,f16,0,1
43,1536,2304,64,0,f16,f16,0,1
43,3072,2304,64,0,f16,f16,0,1
43,4096,2304,64,0,f16,f16,0,1
43,4608,2304,64,0,f16,f16,0,1
43,7168,2304,64,0,f16,f16,0,1
43,512,7168,64,0,f16,f16,0,1
43,1536,7168,64,0,f16,f16,0,1
43,3072,7168,64,0,f16,f16,0,1
43,4096,7168,64,0,f16,f16,0,1
43,4608,7168,64,0,f16,f16,0,1
43,7168,7168,64,0,f16,f16,0,1
44,576,256,64,0,f16,f16,0,1
44,1536,256,64,0,f16,f16,0,1
44,3072,256,64,0,f16,f16,0,1
44,4096,256,64,0,f16,f16,0,1
44,4608,256,64,0,f16,f16,0,1
44,7168,256,64,0,f16,f16,0,1
44,576,512,64,0,f16,f16,0,1
44,1536,512,64,0,f16,f16,0,1
44,3072,512,64,0,f16,f16,0,1
44,4096,512,64,0,f16,f16,0,1
44,4608,512,64,0,f16,f16,0,1
44,7168,512,64,0,f16,f16,0,1
44,576,1536,64,0,f16,f16,0,1
44,1536,1536,64,0,f16,f16,0,1
44,3072,1536,64,0,f16,f16,0,1
44,4096,1536,64,0,f16,f16,0,1
44,4608,1536,64,0,f16,f16,0,1
44,7168,1536,64,0,f16,f16,0,1
44,512,2048,64,0,f16,f16,0,1
44,1536,2048,64,0,f16,f16,0,1
44,3072,2048,64,0,f16,f16,0,1
44,4096,2048,64,0,f16,f16,0,1
44,4608,2048,64,0,f16,f16,0,1
44,7168,2048,64,0,f16,f16,0,1
44,512,2304,64,0,f16,f16,0,1
44,1536,2304,64,0,f16,f16,0,1
44,3072,2304,64,0,f16,f16,0,1
44,4096,2304,64,0,f16,f16,0,1
44,4608,2304,64,0,f16,f16,0,1
44,7168,2304,64,0,f16,f16,0,1
44,512,7168,64,0,f16,f16,0,1
44,1536,7168,64,0,f16,f16,0,1
44,3072,7168,64,0,f16,f16,0,1
44,4096,7168,64,0,f16,f16,0,1
44,4608,7168,64,0,f16,f16,0,1
44,7168,7168,64,0,f16,f16,0,1
45,576,256,64,0,f16,f16,0,1
45,1536,256,64,0,f16,f16,0,1
45,3072,256,64,0,f16,f16,0,1
45,4096,256,64,0,f16,f16,0,1
45,4608,256,64,0,f16,f16,0,1
45,7168,256,64,0,f16,f16,0,1
45,576,512,64,0,f16,f16,0,1
45,1536,512,64,0,f16,f16,0,1
45,3072,512,64,0,f16,f16,0,1
45,4096,512,64,0,f16,f16,0,1
45,4608,512,64,0,f16,f16,0,1
45,7168,512,64,0,f16,f16,0,1
45,576,1536,64,0,f16,f16,0,1
45,1536,1536,64,0,f16,f16,0,1
45,3072,1536,64,0,f16,f16,0,1
45,4096,1536,64,0,f16,f16,0,1
45,4608,1536,64,0,f16,f16,0,1
45,7168,1536,64,0,f16,f16,0,1
45,512,2048,64,0,f16,f16,0,1
45,1536,2048,64,0,f16,f16,0,1
45,3072,2048,64,0,f16,f16,0,1
45,4096,2048,64,0,f16,f16,0,1
45,4608,2048,64,0,f16,f16,0,1
45,7168,2048,64,0,f16,f16,0,1
45,512,2304,64,0,f16,f16,0,1
45,1536,2304,64,0,f16,f16,0,1
45,3072,2304,64,0,f16,f16,0,1
45,4096,2304,64,0,f16,f16,0,1
45,4608,2304,64,0,f16,f16,0,1
45,7168,2304,64,0,f16,f16,0,1
45,512,7168,64,0,f16,f16,0,1
45,1536,7168,64,0,f16,f16,0,1
45,3072,7168,64,0,f16,f16,0,1
45,4096,7168,64,0,f16,f16,0,1
45,4608,7168,64,0,f16,f16,0,1
45,7168,7168,64,0,f16,f16,0,1
46,576,256,64,0,f16,f16,0,1
46,1536,256,64,0,f16,f16,0,1
46,3072,256,64,0,f16,f16,0,1
46,4096,256,64,0,f16,f16,0,1
46,4608,256,64,0,f16,f16,0,1
46,7168,256,64,0,f16,f16,0,1
46,576,512,64,0,f16,f16,0,1
46,1536,512,64,0,f16,f16,0,1
46,3072,512,64,0,f16,f16,0,1
46,4096,512,64,0,f16,f16,0,1
46,4608,512,64,0,f16,f16,0,1
46,7168,512,64,0,f16,f16,0,1
46,576,1536,64,0,f16,f16,0,1
46,1536,1536,64,0,f16,f16,0,1
46,3072,1536,64,0,f16,f16,0,1
46,4096,1536,64,0,f16,f16,0,1
46,4608,1536,64,0,f16,f16,0,1
46,7168,1536,64,0,f16,f16,0,1
46,512,2048,64,0,f16,f16,0,1
46,1536,2048,64,0,f16,f16,0,1
46,3072,2048,64,0,f16,f16,0,1
46,4096,2048,64,0,f16,f16,0,1
46,4608,2048,64,0,f16,f16,0,1
46,7168,2048,64,0,f16,f16,0,1
46,512,2304,64,0,f16,f16,0,1
46,1536,2304,64,0,f16,f16,0,1
46,3072,2304,64,0,f16,f16,0,1
46,4096,2304,64,0,f16,f16,0,1
46,4608,2304,64,0,f16,f16,0,1
46,7168,2304,64,0,f16,f16,0,1
46,512,7168,64,0,f16,f16,0,1
46,1536,7168,64,0,f16,f16,0,1
46,3072,7168,64,0,f16,f16,0,1
46,4096,7168,64,0,f16,f16,0,1
46,4608,7168,64,0,f16,f16,0,1
46,7168,7168,64,0,f16,f16,0,1
47,576,256,64,0,f16,f16,0,1
47,1536,256,64,0,f16,f16,0,1
47,3072,256,64,0,f16,f16,0,1
47,4096,256,64,0,f16,f16,0,1
47,4608,256,64,0,f16,f16,0,1
47,7168,256,64,0,f16,f16,0,1
47,576,512,64,0,f16,f16,0,1
47,1536,512,64,0,f16,f16,0,1
47,3072,512,64,0,f16,f16,0,1
47,4096,512,64,0,f16,f16,0,1
47,4608,512,64,0,f16,f16,0,1
47,7168,512,64,0,f16,f16,0,1
47,576,1536,64,0,f16,f16,0,1
47,1536,1536,64,0,f16,f16,0,1
47,3072,1536,64,0,f16,f16,0,1
47,4096,1536,64,0,f16,f16,0,1
47,4608,1536,64,0,f16,f16,0,1
47,7168,1536,64,0,f16,f16,0,1
47,512,2048,64,0,f16,f16,0,1
47,1536,2048,64,0,f16,f16,0,1
47,3072,2048,64,0,f16,f16,0,1
47,4096,2048,64,0,f16,f16,0,1
47,4608,2048,64,0,f16,f16,0,1
47,7168,2048,64,0,f16,f16,0,1
47,512,2304,64,0,f16,f16,0,1
47,1536,2304,64,0,f16,f16,0,1
47,3072,2304,64,0,f16,f16,0,1
47,4096,2304,64,0,f16,f16,0,1
47,4608,2304,64,0,f16,f16,0,1
47,7168,2304,64,0,f16,f16,0,1
47,512,7168,64,0,f16,f16,0,1
47,1536,7168,64,0,f16,f16,0,1
47,3072,7168,64,0,f16,f16,0,1
47,4096,7168,64,0,f16,f16,0,1
47,4608,7168,64,0,f16,f16,0,1
47,7168,7168,64,0,f16,f16,0,1
48,576,256,64,0,f16,f16,0,1
48,1536,256,64,0,f16,f16,0,1
48,3072,256,64,0,f16,f16,0,1
48,4096,256,64,0,f16,f16,0,1
48,4608,256,64,0,f16,f16,0,1
48,7168,256,64,0,f16,f16,0,1
48,576,512,64,0,f16,f16,0,1
48,1536,512,64,0,f16,f16,0,1
48,3072,512,64,0,f16,f16,0,1
48,4096,512,64,0,f16,f16,0,1
48,4608,512,64,0,f16,f16,0,1
48,7168,512,64,0,f16,f16,0,1
48,576,1536,64,0,f16,f16,0,1
48,1536,1536,64,0,f16,f16,0,1
48,3072,1536,64,0,f16,f16,0,1
48,4096,1536,64,0,f16,f16,0,1
48,4608,1536,64,0,f16,f16,0,1
48,7168,1536,64,0,f16,f16,0,1
48,512,2048,64,0,f16,f16,0,1
48,1536,2048,64,0,f16,f16,0,1
48,3072,2048,64,0,f16,f16,0,1
48,4096,2048,64,0,f16,f16,0,1
48,4608,2048,64,0,f16,f16,0,1
48,7168,2048,64,0,f16,f16,0,1
48,512,2304,64,0,f16,f16,0,1
48,1536,2304,64,0,f16,f16,0,1
48,3072,2304,64,0,f16,f16,0,1
48,4096,2304,64,0,f16,f16,0,1
48,4608,2304,64,0,f16,f16,0,1
48,7168,2304,64,0,f16,f16,0,1
48,512,7168,64,0,f16,f16,0,1
48,1536,7168,64,0,f16,f16,0,1
48,3072,7168,64,0,f16,f16,0,1
48,4096,7168,64,0,f16,f16,0,1
48,4608,7168,64,0,f16,f16,0,1
48,7168,7168,64,0,f16,f16,0,1
49,576,256,64,0,f16,f16,0,1
49,1536,256,64,0,f16,f16,0,1
49,3072,256,64,0,f16,f16,0,1
49,4096,256,64,0,f16,f16,0,1
49,4608,256,64,0,f16,f16,0,1
49,7168,256,64,0,f16,f16,0,1
49,576,512,64,0,f16,f16,0,1
49,1536,512,64,0,f16,f16,0,1
49,3072,512,64,0,f16,f16,0,1
49,4096,512,64,0,f16,f16,0,1
49,4608,512,64,0,f16,f16,0,1
49,7168,512,64,0,f16,f16,0,1
49,576,1536,64,0,f16,f16,0,1
49,1536,1536,64,0,f16,f16,0,1
49,3072,1536,64,0,f16,f16,0,1
49,4096,1536,64,0,f16,f16,0,1
49,4608,1536,64,0,f16,f16,0,1
49,7168,1536,64,0,f16,f16,0,1
49,512,2048,64,0,f16,f16,0,1
49,1536,2048,64,0,f16,f16,0,1
49,3072,2048,64,0,f16,f16,0,1
49,4096,2048,64,0,f16,f16,0,1
49,4608,2048,64,0,f16,f16,0,1
49,7168,2048,64,0,f16,f16,0,1
49,512,2304,64,0,f16,f16,0,1
49,1536,2304,64,0,f16,f16,0,1
49,3072,2304,64,0,f16,f16,0,1
49,4096,2304,64,0,f16,f16,0,1
49,4608,2304,64,0,f16,f16,0,1
49,7168,2304,64,0,f16,f16,0,1
49,512,7168,64,0,f16,f16,0,1
49,1536,7168,64,0,f16,f16,0,1
49,3072,7168,64,0,f16,f16,0,1
49,4096,7168,64,0,f16,f16,0,1
49,4608,7168,64,0,f16,f16,0,1
49,7168,7168,64,0,f16,f16,0,1
50,576,256,64,0,f16,f16,0,1
50,1536,256,64,0,f16,f16,0,1
50,3072,256,64,0,f16,f16,0,1
50,4096,256,64,0,f16,f16,0,1
50,4608,256,64,0,f16,f16,0,1
50,7168,256,64,0,f16,f16,0,1
50,576,512,64,0,f16,f16,0,1
50,1536,512,64,0,f16,f16,0,1
50,3072,512,64,0,f16,f16,0,1
50,4096,512,64,0,f16,f16,0,1
50,4608,512,64,0,f16,f16,0,1
50,7168,512,64,0,f16,f16,0,1
50,576,1536,64,0,f16,f16,0,1
50,1536,1536,64,0,f16,f16,0,1
50,3072,1536,64,0,f16,f16,0,1
50,4096,1536,64,0,f16,f16,0,1
50,4608,1536,64,0,f16,f16,0,1
50,7168,1536,64,0,f16,f16,0,1
50,512,2048,64,0,f16,f16,0,1
50,1536,2048,64,0,f16,f16,0,1
50,3072,2048,64,0,f16,f16,0,1
50,4096,2048,64,0,f16,f16,0,1
50,4608,2048,64,0,f16,f16,0,1
50,7168,2048,64,0,f16,f16,0,1
50,512,2304,64,0,f16,f16,0,1
50,1536,2304,64,0,f16,f16,0,1
50,3072,2304,64,0,f16,f16,0,1
50,4096,2304,64,0,f16,f16,0,1
50,4608,2304,64,0,f16,f16,0,1
50,7168,2304,64,0,f16,f16,0,1
50,512,7168,64,0,f16,f16,0,1
50,1536,7168,64,0,f16,f16,0,1
50,3072,7168,64,0,f16,f16,0,1
50,4096,7168,64,0,f16,f16,0,1
50,4608,7168,64,0,f16,f16,0,1
50,7168,7168,64,0,f16,f16,0,1
51,576,256,64,0,f16,f16,0,1
51,1536,256,64,0,f16,f16,0,1
51,3072,256,64,0,f16,f16,0,1
51,4096,256,64,0,f16,f16,0,1
51,4608,256,64,0,f16,f16,0,1
51,7168,256,64,0,f16,f16,0,1
51,576,512,64,0,f16,f16,0,1
51,1536,512,64,0,f16,f16,0,1
51,3072,512,64,0,f16,f16,0,1
51,4096,512,64,0,f16,f16,0,1
51,4608,512,64,0,f16,f16,0,1
51,7168,512,64,0,f16,f16,0,1
51,576,1536,64,0,f16,f16,0,1
51,1536,1536,64,0,f16,f16,0,1
51,3072,1536,64,0,f16,f16,0,1
51,4096,1536,64,0,f16,f16,0,1
51,4608,1536,64,0,f16,f16,0,1
51,7168,1536,64,0,f16,f16,0,1
51,512,2048,64,0,f16,f16,0,1
51,1536,2048,64,0,f16,f16,0,1
51,3072,2048,64,0,f16,f16,0,1
51,4096,2048,64,0,f16,f16,0,1
51,4608,2048,64,0,f16,f16,0,1
51,7168,2048,64,0,f16,f16,0,1
51,512,2304,64,0,f16,f16,0,1
51,1536,2304,64,0,f16,f16,0,1
51,3072,2304,64,0,f16,f16,0,1
51,4096,2304,64,0,f16,f16,0,1
51,4608,2304,64,0,f16,f16,0,1
51,7168,2304,64,0,f16,f16,0,1
51,512,7168,64,0,f16,f16,0,1
51,1536,7168,64,0,f16,f16,0,1
51,3072,7168,64,0,f16,f16,0,1
51,4096,7168,64,0,f16,f16,0,1
51,4608,7168,64,0,f16,f16,0,1
51,7168,7168,64,0,f16,f16,0,1
52,576,256,64,0,f16,f16,0,1
52,1536,256,64,0,f16,f16,0,1
52,3072,256,64,0,f16,f16,0,1
52,4096,256,64,0,f16,f16,0,1
52,4608,256,64,0,f16,f16,0,1
52,7168,256,64,0,f16,f16,0,1
52,576,512,64,0,f16,f16,0,1
52,1536,512,64,0,f16,f16,0,1
52,3072,512,64,0,f16,f16,0,1
52,4096,512,64,0,f16,f16,0,1
52,4608,512,64,0,f16,f16,0,1
52,7168,512,64,0,f16,f16,0,1
52,576,1536,64,0,f16,f16,0,1
52,1536,1536,64,0,f16,f16,0,1
52,3072,1536,64,0,f16,f16,0,1
52,4096,1536,64,0,f16,f16,0,1
52,4608,1536,64,0,f16,f16,0,1
52,7168,1536,64,0,f16,f16,0,1
52,512,2048,64,0,f16,f16,0,1
52,1536,2048,64,0,f16,f16,0,1
52,3072,2048,64,0,f16,f16,0,1
52,4096,2048,64,0,f16,f16,0,1
52,4608,2048,64,0,f16,f16,0,1
52,7168,2048,64,0,f16,f16,0,1
52,512,2304,64,0,f16,f16,0,1
52,1536,2304,64,0,f16,f16,0,1
52,3072,2304,64,0,f16,f16,0,1
52,4096,2304,64,0,f16,f16,0,1
52,4608,2304,64,0,f16,f16,0,1
52,7168,2304,64,0,f16,f16,0,1
52,512,7168,64,0,f16,f16,0,1
52,1536,7168,64,0,f16,f16,0,1
52,3072,7168,64,0,f16,f16,0,1
52,4096,7168,64,0,f16,f16,0,1
52,4608,7168,64,0,f16,f16,0,1
52,7168,7168,64,0,f16,f16,0,1
53,576,256,64,0,f16,f16,0,1
53,1536,256,64,0,f16,f16,0,1
53,3072,256,64,0,f16,f16,0,1
53,4096,256,64,0,f16,f16,0,1
53,4608,256,64,0,f16,f16,0,1
53,7168,256,64,0,f16,f16,0,1
53,576,512,64,0,f16,f16,0,1
53,1536,512,64,0,f16,f16,0,1
53,3072,512,64,0,f16,f16,0,1
53,4096,512,64,0,f16,f16,0,1
53,4608,512,64,0,f16,f16,0,1
53,7168,512,64,0,f16,f16,0,1
53,576,1536,64,0,f16,f16,0,1
53,1536,1536,64,0,f16,f16,0,1
53,3072,1536,64,0,f16,f16,0,1
53,4096,1536,64,0,f16,f16,0,1
53,4608,1536,64,0,f16,f16,0,1
53,7168,1536,64,0,f16,f16,0,1
53,512,2048,64,0,f16,f16,0,1
53,1536,2048,64,0,f16,f16,0,1
53,3072,2048,64,0,f16,f16,0,1
53,4096,2048,64,0,f16,f16,0,1
53,4608,2048,64,0,f16,f16,0,1
53,7168,2048,64,0,f16,f16,0,1
53,512,2304,64,0,f16,f16,0,1
53,1536,2304,64,0,f16,f16,0,1
53,3072,2304,64,0,f16,f16,0,1
53,4096,2304,64,0,f16,f16,0,1
53,4608,2304,64,0,f16,f16,0,1
53,7168,2304,64,0,f16,f16,0,1
53,512,7168,64,0,f16,f16,0,1
53,1536,7168,64,0,f16,f16,0,1
53,3072,7168,64,0,f16,f16,0,1
53,4096,7168,64,0,f16,f16,0,1
53,4608,7168,64,0,f16,f16,0,1
53,7168,7168,64,0,f16,f16,0,1
54,576,256,64,0,f16,f16,0,1
54,1536,256,64,0,f16,f16,0,1
54,3072,256,64,0,f16,f16,0,1
54,4096,256,64,0,f16,f16,0,1
54,4608,256,64,0,f16,f16,0,1
54,7168,256,64,0,f16,f16,0,1
54,576,512,64,0,f16,f16,0,1
54,1536,512,64,0,f16,f16,0,1
54,3072,512,64,0,f16,f16,0,1
54,4096,512,64,0,f16,f16,0,1
54,4608,512,64,0,f16,f16,0,1
54,7168,512,64,0,f16,f16,0,1
54,576,1536,64,0,f16,f16,0,1
54,1536,1536,64,0,f16,f16,0,1
54,3072,1536,64,0,f16,f16,0,1
54,4096,1536,64,0,f16,f16,0,1
54,4608,1536,64,0,f16,f16,0,1
54,7168,1536,64,0,f16,f16,0,1
54,512,2048,64,0,f16,f16,0,1
54,1536,2048,64,0,f16,f16,0,1
54,3072,2048,64,0,f16,f16,0,1
54,4096,2048,64,0,f16,f16,0,1
54,4608,2048,64,0,f16,f16,0,1
54,7168,2048,64,0,f16,f16,0,1
54,512,2304,64,0,f16,f16,0,1
54,1536,2304,64,0,f16,f16,0,1
54,3072,2304,64,0,f16,f16,0,1
54,4096,2304,64,0,f16,f16,0,1
54,4608,2304,64,0,f16,f16,0,1
54,7168,2304,64,0,f16,f16,0,1
54,512,7168,64,0,f16,f16,0,1
54,1536,7168,64,0,f16,f16,0,1
54,3072,7168,64,0,f16,f16,0,1
54,4096,7168,64,0,f16,f16,0,1
54,4608,7168,64,0,f16,f16,0,1
54,7168,7168,64,0,f16,f16,0,1
55,576,256,64,0,f16,f16,0,1
55,1536,256,64,0,f16,f16,0,1
55,3072,256,64,0,f16,f16,0,1
55,4096,256,64,0,f16,f16,0,1
55,4608,256,64,0,f16,f16,0,1
55,7168,256,64,0,f16,f16,0,1
55,576,512,64,0,f16,f16,0,1
55,1536,512,64,0,f16,f16,0,1
55,3072,512,64,0,f16,f16,0,1
55,4096,512,64,0,f16,f16,0,1
55,4608,512,64,0,f16,f16,0,1
55,7168,512,64,0,f16,f16,0,1
55,576,1536,64,0,f16,f16,0,1
55,1536,1536,64,0,f16,f16,0,1
55,3072,1536,64,0,f16,f16,0,1
55,4096,1536,64,0,f16,f16,0,1
55,4608,1536,64,0,f16,f16,0,1
55,7168,1536,64,0,f16,f16,0,1
55,512,2048,64,0,f16,f16,0,1
55,1536,2048,64,0,f16,f16,0,1
55,3072,2048,64,0,f16,f16,0,1
55,4096,2048,64,0,f16,f16,0,1
55,4608,2048,64,0,f16,f16,0,1
55,7168,2048,64,0,f16,f16,0,1
55,512,2304,64,0,f16,f16,0,1
55,1536,2304,64,0,f16,f16,0,1
55,3072,2304,64,0,f16,f16,0,1
55,4096,2304,64,0,f16,f16,0,1
55,4608,2304,64,0,f16,f16,0,1
55,7168,2304,64,0,f16,f16,0,1
55,512,7168,64,0,f16,f16,0,1
55,1536,7168,64,0,f16,f16,0,1
55,3072,7168,64,0,f16,f16,0,1
55,4096,7168,64,0,f16,f16,0,1
55,4608,7168,64,0,f16,f16,0,1
55,7168,7168,64,0,f16,f16,0,1
56,576,256,64,0,f16,f16,0,1
56,1536,256,64,0,f16,f16,0,1
56,3072,256,64,0,f16,f16,0,1
56,4096,256,64,0,f16,f16,0,1
56,4608,256,64,0,f16,f16,0,1
56,7168,256,64,0,f16,f16,0,1
56,576,512,64,0,f16,f16,0,1
56,1536,512,64,0,f16,f16,0,1
56,3072,512,64,0,f16,f16,0,1
56,4096,512,64,0,f16,f16,0,1
56,4608,512,64,0,f16,f16,0,1
56,7168,512,64,0,f16,f16,0,1
56,576,1536,64,0,f16,f16,0,1
56,1536,1536,64,0,f16,f16,0,1
56,3072,1536,64,0,f16,f16,0,1
56,4096,1536,64,0,f16,f16,0,1
56,4608,1536,64,0,f16,f16,0,1
56,7168,1536,64,0,f16,f16,0,1
56,512,2048,64,0,f16,f16,0,1
56,1536,2048,64,0,f16,f16,0,1
56,3072,2048,64,0,f16,f16,0,1
56,4096,2048,64,0,f16,f16,0,1
56,4608,2048,64,0,f16,f16,0,1
56,7168,2048,64,0,f16,f16,0,1
56,512,2304,64,0,f16,f16,0,1
56,1536,2304,64,0,f16,f16,0,1
56,3072,2304,64,0,f16,f16,0,1
56,4096,2304,64,0,f16,f16,0,1
56,4608,2304,64,0,f16,f16,0,1
56,7168,2304,64,0,f16,f16,0,1
56,512,7168,64,0,f16,f16,0,1
56,1536,7168,64,0,f16,f16,0,1
56,3072,7168,64,0,f16,f16,0,1
56,4096,7168,64,0,f16,f16,0,1
56,4608,7168,64,0,f16,f16,0,1
56,7168,7168,64,0,f16,f16,0,1
57,576,256,64,0,f16,f16,0,1
57,1536,256,64,0,f16,f16,0,1
57,3072,256,64,0,f16,f16,0,1
57,4096,256,64,0,f16,f16,0,1
57,4608,256,64,0,f16,f16,0,1
57,7168,256,64,0,f16,f16,0,1
57,576,512,64,0,f16,f16,0,1
57,1536,512,64,0,f16,f16,0,1
57,3072,512,64,0,f16,f16,0,1
57,4096,512,64,0,f16,f16,0,1
57,4608,512,64,0,f16,f16,0,1
57,7168,512,64,0,f16,f16,0,1
57,576,1536,64,0,f16,f16,0,1
57,1536,1536,64,0,f16,f16,0,1
57,3072,1536,64,0,f16,f16,0,1
57,4096,1536,64,0,f16,f16,0,1
57,4608,1536,64,0,f16,f16,0,1
57,7168,1536,64,0,f16,f16,0,1
57,512,2048,64,0,f16,f16,0,1
57,1536,2048,64,0,f16,f16,0,1
57,3072,2048,64,0,f16,f16,0,1
57,4096,2048,64,0,f16,f16,0,1
57,4608,2048,64,0,f16,f16,0,1
57,7168,2048,64,0,f16,f16,0,1
57,512,2304,64,0,f16,f16,0,1
57,1536,2304,64,0,f16,f16,0,1
57,3072,2304,64,0,f16,f16,0,1
57,4096,2304,64,0,f16,f16,0,1
57,4608,2304,64,0,f16,f16,0,1
57,7168,2304,64,0,f16,f16,0,1
57,512,7168,64,0,f16,f16,0,1
57,1536,7168,64,0,f16,f16,0,1
57,3072,7168,64,0,f16,f16,0,1
57,4096,7168,64,0,f16,f16,0,1
57,4608,7168,64,0,f16,f16,0,1
57,7168,7168,64,0,f16,f16,0,1
58,576,256,64,0,f16,f16,0,1
58,1536,256,64,0,f16,f16,0,1
58,3072,256,64,0,f16,f16,0,1
58,4096,256,64,0,f16,f16,0,1
58,4608,256,64,0,f16,f16,0,1
58,7168,256,64,0,f16,f16,0,1
58,576,512,64,0,f16,f16,0,1
58,1536,512,64,0,f16,f16,0,1
58,3072,512,64,0,f16,f16,0,1
58,4096,512,64,0,f16,f16,0,1
58,4608,512,64,0,f16,f16,0,1
58,7168,512,64,0,f16,f16,0,1
58,576,1536,64,0,f16,f16,0,1
58,1536,1536,64,0,f16,f16,0,1
58,3072,1536,64,0,f16,f16,0,1
58,4096,1536,64,0,f16,f16,0,1
58,4608,1536,64,0,f16,f16,0,1
58,7168,1536,64,0,f16,f16,0,1
58,512,2048,64,0,f16,f16,0,1
58,1536,2048,64,0,f16,f16,0,1
58,3072,2048,64,0,f16,f16,0,1
58,4096,2048,64,0,f16,f16,0,1
58,4608,2048,64,0,f16,f16,0,1
58,7168,2048,64,0,f16,f16,0,1
58,512,2304,64,0,f16,f16,0,1
58,1536,2304,64,0,f16,f16,0,1
58,3072,2304,64,0,f16,f16,0,1
58,4096,2304,64,0,f16,f16,0,1
58,4608,2304,64,0,f16,f16,0,1
58,7168,2304,64,0,f16,f16,0,1
58,512,7168,64,0,f16,f16,0,1
58,1536,7168,64,0,f16,f16,0,1
58,3072,7168,64,0,f16,f16,0,1
58,4096,7168,64,0,f16,f16,0,1
58,4608,7168,64,0,f16,f16,0,1
58,7168,7168,64,0,f16,f16,0,1
59,576,256,64,0,f16,f16,0,1
59,1536,256,64,0,f16,f16,0,1
59,3072,256,64,0,f16,f16,0,1
59,4096,256,64,0,f16,f16,0,1
59,4608,256,64,0,f16,f16,0,1
59,7168,256,64,0,f16,f16,0,1
59,576,512,64,0,f16,f16,0,1
59,1536,512,64,0,f16,f16,0,1
59,3072,512,64,0,f16,f16,0,1
59,4096,512,64,0,f16,f16,0,1
59,4608,512,64,0,f16,f16,0,1
59,7168,512,64,0,f16,f16,0,1
59,576,1536,64,0,f16,f16,0,1
59,1536,1536,64,0,f16,f16,0,1
59,3072,1536,64,0,f16,f16,0,1
59,4096,1536,64,0,f16,f16,0,1
59,4608,1536,64,0,f16,f16,0,1
59,7168,1536,64,0,f16,f16,0,1
59,512,2048,64,0,f16,f16,0,1
59,1536,2048,64,0,f16,f16,0,1
59,3072,2048,64,0,f16,f16,0,1
59,4096,2048,64,0,f16,f16,0,1
59,4608,2048,64,0,f16,f16,0,1
59,7168,2048,64,0,f16,f16,0,1
59,512,2304,64,0,f16,f16,0,1
59,1536,2304,64,0,f16,f16,0,1
59,3072,2304,64,0,f16,f16,0,1
59,4096,2304,64,0,f16,f16,0,1
59,4608,2304,64,0,f16,f16,0,1
59,7168,2304,64,0,f16,f16,0,1
59,512,7168,64,0,f16,f16,0,1
59,1536,7168,64,0,f16,f16,0,1
59,3072,7168,64,0,f16,f16,0,1
59,4096,7168,64,0,f16,f16,0,1
59,4608,7168,64,0,f16,f16,0,1
59,7168,7168,64,0,f16,f16,0,1
60,576,256,64,0,f16,f16,0,1
60,1536,256,64,0,f16,f16,0,1
60,3072,256,64,0,f16,f16,0,1
60,4096,256,64,0,f16,f16,0,1
60,4608,256,64,0,f16,f16,0,1
60,7168,256,64,0,f16,f16,0,1
60,576,512,64,0,f16,f16,0,1
60,1536,512,64,0,f16,f16,0,1
60,3072,512,64,0,f16,f16,0,1
60,4096,512,64,0,f16,f16,0,1
60,4608,512,64,0,f16,f16,0,1
60,7168,512,64,0,f16,f16,0,1
60,576,1536,64,0,f16,f16,0,1
60,1536,1536,64,0,f16,f16,0,1
60,3072,1536,64,0,f16,f16,0,1
60,4096,1536,64,0,f16,f16,0,1
60,4608,1536,64,0,f16,f16,0,1
60,7168,1536,64,0,f16,f16,0,1
60,512,2048,64,0,f16,f16,0,1
60,1536,2048,64,0,f16,f16,0,1
60,3072,2048,64,0,f16,f16,0,1
60,4096,2048,64,0,f16,f16,0,1
60,4608,2048,64,0,f16,f16,0,1
60,7168,2048,64,0,f16,f16,0,1
60,512,2304,64,0,f16,f16,0,1
60,1536,2304,64,0,f16,f16,0,1
60,3072,2304,64,0,f16,f16,0,1
60,4096,2304,64,0,f16,f16,0,1
60,4608,2304,64,0,f16,f16,0,1
60,7168,2304,64,0,f16,f16,0,1
60,512,7168,64,0,f16,f16,0,1
60,1536,7168,64,0,f16,f16,0,1
60,3072,7168,64,0,f16,f16,0,1
60,4096,7168,64,0,f16,f16,0,1
60,4608,7168,64,0,f16,f16,0,1
60,7168,7168,64,0,f16,f16,0,1
61,576,256,64,0,f16,f16,0,1
61,1536,256,64,0,f16,f16,0,1
61,3072,256,64,0,f16,f16,0,1
61,4096,256,64,0,f16,f16,0,1
61,4608,256,64,0,f16,f16,0,1
61,7168,256,64,0,f16,f16,0,1
61,576,512,64,0,f16,f16,0,1
61,1536,512,64,0,f16,f16,0,1
61,3072,512,64,0,f16,f16,0,1
61,4096,512,64,0,f16,f16,0,1
61,4608,512,64,0,f16,f16,0,1
61,7168,512,64,0,f16,f16,0,1
61,576,1536,64,0,f16,f16,0,1
61,1536,1536,64,0,f16,f16,0,1
61,3072,1536,64,0,f16,f16,0,1
61,4096,1536,64,0,f16,f16,0,1
61,4608,1536,64,0,f16,f16,0,1
61,7168,1536,64,0,f16,f16,0,1
61,512,2048,64,0,f16,f16,0,1
61,1536,2048,64,0,f16,f16,0,1
61,3072,2048,64,0,f16,f16,0,1
61,4096,2048,64,0,f16,f16,0,1
61,4608,2048,64,0,f16,f16,0,1
61,7168,2048,64,0,f16,f16,0,1
61,512,2304,64,0,f16,f16,0,1
61,1536,2304,64,0,f16,f16,0,1
61,3072,2304,64,0,f16,f16,0,1
61,4096,2304,64,0,f16,f16,0,1
61,4608,2304,64,0,f16,f16,0,1
61,7168,2304,64,0,f16,f16,0,1
61,512,7168,64,0,f16,f16,0,1
61,1536,7168,64,0,f16,f16,0,1
61,3072,7168,64,0,f16,f16,0,1
61,4096,7168,64,0,f16,f16,0,1
61,4608,7168,64,0,f16,f16,0,1
61,7168,7168,64,0,f16,f16,0,1
62,576,256,64,0,f16,f16,0,1
62,1536,256,64,0,f16,f16,0,1
62,3072,256,64,0,f16,f16,0,1
62,4096,256,64,0,f16,f16,0,1
62,4608,256,64,0,f16,f16,0,1
62,7168,256,64,0,f16,f16,0,1
62,576,512,64,0,f16,f16,0,1
62,1536,512,64,0,f16,f16,0,1
62,3072,512,64,0,f16,f16,0,1
62,4096,512,64,0,f16,f16,0,1
62,4608,512,64,0,f16,f16,0,1
62,7168,512,64,0,f16,f16,0,1
62,576,1536,64,0,f16,f16,0,1
62,1536,1536,64,0,f16,f16,0,1
62,3072,1536,64,0,f16,f16,0,1
62,4096,1536,64,0,f16,f16,0,1
62,4608,1536,64,0,f16,f16,0,1
62,7168,1536,64,0,f16,f16,0,1
62,512,2048,64,0,f16,f16,0,1
62,1536,2048,64,0,f16,f16,0,1
62,3072,2048,64,0,f16,f16,0,1
62,4096,2048,64,0,f16,f16,0,1
62,4608,2048,64,0,f16,f16,0,1
62,7168,2048,64,0,f16,f16,0,1
62,512,2304,64,0,f16,f16,0,1
62,1536,2304,64,0,f16,f16,0,1
62,3072,2304,64,0,f16,f16,0,1
62,4096,2304,64,0,f16,f16,0,1
62,4608,2304,64,0,f16,f16,0,1
62,7168,2304,64,0,f16,f16,0,1
62,512,7168,64,0,f16,f16,0,1
62,1536,7168,64,0,f16,f16,0,1
62,3072,7168,64,0,f16,f16,0,1
62,4096,7168,64,0,f16,f16,0,1
62,4608,7168,64,0,f16,f16,0,1
62,7168,7168,64,0,f16,f16,0,1
63,576,256,64,0,f16,f16,0,1
63,1536,256,64,0,f16,f16,0,1
63,3072,256,64,0,f16,f16,0,1
63,4096,256,64,0,f16,f16,0,1
63,4608,256,64,0,f16,f16,0,1
63,7168,256,64,0,f16,f16,0,1
63,576,512,64,0,f16,f16,0,1
63,1536,512,64,0,f16,f16,0,1
63,3072,512,64,0,f16,f16,0,1
63,4096,512,64,0,f16,f16,0,1
63,4608,512,64,0,f16,f16,0,1
63,7168,512,64,0,f16,f16,0,1
63,576,1536,64,0,f16,f16,0,1
63,1536,1536,64,0,f16,f16,0,1
63,3072,1536,64,0,f16,f16,0,1
63,4096,1536,64,0,f16,f16,0,1
63,4608,1536,64,0,f16,f16,0,1
63,7168,1536,64,0,f16,f16,0,1
63,512,2048,64,0,f16,f16,0,1
63,1536,2048,64,0,f16,f16,0,1
63,3072,2048,64,0,f16,f16,0,1
63,4096,2048,64,0,f16,f16,0,1
63,4608,2048,64,0,f16,f16,0,1
63,7168,2048,64,0,f16,f16,0,1
63,512,2304,64,0,f16,f16,0,1
63,1536,2304,64,0,f16,f16,0,1
63,3072,2304,64,0,f16,f16,0,1
63,4096,2304,64,0,f16,f16,0,1
63,4608,2304,64,0,f16,f16,0,1
63,7168,2304,64,0,f16,f16,0,1
63,512,7168,64,0,f16,f16,0,1
63,1536,7168,64,0,f16,f16,0,1
63,3072,7168,64,0,f16,f16,0,1
63,4096,7168,64,0,f16,f16,0,1
63,4608,7168,64,0,f16,f16,0,1
63,7168,7168,64,0,f16,f16,0,1
64,576,256,64,0,f16,f16,0,1
64,1536,256,64,0,f16,f16,0,1
64,3072,256,64,0,f16,f16,0,1
64,4096,256,64,0,f16,f16,0,1
64,4608,256,64,0,f16,f16,0,1
64,7168,256,64,0,f16,f16,0,1
64,576,512,64,0,f16,f16,0,1
64,1536,512,64,0,f16,f16,0,1
64,3072,512,64,0,f16,f16,0,1
64,4096,512,64,0,f16,f16,0,1
64,4608,512,64,0,f16,f16,0,1
64,7168,512,64,0,f16,f16,0,1
64,576,1536,64,0,f16,f16,0,1
64,1536,1536,64,0,f16,f16,0,1
64,3072,1536,64,0,f16,f16,0,1
64,4096,1536,64,0,f16,f16,0,1
64,4608,1536,64,0,f16,f16,0,1
64,7168,1536,64,0,f16,f16,0,1
64,512,2048,64,0,f16,f16,0,1
64,1536,2048,64,0,f16,f16,0,1
64,3072,2048,64,0,f16,f16,0,1
64,4096,2048,64,0,f16,f16,0,1
64,4608,2048,64,0,f16,f16,0,1
64,7168,2048,64,0,f16,f16,0,1
64,512,2304,64,0,f16,f16,0,1
64,1536,2304,64,0,f16,f16,0,1
64,3072,2304,64,0,f16,f16,0,1
64,4096,2304,64,0,f16,f16,0,1
64,4608,2304,64,0,f16,f16,0,1
64,7168,2304,64,0,f16,f16,0,1
64,512,7168,64,0,f16,f16,0,1
64,1536,7168,64,0,f16,f16,0,1
64,3072,7168,64,0,f16,f16,0,1
64,4096,7168,64,0,f16,f16,0,1
64,4608,7168,64,0,f16,f16,0,1
64,7168,7168,64,0,f16,f16,0,1
65,576,256,64,0,f16,f16,0,1
65,1536,256,64,0,f16,f16,0,1
65,3072,256,64,0,f16,f16,0,1
65,4096,256,64,0,f16,f16,0,1
65,4608,256,64,0,f16,f16,0,1
65,7168,256,64,0,f16,f16,0,1
65,576,512,64,0,f16,f16,0,1
65,1536,512,64,0,f16,f16,0,1
65,3072,512,64,0,f16,f16,0,1
65,4096,512,64,0,f16,f16,0,1
65,4608,512,64,0,f16,f16,0,1
65,7168,512,64,0,f16,f16,0,1
65,576,1536,64,0,f16,f16,0,1
65,1536,1536,64,0,f16,f16,0,1
65,3072,1536,64,0,f16,f16,0,1
65,4096,1536,64,0,f16,f16,0,1
65,4608,1536,64,0,f16,f16,0,1
65,7168,1536,64,0,f16,f16,0,1
65,512,2048,64,0,f16,f16,0,1
65,1536,2048,64,0,f16,f16,0,1
65,3072,2048,64,0,f16,f16,0,1
65,4096,2048,64,0,f16,f16,0,1
65,4608,2048,64,0,f16,f16,0,1
65,7168,2048,64,0,f16,f16,0,1
65,512,2304,64,0,f16,f16,0,1
65,1536,2304,64,0,f16,f16,0,1
65,3072,2304,64,0,f16,f16,0,1
65,4096,2304,64,0,f16,f16,0,1
65,4608,2304,64,0,f16,f16,0,1
65,7168,2304,64,0,f16,f16,0,1
65,512,7168,64,0,f16,f16,0,1
65,1536,7168,64,0,f16,f16,0,1
65,3072,7168,64,0,f16,f16,0,1
65,4096,7168,64,0,f16,f16,0,1
65,4608,7168,64,0,f16,f16,0,1
65,7168,7168,64,0,f16,f16,0,1
66,576,256,64,0,f16,f16,0,1
66,1536,256,64,0,f16,f16,0,1
66,3072,256,64,0,f16,f16,0,1
66,4096,256,64,0,f16,f16,0,1
66,4608,256,64,0,f16,f16,0,1
66,7168,256,64,0,f16,f16,0,1
66,576,512,64,0,f16,f16,0,1
66,1536,512,64,0,f16,f16,0,1
66,3072,512,64,0,f16,f16,0,1
66,4096,512,64,0,f16,f16,0,1
66,4608,512,64,0,f16,f16,0,1
66,7168,512,64,0,f16,f16,0,1
66,576,1536,64,0,f16,f16,0,1
66,1536,1536,64,0,f16,f16,0,1
66,3072,1536,64,0,f16,f16,0,1
66,4096,1536,64,0,f16,f16,0,1
66,4608,1536,64,0,f16,f16,0,1
66,7168,1536,64,0,f16,f16,0,1
66,512,2048,64,0,f16,f16,0,1
66,1536,2048,64,0,f16,f16,0,1
66,3072,2048,64,0,f16,f16,0,1
66,4096,2048,64,0,f16,f16,0,1
66,4608,2048,64,0,f16,f16,0,1
66,7168,2048,64,0,f16,f16,0,1
66,512,2304,64,0,f16,f16,0,1
66,1536,2304,64,0,f16,f16,0,1
66,3072,2304,64,0,f16,f16,0,1
66,4096,2304,64,0,f16,f16,0,1
66,4608,2304,64,0,f16,f16,0,1
66,7168,2304,64,0,f16,f16,0,1
66,512,7168,64,0,f16,f16,0,1
66,1536,7168,64,0,f16,f16,0,1
66,3072,7168,64,0,f16,f16,0,1
66,4096,7168,64,0,f16,f16,0,1
66,4608,7168,64,0,f16,f16,0,1
66,7168,7168,64,0,f16,f16,0,1
67,576,256,64,0,f16,f16,0,1
67,1536,256,64,0,f16,f16,0,1
67,3072,256,64,0,f16,f16,0,1
67,4096,256,64,0,f16,f16,0,1
67,4608,256,64,0,f16,f16,0,1
67,7168,256,64,0,f16,f16,0,1
67,576,512,64,0,f16,f16,0,1
67,1536,512,64,0,f16,f16,0,1
67,3072,512,64,0,f16,f16,0,1
67,4096,512,64,0,f16,f16,0,1
67,4608,512,64,0,f16,f16,0,1
67,7168,512,64,0,f16,f16,0,1
67,576,1536,64,0,f16,f16,0,1
67,1536,1536,64,0,f16,f16,0,1
67,3072,1536,64,0,f16,f16,0,1
67,4096,1536,64,0,f16,f16,0,1
67,4608,1536,64,0,f16,f16,0,1
67,7168,1536,64,0,f16,f16,0,1
67,512,2048,64,0,f16,f16,0,1
67,1536,2048,64,0,f16,f16,0,1
67,3072,2048,64,0,f16,f16,0,1
67,4096,2048,64,0,f16,f16,0,1
67,4608,2048,64,0,f16,f16,0,1
67,7168,2048,64,0,f16,f16,0,1
67,512,2304,64,0,f16,f16,0,1
67,1536,2304,64,0,f16,f16,0,1
67,3072,2304,64,0,f16,f16,0,1
67,4096,2304,64,0,f16,f16,0,1
67,4608,2304,64,0,f16,f16,0,1
67,7168,2304,64,0,f16,f16,0,1
67,512,7168,64,0,f16,f16,0,1
67,1536,7168,64,0,f16,f16,0,1
67,3072,7168,64,0,f16,f16,0,1
67,4096,7168,64,0,f16,f16,0,1
67,4608,7168,64,0,f16,f16,0,1
67,7168,7168,64,0,f16,f16,0,1
68,576,256,64,0,f16,f16,0,1
68,1536,256,64,0,f16,f16,0,1
68,3072,256,64,0,f16,f16,0,1
68,4096,256,64,0,f16,f16,0,1
68,4608,256,64,0,f16,f16,0,1
68,7168,256,64,0,f16,f16,0,1
68,576,512,64,0,f16,f16,0,1
68,1536,512,64,0,f16,f16,0,1
68,3072,512,64,0,f16,f16,0,1
68,4096,512,64,0,f16,f16,0,1
68,4608,512,64,0,f16,f16,0,1
68,7168,512,64,0,f16,f16,0,1
68,576,1536,64,0,f16,f16,0,1
68,1536,1536,64,0,f16,f16,0,1
68,3072,1536,64,0,f16,f16,0,1
68,4096,1536,64,0,f16,f16,0,1
68,4608,1536,64,0,f16,f16,0,1
68,7168,1536,64,0,f16,f16,0,1
68,512,2048,64,0,f16,f16,0,1
68,1536,2048,64,0,f16,f16,0,1
68,3072,2048,64,0,f16,f16,0,1
68,4096,2048,64,0,f16,f16,0,1
68,4608,2048,64,0,f16,f16,0,1
68,7168,2048,64,0,f16,f16,0,1
68,512,2304,64,0,f16,f16,0,1
68,1536,2304,64,0,f16,f16,0,1
68,3072,2304,64,0,f16,f16,0,1
68,4096,2304,64,0,f16,f16,0,1
68,4608,2304,64,0,f16,f16,0,1
68,7168,2304,64,0,f16,f16,0,1
68,512,7168,64,0,f16,f16,0,1
68,1536,7168,64,0,f16,f16,0,1
68,3072,7168,64,0,f16,f16,0,1
68,4096,7168,64,0,f16,f16,0,1
68,4608,7168,64,0,f16,f16,0,1
68,7168,7168,64,0,f16,f16,0,1
69,576,256,64,0,f16,f16,0,1
69,1536,256,64,0,f16,f16,0,1
69,3072,256,64,0,f16,f16,0,1
69,4096,256,64,0,f16,f16,0,1
69,4608,256,64,0,f16,f16,0,1
69,7168,256,64,0,f16,f16,0,1
69,576,512,64,0,f16,f16,0,1
69,1536,512,64,0,f16,f16,0,1
69,3072,512,64,0,f16,f16,0,1
69,4096,512,64,0,f16,f16,0,1
69,4608,512,64,0,f16,f16,0,1
69,7168,512,64,0,f16,f16,0,1
69,576,1536,64,0,f16,f16,0,1
69,1536,1536,64,0,f16,f16,0,1
69,3072,1536,64,0,f16,f16,0,1
69,4096,1536,64,0,f16,f16,0,1
69,4608,1536,64,0,f16,f16,0,1
69,7168,1536,64,0,f16,f16,0,1
69,512,2048,64,0,f16,f16,0,1
69,1536,2048,64,0,f16,f16,0,1
69,3072,2048,64,0,f16,f16,0,1
69,4096,2048,64,0,f16,f16,0,1
69,4608,2048,64,0,f16,f16,0,1
69,7168,2048,64,0,f16,f16,0,1
69,512,2304,64,0,f16,f16,0,1
69,1536,2304,64,0,f16,f16,0,1
69,3072,2304,64,0,f16,f16,0,1
69,4096,2304,64,0,f16,f16,0,1
69,4608,2304,64,0,f16,f16,0,1
69,7168,2304,64,0,f16,f16,0,1
69,512,7168,64,0,f16,f16,0,1
69,1536,7168,64,0,f16,f16,0,1
69,3072,7168,64,0,f16,f16,0,1
69,4096,7168,64,0,f16,f16,0,1
69,4608,7168,64,0,f16,f16,0,1
69,7168,7168,64,0,f16,f16,0,1
70,576,256,64,0,f16,f16,0,1
70,1536,256,64,0,f16,f16,0,1
70,3072,256,64,0,f16,f16,0,1
70,4096,256,64,0,f16,f16,0,1
70,4608,256,64,0,f16,f16,0,1
70,7168,256,64,0,f16,f16,0,1
70,576,512,64,0,f16,f16,0,1
70,1536,512,64,0,f16,f16,0,1
70,3072,512,64,0,f16,f16,0,1
70,4096,512,64,0,f16,f16,0,1
70,4608,512,64,0,f16,f16,0,1
70,7168,512,64,0,f16,f16,0,1
70,576,1536,64,0,f16,f16,0,1
70,1536,1536,64,0,f16,f16,0,1
70,3072,1536,64,0,f16,f16,0,1
70,4096,1536,64,0,f16,f16,0,1
70,4608,1536,64,0,f16,f16,0,1
70,7168,1536,64,0,f16,f16,0,1
70,512,2048,64,0,f16,f16,0,1
70,1536,2048,64,0,f16,f16,0,1
70,3072,2048,64,0,f16,f16,0,1
70,4096,2048,64,0,f16,f16,0,1
70,4608,2048,64,0,f16,f16,0,1
70,7168,2048,64,0,f16,f16,0,1
70,512,2304,64,0,f16,f16,0,1
70,1536,2304,64,0,f16,f16,0,1
70,3072,2304,64,0,f16,f16,0,1
70,4096,2304,64,0,f16,f16,0,1
70,4608,2304,64,0,f16,f16,0,1
70,7168,2304,64,0,f16,f16,0,1
70,512,7168,64,0,f16,f16,0,1
70,1536,7168,64,0,f16,f16,0,1
70,3072,7168,64,0,f16,f16,0,1
70,4096,7168,64,0,f16,f16,0,1
70,4608,7168,64,0,f16,f16,0,1
70,7168,7168,64,0,f16,f16,0,1
71,576,256,64,0,f16,f16,0,1
71,1536,256,64,0,f16,f16,0,1
71,3072,256,64,0,f16,f16,0,1
71,4096,256,64,0,f16,f16,0,1
71,4608,256,64,0,f16,f16,0,1
71,7168,256,64,0,f16,f16,0,1
71,576,512,64,0,f16,f16,0,1
71,1536,512,64,0,f16,f16,0,1
71,3072,512,64,0,f16,f16,0,1
71,4096,512,64,0,f16,f16,0,1
71,4608,512,64,0,f16,f16,0,1
71,7168,512,64,0,f16,f16,0,1
71,576,1536,64,0,f16,f16,0,1
71,1536,1536,64,0,f16,f16,0,1
71,3072,1536,64,0,f16,f16,0,1
71,4096,1536,64,0,f16,f16,0,1
71,4608,1536,64,0,f16,f16,0,1
71,7168,1536,64,0,f16,f16,0,1
71,512,2048,64,0,f16,f16,0,1
71,1536,2048,64,0,f16,f16,0,1
71,3072,2048,64,0,f16,f16,0,1
71,4096,2048,64,0,f16,f16,0,1
71,4608,2048,64,0,f16,f16,0,1
71,7168,2048,64,0,f16,f16,0,1
71,512,2304,64,0,f16,f16,0,1
71,1536,2304,64,0,f16,f16,0,1
71,3072,2304,64,0,f16,f16,0,1
71,4096,2304,64,0,f16,f16,0,1
71,4608,2304,64,0,f16,f16,0,1
71,7168,2304,64,0,f16,f16,0,1
71,512,7168,64,0,f16,f16,0,1
71,1536,7168,64,0,f16,f16,0,1
71,3072,7168,64,0,f16,f16,0,1
71,4096,7168,64,0,f16,f16,0,1
71,4608,7168,64,0,f16,f16,0,1
71,7168,7168,64,0,f16,f16,0,1
72,576,256,64,0,f16,f16,0,1
72,1536,256,64,0,f16,f16,0,1
72,3072,256,64,0,f16,f16,0,1
72,4096,256,64,0,f16,f16,0,1
72,4608,256,64,0,f16,f16,0,1
72,7168,256,64,0,f16,f16,0,1
72,576,512,64,0,f16,f16,0,1
72,1536,512,64,0,f16,f16,0,1
72,3072,512,64,0,f16,f16,0,1
72,4096,512,64,0,f16,f16,0,1
72,4608,512,64,0,f16,f16,0,1
72,7168,512,64,0,f16,f16,0,1
72,576,1536,64,0,f16,f16,0,1
72,1536,1536,64,0,f16,f16,0,1
72,3072,1536,64,0,f16,f16,0,1
72,4096,1536,64,0,f16,f16,0,1
72,4608,1536,64,0,f16,f16,0,1
72,7168,1536,64,0,f16,f16,0,1
72,512,2048,64,0,f16,f16,0,1
72,1536,2048,64,0,f16,f16,0,1
72,3072,2048,64,0,f16,f16,0,1
72,4096,2048,64,0,f16,f16,0,1
72,4608,2048,64,0,f16,f16,0,1
72,7168,2048,64,0,f16,f16,0,1
72,512,2304,64,0,f16,f16,0,1
72,1536,2304,64,0,f16,f16,0,1
72,3072,2304,64,0,f16,f16,0,1
72,4096,2304,64,0,f16,f16,0,1
72,4608,2304,64,0,f16,f16,0,1
72,7168,2304,64,0,f16,f16,0,1
72,512,7168,64,0,f16,f16,0,1
72,1536,7168,64,0,f16,f16,0,1
72,3072,7168,64,0,f16,f16,0,1
72,4096,7168,64,0,f16,f16,0,1
72,4608,7168,64,0,f16,f16,0,1
72,7168,7168,64,0,f16,f16,0,1
73,576,256,64,0,f16,f16,0,1
73,1536,256,64,0,f16,f16,0,1
73,3072,256,64,0,f16,f16,0,1
73,4096,256,64,0,f16,f16,0,1
73,4608,256,64,0,f16,f16,0,1
73,7168,256,64,0,f16,f16,0,1
73,576,512,64,0,f16,f16,0,1
73,1536,512,64,0,f16,f16,0,1
73,3072,512,64,0,f16,f16,0,1
73,4096,512,64,0,f16,f16,0,1
73,4608,512,64,0,f16,f16,0,1
73,7168,512,64,0,f16,f16,0,1
73,576,1536,64,0,f16,f16,0,1
73,1536,1536,64,0,f16,f16,0,1
73,3072,1536,64,0,f16,f16,0,1
73,4096,1536,64,0,f16,f16,0,1
73,4608,1536,64,0,f16,f16,0,1
73,7168,1536,64,0,f16,f16,0,1
73,512,2048,64,0,f16,f16,0,1
73,1536,2048,64,0,f16,f16,0,1
73,3072,2048,64,0,f16,f16,0,1
73,4096,2048,64,0,f16,f16,0,1
73,4608,2048,64,0,f16,f16,0,1
73,7168,2048,64,0,f16,f16,0,1
73,512,2304,64,0,f16,f16,0,1
73,1536,2304,64,0,f16,f16,0,1
73,3072,2304,64,0,f16,f16,0,1
73,4096,2304,64,0,f16,f16,0,1
73,4608,2304,64,0,f16,f16,0,1
73,7168,2304,64,0,f16,f16,0,1
73,512,7168,64,0,f16,f16,0,1
73,1536,7168,64,0,f16,f16,0,1
73,3072,7168,64,0,f16,f16,0,1
73,4096,7168,64,0,f16,f16,0,1
73,4608,7168,64,0,f16,f16,0,1
73,7168,7168,64,0,f16,f16,0,1
74,576,256,64,0,f16,f16,0,1
74,1536,256,64,0,f16,f16,0,1
74,3072,256,64,0,f16,f16,0,1
74,4096,256,64,0,f16,f16,0,1
74,4608,256,64,0,f16,f16,0,1
74,7168,256,64,0,f16,f16,0,1
74,576,512,64,0,f16,f16,0,1
74,1536,512,64,0,f16,f16,0,1
74,3072,512,64,0,f16,f16,0,1
74,4096,512,64,0,f16,f16,0,1
74,4608,512,64,0,f16,f16,0,1
74,7168,512,64,0,f16,f16,0,1
74,576,1536,64,0,f16,f16,0,1
74,1536,1536,64,0,f16,f16,0,1
74,3072,1536,64,0,f16,f16,0,1
74,4096,1536,64,0,f16,f16,0,1
74,4608,1536,64,0,f16,f16,0,1
74,7168,1536,64,0,f16,f16,0,1
74,512,2048,64,0,f16,f16,0,1
74,1536,2048,64,0,f16,f16,0,1
74,3072,2048,64,0,f16,f16,0,1
74,4096,2048,64,0,f16,f16,0,1
74,4608,2048,64,0,f16,f16,0,1
74,7168,2048,64,0,f16,f16,0,1
74,512,2304,64,0,f16,f16,0,1
74,1536,2304,64,0,f16,f16,0,1
74,3072,2304,64,0,f16,f16,0,1
74,4096,2304,64,0,f16,f16,0,1
74,4608,2304,64,0,f16,f16,0,1
74,7168,2304,64,0,f16,f16,0,1
74,512,7168,64,0,f16,f16,0,1
74,1536,7168,64,0,f16,f16,0,1
74,3072,7168,64,0,f16,f16,0,1
74,4096,7168,64,0,f16,f16,0,1
74,4608,7168,64,0,f16,f16,0,1
74,7168,7168,64,0,f16,f16,0,1
75,576,256,64,0,f16,f16,0,1
75,1536,256,64,0,f16,f16,0,1
75,3072,256,64,0,f16,f16,0,1
75,4096,256,64,0,f16,f16,0,1
75,4608,256,64,0,f16,f16,0,1
75,7168,256,64,0,f16,f16,0,1
75,576,512,64,0,f16,f16,0,1
75,1536,512,64,0,f16,f16,0,1
75,3072,512,64,0,f16,f16,0,1
75,4096,512,64,0,f16,f16,0,1
75,4608,512,64,0,f16,f16,0,1
75,7168,512,64,0,f16,f16,0,1
75,576,1536,64,0,f16,f16,0,1
75,1536,1536,64,0,f16,f16,0,1
75,3072,1536,64,0,f16,f16,0,1
75,4096,1536,64,0,f16,f16,0,1
75,4608,1536,64,0,f16,f16,0,1
75,7168,1536,64,0,f16,f16,0,1
75,512,2048,64,0,f16,f16,0,1
75,1536,2048,64,0,f16,f16,0,1
75,3072,2048,64,0,f16,f16,0,1
75,4096,2048,64,0,f16,f16,0,1
75,4608,2048,64,0,f16,f16,0,1
75,7168,2048,64,0,f16,f16,0,1
75,512,2304,64,0,f16,f16,0,1
75,1536,2304,64,0,f16,f16,0,1
75,3072,2304,64,0,f16,f16,0,1
75,4096,2304,64,0,f16,f16,0,1
75,4608,2304,64,0,f16,f16,0,1
75,7168,2304,64,0,f16,f16,0,1
75,512,7168,64,0,f16,f16,0,1
75,1536,7168,64,0,f16,f16,0,1
75,3072,7168,64,0,f16,f16,0,1
75,4096,7168,64,0,f16,f16,0,1
75,4608,7168,64,0,f16,f16,0,1
75,7168,7168,64,0,f16,f16,0,1
76,576,256,64,0,f16,f16,0,1
76,1536,256,64,0,f16,f16,0,1
76,3072,256,64,0,f16,f16,0,1
76,4096,256,64,0,f16,f16,0,1
76,4608,256,64,0,f16,f16,0,1
76,7168,256,64,0,f16,f16,0,1
76,576,512,64,0,f16,f16,0,1
76,1536,512,64,0,f16,f16,0,1
76,3072,512,64,0,f16,f16,0,1
76,4096,512,64,0,f16,f16,0,1
76,4608,512,64,0,f16,f16,0,1
76,7168,512,64,0,f16,f16,0,1
76,576,1536,64,0,f16,f16,0,1
76,1536,1536,64,0,f16,f16,0,1
76,3072,1536,64,0,f16,f16,0,1
76,4096,1536,64,0,f16,f16,0,1
76,4608,1536,64,0,f16,f16,0,1
76,7168,1536,64,0,f16,f16,0,1
76,512,2048,64,0,f16,f16,0,1
76,1536,2048,64,0,f16,f16,0,1
76,3072,2048,64,0,f16,f16,0,1
76,4096,2048,64,0,f16,f16,0,1
76,4608,2048,64,0,f16,f16,0,1
76,7168,2048,64,0,f16,f16,0,1
76,512,2304,64,0,f16,f16,0,1
76,1536,2304,64,0,f16,f16,0,1
76,3072,2304,64,0,f16,f16,0,1
76,4096,2304,64,0,f16,f16,0,1
76,4608,2304,64,0,f16,f16,0,1
76,7168,2304,64,0,f16,f16,0,1
76,512,7168,64,0,f16,f16,0,1
76,1536,7168,64,0,f16,f16,0,1
76,3072,7168,64,0,f16,f16,0,1
76,4096,7168,64,0,f16,f16,0,1
76,4608,7168,64,0,f16,f16,0,1
76,7168,7168,64,0,f16,f16,0,1
77,576,256,64,0,f16,f16,0,1
77,1536,256,64,0,f16,f16,0,1
77,3072,256,64,0,f16,f16,0,1
77,4096,256,64,0,f16,f16,0,1
77,4608,256,64,0,f16,f16,0,1
77,7168,256,64,0,f16,f16,0,1
77,576,512,64,0,f16,f16,0,1
77,1536,512,64,0,f16,f16,0,1
77,3072,512,64,0,f16,f16,0,1
77,4096,512,64,0,f16,f16,0,1
77,4608,512,64,0,f16,f16,0,1
77,7168,512,64,0,f16,f16,0,1
77,576,1536,64,0,f16,f16,0,1
77,1536,1536,64,0,f16,f16,0,1
77,3072,1536,64,0,f16,f16,0,1
77,4096,1536,64,0,f16,f16,0,1
77,4608,1536,64,0,f16,f16,0,1
77,7168,1536,64,0,f16,f16,0,1
77,512,2048,64,0,f16,f16,0,1
77,1536,2048,64,0,f16,f16,0,1
77,3072,2048,64,0,f16,f16,0,1
77,4096,2048,64,0,f16,f16,0,1
77,4608,2048,64,0,f16,f16,0,1
77,7168,2048,64,0,f16,f16,0,1
77,512,2304,64,0,f16,f16,0,1
77,1536,2304,64,0,f16,f16,0,1
77,3072,2304,64,0,f16,f16,0,1
77,4096,2304,64,0,f16,f16,0,1
77,4608,2304,64,0,f16,f16,0,1
77,7168,2304,64,0,f16,f16,0,1
77,512,7168,64,0,f16,f16,0,1
77,1536,7168,64,0,f16,f16,0,1
77,3072,7168,64,0,f16,f16,0,1
77,4096,7168,64,0,f16,f16,0,1
77,4608,7168,64,0,f16,f16,0,1
77,7168,7168,64,0,f16,f16,0,1
78,576,256,64,0,f16,f16,0,1
78,1536,256,64,0,f16,f16,0,1
78,3072,256,64,0,f16,f16,0,1
78,4096,256,64,0,f16,f16,0,1
78,4608,256,64,0,f16,f16,0,1
78,7168,256,64,0,f16,f16,0,1
78,576,512,64,0,f16,f16,0,1
78,1536,512,64,0,f16,f16,0,1
78,3072,512,64,0,f16,f16,0,1
78,4096,512,64,0,f16,f16,0,1
78,4608,512,64,0,f16,f16,0,1
78,7168,512,64,0,f16,f16,0,1
78,576,1536,64,0,f16,f16,0,1
78,1536,1536,64,0,f16,f16,0,1
78,3072,1536,64,0,f16,f16,0,1
78,4096,1536,64,0,f16,f16,0,1
78,4608,1536,64,0,f16,f16,0,1
78,7168,1536,64,0,f16,f16,0,1
78,512,2048,64,0,f16,f16,0,1
78,1536,2048,64,0,f16,f16,0,1
78,3072,2048,64,0,f16,f16,0,1
78,4096,2048,64,0,f16,f16,0,1
78,4608,2048,64,0,f16,f16,0,1
78,7168,2048,64,0,f16,f16,0,1
78,512,2304,64,0,f16,f16,0,1
78,1536,2304,64,0,f16,f16,0,1
78,3072,2304,64,0,f16,f16,0,1
78,4096,2304,64,0,f16,f16,0,1
78,4608,2304,64,0,f16,f16,0,1
78,7168,2304,64,0,f16,f16,0,1
78,512,7168,64,0,f16,f16,0,1
78,1536,7168,64,0,f16,f16,0,1
78,3072,7168,64,0,f16,f16,0,1
78,4096,7168,64,0,f16,f16,0,1
78,4608,7168,64,0,f16,f16,0,1
78,7168,7168,64,0,f16,f16,0,1
79,576,256,64,0,f16,f16,0,1
79,1536,256,64,0,f16,f16,0,1
79,3072,256,64,0,f16,f16,0,1
79,4096,256,64,0,f16,f16,0,1
79,4608,256,64,0,f16,f16,0,1
79,7168,256,64,0,f16,f16,0,1
79,576,512,64,0,f16,f16,0,1
79,1536,512,64,0,f16,f16,0,1
79,3072,512,64,0,f16,f16,0,1
79,4096,512,64,0,f16,f16,0,1
79,4608,512,64,0,f16,f16,0,1
79,7168,512,64,0,f16,f16,0,1
79,576,1536,64,0,f16,f16,0,1
79,1536,1536,64,0,f16,f16,0,1
79,3072,1536,64,0,f16,f16,0,1
79,4096,1536,64,0,f16,f16,0,1
79,4608,1536,64,0,f16,f16,0,1
79,7168,1536,64,0,f16,f16,0,1
79,512,2048,64,0,f16,f16,0,1
79,1536,2048,64,0,f16,f16,0,1
79,3072,2048,64,0,f16,f16,0,1
79,4096,2048,64,0,f16,f16,0,1
79,4608,2048,64,0,f16,f16,0,1
79,7168,2048,64,0,f16,f16,0,1
79,512,2304,64,0,f16,f16,0,1
79,1536,2304,64,0,f16,f16,0,1
79,3072,2304,64,0,f16,f16,0,1
79,4096,2304,64,0,f16,f16,0,1
79,4608,2304,64,0,f16,f16,0,1
79,7168,2304,64,0,f16,f16,0,1
79,512,7168,64,0,f16,f16,0,1
79,1536,7168,64,0,f16,f16,0,1
79,3072,7168,64,0,f16,f16,0,1
79,4096,7168,64,0,f16,f16,0,1
79,4608,7168,64,0,f16,f16,0,1
79,7168,7168,64,0,f16,f16,0,1
80,576,256,64,0,f16,f16,0,1
80,1536,256,64,0,f16,f16,0,1
80,3072,256,64,0,f16,f16,0,1
80,4096,256,64,0,f16,f16,0,1
80,4608,256,64,0,f16,f16,0,1
80,7168,256,64,0,f16,f16,0,1
80,576,512,64,0,f16,f16,0,1
80,1536,512,64,0,f16,f16,0,1
80,3072,512,64,0,f16,f16,0,1
80,4096,512,64,0,f16,f16,0,1
80,4608,512,64,0,f16,f16,0,1
80,7168,512,64,0,f16,f16,0,1
80,576,1536,64,0,f16,f16,0,1
80,1536,1536,64,0,f16,f16,0,1
80,3072,1536,64,0,f16,f16,0,1
80,4096,1536,64,0,f16,f16,0,1
80,4608,1536,64,0,f16,f16,0,1
80,7168,1536,64,0,f16,f16,0,1
80,512,2048,64,0,f16,f16,0,1
80,1536,2048,64,0,f16,f16,0,1
80,3072,2048,64,0,f16,f16,0,1
80,4096,2048,64,0,f16,f16,0,1
80,4608,2048,64,0,f16,f16,0,1
80,7168,2048,64,0,f16,f16,0,1
80,512,2304,64,0,f16,f16,0,1
80,1536,2304,64,0,f16,f16,0,1
80,3072,2304,64,0,f16,f16,0,1
80,4096,2304,64,0,f16,f16,0,1
80,4608,2304,64,0,f16,f16,0,1
80,7168,2304,64,0,f16,f16,0,1
80,512,7168,64,0,f16,f16,0,1
80,1536,7168,64,0,f16,f16,0,1
80,3072,7168,64,0,f16,f16,0,1
80,4096,7168,64,0,f16,f16,0,1
80,4608,7168,64,0,f16,f16,0,1
80,7168,7168,64,0,f16,f16,0,1
81,576,256,64,0,f16,f16,0,1
81,1536,256,64,0,f16,f16,0,1
81,3072,256,64,0,f16,f16,0,1
81,4096,256,64,0,f16,f16,0,1
81,4608,256,64,0,f16,f16,0,1
81,7168,256,64,0,f16,f16,0,1
81,576,512,64,0,f16,f16,0,1
81,1536,512,64,0,f16,f16,0,1
81,3072,512,64,0,f16,f16,0,1
81,4096,512,64,0,f16,f16,0,1
81,4608,512,64,0,f16,f16,0,1
81,7168,512,64,0,f16,f16,0,1
81,576,1536,64,0,f16,f16,0,1
81,1536,1536,64,0,f16,f16,0,1
81,3072,1536,64,0,f16,f16,0,1
81,4096,1536,64,0,f16,f16,0,1
81,4608,1536,64,0,f16,f16,0,1
81,7168,1536,64,0,f16,f16,0,1
81,512,2048,64,0,f16,f16,0,1
81,1536,2048,64,0,f16,f16,0,1
81,3072,2048,64,0,f16,f16,0,1
81,4096,2048,64,0,f16,f16,0,1
81,4608,2048,64,0,f16,f16,0,1
81,7168,2048,64,0,f16,f16,0,1
81,512,2304,64,0,f16,f16,0,1
81,1536,2304,64,0,f16,f16,0,1
81,3072,2304,64,0,f16,f16,0,1
81,4096,2304,64,0,f16,f16,0,1
81,4608,2304,64,0,f16,f16,0,1
81,7168,2304,64,0,f16,f16,0,1
81,512,7168,64,0,f16,f16,0,1
81,1536,7168,64,0,f16,f16,0,1
81,3072,7168,64,0,f16,f16,0,1
81,4096,7168,64,0,f16,f16,0,1
81,4608,7168,64,0,f16,f16,0,1
81,7168,7168,64,0,f16,f16,0,1
82,576,256,64,0,f16,f16,0,1
82,1536,256,64,0,f16,f16,0,1
82,3072,256,64,0,f16,f16,0,1
82,4096,256,64,0,f16,f16,0,1
82,4608,256,64,0,f16,f16,0,1
82,7168,256,64,0,f16,f16,0,1
82,576,512,64,0,f16,f16,0,1
82,1536,512,64,0,f16,f16,0,1
82,3072,512,64,0,f16,f16,0,1
82,4096,512,64,0,f16,f16,0,1
82,4608,512,64,0,f16,f16,0,1
82,7168,512,64,0,f16,f16,0,1
82,576,1536,64,0,f16,f16,0,1
82,1536,1536,64,0,f16,f16,0,1
82,3072,1536,64,0,f16,f16,0,1
82,4096,1536,64,0,f16,f16,0,1
82,4608,1536,64,0,f16,f16,0,1
82,7168,1536,64,0,f16,f16,0,1
82,512,2048,64,0,f16,f16,0,1
82,1536,2048,64,0,f16,f16,0,1
82,3072,2048,64,0,f16,f16,0,1
82,4096,2048,64,0,f16,f16,0,1
82,4608,2048,64,0,f16,f16,0,1
82,7168,2048,64,0,f16,f16,0,1
82,512,2304,64,0,f16,f16,0,1
82,1536,2304,64,0,f16,f16,0,1
82,3072,2304,64,0,f16,f16,0,1
82,4096,2304,64,0,f16,f16,0,1
82,4608,2304,64,0,f16,f16,0,1
82,7168,2304,64,0,f16,f16,0,1
82,512,7168,64,0,f16,f16,0,1
82,1536,7168,64,0,f16,f16,0,1
82,3072,7168,64,0,f16,f16,0,1
82,4096,7168,64,0,f16,f16,0,1
82,4608,7168,64,0,f16,f16,0,1
82,7168,7168,64,0,f16,f16,0,1
83,576,256,64,0,f16,f16,0,1
83,1536,256,64,0,f16,f16,0,1
83,3072,256,64,0,f16,f16,0,1
83,4096,256,64,0,f16,f16,0,1
83,4608,256,64,0,f16,f16,0,1
83,7168,256,64,0,f16,f16,0,1
83,576,512,64,0,f16,f16,0,1
83,1536,512,64,0,f16,f16,0,1
83,3072,512,64,0,f16,f16,0,1
83,4096,512,64,0,f16,f16,0,1
83,4608,512,64,0,f16,f16,0,1
83,7168,512,64,0,f16,f16,0,1
83,576,1536,64,0,f16,f16,0,1
83,1536,1536,64,0,f16,f16,0,1
83,3072,1536,64,0,f16,f16,0,1
83,4096,1536,64,0,f16,f16,0,1
83,4608,1536,64,0,f16,f16,0,1
83,7168,1536,64,0,f16,f16,0,1
83,512,2048,64,0,f16,f16,0,1
83,1536,2048,64,0,f16,f16,0,1
83,3072,2048,64,0,f16,f16,0,1
83,4096,2048,64,0,f16,f16,0,1
83,4608,2048,64,0,f16,f16,0,1
83,7168,2048,64,0,f16,f16,0,1
83,512,2304,64,0,f16,f16,0,1
83,1536,2304,64,0,f16,f16,0,1
83,3072,2304,64,0,f16,f16,0,1
83,4096,2304,64,0,f16,f16,0,1
83,4608,2304,64,0,f16,f16,0,1
83,7168,2304,64,0,f16,f16,0,1
83,512,7168,64,0,f16,f16,0,1
83,1536,7168,64,0,f16,f16,0,1
83,3072,7168,64,0,f16,f16,0,1
83,4096,7168,64,0,f16,f16,0,1
83,4608,7168,64,0,f16,f16,0,1
83,7168,7168,64,0,f16,f16,0,1
84,576,256,64,0,f16,f16,0,1
84,1536,256,64,0,f16,f16,0,1
84,3072,256,64,0,f16,f16,0,1
84,4096,256,64,0,f16,f16,0,1
84,4608,256,64,0,f16,f16,0,1
84,7168,256,64,0,f16,f16,0,1
84,576,512,64,0,f16,f16,0,1
84,1536,512,64,0,f16,f16,0,1
84,3072,512,64,0,f16,f16,0,1
84,4096,512,64,0,f16,f16,0,1
84,4608,512,64,0,f16,f16,0,1
84,7168,512,64,0,f16,f16,0,1
84,576,1536,64,0,f16,f16,0,1
84,1536,1536,64,0,f16,f16,0,1
84,3072,1536,64,0,f16,f16,0,1
84,4096,1536,64,0,f16,f16,0,1
84,4608,1536,64,0,f16,f16,0,1
84,7168,1536,64,0,f16,f16,0,1
84,512,2048,64,0,f16,f16,0,1
84,1536,2048,64,0,f16,f16,0,1
84,3072,2048,64,0,f16,f16,0,1
84,4096,2048,64,0,f16,f16,0,1
84,4608,2048,64,0,f16,f16,0,1
84,7168,2048,64,0,f16,f16,0,1
84,512,2304,64,0,f16,f16,0,1
84,1536,2304,64,0,f16,f16,0,1
84,3072,2304,64,0,f16,f16,0,1
84,4096,2304,64,0,f16,f16,0,1
84,4608,2304,64,0,f16,f16,0,1
84,7168,2304,64,0,f16,f16,0,1
84,512,7168,64,0,f16,f16,0,1
84,1536,7168,64,0,f16,f16,0,1
84,3072,7168,64,0,f16,f16,0,1
84,4096,7168,64,0,f16,f16,0,1
84,4608,7168,64,0,f16,f16,0,1
84,7168,7168,64,0,f16,f16,0,1
85,576,256,64,0,f16,f16,0,1
85,1536,256,64,0,f16,f16,0,1
85,3072,256,64,0,f16,f16,0,1
85,4096,256,64,0,f16,f16,0,1
85,4608,256,64,0,f16,f16,0,1
85,7168,256,64,0,f16,f16,0,1
85,576,512,64,0,f16,f16,0,1
85,1536,512,64,0,f16,f16,0,1
85,3072,512,64,0,f16,f16,0,1
85,4096,512,64,0,f16,f16,0,1
85,4608,512,64,0,f16,f16,0,1
85,7168,512,64,0,f16,f16,0,1
85,576,1536,64,0,f16,f16,0,1
85,1536,1536,64,0,f16,f16,0,1
85,3072,1536,64,0,f16,f16,0,1
85,4096,1536,64,0,f16,f16,0,1
85,4608,1536,64,0,f16,f16,0,1
85,7168,1536,64,0,f16,f16,0,1
85,512,2048,64,0,f16,f16,0,1
85,1536,2048,64,0,f16,f16,0,1
85,3072,2048,64,0,f16,f16,0,1
85,4096,2048,64,0,f16,f16,0,1
85,4608,2048,64,0,f16,f16,0,1
85,7168,2048,64,0,f16,f16,0,1
85,512,2304,64,0,f16,f16,0,1
85,1536,2304,64,0,f16,f16,0,1
85,3072,2304,64,0,f16,f16,0,1
85,4096,2304,64,0,f16,f16,0,1
85,4608,2304,64,0,f16,f16,0,1
85,7168,2304,64,0,f16,f16,0,1
85,512,7168,64,0,f16,f16,0,1
85,1536,7168,64,0,f16,f16,0,1
85,3072,7168,64,0,f16,f16,0,1
85,4096,7168,64,0,f16,f16,0,1
85,4608,7168,64,0,f16,f16,0,1
85,7168,7168,64,0,f16,f16,0,1
86,576,256,64,0,f16,f16,0,1
86,1536,256,64,0,f16,f16,0,1
86,3072,256,64,0,f16,f16,0,1
86,4096,256,64,0,f16,f16,0,1
86,4608,256,64,0,f16,f16,0,1
86,7168,256,64,0,f16,f16,0,1
86,576,512,64,0,f16,f16,0,1
86,1536,512,64,0,f16,f16,0,1
86,3072,512,64,0,f16,f16,0,1
86,4096,512,64,0,f16,f16,0,1
86,4608,512,64,0,f16,f16,0,1
86,7168,512,64,0,f16,f16,0,1
86,576,1536,64,0,f16,f16,0,1
86,1536,1536,64,0,f16,f16,0,1
86,3072,1536,64,0,f16,f16,0,1
86,4096,1536,64,0,f16,f16,0,1
86,4608,1536,64,0,f16,f16,0,1
86,7168,1536,64,0,f16,f16,0,1
86,512,2048,64,0,f16,f16,0,1
86,1536,2048,64,0,f16,f16,0,1
86,3072,2048,64,0,f16,f16,0,1
86,4096,2048,64,0,f16,f16,0,1
86,4608,2048,64,0,f16,f16,0,1
86,7168,2048,64,0,f16,f16,0,1
86,512,2304,64,0,f16,f16,0,1
86,1536,2304,64,0,f16,f16,0,1
86,3072,2304,64,0,f16,f16,0,1
86,4096,2304,64,0,f16,f16,0,1
86,4608,2304,64,0,f16,f16,0,1
86,7168,2304,64,0,f16,f16,0,1
86,512,7168,64,0,f16,f16,0,1
86,1536,7168,64,0,f16,f16,0,1
86,3072,7168,64,0,f16,f16,0,1
86,4096,7168,64,0,f16,f16,0,1
86,4608,7168,64,0,f16,f16,0,1
86,7168,7168,64,0,f16,f16,0,1
87,576,256,64,0,f16,f16,0,1
87,1536,256,64,0,f16,f16,0,1
87,3072,256,64,0,f16,f16,0,1
87,4096,256,64,0,f16,f16,0,1
87,4608,256,64,0,f16,f16,0,1
87,7168,256,64,0,f16,f16,0,1
87,576,512,64,0,f16,f16,0,1
87,1536,512,64,0,f16,f16,0,1
87,3072,512,64,0,f16,f16,0,1
87,4096,512,64,0,f16,f16,0,1
87,4608,512,64,0,f16,f16,0,1
87,7168,512,64,0,f16,f16,0,1
87,576,1536,64,0,f16,f16,0,1
87,1536,1536,64,0,f16,f16,0,1
87,3072,1536,64,0,f16,f16,0,1
87,4096,1536,64,0,f16,f16,0,1
87,4608,1536,64,0,f16,f16,0,1
87,7168,1536,64,0,f16,f16,0,1
87,512,2048,64,0,f16,f16,0,1
87,1536,2048,64,0,f16,f16,0,1
87,3072,2048,64,0,f16,f16,0,1
87,4096,2048,64,0,f16,f16,0,1
87,4608,2048,64,0,f16,f16,0,1
87,7168,2048,64,0,f16,f16,0,1
87,512,2304,64,0,f16,f16,0,1
87,1536,2304,64,0,f16,f16,0,1
87,3072,2304,64,0,f16,f16,0,1
87,4096,2304,64,0,f16,f16,0,1
87,4608,2304,64,0,f16,f16,0,1
87,7168,2304,64,0,f16,f16,0,1
87,512,7168,64,0,f16,f16,0,1
87,1536,7168,64,0,f16,f16,0,1
87,3072,7168,64,0,f16,f16,0,1
87,4096,7168,64,0,f16,f16,0,1
87,4608,7168,64,0,f16,f16,0,1
87,7168,7168,64,0,f16,f16,0,1
88,576,256,64,0,f16,f16,0,1
88,1536,256,64,0,f16,f16,0,1
88,3072,256,64,0,f16,f16,0,1
88,4096,256,64,0,f16,f16,0,1
88,4608,256,64,0,f16,f16,0,1
88,7168,256,64,0,f16,f16,0,1
88,576,512,64,0,f16,f16,0,1
88,1536,512,64,0,f16,f16,0,1
88,3072,512,64,0,f16,f16,0,1
88,4096,512,64,0,f16,f16,0,1
88,4608,512,64,0,f16,f16,0,1
88,7168,512,64,0,f16,f16,0,1
88,576,1536,64,0,f16,f16,0,1
88,1536,1536,64,0,f16,f16,0,1
88,3072,1536,64,0,f16,f16,0,1
88,4096,1536,64,0,f16,f16,0,1
88,4608,1536,64,0,f16,f16,0,1
88,7168,1536,64,0,f16,f16,0,1
88,512,2048,64,0,f16,f16,0,1
88,1536,2048,64,0,f16,f16,0,1
88,3072,2048,64,0,f16,f16,0,1
88,4096,2048,64,0,f16,f16,0,1
88,4608,2048,64,0,f16,f16,0,1
88,7168,2048,64,0,f16,f16,0,1
88,512,2304,64,0,f16,f16,0,1
88,1536,2304,64,0,f16,f16,0,1
88,3072,2304,64,0,f16,f16,0,1
88,4096,2304,64,0,f16,f16,0,1
88,4608,2304,64,0,f16,f16,0,1
88,7168,2304,64,0,f16,f16,0,1
88,512,7168,64,0,f16,f16,0,1
88,1536,7168,64,0,f16,f16,0,1
88,3072,7168,64,0,f16,f16,0,1
88,4096,7168,64,0,f16,f16,0,1
88,4608,7168,64,0,f16,f16,0,1
88,7168,7168,64,0,f16,f16,0,1
89,576,256,64,0,f16,f16,0,1
89,1536,256,64,0,f16,f16,0,1
89,3072,256,64,0,f16,f16,0,1
89,4096,256,64,0,f16,f16,0,1
89,4608,256,64,0,f16,f16,0,1
89,7168,256,64,0,f16,f16,0,1
89,576,512,64,0,f16,f16,0,1
89,1536,512,64,0,f16,f16,0,1
89,3072,512,64,0,f16,f16,0,1
89,4096,512,64,0,f16,f16,0,1
89,4608,512,64,0,f16,f16,0,1
89,7168,512,64,0,f16,f16,0,1
89,576,1536,64,0,f16,f16,0,1
89,1536,1536,64,0,f16,f16,0,1
89,3072,1536,64,0,f16,f16,0,1
89,4096,1536,64,0,f16,f16,0,1
89,4608,1536,64,0,f16,f16,0,1
89,7168,1536,64,0,f16,f16,0,1
89,512,2048,64,0,f16,f16,0,1
89,1536,2048,64,0,f16,f16,0,1
89,3072,2048,64,0,f16,f16,0,1
89,4096,2048,64,0,f16,f16,0,1
89,4608,2048,64,0,f16,f16,0,1
89,7168,2048,64,0,f16,f16,0,1
89,512,2304,64,0,f16,f16,0,1
89,1536,2304,64,0,f16,f16,0,1
89,3072,2304,64,0,f16,f16,0,1
89,4096,2304,64,0,f16,f16,0,1
89,4608,2304,64,0,f16,f16,0,1
89,7168,2304,64,0,f16,f16,0,1
89,512,7168,64,0,f16,f16,0,1
89,1536,7168,64,0,f16,f16,0,1
89,3072,7168,64,0,f16,f16,0,1
89,4096,7168,64,0,f16,f16,0,1
89,4608,7168,64,0,f16,f16,0,1
89,7168,7168,64,0,f16,f16,0,1
90,576,256,64,0,f16,f16,0,1
90,1536,256,64,0,f16,f16,0,1
90,3072,256,64,0,f16,f16,0,1
90,4096,256,64,0,f16,f16,0,1
90,4608,256,64,0,f16,f16,0,1
90,7168,256,64,0,f16,f16,0,1
90,576,512,64,0,f16,f16,0,1
90,1536,512,64,0,f16,f16,0,1
90,3072,512,64,0,f16,f16,0,1
90,4096,512,64,0,f16,f16,0,1
90,4608,512,64,0,f16,f16,0,1
90,7168,512,64,0,f16,f16,0,1
90,576,1536,64,0,f16,f16,0,1
90,1536,1536,64,0,f16,f16,0,1
90,3072,1536,64,0,f16,f16,0,1
90,4096,1536,64,0,f16,f16,0,1
90,4608,1536,64,0,f16,f16,0,1
90,7168,1536,64,0,f16,f16,0,1
90,512,2048,64,0,f16,f16,0,1
90,1536,2048,64,0,f16,f16,0,1
90,3072,2048,64,0,f16,f16,0,1
90,4096,2048,64,0,f16,f16,0,1
90,4608,2048,64,0,f16,f16,0,1
90,7168,2048,64,0,f16,f16,0,1
90,512,2304,64,0,f16,f16,0,1
90,1536,2304,64,0,f16,f16,0,1
90,3072,2304,64,0,f16,f16,0,1
90,4096,2304,64,0,f16,f16,0,1
90,4608,2304,64,0,f16,f16,0,1
90,7168,2304,64,0,f16,f16,0,1
90,512,7168,64,0,f16,f16,0,1
90,1536,7168,64,0,f16,f16,0,1
90,3072,7168,64,0,f16,f16,0,1
90,4096,7168,64,0,f16,f16,0,1
90,4608,7168,64,0,f16,f16,0,1
90,7168,7168,64,0,f16,f16,0,1
91,576,256,64,0,f16,f16,0,1
91,1536,256,64,0,f16,f16,0,1
91,3072,256,64,0,f16,f16,0,1
91,4096,256,64,0,f16,f16,0,1
91,4608,256,64,0,f16,f16,0,1
91,7168,256,64,0,f16,f16,0,1
91,576,512,64,0,f16,f16,0,1
91,1536,512,64,0,f16,f16,0,1
91,3072,512,64,0,f16,f16,0,1
91,4096,512,64,0,f16,f16,0,1
91,4608,512,64,0,f16,f16,0,1
91,7168,512,64,0,f16,f16,0,1
91,576,1536,64,0,f16,f16,0,1
91,1536,1536,64,0,f16,f16,0,1
91,3072,1536,64,0,f16,f16,0,1
91,4096,1536,64,0,f16,f16,0,1
91,4608,1536,64,0,f16,f16,0,1
91,7168,1536,64,0,f16,f16,0,1
91,512,2048,64,0,f16,f16,0,1
91,1536,2048,64,0,f16,f16,0,1
91,3072,2048,64,0,f16,f16,0,1
91,4096,2048,64,0,f16,f16,0,1
91,4608,2048,64,0,f16,f16,0,1
91,7168,2048,64,0,f16,f16,0,1
91,512,2304,64,0,f16,f16,0,1
91,1536,2304,64,0,f16,f16,0,1
91,3072,2304,64,0,f16,f16,0,1
91,4096,2304,64,0,f16,f16,0,1
91,4608,2304,64,0,f16,f16,0,1
91,7168,2304,64,0,f16,f16,0,1
91,512,7168,64,0,f16,f16,0,1
91,1536,7168,64,0,f16,f16,0,1
91,3072,7168,64,0,f16,f16,0,1
91,4096,7168,64,0,f16,f16,0,1
91,4608,7168,64,0,f16,f16,0,1
91,7168,7168,64,0,f16,f16,0,1
92,576,256,64,0,f16,f16,0,1
92,1536,256,64,0,f16,f16,0,1
92,3072,256,64,0,f16,f16,0,1
92,4096,256,64,0,f16,f16,0,1
92,4608,256,64,0,f16,f16,0,1
92,7168,256,64,0,f16,f16,0,1
92,576,512,64,0,f16,f16,0,1
92,1536,512,64,0,f16,f16,0,1
92,3072,512,64,0,f16,f16,0,1
92,4096,512,64,0,f16,f16,0,1
92,4608,512,64,0,f16,f16,0,1
92,7168,512,64,0,f16,f16,0,1
92,576,1536,64,0,f16,f16,0,1
92,1536,1536,64,0,f16,f16,0,1
92,3072,1536,64,0,f16,f16,0,1
92,4096,1536,64,0,f16,f16,0,1
92,4608,1536,64,0,f16,f16,0,1
92,7168,1536,64,0,f16,f16,0,1
92,512,2048,64,0,f16,f16,0,1
92,1536,2048,64,0,f16,f16,0,1
92,3072,2048,64,0,f16,f16,0,1
92,4096,2048,64,0,f16,f16,0,1
92,4608,2048,64,0,f16,f16,0,1
92,7168,2048,64,0,f16,f16,0,1
92,512,2304,64,0,f16,f16,0,1
92,1536,2304,64,0,f16,f16,0,1
92,3072,2304,64,0,f16,f16,0,1
92,4096,2304,64,0,f16,f16,0,1
92,4608,2304,64,0,f16,f16,0,1
92,7168,2304,64,0,f16,f16,0,1
92,512,7168,64,0,f16,f16,0,1
92,1536,7168,64,0,f16,f16,0,1
92,3072,7168,64,0,f16,f16,0,1
92,4096,7168,64,0,f16,f16,0,1
92,4608,7168,64,0,f16,f16,0,1
92,7168,7168,64,0,f16,f16,0,1
93,576,256,64,0,f16,f16,0,1
93,1536,256,64,0,f16,f16,0,1
93,3072,256,64,0,f16,f16,0,1
93,4096,256,64,0,f16,f16,0,1
93,4608,256,64,0,f16,f16,0,1
93,7168,256,64,0,f16,f16,0,1
93,576,512,64,0,f16,f16,0,1
93,1536,512,64,0,f16,f16,0,1
93,3072,512,64,0,f16,f16,0,1
93,4096,512,64,0,f16,f16,0,1
93,4608,512,64,0,f16,f16,0,1
93,7168,512,64,0,f16,f16,0,1
93,576,1536,64,0,f16,f16,0,1
93,1536,1536,64,0,f16,f16,0,1
93,3072,1536,64,0,f16,f16,0,1
93,4096,1536,64,0,f16,f16,0,1
93,4608,1536,64,0,f16,f16,0,1
93,7168,1536,64,0,f16,f16,0,1
93,512,2048,64,0,f16,f16,0,1
93,1536,2048,64,0,f16,f16,0,1
93,3072,2048,64,0,f16,f16,0,1
93,4096,2048,64,0,f16,f16,0,1
93,4608,2048,64,0,f16,f16,0,1
93,7168,2048,64,0,f16,f16,0,1
93,512,2304,64,0,f16,f16,0,1
93,1536,2304,64,0,f16,f16,0,1
93,3072,2304,64,0,f16,f16,0,1
93,4096,2304,64,0,f16,f16,0,1
93,4608,2304,64,0,f16,f16,0,1
93,7168,2304,64,0,f16,f16,0,1
93,512,7168,64,0,f16,f16,0,1
93,1536,7168,64,0,f16,f16,0,1
93,3072,7168,64,0,f16,f16,0,1
93,4096,7168,64,0,f16,f16,0,1
93,4608,7168,64,0,f16,f16,0,1
93,7168,7168,64,0,f16,f16,0,1
94,576,256,64,0,f16,f16,0,1
94,1536,256,64,0,f16,f16,0,1
94,3072,256,64,0,f16,f16,0,1
94,4096,256,64,0,f16,f16,0,1
94,4608,256,64,0,f16,f16,0,1
94,7168,256,64,0,f16,f16,0,1
94,576,512,64,0,f16,f16,0,1
94,1536,512,64,0,f16,f16,0,1
94,3072,512,64,0,f16,f16,0,1
94,4096,512,64,0,f16,f16,0,1
94,4608,512,64,0,f16,f16,0,1
94,7168,512,64,0,f16,f16,0,1
94,576,1536,64,0,f16,f16,0,1
94,1536,1536,64,0,f16,f16,0,1
94,3072,1536,64,0,f16,f16,0,1
94,4096,1536,64,0,f16,f16,0,1
94,4608,1536,64,0,f16,f16,0,1
94,7168,1536,64,0,f16,f16,0,1
94,512,2048,64,0,f16,f16,0,1
94,1536,2048,64,0,f16,f16,0,1
94,3072,2048,64,0,f16,f16,0,1
94,4096,2048,64,0,f16,f16,0,1
94,4608,2048,64,0,f16,f16,0,1
94,7168,2048,64,0,f16,f16,0,1
94,512,2304,64,0,f16,f16,0,1
94,1536,2304,64,0,f16,f16,0,1
94,3072,2304,64,0,f16,f16,0,1
94,4096,2304,64,0,f16,f16,0,1
94,4608,2304,64,0,f16,f16,0,1
94,7168,2304,64,0,f16,f16,0,1
94,512,7168,64,0,f16,f16,0,1
94,1536,7168,64,0,f16,f16,0,1
94,3072,7168,64,0,f16,f16,0,1
94,4096,7168,64,0,f16,f16,0,1
94,4608,7168,64,0,f16,f16,0,1
94,7168,7168,64,0,f16,f16,0,1
95,576,256,64,0,f16,f16,0,1
95,1536,256,64,0,f16,f16,0,1
95,3072,256,64,0,f16,f16,0,1
95,4096,256,64,0,f16,f16,0,1
95,4608,256,64,0,f16,f16,0,1
95,7168,256,64,0,f16,f16,0,1
95,576,512,64,0,f16,f16,0,1
95,1536,512,64,0,f16,f16,0,1
95,3072,512,64,0,f16,f16,0,1
95,4096,512,64,0,f16,f16,0,1
95,4608,512,64,0,f16,f16,0,1
95,7168,512,64,0,f16,f16,0,1
95,576,1536,64,0,f16,f16,0,1
95,1536,1536,64,0,f16,f16,0,1
95,3072,1536,64,0,f16,f16,0,1
95,4096,1536,64,0,f16,f16,0,1
95,4608,1536,64,0,f16,f16,0,1
95,7168,1536,64,0,f16,f16,0,1
95,512,2048,64,0,f16,f16,0,1
95,1536,2048,64,0,f16,f16,0,1
95,3072,2048,64,0,f16,f16,0,1
95,4096,2048,64,0,f16,f16,0,1
95,4608,2048,64,0,f16,f16,0,1
95,7168,2048,64,0,f16,f16,0,1
95,512,2304,64,0,f16,f16,0,1
95,1536,2304,64,0,f16,f16,0,1
95,3072,2304,64,0,f16,f16,0,1
95,4096,2304,64,0,f16,f16,0,1
95,4608,2304,64,0,f16,f16,0,1
95,7168,2304,64,0,f16,f16,0,1
95,512,7168,64,0,f16,f16,0,1
95,1536,7168,64,0,f16,f16,0,1
95,3072,7168,64,0,f16,f16,0,1
95,4096,7168,64,0,f16,f16,0,1
95,4608,7168,64,0,f16,f16,0,1
95,7168,7168,64,0,f16,f16,0,1
96,576,256,64,0,f16,f16,0,1
96,1536,256,64,0,f16,f16,0,1
96,3072,256,64,0,f16,f16,0,1
96,4096,256,64,0,f16,f16,0,1
96,4608,256,64,0,f16,f16,0,1
96,7168,256,64,0,f16,f16,0,1
96,576,512,64,0,f16,f16,0,1
96,1536,512,64,0,f16,f16,0,1
96,3072,512,64,0,f16,f16,0,1
96,4096,512,64,0,f16,f16,0,1
96,4608,512,64,0,f16,f16,0,1
96,7168,512,64,0,f16,f16,0,1
96,576,1536,64,0,f16,f16,0,1
96,1536,1536,64,0,f16,f16,0,1
96,3072,1536,64,0,f16,f16,0,1
96,4096,1536,64,0,f16,f16,0,1
96,4608,1536,64,0,f16,f16,0,1
96,7168,1536,64,0,f16,f16,0,1
96,512,2048,64,0,f16,f16,0,1
96,1536,2048,64,0,f16,f16,0,1
96,3072,2048,64,0,f16,f16,0,1
96,4096,2048,64,0,f16,f16,0,1
96,4608,2048,64,0,f16,f16,0,1
96,7168,2048,64,0,f16,f16,0,1
96,512,2304,64,0,f16,f16,0,1
96,1536,2304,64,0,f16,f16,0,1
96,3072,2304,64,0,f16,f16,0,1
96,4096,2304,64,0,f16,f16,0,1
96,4608,2304,64,0,f16,f16,0,1
96,7168,2304,64,0,f16,f16,0,1
96,512,7168,64,0,f16,f16,0,1
96,1536,7168,64,0,f16,f16,0,1
96,3072,7168,64,0,f16,f16,0,1
96,4096,7168,64,0,f16,f16,0,1
96,4608,7168,64,0,f16,f16,0,1
96,7168,7168,64,0,f16,f16,0,1
97,576,256,64,0,f16,f16,0,1
97,1536,256,64,0,f16,f16,0,1
97,3072,256,64,0,f16,f16,0,1
97,4096,256,64,0,f16,f16,0,1
97,4608,256,64,0,f16,f16,0,1
97,7168,256,64,0,f16,f16,0,1
97,576,512,64,0,f16,f16,0,1
97,1536,512,64,0,f16,f16,0,1
97,3072,512,64,0,f16,f16,0,1
97,4096,512,64,0,f16,f16,0,1
97,4608,512,64,0,f16,f16,0,1
97,7168,512,64,0,f16,f16,0,1
97,576,1536,64,0,f16,f16,0,1
97,1536,1536,64,0,f16,f16,0,1
97,3072,1536,64,0,f16,f16,0,1
97,4096,1536,64,0,f16,f16,0,1
97,4608,1536,64,0,f16,f16,0,1
97,7168,1536,64,0,f16,f16,0,1
97,512,2048,64,0,f16,f16,0,1
97,1536,2048,64,0,f16,f16,0,1
97,3072,2048,64,0,f16,f16,0,1
97,4096,2048,64,0,f16,f16,0,1
97,4608,2048,64,0,f16,f16,0,1
97,7168,2048,64,0,f16,f16,0,1
97,512,2304,64,0,f16,f16,0,1
97,1536,2304,64,0,f16,f16,0,1
97,3072,2304,64,0,f16,f16,0,1
97,4096,2304,64,0,f16,f16,0,1
97,4608,2304,64,0,f16,f16,0,1
97,7168,2304,64,0,f16,f16,0,1
97,512,7168,64,0,f16,f16,0,1
97,1536,7168,64,0,f16,f16,0,1
97,3072,7168,64,0,f16,f16,0,1
97,4096,7168,64,0,f16,f16,0,1
97,4608,7168,64,0,f16,f16,0,1
97,7168,7168,64,0,f16,f16,0,1
98,576,256,64,0,f16,f16,0,1
98,1536,256,64,0,f16,f16,0,1
98,3072,256,64,0,f16,f16,0,1
98,4096,256,64,0,f16,f16,0,1
98,4608,256,64,0,f16,f16,0,1
98,7168,256,64,0,f16,f16,0,1
98,576,512,64,0,f16,f16,0,1
98,1536,512,64,0,f16,f16,0,1
98,3072,512,64,0,f16,f16,0,1
98,4096,512,64,0,f16,f16,0,1
98,4608,512,64,0,f16,f16,0,1
98,7168,512,64,0,f16,f16,0,1
98,576,1536,64,0,f16,f16,0,1
98,1536,1536,64,0,f16,f16,0,1
98,3072,1536,64,0,f16,f16,0,1
98,4096,1536,64,0,f16,f16,0,1
98,4608,1536,64,0,f16,f16,0,1
98,7168,1536,64,0,f16,f16,0,1
98,512,2048,64,0,f16,f16,0,1
98,1536,2048,64,0,f16,f16,0,1
98,3072,2048,64,0,f16,f16,0,1
98,4096,2048,64,0,f16,f16,0,1
98,4608,2048,64,0,f16,f16,0,1
98,7168,2048,64,0,f16,f16,0,1
98,512,2304,64,0,f16,f16,0,1
98,1536,2304,64,0,f16,f16,0,1
98,3072,2304,64,0,f16,f16,0,1
98,4096,2304,64,0,f16,f16,0,1
98,4608,2304,64,0,f16,f16,0,1
98,7168,2304,64,0,f16,f16,0,1
98,512,7168,64,0,f16,f16,0,1
98,1536,7168,64,0,f16,f16,0,1
98,3072,7168,64,0,f16,f16,0,1
98,4096,7168,64,0,f16,f16,0,1
98,4608,7168,64,0,f16,f16,0,1
98,7168,7168,64,0,f16,f16,0,1
99,576,256,64,0,f16,f16,0,1
99,1536,256,64,0,f16,f16,0,1
99,3072,256,64,0,f16,f16,0,1
99,4096,256,64,0,f16,f16,0,1
99,4608,256,64,0,f16,f16,0,1
99,7168,256,64,0,f16,f16,0,1
99,576,512,64,0,f16,f16,0,1
99,1536,512,64,0,f16,f16,0,1
99,3072,512,64,0,f16,f16,0,1
99,4096,512,64,0,f16,f16,0,1
99,4608,512,64,0,f16,f16,0,1
99,7168,512,64,0,f16,f16,0,1
99,576,1536,64,0,f16,f16,0,1
99,1536,1536,64,0,f16,f16,0,1
99,3072,1536,64,0,f16,f16,0,1
99,4096,1536,64,0,f16,f16,0,1
99,4608,1536,64,0,f16,f16,0,1
99,7168,1536,64,0,f16,f16,0,1
99,512,2048,64,0,f16,f16,0,1
99,1536,2048,64,0,f16,f16,0,1
99,3072,2048,64,0,f16,f16,0,1
99,4096,2048,64,0,f16,f16,0,1
99,4608,2048,64,0,f16,f16,0,1
99,7168,2048,64,0,f16,f16,0,1
99,512,2304,64,0,f16,f16,0,1
99,1536,2304,64,0,f16,f16,0,1
99,3072,2304,64,0,f16,f16,0,1
99,4096,2304,64,0,f16,f16,0,1
99,4608,2304,64,0,f16,f16,0,1
99,7168,2304,64,0,f16,f16,0,1
99,512,7168,64,0,f16,f16,0,1
99,1536,7168,64,0,f16,f16,0,1
99,3072,7168,64,0,f16,f16,0,1
99,4096,7168,64,0,f16,f16,0,1
99,4608,7168,64,0,f16,f16,0,1
99,7168,7168,64,0,f16,f16,0,1
100,576,256,64,0,f16,f16,0,1
100,1536,256,64,0,f16,f16,0,1
100,3072,256,64,0,f16,f16,0,1
100,4096,256,64,0,f16,f16,0,1
100,4608,256,64,0,f16,f16,0,1
100,7168,256,64,0,f16,f16,0,1
100,576,512,64,0,f16,f16,0,1
100,1536,512,64,0,f16,f16,0,1
100,3072,512,64,0,f16,f16,0,1
100,4096,512,64,0,f16,f16,0,1
100,4608,512,64,0,f16,f16,0,1
100,7168,512,64,0,f16,f16,0,1
100,576,1536,64,0,f16,f16,0,1
100,1536,1536,64,0,f16,f16,0,1
100,3072,1536,64,0,f16,f16,0,1
100,4096,1536,64,0,f16,f16,0,1
100,4608,1536,64,0,f16,f16,0,1
100,7168,1536,64,0,f16,f16,0,1
100,512,2048,64,0,f16,f16,0,1
100,1536,2048,64,0,f16,f16,0,1
100,3072,2048,64,0,f16,f16,0,1
100,4096,2048,64,0,f16,f16,0,1
100,4608,2048,64,0,f16,f16,0,1
100,7168,2048,64,0,f16,f16,0,1
100,512,2304,64,0,f16,f16,0,1
100,1536,2304,64,0,f16,f16,0,1
100,3072,2304,64,0,f16,f16,0,1
100,4096,2304,64,0,f16,f16,0,1
100,4608,2304,64,0,f16,f16,0,1
100,7168,2304,64,0,f16,f16,0,1
100,512,7168,64,0,f16,f16,0,1
100,1536,7168,64,0,f16,f16,0,1
100,3072,7168,64,0,f16,f16,0,1
100,4096,7168,64,0,f16,f16,0,1
100,4608,7168,64,0,f16,f16,0,1
100,7168,7168,64,0,f16,f16,0,1
101,576,256,64,0,f16,f16,0,1
101,1536,256,64,0,f16,f16,0,1
101,3072,256,64,0,f16,f16,0,1
101,4096,256,64,0,f16,f16,0,1
101,4608,256,64,0,f16,f16,0,1
101,7168,256,64,0,f16,f16,0,1
101,576,512,64,0,f16,f16,0,1
101,1536,512,64,0,f16,f16,0,1
101,3072,512,64,0,f16,f16,0,1
101,4096,512,64,0,f16,f16,0,1
101,4608,512,64,0,f16,f16,0,1
101,7168,512,64,0,f16,f16,0,1
101,576,1536,64,0,f16,f16,0,1
101,1536,1536,64,0,f16,f16,0,1
101,3072,1536,64,0,f16,f16,0,1
101,4096,1536,64,0,f16,f16,0,1
101,4608,1536,64,0,f16,f16,0,1
101,7168,1536,64,0,f16,f16,0,1
101,512,2048,64,0,f16,f16,0,1
101,1536,2048,64,0,f16,f16,0,1
101,3072,2048,64,0,f16,f16,0,1
101,4096,2048,64,0,f16,f16,0,1
101,4608,2048,64,0,f16,f16,0,1
101,7168,2048,64,0,f16,f16,0,1
101,512,2304,64,0,f16,f16,0,1
101,1536,2304,64,0,f16,f16,0,1
101,3072,2304,64,0,f16,f16,0,1
101,4096,2304,64,0,f16,f16,0,1
101,4608,2304,64,0,f16,f16,0,1
101,7168,2304,64,0,f16,f16,0,1
101,512,7168,64,0,f16,f16,0,1
101,1536,7168,64,0,f16,f16,0,1
101,3072,7168,64,0,f16,f16,0,1
101,4096,7168,64,0,f16,f16,0,1
101,4608,7168,64,0,f16,f16,0,1
101,7168,7168,64,0,f16,f16,0,1
102,576,256,64,0,f16,f16,0,1
102,1536,256,64,0,f16,f16,0,1
102,3072,256,64,0,f16,f16,0,1
102,4096,256,64,0,f16,f16,0,1
102,4608,256,64,0,f16,f16,0,1
102,7168,256,64,0,f16,f16,0,1
102,576,512,64,0,f16,f16,0,1
102,1536,512,64,0,f16,f16,0,1
102,3072,512,64,0,f16,f16,0,1
102,4096,512,64,0,f16,f16,0,1
102,4608,512,64,0,f16,f16,0,1
102,7168,512,64,0,f16,f16,0,1
102,576,1536,64,0,f16,f16,0,1
102,1536,1536,64,0,f16,f16,0,1
102,3072,1536,64,0,f16,f16,0,1
102,4096,1536,64,0,f16,f16,0,1
102,4608,1536,64,0,f16,f16,0,1
102,7168,1536,64,0,f16,f16,0,1
102,512,2048,64,0,f16,f16,0,1
102,1536,2048,64,0,f16,f16,0,1
102,3072,2048,64,0,f16,f16,0,1
102,4096,2048,64,0,f16,f16,0,1
102,4608,2048,64,0,f16,f16,0,1
102,7168,2048,64,0,f16,f16,0,1
102,512,2304,64,0,f16,f16,0,1
102,1536,2304,64,0,f16,f16,0,1
102,3072,2304,64,0,f16,f16,0,1
102,4096,2304,64,0,f16,f16,0,1
102,4608,2304,64,0,f16,f16,0,1
102,7168,2304,64,0,f16,f16,0,1
102,512,7168,64,0,f16,f16,0,1
102,1536,7168,64,0,f16,f16,0,1
102,3072,7168,64,0,f16,f16,0,1
102,4096,7168,64,0,f16,f16,0,1
102,4608,7168,64,0,f16,f16,0,1
102,7168,7168,64,0,f16,f16,0,1
103,576,256,64,0,f16,f16,0,1
103,1536,256,64,0,f16,f16,0,1
103,3072,256,64,0,f16,f16,0,1
103,4096,256,64,0,f16,f16,0,1
103,4608,256,64,0,f16,f16,0,1
103,7168,256,64,0,f16,f16,0,1
103,576,512,64,0,f16,f16,0,1
103,1536,512,64,0,f16,f16,0,1
103,3072,512,64,0,f16,f16,0,1
103,4096,512,64,0,f16,f16,0,1
103,4608,512,64,0,f16,f16,0,1
103,7168,512,64,0,f16,f16,0,1
103,576,1536,64,0,f16,f16,0,1
103,1536,1536,64,0,f16,f16,0,1
103,3072,1536,64,0,f16,f16,0,1
103,4096,1536,64,0,f16,f16,0,1
103,4608,1536,64,0,f16,f16,0,1
103,7168,1536,64,0,f16,f16,0,1
103,512,2048,64,0,f16,f16,0,1
103,1536,2048,64,0,f16,f16,0,1
103,3072,2048,64,0,f16,f16,0,1
103,4096,2048,64,0,f16,f16,0,1
103,4608,2048,64,0,f16,f16,0,1
103,7168,2048,64,0,f16,f16,0,1
103,512,2304,64,0,f16,f16,0,1
103,1536,2304,64,0,f16,f16,0,1
103,3072,2304,64,0,f16,f16,0,1
103,4096,2304,64,0,f16,f16,0,1
103,4608,2304,64,0,f16,f16,0,1
103,7168,2304,64,0,f16,f16,0,1
103,512,7168,64,0,f16,f16,0,1
103,1536,7168,64,0,f16,f16,0,1
103,3072,7168,64,0,f16,f16,0,1
103,4096,7168,64,0,f16,f16,0,1
103,4608,7168,64,0,f16,f16,0,1
103,7168,7168,64,0,f16,f16,0,1
104,576,256,64,0,f16,f16,0,1
104,1536,256,64,0,f16,f16,0,1
104,3072,256,64,0,f16,f16,0,1
104,4096,256,64,0,f16,f16,0,1
104,4608,256,64,0,f16,f16,0,1
104,7168,256,64,0,f16,f16,0,1
104,576,512,64,0,f16,f16,0,1
104,1536,512,64,0,f16,f16,0,1
104,3072,512,64,0,f16,f16,0,1
104,4096,512,64,0,f16,f16,0,1
104,4608,512,64,0,f16,f16,0,1
104,7168,512,64,0,f16,f16,0,1
104,576,1536,64,0,f16,f16,0,1
104,1536,1536,64,0,f16,f16,0,1
104,3072,1536,64,0,f16,f16,0,1
104,4096,1536,64,0,f16,f16,0,1
104,4608,1536,64,0,f16,f16,0,1
104,7168,1536,64,0,f16,f16,0,1
104,512,2048,64,0,f16,f16,0,1
104,1536,2048,64,0,f16,f16,0,1
104,3072,2048,64,0,f16,f16,0,1
104,4096,2048,64,0,f16,f16,0,1
104,4608,2048,64,0,f16,f16,0,1
104,7168,2048,64,0,f16,f16,0,1
104,512,2304,64,0,f16,f16,0,1
104,1536,2304,64,0,f16,f16,0,1
104,3072,2304,64,0,f16,f16,0,1
104,4096,2304,64,0,f16,f16,0,1
104,4608,2304,64,0,f16,f16,0,1
104,7168,2304,64,0,f16,f16,0,1
104,512,7168,64,0,f16,f16,0,1
104,1536,7168,64,0,f16,f16,0,1
104,3072,7168,64,0,f16,f16,0,1
104,4096,7168,64,0,f16,f16,0,1
104,4608,7168,64,0,f16,f16,0,1
104,7168,7168,64,0,f16,f16,0,1
105,576,256,64,0,f16,f16,0,1
105,1536,256,64,0,f16,f16,0,1
105,3072,256,64,0,f16,f16,0,1
105,4096,256,64,0,f16,f16,0,1
105,4608,256,64,0,f16,f16,0,1
105,7168,256,64,0,f16,f16,0,1
105,576,512,64,0,f16,f16,0,1
105,1536,512,64,0,f16,f16,0,1
105,3072,512,64,0,f16,f16,0,1
105,4096,512,64,0,f16,f16,0,1
105,4608,512,64,0,f16,f16,0,1
105,7168,512,64,0,f16,f16,0,1
105,576,1536,64,0,f16,f16,0,1
105,1536,1536,64,0,f16,f16,0,1
105,3072,1536,64,0,f16,f16,0,1
105,4096,1536,64,0,f16,f16,0,1
105,4608,1536,64,0,f16,f16,0,1
105,7168,1536,64,0,f16,f16,0,1
105,512,2048,64,0,f16,f16,0,1
105,1536,2048,64,0,f16,f16,0,1
105,3072,2048,64,0,f16,f16,0,1
105,4096,2048,64,0,f16,f16,0,1
105,4608,2048,64,0,f16,f16,0,1
105,7168,2048,64,0,f16,f16,0,1
105,512,2304,64,0,f16,f16,0,1
105,1536,2304,64,0,f16,f16,0,1
105,3072,2304,64,0,f16,f16,0,1
105,4096,2304,64,0,f16,f16,0,1
105,4608,2304,64,0,f16,f16,0,1
105,7168,2304,64,0,f16,f16,0,1
105,512,7168,64,0,f16,f16,0,1
105,1536,7168,64,0,f16,f16,0,1
105,3072,7168,64,0,f16,f16,0,1
105,4096,7168,64,0,f16,f16,0,1
105,4608,7168,64,0,f16,f16,0,1
105,7168,7168,64,0,f16,f16,0,1
106,576,256,64,0,f16,f16,0,1
106,1536,256,64,0,f16,f16,0,1
106,3072,256,64,0,f16,f16,0,1
106,4096,256,64,0,f16,f16,0,1
106,4608,256,64,0,f16,f16,0,1
106,7168,256,64,0,f16,f16,0,1
106,576,512,64,0,f16,f16,0,1
106,1536,512,64,0,f16,f16,0,1
106,3072,512,64,0,f16,f16,0,1
106,4096,512,64,0,f16,f16,0,1
106,4608,512,64,0,f16,f16,0,1
106,7168,512,64,0,f16,f16,0,1
106,576,1536,64,0,f16,f16,0,1
106,1536,1536,64,0,f16,f16,0,1
106,3072,1536,64,0,f16,f16,0,1
106,4096,1536,64,0,f16,f16,0,1
106,4608,1536,64,0,f16,f16,0,1
106,7168,1536,64,0,f16,f16,0,1
106,512,2048,64,0,f16,f16,0,1
106,1536,2048,64,0,f16,f16,0,1
106,3072,2048,64,0,f16,f16,0,1
106,4096,2048,64,0,f16,f16,0,1
106,4608,2048,64,0,f16,f16,0,1
106,7168,2048,64,0,f16,f16,0,1
106,512,2304,64,0,f16,f16,0,1
106,1536,2304,64,0,f16,f16,0,1
106,3072,2304,64,0,f16,f16,0,1
106,4096,2304,64,0,f16,f16,0,1
106,4608,2304,64,0,f16,f16,0,1
106,7168,2304,64,0,f16,f16,0,1
106,512,7168,64,0,f16,f16,0,1
106,1536,7168,64,0,f16,f16,0,1
106,3072,7168,64,0,f16,f16,0,1
106,4096,7168,64,0,f16,f16,0,1
106,4608,7168,64,0,f16,f16,0,1
106,7168,7168,64,0,f16,f16,0,1
107,576,256,64,0,f16,f16,0,1
107,1536,256,64,0,f16,f16,0,1
107,3072,256,64,0,f16,f16,0,1
107,4096,256,64,0,f16,f16,0,1
107,4608,256,64,0,f16,f16,0,1
107,7168,256,64,0,f16,f16,0,1
107,576,512,64,0,f16,f16,0,1
107,1536,512,64,0,f16,f16,0,1
107,3072,512,64,0,f16,f16,0,1
107,4096,512,64,0,f16,f16,0,1
107,4608,512,64,0,f16,f16,0,1
107,7168,512,64,0,f16,f16,0,1
107,576,1536,64,0,f16,f16,0,1
107,1536,1536,64,0,f16,f16,0,1
107,3072,1536,64,0,f16,f16,0,1
107,4096,1536,64,0,f16,f16,0,1
107,4608,1536,64,0,f16,f16,0,1
107,7168,1536,64,0,f16,f16,0,1
107,512,2048,64,0,f16,f16,0,1
107,1536,2048,64,0,f16,f16,0,1
107,3072,2048,64,0,f16,f16,0,1
107,4096,2048,64,0,f16,f16,0,1
107,4608,2048,64,0,f16,f16,0,1
107,7168,2048,64,0,f16,f16,0,1
107,512,2304,64,0,f16,f16,0,1
107,1536,2304,64,0,f16,f16,0,1
107,3072,2304,64,0,f16,f16,0,1
107,4096,2304,64,0,f16,f16,0,1
107,4608,2304,64,0,f16,f16,0,1
107,7168,2304,64,0,f16,f16,0,1
107,512,7168,64,0,f16,f16,0,1
107,1536,7168,64,0,f16,f16,0,1
107,3072,7168,64,0,f16,f16,0,1
107,4096,7168,64,0,f16,f16,0,1
107,4608,7168,64,0,f16,f16,0,1
107,7168,7168,64,0,f16,f16,0,1
108,576,256,64,0,f16,f16,0,1
108,1536,256,64,0,f16,f16,0,1
108,3072,256,64,0,f16,f16,0,1
108,4096,256,64,0,f16,f16,0,1
108,4608,256,64,0,f16,f16,0,1
108,7168,256,64,0,f16,f16,0,1
108,576,512,64,0,f16,f16,0,1
108,1536,512,64,0,f16,f16,0,1
108,3072,512,64,0,f16,f16,0,1
108,4096,512,64,0,f16,f16,0,1
108,4608,512,64,0,f16,f16,0,1
108,7168,512,64,0,f16,f16,0,1
108,576,1536,64,0,f16,f16,0,1
108,1536,1536,64,0,f16,f16,0,1
108,3072,1536,64,0,f16,f16,0,1
108,4096,1536,64,0,f16,f16,0,1
108,4608,1536,64,0,f16,f16,0,1
108,7168,1536,64,0,f16,f16,0,1
108,512,2048,64,0,f16,f16,0,1
108,1536,2048,64,0,f16,f16,0,1
108,3072,2048,64,0,f16,f16,0,1
108,4096,2048,64,0,f16,f16,0,1
108,4608,2048,64,0,f16,f16,0,1
108,7168,2048,64,0,f16,f16,0,1
108,512,2304,64,0,f16,f16,0,1
108,1536,2304,64,0,f16,f16,0,1
108,3072,2304,64,0,f16,f16,0,1
108,4096,2304,64,0,f16,f16,0,1
108,4608,2304,64,0,f16,f16,0,1
108,7168,2304,64,0,f16,f16,0,1
108,512,7168,64,0,f16,f16,0,1
108,1536,7168,64,0,f16,f16,0,1
108,3072,7168,64,0,f16,f16,0,1
108,4096,7168,64,0,f16,f16,0,1
108,4608,7168,64,0,f16,f16,0,1
108,7168,7168,64,0,f16,f16,0,1
109,576,256,64,0,f16,f16,0,1
109,1536,256,64,0,f16,f16,0,1
109,3072,256,64,0,f16,f16,0,1
109,4096,256,64,0,f16,f16,0,1
109,4608,256,64,0,f16,f16,0,1
109,7168,256,64,0,f16,f16,0,1
109,576,512,64,0,f16,f16,0,1
109,1536,512,64,0,f16,f16,0,1
109,3072,512,64,0,f16,f16,0,1
109,4096,512,64,0,f16,f16,0,1
109,4608,512,64,0,f16,f16,0,1
109,7168,512,64,0,f16,f16,0,1
109,576,1536,64,0,f16,f16,0,1
109,1536,1536,64,0,f16,f16,0,1
109,3072,1536,64,0,f16,f16,0,1
109,4096,1536,64,0,f16,f16,0,1
109,4608,1536,64,0,f16,f16,0,1
109,7168,1536,64,0,f16,f16,0,1
109,512,2048,64,0,f16,f16,0,1
109,1536,2048,64,0,f16,f16,0,1
109,3072,2048,64,0,f16,f16,0,1
109,4096,2048,64,0,f16,f16,0,1
109,4608,2048,64,0,f16,f16,0,1
109,7168,2048,64,0,f16,f16,0,1
109,512,2304,64,0,f16,f16,0,1
109,1536,2304,64,0,f16,f16,0,1
109,3072,2304,64,0,f16,f16,0,1
109,4096,2304,64,0,f16,f16,0,1
109,4608,2304,64,0,f16,f16,0,1
109,7168,2304,64,0,f16,f16,0,1
109,512,7168,64,0,f16,f16,0,1
109,1536,7168,64,0,f16,f16,0,1
109,3072,7168,64,0,f16,f16,0,1
109,4096,7168,64,0,f16,f16,0,1
109,4608,7168,64,0,f16,f16,0,1
109,7168,7168,64,0,f16,f16,0,1
110,576,256,64,0,f16,f16,0,1
110,1536,256,64,0,f16,f16,0,1
110,3072,256,64,0,f16,f16,0,1
110,4096,256,64,0,f16,f16,0,1
110,4608,256,64,0,f16,f16,0,1
110,7168,256,64,0,f16,f16,0,1
110,576,512,64,0,f16,f16,0,1
110,1536,512,64,0,f16,f16,0,1
110,3072,512,64,0,f16,f16,0,1
110,4096,512,64,0,f16,f16,0,1
110,4608,512,64,0,f16,f16,0,1
110,7168,512,64,0,f16,f16,0,1
110,576,1536,64,0,f16,f16,0,1
110,1536,1536,64,0,f16,f16,0,1
110,3072,1536,64,0,f16,f16,0,1
110,4096,1536,64,0,f16,f16,0,1
110,4608,1536,64,0,f16,f16,0,1
110,7168,1536,64,0,f16,f16,0,1
110,512,2048,64,0,f16,f16,0,1
110,1536,2048,64,0,f16,f16,0,1
110,3072,2048,64,0,f16,f16,0,1
110,4096,2048,64,0,f16,f16,0,1
110,4608,2048,64,0,f16,f16,0,1
110,7168,2048,64,0,f16,f16,0,1
110,512,2304,64,0,f16,f16,0,1
110,1536,2304,64,0,f16,f16,0,1
110,3072,2304,64,0,f16,f16,0,1
110,4096,2304,64,0,f16,f16,0,1
110,4608,2304,64,0,f16,f16,0,1
110,7168,2304,64,0,f16,f16,0,1
110,512,7168,64,0,f16,f16,0,1
110,1536,7168,64,0,f16,f16,0,1
110,3072,7168,64,0,f16,f16,0,1
110,4096,7168,64,0,f16,f16,0,1
110,4608,7168,64,0,f16,f16,0,1
110,7168,7168,64,0,f16,f16,0,1
111,576,256,64,0,f16,f16,0,1
111,1536,256,64,0,f16,f16,0,1
111,3072,256,64,0,f16,f16,0,1
111,4096,256,64,0,f16,f16,0,1
111,4608,256,64,0,f16,f16,0,1
111,7168,256,64,0,f16,f16,0,1
111,576,512,64,0,f16,f16,0,1
111,1536,512,64,0,f16,f16,0,1
111,3072,512,64,0,f16,f16,0,1
111,4096,512,64,0,f16,f16,0,1
111,4608,512,64,0,f16,f16,0,1
111,7168,512,64,0,f16,f16,0,1
111,576,1536,64,0,f16,f16,0,1
111,1536,1536,64,0,f16,f16,0,1
111,3072,1536,64,0,f16,f16,0,1
111,4096,1536,64,0,f16,f16,0,1
111,4608,1536,64,0,f16,f16,0,1
111,7168,1536,64,0,f16,f16,0,1
111,512,2048,64,0,f16,f16,0,1
111,1536,2048,64,0,f16,f16,0,1
111,3072,2048,64,0,f16,f16,0,1
111,4096,2048,64,0,f16,f16,0,1
111,4608,2048,64,0,f16,f16,0,1
111,7168,2048,64,0,f16,f16,0,1
111,512,2304,64,0,f16,f16,0,1
111,1536,2304,64,0,f16,f16,0,1
111,3072,2304,64,0,f16,f16,0,1
111,4096,2304,64,0,f16,f16,0,1
111,4608,2304,64,0,f16,f16,0,1
111,7168,2304,64,0,f16,f16,0,1
111,512,7168,64,0,f16,f16,0,1
111,1536,7168,64,0,f16,f16,0,1
111,3072,7168,64,0,f16,f16,0,1
111,4096,7168,64,0,f16,f16,0,1
111,4608,7168,64,0,f16,f16,0,1
111,7168,7168,64,0,f16,f16,0,1
112,576,256,64,0,f16,f16,0,1
112,1536,256,64,0,f16,f16,0,1
112,3072,256,64,0,f16,f16,0,1
112,4096,256,64,0,f16,f16,0,1
112,4608,256,64,0,f16,f16,0,1
112,7168,256,64,0,f16,f16,0,1
112,576,512,64,0,f16,f16,0,1
112,1536,512,64,0,f16,f16,0,1
112,3072,512,64,0,f16,f16,0,1
112,4096,512,64,0,f16,f16,0,1
112,4608,512,64,0,f16,f16,0,1
112,7168,512,64,0,f16,f16,0,1
112,576,1536,64,0,f16,f16,0,1
112,1536,1536,64,0,f16,f16,0,1
112,3072,1536,64,0,f16,f16,0,1
112,4096,1536,64,0,f16,f16,0,1
112,4608,1536,64,0,f16,f16,0,1
112,7168,1536,64,0,f16,f16,0,1
112,512,2048,64,0,f16,f16,0,1
112,1536,2048,64,0,f16,f16,0,1
112,3072,2048,64,0,f16,f16,0,1
112,4096,2048,64,0,f16,f16,0,1
112,4608,2048,64,0,f16,f16,0,1
112,7168,2048,64,0,f16,f16,0,1
112,512,2304,64,0,f16,f16,0,1
112,1536,2304,64,0,f16,f16,0,1
112,3072,2304,64,0,f16,f16,0,1
112,4096,2304,64,0,f16,f16,0,1
112,4608,2304,64,0,f16,f16,0,1
112,7168,2304,64,0,f16,f16,0,1
112,512,7168,64,0,f16,f16,0,1
112,1536,7168,64,0,f16,f16,0,1
112,3072,7168,64,0,f16,f16,0,1
112,4096,7168,64,0,f16,f16,0,1
112,4608,7168,64,0,f16,f16,0,1
112,7168,7168,64,0,f16,f16,0,1
113,576,256,64,0,f16,f16,0,1
113,1536,256,64,0,f16,f16,0,1
113,3072,256,64,0,f16,f16,0,1
113,4096,256,64,0,f16,f16,0,1
113,4608,256,64,0,f16,f16,0,1
113,7168,256,64,0,f16,f16,0,1
113,576,512,64,0,f16,f16,0,1
113,1536,512,64,0,f16,f16,0,1
113,3072,512,64,0,f16,f16,0,1
113,4096,512,64,0,f16,f16,0,1
113,4608,512,64,0,f16,f16,0,1
113,7168,512,64,0,f16,f16,0,1
113,576,1536,64,0,f16,f16,0,1
113,1536,1536,64,0,f16,f16,0,1
113,3072,1536,64,0,f16,f16,0,1
113,4096,1536,64,0,f16,f16,0,1
113,4608,1536,64,0,f16,f16,0,1
113,7168,1536,64,0,f16,f16,0,1
113,512,2048,64,0,f16,f16,0,1
113,1536,2048,64,0,f16,f16,0,1
113,3072,2048,64,0,f16,f16,0,1
113,4096,2048,64,0,f16,f16,0,1
113,4608,2048,64,0,f16,f16,0,1
113,7168,2048,64,0,f16,f16,0,1
113,512,2304,64,0,f16,f16,0,1
113,1536,2304,64,0,f16,f16,0,1
113,3072,2304,64,0,f16,f16,0,1
113,4096,2304,64,0,f16,f16,0,1
113,4608,2304,64,0,f16,f16,0,1
113,7168,2304,64,0,f16,f16,0,1
113,512,7168,64,0,f16,f16,0,1
113,1536,7168,64,0,f16,f16,0,1
113,3072,7168,64,0,f16,f16,0,1
113,4096,7168,64,0,f16,f16,0,1
113,4608,7168,64,0,f16,f16,0,1
113,7168,7168,64,0,f16,f16,0,1
114,576,256,64,0,f16,f16,0,1
114,1536,256,64,0,f16,f16,0,1
114,3072,256,64,0,f16,f16,0,1
114,4096,256,64,0,f16,f16,0,1
114,4608,256,64,0,f16,f16,0,1
114,7168,256,64,0,f16,f16,0,1
114,576,512,64,0,f16,f16,0,1
114,1536,512,64,0,f16,f16,0,1
114,3072,512,64,0,f16,f16,0,1
114,4096,512,64,0,f16,f16,0,1
114,4608,512,64,0,f16,f16,0,1
114,7168,512,64,0,f16,f16,0,1
114,576,1536,64,0,f16,f16,0,1
114,1536,1536,64,0,f16,f16,0,1
114,3072,1536,64,0,f16,f16,0,1
114,4096,1536,64,0,f16,f16,0,1
114,4608,1536,64,0,f16,f16,0,1
114,7168,1536,64,0,f16,f16,0,1
114,512,2048,64,0,f16,f16,0,1
114,1536,2048,64,0,f16,f16,0,1
114,3072,2048,64,0,f16,f16,0,1
114,4096,2048,64,0,f16,f16,0,1
114,4608,2048,64,0,f16,f16,0,1
114,7168,2048,64,0,f16,f16,0,1
114,512,2304,64,0,f16,f16,0,1
114,1536,2304,64,0,f16,f16,0,1
114,3072,2304,64,0,f16,f16,0,1
114,4096,2304,64,0,f16,f16,0,1
114,4608,2304,64,0,f16,f16,0,1
114,7168,2304,64,0,f16,f16,0,1
114,512,7168,64,0,f16,f16,0,1
114,1536,7168,64,0,f16,f16,0,1
114,3072,7168,64,0,f16,f16,0,1
114,4096,7168,64,0,f16,f16,0,1
114,4608,7168,64,0,f16,f16,0,1
114,7168,7168,64,0,f16,f16,0,1
115,576,256,64,0,f16,f16,0,1
115,1536,256,64,0,f16,f16,0,1
115,3072,256,64,0,f16,f16,0,1
115,4096,256,64,0,f16,f16,0,1
115,4608,256,64,0,f16,f16,0,1
115,7168,256,64,0,f16,f16,0,1
115,576,512,64,0,f16,f16,0,1
115,1536,512,64,0,f16,f16,0,1
115,3072,512,64,0,f16,f16,0,1
115,4096,512,64,0,f16,f16,0,1
115,4608,512,64,0,f16,f16,0,1
115,7168,512,64,0,f16,f16,0,1
115,576,1536,64,0,f16,f16,0,1
115,1536,1536,64,0,f16,f16,0,1
115,3072,1536,64,0,f16,f16,0,1
115,4096,1536,64,0,f16,f16,0,1
115,4608,1536,64,0,f16,f16,0,1
115,7168,1536,64,0,f16,f16,0,1
115,512,2048,64,0,f16,f16,0,1
115,1536,2048,64,0,f16,f16,0,1
115,3072,2048,64,0,f16,f16,0,1
115,4096,2048,64,0,f16,f16,0,1
115,4608,2048,64,0,f16,f16,0,1
115,7168,2048,64,0,f16,f16,0,1
115,512,2304,64,0,f16,f16,0,1
115,1536,2304,64,0,f16,f16,0,1
115,3072,2304,64,0,f16,f16,0,1
115,4096,2304,64,0,f16,f16,0,1
115,4608,2304,64,0,f16,f16,0,1
115,7168,2304,64,0,f16,f16,0,1
115,512,7168,64,0,f16,f16,0,1
115,1536,7168,64,0,f16,f16,0,1
115,3072,7168,64,0,f16,f16,0,1
115,4096,7168,64,0,f16,f16,0,1
115,4608,7168,64,0,f16,f16,0,1
115,7168,7168,64,0,f16,f16,0,1
116,576,256,64,0,f16,f16,0,1
116,1536,256,64,0,f16,f16,0,1
116,3072,256,64,0,f16,f16,0,1
116,4096,256,64,0,f16,f16,0,1
116,4608,256,64,0,f16,f16,0,1
116,7168,256,64,0,f16,f16,0,1
116,576,512,64,0,f16,f16,0,1
116,1536,512,64,0,f16,f16,0,1
116,3072,512,64,0,f16,f16,0,1
116,4096,512,64,0,f16,f16,0,1
116,4608,512,64,0,f16,f16,0,1
116,7168,512,64,0,f16,f16,0,1
116,576,1536,64,0,f16,f16,0,1
116,1536,1536,64,0,f16,f16,0,1
116,3072,1536,64,0,f16,f16,0,1
116,4096,1536,64,0,f16,f16,0,1
116,4608,1536,64,0,f16,f16,0,1
116,7168,1536,64,0,f16,f16,0,1
116,512,2048,64,0,f16,f16,0,1
116,1536,2048,64,0,f16,f16,0,1
116,3072,2048,64,0,f16,f16,0,1
116,4096,2048,64,0,f16,f16,0,1
116,4608,2048,64,0,f16,f16,0,1
116,7168,2048,64,0,f16,f16,0,1
116,512,2304,64,0,f16,f16,0,1
116,1536,2304,64,0,f16,f16,0,1
116,3072,2304,64,0,f16,f16,0,1
116,4096,2304,64,0,f16,f16,0,1
116,4608,2304,64,0,f16,f16,0,1
116,7168,2304,64,0,f16,f16,0,1
116,512,7168,64,0,f16,f16,0,1
116,1536,7168,64,0,f16,f16,0,1
116,3072,7168,64,0,f16,f16,0,1
116,4096,7168,64,0,f16,f16,0,1
116,4608,7168,64,0,f16,f16,0,1
116,7168,7168,64,0,f16,f16,0,1
117,576,256,64,0,f16,f16,0,1
117,1536,256,64,0,f16,f16,0,1
117,3072,256,64,0,f16,f16,0,1
117,4096,256,64,0,f16,f16,0,1
117,4608,256,64,0,f16,f16,0,1
117,7168,256,64,0,f16,f16,0,1
117,576,512,64,0,f16,f16,0,1
117,1536,512,64,0,f16,f16,0,1
117,3072,512,64,0,f16,f16,0,1
117,4096,512,64,0,f16,f16,0,1
117,4608,512,64,0,f16,f16,0,1
117,7168,512,64,0,f16,f16,0,1
117,576,1536,64,0,f16,f16,0,1
117,1536,1536,64,0,f16,f16,0,1
117,3072,1536,64,0,f16,f16,0,1
117,4096,1536,64,0,f16,f16,0,1
117,4608,1536,64,0,f16,f16,0,1
117,7168,1536,64,0,f16,f16,0,1
117,512,2048,64,0,f16,f16,0,1
117,1536,2048,64,0,f16,f16,0,1
117,3072,2048,64,0,f16,f16,0,1
117,4096,2048,64,0,f16,f16,0,1
117,4608,2048,64,0,f16,f16,0,1
117,7168,2048,64,0,f16,f16,0,1
117,512,2304,64,0,f16,f16,0,1
117,1536,2304,64,0,f16,f16,0,1
117,3072,2304,64,0,f16,f16,0,1
117,4096,2304,64,0,f16,f16,0,1
117,4608,2304,64,0,f16,f16,0,1
117,7168,2304,64,0,f16,f16,0,1
117,512,7168,64,0,f16,f16,0,1
117,1536,7168,64,0,f16,f16,0,1
117,3072,7168,64,0,f16,f16,0,1
117,4096,7168,64,0,f16,f16,0,1
117,4608,7168,64,0,f16,f16,0,1
117,7168,7168,64,0,f16,f16,0,1
118,576,256,64,0,f16,f16,0,1
118,1536,256,64,0,f16,f16,0,1
118,3072,256,64,0,f16,f16,0,1
118,4096,256,64,0,f16,f16,0,1
118,4608,256,64,0,f16,f16,0,1
118,7168,256,64,0,f16,f16,0,1
118,576,512,64,0,f16,f16,0,1
118,1536,512,64,0,f16,f16,0,1
118,3072,512,64,0,f16,f16,0,1
118,4096,512,64,0,f16,f16,0,1
118,4608,512,64,0,f16,f16,0,1
118,7168,512,64,0,f16,f16,0,1
118,576,1536,64,0,f16,f16,0,1
118,1536,1536,64,0,f16,f16,0,1
118,3072,1536,64,0,f16,f16,0,1
118,4096,1536,64,0,f16,f16,0,1
118,4608,1536,64,0,f16,f16,0,1
118,7168,1536,64,0,f16,f16,0,1
118,512,2048,64,0,f16,f16,0,1
118,1536,2048,64,0,f16,f16,0,1
118,3072,2048,64,0,f16,f16,0,1
118,4096,2048,64,0,f16,f16,0,1
118,4608,2048,64,0,f16,f16,0,1
118,7168,2048,64,0,f16,f16,0,1
118,512,2304,64,0,f16,f16,0,1
118,1536,2304,64,0,f16,f16,0,1
118,3072,2304,64,0,f16,f16,0,1
118,4096,2304,64,0,f16,f16,0,1
118,4608,2304,64,0,f16,f16,0,1
118,7168,2304,64,0,f16,f16,0,1
118,512,7168,64,0,f16,f16,0,1
118,1536,7168,64,0,f16,f16,0,1
118,3072,7168,64,0,f16,f16,0,1
118,4096,7168,64,0,f16,f16,0,1
118,4608,7168,64,0,f16,f16,0,1
118,7168,7168,64,0,f16,f16,0,1
119,576,256,64,0,f16,f16,0,1
119,1536,256,64,0,f16,f16,0,1
119,3072,256,64,0,f16,f16,0,1
119,4096,256,64,0,f16,f16,0,1
119,4608,256,64,0,f16,f16,0,1
119,7168,256,64,0,f16,f16,0,1
119,576,512,64,0,f16,f16,0,1
119,1536,512,64,0,f16,f16,0,1
119,3072,512,64,0,f16,f16,0,1
119,4096,512,64,0,f16,f16,0,1
119,4608,512,64,0,f16,f16,0,1
119,7168,512,64,0,f16,f16,0,1
119,576,1536,64,0,f16,f16,0,1
119,1536,1536,64,0,f16,f16,0,1
119,3072,1536,64,0,f16,f16,0,1
119,4096,1536,64,0,f16,f16,0,1
119,4608,1536,64,0,f16,f16,0,1
119,7168,1536,64,0,f16,f16,0,1
119,512,2048,64,0,f16,f16,0,1
119,1536,2048,64,0,f16,f16,0,1
119,3072,2048,64,0,f16,f16,0,1
119,4096,2048,64,0,f16,f16,0,1
119,4608,2048,64,0,f16,f16,0,1
119,7168,2048,64,0,f16,f16,0,1
119,512,2304,64,0,f16,f16,0,1
119,1536,2304,64,0,f16,f16,0,1
119,3072,2304,64,0,f16,f16,0,1
119,4096,2304,64,0,f16,f16,0,1
119,4608,2304,64,0,f16,f16,0,1
119,7168,2304,64,0,f16,f16,0,1
119,512,7168,64,0,f16,f16,0,1
119,1536,7168,64,0,f16,f16,0,1
119,3072,7168,64,0,f16,f16,0,1
119,4096,7168,64,0,f16,f16,0,1
119,4608,7168,64,0,f16,f16,0,1
119,7168,7168,64,0,f16,f16,0,1
120,576,256,64,0,f16,f16,0,1
120,1536,256,64,0,f16,f16,0,1
120,3072,256,64,0,f16,f16,0,1
120,4096,256,64,0,f16,f16,0,1
120,4608,256,64,0,f16,f16,0,1
120,7168,256,64,0,f16,f16,0,1
120,576,512,64,0,f16,f16,0,1
120,1536,512,64,0,f16,f16,0,1
120,3072,512,64,0,f16,f16,0,1
120,4096,512,64,0,f16,f16,0,1
120,4608,512,64,0,f16,f16,0,1
120,7168,512,64,0,f16,f16,0,1
120,576,1536,64,0,f16,f16,0,1
120,1536,1536,64,0,f16,f16,0,1
120,3072,1536,64,0,f16,f16,0,1
120,4096,1536,64,0,f16,f16,0,1
120,4608,1536,64,0,f16,f16,0,1
120,7168,1536,64,0,f16,f16,0,1
120,512,2048,64,0,f16,f16,0,1
120,1536,2048,64,0,f16,f16,0,1
120,3072,2048,64,0,f16,f16,0,1
120,4096,2048,64,0,f16,f16,0,1
120,4608,2048,64,0,f16,f16,0,1
120,7168,2048,64,0,f16,f16,0,1
120,512,2304,64,0,f16,f16,0,1
120,1536,2304,64,0,f16,f16,0,1
120,3072,2304,64,0,f16,f16,0,1
120,4096,2304,64,0,f16,f16,0,1
120,4608,2304,64,0,f16,f16,0,1
120,7168,2304,64,0,f16,f16,0,1
120,512,7168,64,0,f16,f16,0,1
120,1536,7168,64,0,f16,f16,0,1
120,3072,7168,64,0,f16,f16,0,1
120,4096,7168,64,0,f16,f16,0,1
120,4608,7168,64,0,f16,f16,0,1
120,7168,7168,64,0,f16,f16,0,1
121,576,256,64,0,f16,f16,0,1
121,1536,256,64,0,f16,f16,0,1
121,3072,256,64,0,f16,f16,0,1
121,4096,256,64,0,f16,f16,0,1
121,4608,256,64,0,f16,f16,0,1
121,7168,256,64,0,f16,f16,0,1
121,576,512,64,0,f16,f16,0,1
121,1536,512,64,0,f16,f16,0,1
121,3072,512,64,0,f16,f16,0,1
121,4096,512,64,0,f16,f16,0,1
121,4608,512,64,0,f16,f16,0,1
121,7168,512,64,0,f16,f16,0,1
121,576,1536,64,0,f16,f16,0,1
121,1536,1536,64,0,f16,f16,0,1
121,3072,1536,64,0,f16,f16,0,1
121,4096,1536,64,0,f16,f16,0,1
121,4608,1536,64,0,f16,f16,0,1
121,7168,1536,64,0,f16,f16,0,1
121,512,2048,64,0,f16,f16,0,1
121,1536,2048,64,0,f16,f16,0,1
121,3072,2048,64,0,f16,f16,0,1
121,4096,2048,64,0,f16,f16,0,1
121,4608,2048,64,0,f16,f16,0,1
121,7168,2048,64,0,f16,f16,0,1
121,512,2304,64,0,f16,f16,0,1
121,1536,2304,64,0,f16,f16,0,1
121,3072,2304,64,0,f16,f16,0,1
121,4096,2304,64,0,f16,f16,0,1
121,4608,2304,64,0,f16,f16,0,1
121,7168,2304,64,0,f16,f16,0,1
121,512,7168,64,0,f16,f16,0,1
121,1536,7168,64,0,f16,f16,0,1
121,3072,7168,64,0,f16,f16,0,1
121,4096,7168,64,0,f16,f16,0,1
121,4608,7168,64,0,f16,f16,0,1
121,7168,7168,64,0,f16,f16,0,1
122,576,256,64,0,f16,f16,0,1
122,1536,256,64,0,f16,f16,0,1
122,3072,256,64,0,f16,f16,0,1
122,4096,256,64,0,f16,f16,0,1
122,4608,256,64,0,f16,f16,0,1
122,7168,256,64,0,f16,f16,0,1
122,576,512,64,0,f16,f16,0,1
122,1536,512,64,0,f16,f16,0,1
122,3072,512,64,0,f16,f16,0,1
122,4096,512,64,0,f16,f16,0,1
122,4608,512,64,0,f16,f16,0,1
122,7168,512,64,0,f16,f16,0,1
122,576,1536,64,0,f16,f16,0,1
122,1536,1536,64,0,f16,f16,0,1
122,3072,1536,64,0,f16,f16,0,1
122,4096,1536,64,0,f16,f16,0,1
122,4608,1536,64,0,f16,f16,0,1
122,7168,1536,64,0,f16,f16,0,1
122,512,2048,64,0,f16,f16,0,1
122,1536,2048,64,0,f16,f16,0,1
122,3072,2048,64,0,f16,f16,0,1
122,4096,2048,64,0,f16,f16,0,1
122,4608,2048,64,0,f16,f16,0,1
122,7168,2048,64,0,f16,f16,0,1
122,512,2304,64,0,f16,f16,0,1
122,1536,2304,64,0,f16,f16,0,1
122,3072,2304,64,0,f16,f16,0,1
122,4096,2304,64,0,f16,f16,0,1
122,4608,2304,64,0,f16,f16,0,1
122,7168,2304,64,0,f16,f16,0,1
122,512,7168,64,0,f16,f16,0,1
122,1536,7168,64,0,f16,f16,0,1
122,3072,7168,64,0,f16,f16,0,1
122,4096,7168,64,0,f16,f16,0,1
122,4608,7168,64,0,f16,f16,0,1
122,7168,7168,64,0,f16,f16,0,1
123,576,256,64,0,f16,f16,0,1
123,1536,256,64,0,f16,f16,0,1
123,3072,256,64,0,f16,f16,0,1
123,4096,256,64,0,f16,f16,0,1
123,4608,256,64,0,f16,f16,0,1
123,7168,256,64,0,f16,f16,0,1
123,576,512,64,0,f16,f16,0,1
123,1536,512,64,0,f16,f16,0,1
123,3072,512,64,0,f16,f16,0,1
123,4096,512,64,0,f16,f16,0,1
123,4608,512,64,0,f16,f16,0,1
123,7168,512,64,0,f16,f16,0,1
123,576,1536,64,0,f16,f16,0,1
123,1536,1536,64,0,f16,f16,0,1
123,3072,1536,64,0,f16,f16,0,1
123,4096,1536,64,0,f16,f16,0,1
123,4608,1536,64,0,f16,f16,0,1
123,7168,1536,64,0,f16,f16,0,1
123,512,2048,64,0,f16,f16,0,1
123,1536,2048,64,0,f16,f16,0,1
123,3072,2048,64,0,f16,f16,0,1
123,4096,2048,64,0,f16,f16,0,1
123,4608,2048,64,0,f16,f16,0,1
123,7168,2048,64,0,f16,f16,0,1
123,512,2304,64,0,f16,f16,0,1
123,1536,2304,64,0,f16,f16,0,1
123,3072,2304,64,0,f16,f16,0,1
123,4096,2304,64,0,f16,f16,0,1
123,4608,2304,64,0,f16,f16,0,1
123,7168,2304,64,0,f16,f16,0,1
123,512,7168,64,0,f16,f16,0,1
123,1536,7168,64,0,f16,f16,0,1
123,3072,7168,64,0,f16,f16,0,1
123,4096,7168,64,0,f16,f16,0,1
123,4608,7168,64,0,f16,f16,0,1
123,7168,7168,64,0,f16,f16,0,1
124,576,256,64,0,f16,f16,0,1
124,1536,256,64,0,f16,f16,0,1
124,3072,256,64,0,f16,f16,0,1
124,4096,256,64,0,f16,f16,0,1
124,4608,256,64,0,f16,f16,0,1
124,7168,256,64,0,f16,f16,0,1
124,576,512,64,0,f16,f16,0,1
124,1536,512,64,0,f16,f16,0,1
124,3072,512,64,0,f16,f16,0,1
124,4096,512,64,0,f16,f16,0,1
124,4608,512,64,0,f16,f16,0,1
124,7168,512,64,0,f16,f16,0,1
124,576,1536,64,0,f16,f16,0,1
124,1536,1536,64,0,f16,f16,0,1
124,3072,1536,64,0,f16,f16,0,1
124,4096,1536,64,0,f16,f16,0,1
124,4608,1536,64,0,f16,f16,0,1
124,7168,1536,64,0,f16,f16,0,1
124,512,2048,64,0,f16,f16,0,1
124,1536,2048,64,0,f16,f16,0,1
124,3072,2048,64,0,f16,f16,0,1
124,4096,2048,64,0,f16,f16,0,1
124,4608,2048,64,0,f16,f16,0,1
124,7168,2048,64,0,f16,f16,0,1
124,512,2304,64,0,f16,f16,0,1
124,1536,2304,64,0,f16,f16,0,1
124,3072,2304,64,0,f16,f16,0,1
124,4096,2304,64,0,f16,f16,0,1
124,4608,2304,64,0,f16,f16,0,1
124,7168,2304,64,0,f16,f16,0,1
124,512,7168,64,0,f16,f16,0,1
124,1536,7168,64,0,f16,f16,0,1
124,3072,7168,64,0,f16,f16,0,1
124,4096,7168,64,0,f16,f16,0,1
124,4608,7168,64,0,f16,f16,0,1
124,7168,7168,64,0,f16,f16,0,1
125,576,256,64,0,f16,f16,0,1
125,1536,256,64,0,f16,f16,0,1
125,3072,256,64,0,f16,f16,0,1
125,4096,256,64,0,f16,f16,0,1
125,4608,256,64,0,f16,f16,0,1
125,7168,256,64,0,f16,f16,0,1
125,576,512,64,0,f16,f16,0,1
125,1536,512,64,0,f16,f16,0,1
125,3072,512,64,0,f16,f16,0,1
125,4096,512,64,0,f16,f16,0,1
125,4608,512,64,0,f16,f16,0,1
125,7168,512,64,0,f16,f16,0,1
125,576,1536,64,0,f16,f16,0,1
125,1536,1536,64,0,f16,f16,0,1
125,3072,1536,64,0,f16,f16,0,1
125,4096,1536,64,0,f16,f16,0,1
125,4608,1536,64,0,f16,f16,0,1
125,7168,1536,64,0,f16,f16,0,1
125,512,2048,64,0,f16,f16,0,1
125,1536,2048,64,0,f16,f16,0,1
125,3072,2048,64,0,f16,f16,0,1
125,4096,2048,64,0,f16,f16,0,1
125,4608,2048,64,0,f16,f16,0,1
125,7168,2048,64,0,f16,f16,0,1
125,512,2304,64,0,f16,f16,0,1
125,1536,2304,64,0,f16,f16,0,1
125,3072,2304,64,0,f16,f16,0,1
125,4096,2304,64,0,f16,f16,0,1
125,4608,2304,64,0,f16,f16,0,1
125,7168,2304,64,0,f16,f16,0,1
125,512,7168,64,0,f16,f16,0,1
125,1536,7168,64,0,f16,f16,0,1
125,3072,7168,64,0,f16,f16,0,1
125,4096,7168,64,0,f16,f16,0,1
125,4608,7168,64,0,f16,f16,0,1
125,7168,7168,64,0,f16,f16,0,1
126,576,256,64,0,f16,f16,0,1
126,1536,256,64,0,f16,f16,0,1
126,3072,256,64,0,f16,f16,0,1
126,4096,256,64,0,f16,f16,0,1
126,4608,256,64,0,f16,f16,0,1
126,7168,256,64,0,f16,f16,0,1
126,576,512,64,0,f16,f16,0,1
126,1536,512,64,0,f16,f16,0,1
126,3072,512,64,0,f16,f16,0,1
126,4096,512,64,0,f16,f16,0,1
126,4608,512,64,0,f16,f16,0,1
126,7168,512,64,0,f16,f16,0,1
126,576,1536,64,0,f16,f16,0,1
126,1536,1536,64,0,f16,f16,0,1
126,3072,1536,64,0,f16,f16,0,1
126,4096,1536,64,0,f16,f16,0,1
126,4608,1536,64,0,f16,f16,0,1
126,7168,1536,64,0,f16,f16,0,1
126,512,2048,64,0,f16,f16,0,1
126,1536,2048,64,0,f16,f16,0,1
126,3072,2048,64,0,f16,f16,0,1
126,4096,2048,64,0,f16,f16,0,1
126,4608,2048,64,0,f16,f16,0,1
126,7168,2048,64,0,f16,f16,0,1
126,512,2304,64,0,f16,f16,0,1
126,1536,2304,64,0,f16,f16,0,1
126,3072,2304,64,0,f16,f16,0,1
126,4096,2304,64,0,f16,f16,0,1
126,4608,2304,64,0,f16,f16,0,1
126,7168,2304,64,0,f16,f16,0,1
126,512,7168,64,0,f16,f16,0,1
126,1536,7168,64,0,f16,f16,0,1
126,3072,7168,64,0,f16,f16,0,1
126,4096,7168,64,0,f16,f16,0,1
126,4608,7168,64,0,f16,f16,0,1
126,7168,7168,64,0,f16,f16,0,1
127,576,256,64,0,f16,f16,0,1
127,1536,256,64,0,f16,f16,0,1
127,3072,256,64,0,f16,f16,0,1
127,4096,256,64,0,f16,f16,0,1
127,4608,256,64,0,f16,f16,0,1
127,7168,256,64,0,f16,f16,0,1
127,576,512,64,0,f16,f16,0,1
127,1536,512,64,0,f16,f16,0,1
127,3072,512,64,0,f16,f16,0,1
127,4096,512,64,0,f16,f16,0,1
127,4608,512,64,0,f16,f16,0,1
127,7168,512,64,0,f16,f16,0,1
127,576,1536,64,0,f16,f16,0,1
127,1536,1536,64,0,f16,f16,0,1
127,3072,1536,64,0,f16,f16,0,1
127,4096,1536,64,0,f16,f16,0,1
127,4608,1536,64,0,f16,f16,0,1
127,7168,1536,64,0,f16,f16,0,1
127,512,2048,64,0,f16,f16,0,1
127,1536,2048,64,0,f16,f16,0,1
127,3072,2048,64,0,f16,f16,0,1
127,4096,2048,64,0,f16,f16,0,1
127,4608,2048,64,0,f16,f16,0,1
127,7168,2048,64,0,f16,f16,0,1
127,512,2304,64,0,f16,f16,0,1
127,1536,2304,64,0,f16,f16,0,1
127,3072,2304,64,0,f16,f16,0,1
127,4096,2304,64,0,f16,f16,0,1
127,4608,2304,64,0,f16,f16,0,1
127,7168,2304,64,0,f16,f16,0,1
127,512,7168,64,0,f16,f16,0,1
127,1536,7168,64,0,f16,f16,0,1
127,3072,7168,64,0,f16,f16,0,1
127,4096,7168,64,0,f16,f16,0,1
127,4608,7168,64,0,f16,f16,0,1
127,7168,7168,64,0,f16,f16,0,1
128,576,256,64,0,f16,f16,0,1
128,1536,256,64,0,f16,f16,0,1
128,3072,256,64,0,f16,f16,0,1
128,4096,256,64,0,f16,f16,0,1
128,4608,256,64,0,f16,f16,0,1
128,7168,256,64,0,f16,f16,0,1
128,576,512,64,0,f16,f16,0,1
128,1536,512,64,0,f16,f16,0,1
128,3072,512,64,0,f16,f16,0,1
128,4096,512,64,0,f16,f16,0,1
128,4608,512,64,0,f16,f16,0,1
128,7168,512,64,0,f16,f16,0,1
128,576,1536,64,0,f16,f16,0,1
128,1536,1536,64,0,f16,f16,0,1
128,3072,1536,64,0,f16,f16,0,1
128,4096,1536,64,0,f16,f16,0,1
128,4608,1536,64,0,f16,f16,0,1
128,7168,1536,64,0,f16,f16,0,1
128,512,2048,64,0,f16,f16,0,1
128,1536,2048,64,0,f16,f16,0,1
128,3072,2048,64,0,f16,f16,0,1
128,4096,2048,64,0,f16,f16,0,1
128,4608,2048,64,0,f16,f16,0,1
128,7168,2048,64,0,f16,f16,0,1
128,512,2304,64,0,f16,f16,0,1
128,1536,2304,64,0,f16,f16,0,1
128,3072,2304,64,0,f16,f16,0,1
128,4096,2304,64,0,f16,f16,0,1
128,4608,2304,64,0,f16,f16,0,1
128,7168,2304,64,0,f16,f16,0,1
128,512,7168,64,0,f16,f16,0,1
128,1536,7168,64,0,f16,f16,0,1
128,3072,7168,64,0,f16,f16,0,1
128,4096,7168,64,0,f16,f16,0,1
128,4608,7168,64,0,f16,f16,0,1
128,7168,7168,64,0,f16,f16,0,1
B,M,N,K
16, 1, 1280, 8192
16, 32, 1280, 8192
16, 64, 1280, 8192
16, 128, 1280, 8192
16, 192, 1280, 8192
16, 256, 1280, 8192
16, 320, 1280, 8192
16, 512, 1280, 8192
16, 1024, 1280, 8192
16, 2048, 1280, 8192
16, 4096, 1280, 8192
16, 8192, 1280, 8192
16, 16384, 1280, 8192
16, 1, 8192, 1024
16, 32, 8192, 1024
16, 64, 8192, 1024
16, 128, 8192, 1024
16, 192, 8192, 1024
16, 256, 8192, 1024
16, 320, 8192, 1024
16, 512, 8192, 1024
16, 1024, 8192, 1024
16, 2048, 8192, 1024
16, 4096, 8192, 1024
16, 8192, 8192, 1024
16, 16384, 8192, 1024
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment