Repository: semchan/HyperLips Branch: main Commit: 3276904865bb Files: 70 Total size: 87.3 MB Directory structure: gitextract_hwq25lj6/ ├── GFPGAN.py ├── Gen_hyperlipsbase_videos.py ├── HYPERLIPS.py ├── Inference_hyperlips.py ├── README.md ├── Train_data/ │ └── video_clips/ │ └── MEAD/ │ └── readme.txt ├── Train_hyperlipsBase.py ├── Train_hyperlipsHR.py ├── audio.py ├── checkpoint ├── checkpoints/ │ └── readme.txt ├── color_syncnet_trainv3.py ├── conv.py ├── datasets/ │ └── MEAD/ │ └── readme.txt ├── environment.yml ├── face_detection/ │ ├── README.md │ ├── __init__.py │ ├── api.py │ ├── detection/ │ │ ├── __init__.py │ │ ├── core.py │ │ └── sfd/ │ │ ├── __init__.py │ │ ├── bbox.py │ │ ├── detect.py │ │ ├── net_s3fd.py │ │ ├── s3fd.pth │ │ └── sfd_detector.py │ ├── models.py │ └── utils.py ├── face_parsing/ │ ├── README.md │ ├── __init__.py │ ├── model.py │ ├── resnet.py │ └── swap.py ├── filelists/ │ ├── train.txt │ └── val.txt ├── filelists_lrs2/ │ ├── README.md │ ├── test.txt │ ├── train.txt │ └── val.txt ├── filelists_mead/ │ ├── README.md │ ├── test.txt │ ├── train.txt │ └── val.txt ├── gfpgan/ │ ├── gfpganv1_clean_arch.py │ └── stylegan2_clean_arch.py ├── hparams.py ├── hparams_Base.py ├── hparams_HR.py ├── inference.py ├── models/ │ ├── __init__.py │ ├── audio_v.py │ ├── conv.py │ ├── decoder.py │ ├── deep_guided_filter.py │ ├── gfpganv1_clean_arch.py │ ├── guided_filter_pytorch/ │ │ ├── __init__.py │ │ ├── box_filter.py │ │ └── guided_filter.py │ ├── hyperlayers.py │ ├── hypernetwork.py │ ├── layers.py │ ├── lraspp.py │ ├── memory.py │ ├── mobilenetv3.py │ ├── model.py │ ├── model_hyperlips.py │ ├── resnet.py │ └── syncnet.py ├── preprocess.py └── requirements.txt ================================================ FILE CONTENTS ================================================ ================================================ FILE: GFPGAN.py ================================================ import cv2 import os import torch from basicsr.utils import img2tensor from facexlib.utils.face_restoration_helper import FaceRestoreHelper from torchvision.transforms.functional import normalize import time from gfpgan.gfpganv1_clean_arch import GFPGANv1Clean import time import numpy as np import torch.nn.functional as F def tensor2img(tensor, rgb2bgr=True, out_type=np.uint8, min_max=(0, 1)): """Convert torch Tensors into image numpy arrays. After clamping to [min, max], values will be normalized to [0, 1]. Args: tensor (Tensor or list[Tensor]): Accept shapes: 1) 4D mini-batch Tensor of shape (B x 3/1 x H x W); 2) 3D Tensor of shape (3/1 x H x W); 3) 2D Tensor of shape (H x W). Tensor channel should be in RGB order. rgb2bgr (bool): Whether to change rgb to bgr. out_type (numpy type): output types. If ``np.uint8``, transform outputs to uint8 type with range [0, 255]; otherwise, float type with range [0, 1]. Default: ``np.uint8``. min_max (tuple[int]): min and max values for clamp. Returns: (Tensor or list): 3D ndarray of shape (H x W x C) OR 2D ndarray of shape (H x W). The channel order is BGR. """ if not (torch.is_tensor(tensor) or (isinstance(tensor, list) and all(torch.is_tensor(t) for t in tensor))): raise TypeError(f'tensor or list of tensors expected, got {type(tensor)}') result = [] _tensor = tensor import time start = time.time() _tensor = _tensor.squeeze(0).float().detach().clamp_(*min_max) end = time.time() _tensor = (_tensor - min_max[0]) / (min_max[1] - min_max[0]) _tensor = (_tensor.permute(1, 2, 0)) img_np = (_tensor * 255.0).round().cpu().numpy()[:, :, ::-1] img_np = img_np.astype(out_type) result.append(img_np) if len(result) == 1: result = result[0] end = time.time() return result class GFPGANer(): """Helper for restoration with GFPGAN. It will detect and crop faces, and then resize the faces to 512x512. GFPGAN is used to restored the resized faces. The background is upsampled with the bg_upsampler. Finally, the faces will be pasted back to the upsample background image. Args: model_path (str): The path to the GFPGAN model. It can be urls (will first download it automatically). upscale (float): The upscale of the final output. Default: 2. arch (str): The GFPGAN architecture. Option: clean | original. Default: clean. channel_multiplier (int): Channel multiplier for large networks of StyleGAN2. Default: 2. bg_upsampler (nn.Module): The upsampler for the background. Default: None. """ def __init__(self, device,model_path, upscale=2, arch='clean', channel_multiplier=2, bg_upsampler=None): self.upscale = upscale self.bg_upsampler = bg_upsampler # initialize model self.device = device#torch.device('cuda' if torch.cuda.is_available() else 'cpu') if device is None else device # initialize the GFP-GAN if arch == 'clean': self.gfpgan = GFPGANv1Clean( out_size=512, num_style_feat=512, channel_multiplier=channel_multiplier, decoder_load_path=None, fix_decoder=False, num_mlp=8, input_is_latent=True, different_w=True, narrow=1, sft_half=True) self.face_helper = FaceRestoreHelper( upscale, face_size=512, crop_ratio=(1, 1), det_model='retinaface_resnet50', save_ext='png', use_parse=True, device=self.device) loadnet = torch.load(model_path, map_location=device) #loadnet = torch.load(model_path) if 'params_ema' in loadnet: keyname = 'params_ema' else: keyname = 'params' self.gfpgan.load_state_dict(loadnet[keyname], strict=True) self.gfpgan.eval() self.gfpgan = self.gfpgan.to(self.device) print('GFPGAN model loaded') @torch.no_grad() def enhance_allimg(self, img, has_aligned=False, only_center_face=False, paste_back=True): self.face_helper.clean_all() import time start = time.time() if has_aligned: # the inputs are already aligned img = cv2.resize(img, (512, 512)) self.face_helper.cropped_faces = [img] else: self.face_helper.read_image(img) # get face landmarks for each face self.face_helper.get_face_landmarks_5(only_center_face=only_center_face, eye_dist_threshold=5) self.face_helper.align_warp_face() end = time.time() # face restoration start = time.time() for cropped_face in self.face_helper.cropped_faces: # prepare data start = time.time() cropped_face_t = img2tensor(cropped_face / 255., bgr2rgb=True, float32=True) normalize(cropped_face_t, (0.5, 0.5, 0.5), (0.5, 0.5, 0.5), inplace=True) cropped_face_t = cropped_face_t.unsqueeze(0).to(self.device) end = time.time() try: output = self.gfpgan(cropped_face_t, return_rgb=False)[0] # 15ms #NCHW restored_face = tensor2img(output.squeeze(0), rgb2bgr=True, min_max=(-1, 1)) # 18msms except RuntimeError as error: print(f'\tFailed inference for GFPGAN: {error}.') restored_face = cropped_face start = time.time() restored_face = restored_face.astype('uint8') self.face_helper.add_restored_face(restored_face) end = time.time() end = time.time() start = time.time() if not has_aligned and paste_back: # upsample the background if self.bg_upsampler is not None: # Now only support RealESRGAN for upsampling background bg_img = self.bg_upsampler.enhance(img, outscale=self.upscale)[0] else: bg_img = None self.face_helper.get_inverse_affine(None) # paste each restored face to the input image restored_img = self.face_helper.paste_faces_to_input_image(upsample_img=bg_img) return self.face_helper.cropped_faces, self.face_helper.restored_faces, restored_img else: return self.face_helper.cropped_faces, self.face_helper.restored_faces, None end = time.time() @torch.no_grad() def enhance(self, img, has_aligned=False, only_center_face=False, paste_back=True): self.face_helper.clean_all() if has_aligned: # the inputs are already aligned # img = torch_resize(img) img = cv2.resize(img, (512, 512)) self.face_helper.cropped_faces = [img] else: self.face_helper.read_image(img) # get face landmarks for each face self.face_helper.get_face_landmarks_5(only_center_face=only_center_face, eye_dist_threshold=5) self.face_helper.align_warp_face() start = time.time() for cropped_face in self.face_helper.cropped_faces: # prepare data start = time.time() cropped_face_t = img2tensor(cropped_face / 255., bgr2rgb=True, float32=True) normalize(cropped_face_t, (0.5, 0.5, 0.5), (0.5, 0.5, 0.5), inplace=True) cropped_face_t = cropped_face_t.unsqueeze(0).to(self.device)#([1, 3, 512, 512]) end = time.time() try: output = self.gfpgan(cropped_face_t, return_rgb=False)[0] #15ms #NCHW restored_face = tensor2img(output.squeeze(0), rgb2bgr=True, min_max=(-1, 1)) #18msms except RuntimeError as error: print(f'\tFailed inference for GFPGAN: {error}.') restored_face = cropped_face start = time.time() restored_face = restored_face.astype('uint8') self.face_helper.add_restored_face(restored_face) end = time.time() if not has_aligned and paste_back: # upsample the background if self.bg_upsampler is not None: # Now only support RealESRGAN for upsampling background bg_img = self.bg_upsampler.enhance(img, outscale=self.upscale)[0] else: bg_img = None self.face_helper.get_inverse_affine(None) # paste each restored face to the input image restored_img = self.face_helper.paste_faces_to_input_image(upsample_img=bg_img) return self.face_helper.cropped_faces, self.face_helper.restored_faces, restored_img else: return self.face_helper.cropped_faces, self.face_helper.restored_faces, None end = time.time() print('paste_faces_to_input_image face: ', (end - start) * 1000) def GFPGANInit(device,face_enhancement_path): """Inference demo for GFPGAN (for users). """ upscale = 1 # ------------------------ input & output ------------------------ import numpy as np bg_upsampler = None # ------------------------ set up GFPGAN restorer ------------------------ arch = 'clean' channel_multiplier = 2 model_name = 'GFPGANv1.3' model_path = face_enhancement_path restorer = GFPGANer( device = device, model_path=model_path, upscale=upscale, arch=arch, channel_multiplier=channel_multiplier, bg_upsampler=bg_upsampler) return restorer def GFPGANInfer(img, restorer, aligned): only_center_face = True start = time.time() if aligned: cropped_faces, restored_faces, restored_img = restorer.enhance( img, has_aligned=aligned, only_center_face=only_center_face, paste_back=True) else: cropped_faces, restored_faces, restored_img = restorer.enhance_allimg( img, has_aligned=aligned, only_center_face=only_center_face, paste_back=True) end = time.time() if aligned==False: return restored_img else: return restored_faces[0] ================================================ FILE: Gen_hyperlipsbase_videos.py ================================================ from HYPERLIPS import Hyperlips import argparse import os parser = argparse.ArgumentParser(description='Inference code to lip-sync videos in the wild using HyperLipsBase or HyperLipsHR models') parser.add_argument('--checkpoint_path_BASE', type=str,help='Name of saved HyperLipsBase checkpoint to load weights from', default="checkpoints/require_grad_checkpoint_step000169000.pth") parser.add_argument('--checkpoint_path_HR', type=str,help='Name of saved HyperLipsHR checkpoint to load weights from', default=None) parser.add_argument('--videos', type=str, help='Filepath of video/image that contains faces to use', default="datasets/MEAD") parser.add_argument('--outfile', type=str, help='Video path to save result. See default for an e.g.', default='hyperlips_base_results') parser.add_argument('--pads', nargs='+', type=int, default=[0, 10, 0, 0], help='Padding (top, bottom, left, right). Please adjust to include chin at least') parser.add_argument('--filter_window', default=None, type=int, help='real window is 2*T+1') parser.add_argument('--hyper_batch_size', type=int, help='Batch size for hyperlips model(s)', default=128) parser.add_argument('--resize_factor', default=1, type=int, help='Reduce the resolution by this factor. Sometimes, best results are obtained at 480p or 720p') parser.add_argument('--img_size', default=128, type=int) parser.add_argument('--segmentation_path', type=str, help='Name of saved checkpoint of segmentation network', default="checkpoints/face_segmentation.pth") parser.add_argument('--face_enhancement_path', type=str, help='Name of saved checkpoint of segmentation network', default=None)#"checkpoints/GFPGANv1.3.pth" parser.add_argument('--no_faceenhance', default=False, action='store_true', help='Prevent using face enhancement') parser.add_argument('--gpu_id', type=float, help='gpu id (default: 0)', default=0, required=False) args = parser.parse_args() def inference_list(): Hyperlips_executor = Hyperlips(checkpoint_path_BASE=args.checkpoint_path_BASE, checkpoint_path_HR=args.checkpoint_path_HR, segmentation_path=args.segmentation_path, face_enhancement_path = args.face_enhancement_path, gpu_id = args.gpu_id, window =args.filter_window, hyper_batch_size=args.hyper_batch_size, img_size = args.img_size, resize_factor = args.resize_factor, pad = args.pads) Hyperlips_executor._HyperlipsLoadModels() filelist = os.listdir(args.videos) for i in filelist: face = args.videos+"/"+i audio = args.videos+"/"+i outputfile = args.outfile+"/"+i Hyperlips_executor._HyperlipsInference(face,audio,outputfile) if __name__ == '__main__': inference_list() ================================================ FILE: HYPERLIPS.py ================================================ import cv2, os, sys,audio import subprocess, random, string from tqdm import tqdm import torch, face_detection from models.model_hyperlips import HyperLips_inference from GFPGAN import * from face_parsing import init_parser,swap_regions import shutil def get_smoothened_boxes(boxes, T): for i in range(len(boxes)): if i + T > len(boxes): window = boxes[len(boxes) - T:] else: window = boxes[i : i + T] boxes[i] = np.mean(window, axis=0) return boxes def face_detect(images, detector,pad): batch_size = 8 while 1: predictions = [] try: for i in range(0, len(images), batch_size): predictions.extend( detector.get_detections_for_batch(np.array(images[i:i + batch_size]))) except RuntimeError as e: print(e) if batch_size == 1: raise RuntimeError( 'Image too big to run face detection on GPU. Please use the --resize_factor argument') batch_size //= 2 print('Recovering from OOM error; New batch size: {}'.format(batch_size)) continue break results = [] pady1, pady2, padx1, padx2 = pad # [0, 10, 0, 0] for rect, image in zip(predictions, images): if rect is None: raise ValueError('Face not detected! Ensure the video contains a face in all the frames.') y1 = max(0, rect[1] - pady1) y2 = min(image.shape[0], rect[3] + pady2) x1 = max(0, rect[0] - padx1) x2 = min(image.shape[1], rect[2] + padx2) results.append([x1, y1, x2, y2]) boxes = np.array(results) boxes = get_smoothened_boxes(boxes, T=5) results = [[image[y1: y2, x1:x2], (y1, y2, x1, x2)] for image, (x1, y1, x2, y2) in zip(images, boxes)] del detector return results def datagen(mels, detector,frames,img_size,hyper_batch_size,pads): # img_batch, mel_batch, frame_batch, coords_batch = [], [], [], [] img_batch, mel_batch, frame_batch, coords_batch,ref_batch = [], [], [], [],[] face_det_results = face_detect(frames,detector,pads) ref, _ = face_det_results[0].copy() ref = cv2.resize(ref, (img_size, img_size)) for i, m in enumerate(mels): frame_to_save = frames[i].copy() face, coords = face_det_results[i].copy() face = cv2.resize(face, (img_size, img_size)) img_batch.append(face) mel_batch.append(m) frame_batch.append(frame_to_save) ref_batch.append(ref) coords_batch.append(coords) if len(img_batch) >= hyper_batch_size: # img_batch, mel_batch = np.asarray(img_batch), np.asarray(mel_batch) img_batch, mel_batch,ref_batch = np.asarray(img_batch), np.asarray(mel_batch), np.asarray(ref_batch) img_masked = img_batch.copy() img_masked[:, img_size // 2:] = 0 img_batch = np.concatenate((img_masked, ref_batch), axis=3) / 255. mel_batch = np.reshape(mel_batch, [len(mel_batch), mel_batch.shape[1], mel_batch.shape[2], 1]) yield img_batch, mel_batch, frame_batch, coords_batch # img_batch, mel_batch, frame_batch, coords_batch = [], [], [], [] img_batch, mel_batch, frame_batch, coords_batch,ref_batch = [], [], [], [],[] if len(img_batch) > 0: # img_batch, mel_batch = np.asarray(img_batch), np.asarray(mel_batch) img_batch, mel_batch,ref_batch = np.asarray(img_batch), np.asarray(mel_batch), np.asarray(ref_batch) img_masked = img_batch.copy() img_masked[:, img_size // 2:] = 0 img_batch = np.concatenate((img_masked, ref_batch), axis=3) / 255. mel_batch = np.reshape(mel_batch, [len(mel_batch), mel_batch.shape[1], mel_batch.shape[2], 1]) yield img_batch, mel_batch, frame_batch, coords_batch def load_HyperLips(window,rescaling,path,path_hr,device): model = HyperLips_inference(window_T =window ,rescaling=rescaling,base_model_checkpoint=path,HRDecoder_model_checkpoint =path_hr) model = model.to(device) print("HyperLipsHR model loaded") return model.eval() def main(): Hyperlips_executor = Hyperlips() Hyperlips_executor._HyperlipsLoadModels() Hyperlips_executor._HyperlipsInference() class Hyperlips(): def __init__(self,checkpoint_path_BASE=None, checkpoint_path_HR=None, segmentation_path=None, face_enhancement_path = None, gpu_id = None, window =None, hyper_batch_size=128, img_size = 128, resize_factor = 1, pad = [0, 10, 0, 0] ): self.checkpoint_path_BASE = checkpoint_path_BASE self.checkpoint_path_HR = checkpoint_path_HR self.parser_path = segmentation_path self.face_enhancement_path = face_enhancement_path self.batch_size = hyper_batch_size #128 self.mel_step_size = 16 self.gpu_id = gpu_id self.img_size = img_size self.resize_factor = resize_factor self.pad =pad if (128==self.img_size): self.rescaling = 1 elif(256==self.img_size): self.rescaling = 2 elif(512==self.img_size): self.rescaling = 4 else: raise ValueError( f'Init error! img_size should be 128 256 or 512!') self.window = window def _HyperlipsLoadModels(self): gpu_id = self.gpu_id if not torch.cuda.is_available() or (gpu_id > (torch.cuda.device_count() - 1)): raise ValueError( f'Existing gpu configuration problem.(gpu.is_available={torch.cuda.is_available()}| gpu.device_count={torch.cuda.device_count()})') self.device = torch.device(f'cuda:{gpu_id}') print('Using {} for inference.'.format(self.device)) if self.face_enhancement_path is not None: self.restorer = GFPGANInit(self.device, self.face_enhancement_path) self.model = load_HyperLips(self.window,self.rescaling,self.checkpoint_path_BASE, self.checkpoint_path_HR,self.device) self.seg_net = init_parser(self.parser_path, self.device) print(' models init successed...') def _HyperlipsInference(self,face_path,audio_path,outfile_path): face = face_path audiopath =audio_path print("The input video path is {}, The intput audio path is {}".format(face_path, audio_path)) outfile =outfile_path outfile = os.path.abspath(outfile) rest_root_path = os.path.dirname(os.path.realpath(outfile)) temp_save_path = outfile.rsplit('.', 1)[0] if not os.path.exists(rest_root_path): os.mkdir(rest_root_path) if not os.path.exists(temp_save_path): os.mkdir(temp_save_path) detector = face_detection.FaceAlignment(face_detection.LandmarksType._2D,flip_input=False, device='cuda:{}'.format(self.gpu_id)) if not os.path.isfile(face): raise ValueError('--face argument must be a valid path to video/image file') else: video_stream = cv2.VideoCapture(face) fps = video_stream.get(cv2.CAP_PROP_FPS) frame_width = int(video_stream.get(cv2.CAP_PROP_FRAME_WIDTH)) frame_height = int(video_stream.get(cv2.CAP_PROP_FRAME_HEIGHT)) full_frames = [] while 1: still_reading, frame = video_stream.read() if not still_reading: video_stream.release() break if self.resize_factor > 1: frame = cv2.resize(frame, (frame.shape[1]//self.resize_factor, frame.shape[0]//self.resize_factor)) full_frames.append(frame) video_stream.release() print ("Number of frames available for inference: "+str(len(full_frames))) out = cv2.VideoWriter(os.path.join(temp_save_path, 'result.avi'), cv2.VideoWriter_fourcc(*'DIVX'), fps, (frame_width, frame_height)) if not audiopath.endswith('.wav'): print('Extracting raw audio...') command = 'ffmpeg -y -i {} -strict -2 {}'.format( audiopath, os.path.join(temp_save_path, 'temp.wav')) subprocess.call(command, shell=True) audiopath = os.path.join(temp_save_path, 'temp.wav') wav = audio.load_wav(audiopath, 16000) mel = audio.melspectrogram(wav) if np.isnan(mel.reshape(-1)).sum() > 0: raise ValueError( 'Mel contains nan! Using a TTS voice? Add a small epsilon noise to the wav file and try again') mel_chunks = [] mel_idx_multiplier = 80. / fps i = 0 while 1: start_idx = int(i * mel_idx_multiplier) if start_idx + self.mel_step_size > len(mel[0]): mel_chunks.append(mel[:, len(mel[0]) - self.mel_step_size:]) break mel_chunks.append(mel[:, start_idx: start_idx + self.mel_step_size]) i += 1 print("Length of mel chunks: {}".format(len(mel_chunks))) full_frames = full_frames[:len(mel_chunks)] gen = datagen(mel_chunks, detector, full_frames, self.img_size,self.batch_size,self.pad) for i, (img_batch, mel_batch, frames, coords) in enumerate(tqdm(gen, total=int( np.ceil( float(len(mel_chunks))/ self.batch_size)))): img_batch = torch.FloatTensor(np.transpose(img_batch, (0, 3, 1, 2))).to(self.device) mel_batch = torch.FloatTensor(np.transpose(mel_batch, (0, 3, 1, 2))).to(self.device) with torch.no_grad(): pred = self.model(mel_batch, img_batch) for p, f, c in zip(pred, frames, coords): y1, y2, x1, x2 = c mask_temp = np.zeros_like(f) p = p.cpu().numpy().transpose(1,2,0) * 255. f_background = f.copy() p,mask_out = swap_regions(f[y1:y2, x1:x2], p, self.seg_net) # p = cv2.resize(p, (x2 - x1, y2 - y1)).astype(np.uint8) mask_out=mask_out*255 mask_out[:mask_out.shape[0]//2, :, :] = 0. mask_out[:,:int(mask_out.shape[1]*0.15),:] = 0. mask_out[:,int(mask_out.shape[1]*0.85):,:] = 0. mask_temp[y1:y2, x1:x2] = mask_out.astype(np.float) kernel = np.ones((5,5),np.uint8) mask_temp = cv2.erode(mask_temp,kernel,iterations = 1) mask_temp = cv2.GaussianBlur(mask_temp, (75, 75), 0,0,cv2.BORDER_DEFAULT) mask_temp = mask_temp.astype(np.float) # cv2.imwrite("mask_temp.jpg", mask_temp) f[y1:y2, x1:x2] = p # cv2.imwrite("f00.jpg", f) f = f_background*(1-mask_temp/255.0)+f*(mask_temp/255.0) # cv2.imwrite("f0.jpg", f) if self.face_enhancement_path is not None: Code_img = GFPGANInfer(f, self.restorer,aligned=False) f=Code_img # cv2.imwrite("f1.jpg", f) # f = f_background*(1-mask_temp/255.0)+f*(mask_temp/255.0) f = f.astype(np.uint8) out.write(f) out.release() command = 'ffmpeg -y -i {} -i {} -strict -2 -q:v 1 {}'.format( audiopath, os.path.join(temp_save_path, 'result.avi'), outfile) subprocess.call(command, shell=True) if os.path.exists(temp_save_path): shutil.rmtree(temp_save_path) torch.cuda.empty_cache() if __name__ == '__main__': main() ================================================ FILE: Inference_hyperlips.py ================================================ import cv2, os, sys, argparse, audio import subprocess, random, string from tqdm import tqdm import torch, face_detection from models.model_hyperlips import HyperLipsBase,HyperLipsHR from GFPGAN import * from face_parsing import init_parser, swap_regions_img import shutil parser = argparse.ArgumentParser(description='Inference code to lip-sync videos in the wild using HyperLipsBase or HyperLipsHR models') parser.add_argument('--checkpoint_path_BASE', type=str,help='Name of saved HyperLipsBase checkpoint to load weights from', default="checkpoints/hyperlipsbase_mead.pth") parser.add_argument('--checkpoint_path_HR', type=str,help='Name of saved HyperLipsHR checkpoint to load weights from', default="checkpoints/hyperlipshr_mead_128.pth") parser.add_argument('--modelname', type=str, help='Choosing HyperLipsBase or HyperLipsHR', default="HyperLipsHR") parser.add_argument('--face', type=str, help='Filepath of video/image that contains faces to use', default="test/video/M003-002.mp4") parser.add_argument('--audio', type=str, help='Filepath of video/audio file to use as raw audio source', default="test/audio/M003-002.mp4") parser.add_argument('--outfile', type=str, help='Video path to save result. See default for an e.g.', default='results/result_voice.mp4') parser.add_argument('--pads', nargs='+', type=int, default=[0, 10, 0, 0], help='Padding (top, bottom, left, right). Please adjust to include chin at least') parser.add_argument('--filter_window', default=2, type=int, help='real window is 2*T+1') parser.add_argument('--face_det_batch_size', type=int, help='Batch size for face detection', default=8) parser.add_argument('--hyper_batch_size', type=int, help='Batch size for hyperlips model(s)', default=128) parser.add_argument('--resize_factor', default=1, type=int, help='Reduce the resolution by this factor. Sometimes, best results are obtained at 480p or 720p') parser.add_argument('--segmentation_path', type=str, help='Name of saved checkpoint of segmentation network', default="checkpoints/face_segmentation.pth") parser.add_argument('--face_enhancement_path', type=str, help='Name of saved checkpoint of segmentation network', default="checkpoints/GFPGANv1.3.pth") parser.add_argument('--no_faceenhance', default=True, action='store_true', help='Prevent using face enhancement') parser.add_argument('--gpu_id', type=float, help='gpu id (default: 0)', default=0, required=False) args = parser.parse_args() args.img_size = 128 def get_smoothened_mels(mel_chunks, T): for i in range(len(mel_chunks)): if i > T-1 and i 1: print('error') raise RuntimeError('leng(imgaes') while 1: predictions = [] try: for i in range(0, len(images), batch_size): predictions.extend( detector.get_detections_for_batch(np.array(images[i:i + batch_size]))) except RuntimeError as e: print(e) if batch_size == 1: raise RuntimeError( 'Image too big to run face detection on GPU. Please use the --resize_factor argument') batch_size //= 2 print('Recovering from OOM error; New batch size: {}'.format(batch_size)) continue break results = [] pady1, pady2, padx1, padx2 = pad # [0, 10, 0, 0] for rect, image in zip(predictions, images): if rect is None: raise ValueError('Face not detected! Ensure the video contains a face in all the frames.') y1 = max(0, rect[1] - pady1) y2 = min(image.shape[0], rect[3] + pady2) x1 = max(0, rect[0] - padx1) x2 = min(image.shape[1], rect[2] + padx2) results.append([x1, y1, x2, y2]) boxes = np.array(results) results = [[image[y1: y2, x1:x2], (y1, y2, x1, x2)] for image, (x1, y1, x2, y2) in zip(images, boxes)] del detector return results def datagen(mels, detector,face_path, resize_factor): img_batch, mel_batch, frame_batch, coords_batch = [], [], [], [] bbox_face, frame_to_det_list, rects, frame_to_det_batch = [], [], [], [] img_size = 128 hyper_batch_size = args.hyper_batch_size reader = read_frames(face_path, resize_factor) for i, m in enumerate(mels): try: frame_to_save = next(reader) except StopIteration: reader = read_frames(face_path, resize_factor) frame_to_save = next(reader) h, w, _ = frame_to_save.shape face, coords = face_detect([frame_to_save], detector,args.pads)[0] face = cv2.resize(face, (img_size, img_size)) img_batch.append(face) mel_batch.append(m) frame_batch.append(frame_to_save) coords_batch.append(coords) if len(img_batch) >= hyper_batch_size: img_batch, mel_batch = np.asarray(img_batch), np.asarray(mel_batch) img_masked = img_batch.copy() img_masked[:, img_size // 2:] = 0 img_batch = np.concatenate((img_masked, img_batch), axis=3) / 255. mel_batch = np.reshape(mel_batch, [len(mel_batch), mel_batch.shape[1], mel_batch.shape[2], 1]) yield img_batch, mel_batch, frame_batch, coords_batch img_batch, mel_batch, frame_batch, coords_batch = [], [], [], [] if len(img_batch) > 0: img_batch, mel_batch = np.asarray(img_batch), np.asarray(mel_batch) img_masked = img_batch.copy() img_masked[:, img_size // 2:] = 0 img_batch = np.concatenate((img_masked, img_batch), axis=3) / 255. mel_batch = np.reshape(mel_batch, [len(mel_batch), mel_batch.shape[1], mel_batch.shape[2], 1]) yield img_batch, mel_batch, frame_batch, coords_batch def _load(checkpoint_path, device): checkpoint = torch.load(checkpoint_path, map_location=device) return checkpoint def load_HyperLipsHR(path,path_hr,device): model = HyperLipsHR(window_T =args.filter_window ,rescaling=1,base_model_checkpoint=path,HRDecoder_model_checkpoint =path_hr) model = model.to(device) print("HyperLipsHR model loaded") return model.eval() def load_HyperLipsBase(path, device): model = HyperLipsBase() checkpoint = _load(path, device) s = checkpoint["state_dict"] model.load_state_dict(s) model = model.to(device) print("HyperLipsBase model loaded") return model.eval() def read_frames(face_path, resize_factor): video_stream = cv2.VideoCapture(face_path) print('Reading video frames from start...') read_frames_index = 0 while 1: still_reading, frame = video_stream.read() if not still_reading: video_stream.release() break if resize_factor > 1: frame = cv2.resize(frame, (frame.shape[1] // resize_factor, frame.shape[0] // resize_factor)) yield frame def main(): Hyperlips_executor = Hyperlips() Hyperlips_executor._HyperlipsLoadModels() Hyperlips_executor._HyperlipsInference() class Hyperlips(): def __init__(self): self.checkpoint_path_BASE = args.checkpoint_path_BASE self.checkpoint_path_HR = args.checkpoint_path_HR self.parser_path = args.segmentation_path self.batch_size = args.hyper_batch_size #128 self.mel_step_size = 16 def _HyperlipsLoadModels(self): gpu_id = args.gpu_id if not torch.cuda.is_available() or (gpu_id > (torch.cuda.device_count() - 1)): raise ValueError( f'Existing gpu configuration problem.(gpu.is_available={torch.cuda.is_available()}| gpu.device_count={torch.cuda.device_count()})') self.device = torch.device(f'cuda:{gpu_id}') print('Using {} for inference.'.format(self.device)) self.restorer = GFPGANInit(self.device, args.face_enhancement_path) if args.modelname == "HyperLipsBase": self.model = load_HyperLipsBase(self.checkpoint_path_BASE, self.device) elif args.modelname == "HyperLipsHR": self.model = load_HyperLipsHR(self.checkpoint_path_BASE, self.checkpoint_path_HR,self.device) self.seg_net = init_parser(self.parser_path, self.device) print(' models init successed...') def _HyperlipsInference(self): face = args.face audiopath = args.audio print("The input video path is {}, The output audio path is {}".format(face, audiopath)) outfile = args.outfile outfile = os.path.abspath(outfile) rest_root_path = os.path.dirname(os.path.realpath(outfile)) temp_save_path = outfile.rsplit('.', 1)[0] # rest_root_path = '/'.join(outfile.split('/')[:-1]) # temp_save_path = os.path.join(rest_root_path, outfile.split('/')[-1][:-4]) if not os.path.exists(rest_root_path): os.mkdir(rest_root_path) if not os.path.exists(temp_save_path): os.mkdir(temp_save_path) detector = face_detection.FaceAlignment(face_detection.LandmarksType._2D,flip_input=False, device='cuda:{}'.format(args.gpu_id)) if not os.path.isfile(face): raise ValueError('--face argument must be a valid path to video/image file') else: video_stream = cv2.VideoCapture(face) fps = video_stream.get(cv2.CAP_PROP_FPS) frame_width = int(video_stream.get(cv2.CAP_PROP_FRAME_WIDTH)) frame_height = int(video_stream.get(cv2.CAP_PROP_FRAME_HEIGHT)) video_stream.release() out = cv2.VideoWriter(os.path.join(temp_save_path, 'result.avi'), cv2.VideoWriter_fourcc(*'DIVX'), fps, (frame_width, frame_height)) if not audiopath.endswith('.wav'): print('Extracting raw audio...') command = 'ffmpeg -y -i {} -strict -2 {}'.format( audiopath, os.path.join(temp_save_path, 'temp.wav')) subprocess.call(command, shell=True) audiopath = os.path.join(temp_save_path, 'temp.wav') wav = audio.load_wav(audiopath, 16000) mel = audio.melspectrogram(wav) if np.isnan(mel.reshape(-1)).sum() > 0: raise ValueError( 'Mel contains nan! Using a TTS voice? Add a small epsilon noise to the wav file and try again') mel_chunks = [] mel_idx_multiplier = 80. / fps i = 0 while 1: start_idx = int(i * mel_idx_multiplier) if start_idx + self.mel_step_size > len(mel[0]): mel_chunks.append(mel[:, len(mel[0]) - self.mel_step_size:]) break mel_chunks.append(mel[:, start_idx: start_idx + self.mel_step_size]) i += 1 if not (args.filter_window == None): mel_chunks = get_smoothened_mels(mel_chunks,T=args.filter_window) print("Length of mel chunks: {}".format(len(mel_chunks))) gen = datagen(mel_chunks, detector, face, args.resize_factor) for i, (img_batch, mel_batch, frames, coords) in enumerate(tqdm(gen, total=int( np.ceil( float(len(mel_chunks))/ self.batch_size)))): img_batch = torch.FloatTensor(np.transpose(img_batch, (0, 3, 1, 2))).to(self.device)#([122, 6, 96, 96]) mel_batch = torch.FloatTensor(np.transpose(mel_batch, (0, 3, 1, 2))).to(self.device) with torch.no_grad(): pred = self.model(mel_batch, img_batch) # mel_batch([122, 1, 80, 16]) img_batch([128, 6, 128, 128]) for p, f, c in zip(pred, frames, coords): y1, y2, x1, x2 = c mask_temp = np.zeros_like(f) p = p.cpu().numpy().transpose(1,2,0) * 255. if not args.no_faceenhance: ori_f = f.copy() p = cv2.resize(p, (x2 - x1, y2 - y1)).astype(np.uint8) f[y1:y2, x1:x2] = p Code_img = GFPGANInfer(f, self.restorer, aligned=False) # 33ms p,mask_out = swap_regions_img(ori_f[y1:y2, x1:x2], Code_img[y1:y2, x1:x2], self.seg_net) p = cv2.resize(p, (x2 - x1, y2 - y1)).astype(np.uint8) mask_out = cv2.resize(mask_out.astype(np.float)*255.0, (x2 - x1, y2 - y1)).astype(np.uint8) f[y1:y2, x1:x2] = p else: p,mask_out = swap_regions_img(f[y1:y2, x1:x2], p, self.seg_net) p = cv2.resize(p, (x2 - x1, y2 - y1)).astype(np.uint8) mask_out = cv2.resize(mask_out.astype(np.float)*255.0, (x2 - x1, y2 - y1)).astype(np.uint8) mask_temp[y1:y2, x1:x2] = mask_out kernel = np.ones((5,5),np.uint8) mask_temp = cv2.erode(mask_temp,kernel,iterations = 1) mask_temp = cv2.GaussianBlur(mask_temp, (75, 75), 0,0,cv2.BORDER_DEFAULT) f_background = f.copy() f[y1:y2, x1:x2] = p f = f_background*(1-mask_temp/255.0)+f*(mask_temp/255.0) f = f.astype(np.uint8) out.write(f) out.release() outfile_dfl = os.path.join(rest_root_path, args.outfile.split('/')[-1]) command = 'ffmpeg -y -i {} -i {} -strict -2 -q:v 1 {}'.format( audiopath, os.path.join(temp_save_path, 'result.avi'), outfile_dfl) subprocess.call(command, shell=True) if os.path.exists(temp_save_path): shutil.rmtree(temp_save_path) torch.cuda.empty_cache() if __name__ == '__main__': main() ================================================ FILE: README.md ================================================ # HyperLips: Hyper Control Lips with High Resolution Decoder for Talking Face Generation Pytorch official implementation for our paper "HyperLips: Hyper Control Lips with High Resolution Decoder for Talking Face Generation". [[Paper]](https://arxiv.org/abs/2310.05720) [[Demo Video]](https://www.youtube.com/watch?v=j4GdJoTF0wY) ## Requirements - Python 3.8.16 - torch 1.10.1+cu113 - torchvision 0.11.2+cu113 - ffmpeg We recommend to install [pytorch](https://pytorch.org/) firstly,and then install related toolkit by running ``` pip install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple ``` You also can use environment.yml to install relevant environment by running ``` conda env create -f environment.yml ``` ## Getting the weights Download the pre-trained models from [BaiduYun](https://pan.baidu.com/s/1wy986BiROq5bkXweHxSvVA?pwd=6666 ),and place them to the folder `checkpoints` ## Inference We trained a pretrained model on LRS2 dataset.You can quickly try it by running: ``` python inference.py --checkpoint_path_BASE=checkpoints/hyperlipsbase_lrs2.pth ``` The result is saved (by default) in `results/result_video.mp4`. To inference on other videos, please specify the `--face` and `--audio` option and see more details in code. ## Train ### 1.Download MEAD dateset Our models are trained on MEAD. Please go to the [MEAD](https://www.robots.ox.ac.uk/~vgg/data/lip_reading/lrs2.html) website to download the dataset. We select videos with neutral emotion and frontal view as MEAD-Neutral dataset and resample all split videos into 25fps by using [software](http://www.pcfreetime.com/formatfactory/cn/index.html). All the videos after resampling are put in to `datasets/MEAD/`. The folder structure of MEAD-Neutral dataset is as follow. ``` data_root (datasets) ├── name of dataset(MEAD) | ├── videos ending with(.mp4) ``` ### 2.Preprocess for hyperlips_base extract the face images and raw audio from video files and generate filelists obtaining `train.txt` and `val.txt` by running: ``` python preprocess.py --origin_data_root=datasets/MEAD --clip_flag=0 --Function=base --hyperlips_train_dataset=Train_data ``` ### 3.Train lipsync expert train the lipsync expert by running: ``` python color_syncnet_trainv3.py --data_root=Train_data/imgs --checkpoint_dir=checkpoints_lipsync_expert ``` You can use the pre-trained weights saved at `checkpoints/pretrain_sync_expert.pth` if you want to skip this step. ### 4.Train hyperlips base train the hyperlips base by running: ``` python Train_hyperlipsBase.py --data_root=Train_data/imgs --checkpoint_dir=checkpoints_hyperlips_base --syncnet_checkpoint_path=checkpoints/pretrain_sync_expert.pth ``` ### 5.Generate hyperlips base videos generate hyperlips base videos by running: ``` python Gen_hyperlipsbase_videos.py --checkpoint_path_BASE=checkpoints_hyperlips_base/xxxxxxxxx.pth --video=datasets --outfile=hyperlips_base_results ``` ### 6.preprocess for hyperlips_HR extract image, sketch and lip mask from origin videos and extract image and sketch from videos generated from hyperlips base videos by running: ``` python preprocess.py --origin_data_root=datasets/MEAD --Function=HR --hyperlips_train_dataset=Train_data --hyperlipsbase_video_root=hyperlips_base_results ``` ### 7.Train hyperlips HR train hyperlips HR by running: ``` python Train_hyperlipsHR.py -hyperlips_trian_dataset=Train_data/HR_Train_Dateset --checkpoint_dir=checkpoints_hyperlips_HR --batch_size=28 --img_size=128 ``` You can also train HR_256 and HR_512 by changing `--img_size`.More details can be seen in code. ## Acknowledgement This project is built upon the publicly available code [Wav2Lip](https://github.com/Rudrabha/Wav2Lip/tree/master) and [IP_LAP](https://github.com/Weizhi-Zhong/IP_LAP). Thank the authors of these works for making their excellent work and codes publicly available. ## Citation and Star Please cite the following paper and star this project if you use this repository in your research. Thank you! ``` @InProceedings{ author = {Yaosen Chen, Yu Yao, Zhiqiang Li, Wei Wang, Yanru Zhang, Han Yang, Xuming Wen}, title = {HyperLips: Hyper Control Lips with High Resolution Decoder for Talking Face Generation}, year = {2023}, } ``` ================================================ FILE: Train_data/video_clips/MEAD/readme.txt ================================================ Put video here. ================================================ FILE: Train_hyperlipsBase.py ================================================ from os.path import dirname, join, basename, isfile from tqdm import tqdm from models import SyncNet_color as SyncNet from models.model_hyperlips import HyperLipsBase, HyperCtrolDiscriminator import audio import torch from torch import nn from torch.nn import functional as F from torch import optim import torch.backends.cudnn as cudnn from torch.utils import data as data_utils import numpy as np from glob import glob import os, random, cv2, argparse os.environ["CUDA_VISIBLE_DEVICES"] = '1' from hparams_Base import hparams, get_image_list parser = argparse.ArgumentParser(description='Code to train the Hyperbase model WITH the visual quality discriminator') parser.add_argument("--data_root", help="Root folder of the preprocessed LRS2 dataset", default='Train_data/imgs') parser.add_argument('--checkpoint_dir', help='Save checkpoints to this directory', default="checkpoints_hyperlips_base", type=str) parser.add_argument('--syncnet_checkpoint_path', help='Load the pre-trained audio-visual sync module', default="checkpoints/pretrain_sync_expert.pth", type=str) parser.add_argument('--checkpoint_path', help='Resume generator from this checkpoint', default=None, type=str) parser.add_argument('--disc_checkpoint_path', help='Resume quality disc from this checkpoint', default=None, type=str) args = parser.parse_args() global_step = 0 global_epoch = 0 use_cuda = torch.cuda.is_available() print('use_cuda: {}'.format(use_cuda)) syncnet_T = 5 syncnet_mel_step_size = 16 class Dataset(object): def __init__(self, split): self.all_videos = get_image_list(args.data_root, split) def get_frame_id(self, frame): return int(basename(frame).split('.')[0]) def get_window(self, start_frame): start_id = self.get_frame_id(start_frame) vidname = dirname(start_frame) window_fnames = [] for frame_id in range(start_id, start_id + syncnet_T): frame = join(vidname, '{}.jpg'.format(frame_id)) if not isfile(frame): return None window_fnames.append(frame) return window_fnames def read_window(self, window_fnames): if window_fnames is None: return None window = [] for fname in window_fnames: img = cv2.imread(fname) if img is None: return None try: img = cv2.resize(img, (hparams.img_size, hparams.img_size)) except Exception as e: return None window.append(img) return window def crop_audio_window(self, spec, start_frame): if type(start_frame) == int: start_frame_num = start_frame else: start_frame_num = self.get_frame_id(start_frame) start_idx = int(80. * (start_frame_num / float(hparams.fps))) end_idx = start_idx + syncnet_mel_step_size return spec[start_idx : end_idx, :] def get_segmented_mels(self, spec, start_frame): mels = [] assert syncnet_T == 5 start_frame_num = self.get_frame_id(start_frame) + 1 # 0-indexing ---> 1-indexing if start_frame_num - 2 < 0: return None for i in range(start_frame_num, start_frame_num + syncnet_T): m = self.crop_audio_window(spec, i - 2) if m.shape[0] != syncnet_mel_step_size: return None mels.append(m.T) mels = np.asarray(mels) return mels def prepare_window(self, window): # 3 x T x H x W x = np.asarray(window) / 255. x = np.transpose(x, (3, 0, 1, 2)) return x def __len__(self): return len(self.all_videos) def __getitem__(self, idx): while 1: idx = random.randint(0, len(self.all_videos) - 1) vidname = self.all_videos[idx] img_names = list(glob(join(vidname, '*.jpg'))) if len(img_names) <= 3 * syncnet_T: continue img_name = random.choice(img_names) wrong_img_name = random.choice(img_names) while wrong_img_name == img_name: wrong_img_name = random.choice(img_names) window_fnames = self.get_window(img_name) wrong_window_fnames = self.get_window(wrong_img_name) if window_fnames is None or wrong_window_fnames is None: continue window = self.read_window(window_fnames) if window is None: continue wrong_window = self.read_window(wrong_window_fnames) if wrong_window is None: continue try: wavpath = join(vidname, "audio.wav") wav = audio.load_wav(wavpath, hparams.sample_rate) orig_mel = audio.melspectrogram(wav).T except Exception as e: continue mel = self.crop_audio_window(orig_mel.copy(), img_name) if (mel.shape[0] != syncnet_mel_step_size): continue indiv_mels = self.get_segmented_mels(orig_mel.copy(), img_name) if indiv_mels is None: continue window = self.prepare_window(window) y = window.copy() window[:, :, window.shape[2]//2:] = 0. wrong_window = self.prepare_window(wrong_window) x = np.concatenate([window, wrong_window], axis=0) x = torch.FloatTensor(x) mel = torch.FloatTensor(mel.T).unsqueeze(0) indiv_mels = torch.FloatTensor(indiv_mels).unsqueeze(1) y = torch.FloatTensor(y) return x, indiv_mels, mel, y def save_sample_images(x, g, gt, global_step, checkpoint_dir): x = (x.detach().cpu().numpy().transpose(0, 2, 3, 4, 1) * 255.).astype(np.uint8) g = (g.detach().cpu().numpy().transpose(0, 2, 3, 4, 1) * 255.).astype(np.uint8) gt = (gt.detach().cpu().numpy().transpose(0, 2, 3, 4, 1) * 255.).astype(np.uint8) refs, inps = x[..., 3:], x[..., :3] folder = join(checkpoint_dir, "samples_step{:09d}".format(global_step)) if not os.path.exists(folder): os.mkdir(folder) collage = np.concatenate((refs, inps, g, gt), axis=-2) for batch_idx, c in enumerate(collage): for t in range(len(c)): cv2.imwrite('{}/{}_{}.jpg'.format(folder, batch_idx, t), c[t]) logloss = nn.BCELoss() def cosine_loss(a, v, y): d = nn.functional.cosine_similarity(a, v) loss = logloss(d.unsqueeze(1), y) return loss device = torch.device("cuda" if use_cuda else "cpu") syncnet = SyncNet().to(device) for p in syncnet.parameters(): p.requires_grad = False recon_loss = nn.L1Loss() def get_sync_loss(mel, g): g = g[:, :, :, g.size(3)//2:] g = torch.cat([g[:, :, i] for i in range(syncnet_T)], dim=1) # B, 3 * T, H//2, W g = torch.nn.functional.interpolate(g,(64, 128), mode='bilinear', align_corners=False)#[1, 3, 64, 128] a, v = syncnet(mel, g) y = torch.ones(g.size(0), 1).float().to(device) return cosine_loss(a, v, y) def train(device, model, disc, train_data_loader, test_data_loader, optimizer, disc_optimizer, checkpoint_dir=None, checkpoint_interval=None, nepochs=None): global global_step, global_epoch resumed_step = global_step while global_epoch < nepochs: print('Starting Epoch: {}'.format(global_epoch)) running_sync_loss, running_l1_loss, disc_loss, running_perceptual_loss = 0., 0., 0., 0. running_disc_real_loss, running_disc_fake_loss = 0., 0. prog_bar = tqdm(enumerate(train_data_loader)) for step, (x, indiv_mels, mel, gt) in prog_bar: disc.train() model.train() x = x.to(device)#([2, 6, 5, 512, 512]) mel = mel.to(device)#([2, 1, 80, 16]) indiv_mels = indiv_mels.to(device)#([2, 5, 1, 80, 16]) gt = gt.to(device)#([2, 3, 5, 512, 512]) ### Train generator now. Remove ALL grads. optimizer.zero_grad() disc_optimizer.zero_grad() g = model(indiv_mels, x)#([2, 3, 5, 512, 512])[B,C,T,H,W] if hparams.syncnet_wt > 0.: sync_loss = get_sync_loss(mel, g) else: sync_loss = 0. if hparams.disc_wt > 0.: perceptual_loss = disc.perceptual_forward(g) else: perceptual_loss = 0. l1loss = recon_loss(g, gt) loss = hparams.syncnet_wt * sync_loss + hparams.disc_wt * perceptual_loss + \ (1. - hparams.syncnet_wt - hparams.disc_wt) * l1loss loss.backward() optimizer.step() ### Remove all gradients before Training disc disc_optimizer.zero_grad() pred = disc(gt)#([2, 3, 5, 512, 512])->([10, 1]) disc_real_loss = F.binary_cross_entropy(pred, torch.ones((len(pred), 1)).to(device)) disc_real_loss.backward() pred = disc(g.detach())#([2, 3, 5, 512, 512])->([10, 1]) disc_fake_loss = F.binary_cross_entropy(pred, torch.zeros((len(pred), 1)).to(device)) disc_fake_loss.backward() disc_optimizer.step() running_disc_real_loss += disc_real_loss.item() running_disc_fake_loss += disc_fake_loss.item() if global_step % checkpoint_interval == 0: save_sample_images(x, g, gt, global_step, checkpoint_dir) # Logs global_step += 1 cur_session_steps = global_step - resumed_step running_l1_loss += l1loss.item() if hparams.syncnet_wt > 0.: running_sync_loss += sync_loss.item() else: running_sync_loss += 0. if hparams.disc_wt > 0.: running_perceptual_loss += perceptual_loss.item() else: running_perceptual_loss += 0. if global_step == 1 or global_step % checkpoint_interval == 0: save_checkpoint( model, optimizer, global_step, checkpoint_dir, global_epoch) save_checkpoint(disc, disc_optimizer, global_step, checkpoint_dir, global_epoch, prefix='disc_') # eval_model(test_data_loader, global_step, device, model, disc) if global_step % hparams.eval_interval == 0: with torch.no_grad(): average_sync_loss = eval_model(test_data_loader, global_step, device, model, disc) if average_sync_loss < .75: hparams.set_hparam('syncnet_wt', 0.03) prog_bar.set_description('L1: {}, Sync: {}, Percep: {} | Fake: {}, Real: {}'.format(running_l1_loss / (step + 1), running_sync_loss / (step + 1), running_perceptual_loss / (step + 1), running_disc_fake_loss / (step + 1), running_disc_real_loss / (step + 1))) global_epoch += 1 def eval_model(test_data_loader, global_step, device, model, disc): eval_steps = 300 print('Evaluating for {} steps'.format(eval_steps)) running_sync_loss, running_l1_loss, running_disc_real_loss, running_disc_fake_loss, running_perceptual_loss = [], [], [], [], [] while 1: for step, (x, indiv_mels, mel, gt) in enumerate((test_data_loader)): model.eval() disc.eval() x = x.to(device) mel = mel.to(device) indiv_mels = indiv_mels.to(device) gt = gt.to(device) pred = disc(gt) disc_real_loss = F.binary_cross_entropy(pred, torch.ones((len(pred), 1)).to(device)) g = model(indiv_mels, x) pred = disc(g) disc_fake_loss = F.binary_cross_entropy(pred, torch.zeros((len(pred), 1)).to(device)) running_disc_real_loss.append(disc_real_loss.item()) running_disc_fake_loss.append(disc_fake_loss.item()) sync_loss = get_sync_loss(mel, g) if hparams.disc_wt > 0.: # perceptual_loss = disc.module.perceptual_forward(g) perceptual_loss = disc.perceptual_forward(g) else: perceptual_loss = 0. l1loss = recon_loss(g, gt) loss = hparams.syncnet_wt * sync_loss + hparams.disc_wt * perceptual_loss + \ (1. - hparams.syncnet_wt - hparams.disc_wt) * l1loss running_l1_loss.append(l1loss.item()) running_sync_loss.append(sync_loss.item()) if hparams.disc_wt > 0.: running_perceptual_loss.append(perceptual_loss.item()) else: running_perceptual_loss.append(0.) if step > eval_steps: break print('L1: {}, Sync: {}, Percep: {} | Fake: {}, Real: {}'.format(sum(running_l1_loss) / len(running_l1_loss), sum(running_sync_loss) / len(running_sync_loss), sum(running_perceptual_loss) / len(running_perceptual_loss), sum(running_disc_fake_loss) / len(running_disc_fake_loss), sum(running_disc_real_loss) / len(running_disc_real_loss))) return sum(running_sync_loss) / len(running_sync_loss) def save_checkpoint(model, optimizer, step, checkpoint_dir, epoch, prefix=''): checkpoint_path = join( checkpoint_dir, "{}checkpoint_step{:09d}.pth".format(prefix, global_step)) optimizer_state = optimizer.state_dict() if hparams.save_optimizer_state else None torch.save({ "state_dict": model.state_dict(), "optimizer": optimizer_state, "global_step": step, "global_epoch": epoch, }, checkpoint_path) print("Saved checkpoint:", checkpoint_path) def _load(checkpoint_path): if use_cuda: checkpoint = torch.load(checkpoint_path) else: checkpoint = torch.load(checkpoint_path, map_location=lambda storage, loc: storage) return checkpoint def load_checkpoint(path, model, optimizer, reset_optimizer=False, overwrite_global_states=True): global global_step global global_epoch print("Load checkpoint from: {}".format(path)) checkpoint = _load(path) s = checkpoint["state_dict"] model.load_state_dict(s) if overwrite_global_states: global_step = checkpoint["global_step"] global_epoch = checkpoint["global_epoch"] return model if __name__ == "__main__": checkpoint_dir = args.checkpoint_dir # Dataset and Dataloader setup train_dataset = Dataset('train') test_dataset = Dataset('val') train_data_loader = data_utils.DataLoader( train_dataset, batch_size=hparams.batch_size, shuffle=True, num_workers=hparams.num_workers) test_data_loader = data_utils.DataLoader( test_dataset, batch_size=hparams.batch_size, num_workers=4) device = torch.device("cuda" if use_cuda else "cpu") # Model model = HyperLipsBase() if torch.cuda.device_count() > 1: print("Let's use", torch.cuda.device_count(), "GPUs!") model = nn.DataParallel(model) model = model.to(device) disc = HyperCtrolDiscriminator() if torch.cuda.device_count() > 1: print("Let's use", torch.cuda.device_count(), "GPUs!") disc = nn.DataParallel(disc) disc = disc.to(device) print('total trainable params {}'.format(sum(p.numel() for p in model.parameters() if p.requires_grad))) print('total DISC trainable params {}'.format(sum(p.numel() for p in disc.parameters() if p.requires_grad))) optimizer = optim.Adam([p for p in model.parameters() if p.requires_grad], lr=hparams.initial_learning_rate, betas=(0.5, 0.999)) disc_optimizer = optim.Adam([p for p in disc.parameters() if p.requires_grad], lr=hparams.disc_initial_learning_rate, betas=(0.5, 0.999)) if args.checkpoint_path is not None: load_checkpoint(args.checkpoint_path, model, optimizer, reset_optimizer=False) if args.disc_checkpoint_path is not None: load_checkpoint(args.disc_checkpoint_path, disc, disc_optimizer, reset_optimizer=False, overwrite_global_states=False) load_checkpoint(args.syncnet_checkpoint_path, syncnet, None, reset_optimizer=True, overwrite_global_states=False) if not os.path.exists(checkpoint_dir): os.mkdir(checkpoint_dir) # Train! train(device, model, disc, train_data_loader, test_data_loader, optimizer, disc_optimizer, checkpoint_dir=checkpoint_dir, checkpoint_interval=hparams.checkpoint_interval, nepochs=hparams.nepochs) ================================================ FILE: Train_hyperlipsHR.py ================================================ from os.path import dirname, join, basename, isfile from tqdm import tqdm from models import SyncNet_color as SyncNet from models.model_hyperlips import HRDecoder,HRDecoder_disc_qual import audio import lpips import torch from torch import nn from torch.nn import functional as F from torch import optim import torch.backends.cudnn as cudnn from torch.utils import data as data_utils import numpy as np from torchvision.models.vgg import vgg19 from glob import glob mseloss = nn.MSELoss() import os, random, cv2, argparse os.environ["CUDA_VISIBLE_DEVICES"] = '0' from hparams_HR import hparams, get_image_list parser = argparse.ArgumentParser(description='Code to train the Wav2Lip model WITH the visual quality discriminator') parser.add_argument("-hyperlips_trian_dataset", help="Root folder of the preprocessed LRS2 dataset", default='Train_data/HR_Train_Dateset') parser.add_argument('--checkpoint_dir', help='Save checkpoints to this directory', default="checkpoints_hyperlips_HR", type=str) parser.add_argument('--batch_size', type=int, help='Batch size for hyperlips model(s)', default=28) parser.add_argument('--img_size', type=int, help='imgsize for hyperlips model(s)', default=128) parser.add_argument('--checkpoint_path', help='Resume generator from this checkpoint', default=None, type=str) parser.add_argument('--disc_checkpoint_path', help='Resume quality disc from this checkpoint', default=None, type=str) args = parser.parse_args() global_step = 0 global_epoch = 0 use_cuda = torch.cuda.is_available() print('use_cuda: {}'.format(use_cuda)) syncnet_T = 5 syncnet_mel_step_size = 16 class Dataset(object): def __init__(self, split): gt_img_root = os.path.join(args.hyperlips_trian_dataset,'GT_IMG') self.gt_img = get_image_list(gt_img_root,split) def get_frame_id(self, frame): return int(basename(frame).split('.')[0]) def get_window(self, start_frame): start_id = self.get_frame_id(start_frame) vidname = dirname(start_frame) window_fnames = [] for frame_id in range(start_id, start_id + syncnet_T): frame = join(vidname, '{}.jpg'.format(frame_id)) if not isfile(frame): return None window_fnames.append(frame) return window_fnames def read_window(self, window_fnames): if window_fnames is None: return None window = [] for fname in window_fnames: img = cv2.imread(fname) if img is None: return None try: img = cv2.resize(img, (args.img_size, args.img_size)) except Exception as e: return None window.append(img) return window def read_window_base(self, window_fnames): if window_fnames is None: return None window = [] for fname in window_fnames: img = cv2.imread(fname) if img is None: return None try: img = cv2.resize(img, (128, 128)) except Exception as e: return None window.append(img) return window def read_window_sketch(self, window_fnames): if window_fnames is None: return None window = [] for fname in window_fnames: img = cv2.imread(fname) if img is None: return None try: if args.img_size == 128: kenerl_size = 5 elif args.img_size == 256: kenerl_size = 7 elif args.img_size == 512: kenerl_size = 11 else: print("Please input rigtht img_size!") img = cv2.resize(img, (args.img_size, args.img_size)) img = cv2.GaussianBlur(img, (kenerl_size, kenerl_size), 0,0,cv2.BORDER_DEFAULT) ret, img= cv2.threshold(img, 0, 255, cv2.THRESH_BINARY) cv2.imwrite("test_skech.png",img) except Exception as e: return None window.append(img) return window def read_window_sketch_base(self, window_fnames): if window_fnames is None: return None window = [] img_size = 128 for fname in window_fnames: img = cv2.imread(fname) if img is None: return None try: if img_size == 128: kenerl_size = 5 elif img_size == 256: kenerl_size = 7 elif img_size == 512: kenerl_size = 11 else: print("Please input rigtht img_size!") img = cv2.resize(img, (img_size, img_size)) img = cv2.GaussianBlur(img, (kenerl_size, kenerl_size), 0,0,cv2.BORDER_DEFAULT) ret, img= cv2.threshold(img, 0, 255, cv2.THRESH_BINARY) except Exception as e: return None window.append(img) return window def read_coord(self,window_fnames): if window_fnames is None: return None coords = [] for fname in window_fnames: img = cv2.imread(fname) if img is None: return None try: img = cv2.resize(img, (args.img_size, args.img_size)) except Exception as e: return None index = np.argwhere(img[:,:,0] == 255) x_max =max(index[:,0]) x_min =min(index[:,0]) y_max =max(index[:,1]) y_min =min(index[:,1]) coords.append([x_min,x_max,y_min,y_max]) return coords def prepare_window(self, window): # 3 x T x H x W x = np.asarray(window) / 255. x = np.transpose(x, (3, 0, 1, 2)) return x def __len__(self): return len(self.gt_img) def __getitem__(self, idx): while 1: idx = random.randint(0, len(self.gt_img) - 1) vidname = os.path.join(self.gt_img[idx].split('/')[-2],self.gt_img[idx].split('/')[-1]) gt_img_root = os.path.join(args.hyperlips_trian_dataset,'GT_IMG') gt_sketch_data_root = os.path.join(args.hyperlips_trian_dataset,'GT_SKETCH') gt_mask_root = os.path.join(args.hyperlips_trian_dataset,'GT_MASK') hyper_img_root = os.path.join(args.hyperlips_trian_dataset,'HYPER_IMG') hyper_sketch_data_root = os.path.join(args.hyperlips_trian_dataset,'HYPER_SKETCH') gt_img_names = list(glob(join(gt_img_root,vidname, '*.jpg'))) gt_sketch_names = list(glob(join(gt_sketch_data_root,vidname, '*.jpg'))) gt_mask_names = list(glob(join(gt_mask_root,vidname, '*.jpg'))) hyper_img_names = list(glob(join(hyper_img_root,vidname, '*.jpg'))) hyper_sketch_names = list(glob(join(hyper_sketch_data_root,vidname, '*.jpg'))) if not(len(gt_img_names)==len(gt_sketch_names)==len(gt_mask_names)==len(hyper_img_names)==len(hyper_sketch_names)): continue if len(gt_img_names) <= 3 * syncnet_T: continue img_name = random.choice(gt_img_names).split('/')[-1] gt_img_name = join(gt_img_root,vidname,img_name) gt_sketch_name = join(gt_sketch_data_root,vidname,img_name) gt_mask_name = join(gt_mask_root,vidname,img_name) hyper_img_name = join(hyper_img_root,vidname,img_name) hyper_sketch_name = join(hyper_sketch_data_root,vidname,img_name) gt_img_name_window_frames = self.get_window(gt_img_name) gt_sketch_name_window_frames = self.get_window(gt_sketch_name) gt_mask_name_window_frames = self.get_window(gt_mask_name) hyper_img_name_window_frames = self.get_window(hyper_img_name) hyper_sketch_name_window_frames = self.get_window(hyper_sketch_name) coords = self.read_coord(gt_mask_name_window_frames) if gt_img_name_window_frames is None : continue gt_img_window = self.read_window(gt_img_name_window_frames) gt_sketch_window = self.read_window_sketch(gt_sketch_name_window_frames) gt_mask_window = self.read_window(gt_mask_name_window_frames) hyper_img_window = self.read_window_base(hyper_img_name_window_frames) hyper_sketch_window = self.read_window_sketch_base(hyper_sketch_name_window_frames) gt_img_window = self.prepare_window(gt_img_window) gt_sketch_window = self.prepare_window(gt_sketch_window) gt_mask_window = self.prepare_window(gt_mask_window) hyper_img_window = self.prepare_window(hyper_img_window) hyper_sketch_window = self.prepare_window(hyper_sketch_window) gt_img = torch.FloatTensor(gt_img_window) gt_sketch = torch.FloatTensor(gt_sketch_window) gt_mask = torch.FloatTensor(gt_mask_window) hyper_img = torch.FloatTensor(hyper_img_window) hyper_sketch = torch.FloatTensor(hyper_sketch_window) coords = torch.FloatTensor(coords) return gt_img, gt_sketch, gt_mask,hyper_img,hyper_sketch,coords def save_sample_images(x, g, gt,m, global_step, checkpoint_dir): x = (x.detach().cpu().numpy().transpose(0, 2, 3, 4, 1) * 255.).astype(np.uint8) g = (g.detach().cpu().numpy().transpose(0, 2, 3, 4, 1) * 255.).astype(np.uint8) gt = (gt.detach().cpu().numpy().transpose(0, 2, 3, 4, 1) * 255.).astype(np.uint8) m = (m.detach().cpu().numpy().transpose(0, 2, 3, 4, 1) * 255.).astype(np.uint8) folder = join(checkpoint_dir, "samples_step{:09d}".format(global_step)) if not os.path.exists(folder): os.mkdir(folder) collage = np.concatenate((x, g, gt,m), axis=-2) for batch_idx, c in enumerate(collage): for t in range(len(c)): cv2.imwrite('{}/{}_{}.jpg'.format(folder, batch_idx, t), c[t]) class PerceptualLoss(nn.Module): def __init__(self): super(PerceptualLoss, self).__init__() vgg = vgg19(pretrained=True) loss_network = nn.Sequential(*list(vgg.features)[:35]).eval() for param in loss_network.parameters(): param.requires_grad = False self.loss_network = loss_network self.l1_loss = nn.L1Loss() def forward(self, high_resolution, fake_high_resolution): perception_loss = self.l1_loss(self.loss_network(high_resolution), self.loss_network(fake_high_resolution)) return perception_loss logloss = nn.BCELoss() def cosine_loss(a, v, y): d = nn.functional.cosine_similarity(a, v) loss = logloss(d.unsqueeze(1), y) return loss device = torch.device("cuda" if use_cuda else "cpu") loss_fn_vgg = lpips.LPIPS(net='vgg').cuda() recon_loss = nn.L1Loss() def train(device, model, disc,train_data_loader, test_data_loader, optimizer,disc_optimizer, checkpoint_dir=None, checkpoint_interval=None, nepochs=None): global global_step, global_epoch resumed_step = global_step adversarial_criterion = nn.BCEWithLogitsLoss().to(device) content_criterion = nn.L1Loss().to(device) perception_criterion = PerceptualLoss().to(device) while global_epoch < nepochs: print('Starting Epoch: {}'.format(global_epoch)) running_lip_c_loss, running_l1_loss, disc_loss, running_lip_l_loss = 0., 0., 0., 0. running_con_loss, running_mse_loss = 0., 0. prog_bar = tqdm(enumerate(train_data_loader)) for step, (gt_img, gt_sketch, gt_mask,hyper_img,hyper_sketch,coords) in prog_bar: disc.train() model.train() hyper_img = hyper_img.to(device) hyper_sketch = hyper_sketch.to(device) gt_mask = gt_mask.to(device) gt_sketch = gt_sketch.to(device) gt_img = gt_img.to(device) B = hyper_img.size(0) input_dim_size = len(hyper_img.size()) if input_dim_size > 4: hyper_img = torch.cat([hyper_img[:, :, i] for i in range(hyper_img.size(2))], dim=0)#([2, 6, 5, 512, 512])->([10, 6, 512, 512]) hyper_sketch = torch.cat([hyper_sketch[:, :, i] for i in range(hyper_sketch.size(2))], dim=0) gt_mask = torch.cat([gt_mask[:, :, i] for i in range(gt_mask.size(2))], dim=0) gt_sketch = torch.cat([gt_sketch[:, :, i] for i in range(gt_sketch.size(2))], dim=0) gt_img = torch.cat([gt_img[:, :, i] for i in range(gt_img.size(2))], dim=0) coords_t = torch.cat([( coords)[ :, i] for i in range(coords.size(1))], dim=0) real_labels = torch.ones((gt_img.size()[0], 1)).to(device)#[4,1] fake_labels = torch.zeros((gt_img.size()[0], 1)).to(device)#[4,1] input_temp = torch.cat((hyper_img,hyper_sketch), dim=1)#([2, 5, 1, 80, 16])->([10, 1, 80, 16]) optimizer.zero_grad() g = model(input_temp) lip_lpips_loss = 0 lip_recons_loss_temp = 0 for i in range(gt_img.shape[0]): x_min,x_max,y_min,y_max = int(coords_t[i,0]),int(coords_t[i,1]),int(coords_t[i,2]),int(coords_t[i,3]) gt_t_i = gt_img[i,:,x_min:x_max,y_min:y_max] g_t_i = g[i,:,x_min:x_max,y_min:y_max] recons_loss_temp_i = recon_loss(g_t_i, gt_t_i) lip_recons_loss_temp = lip_recons_loss_temp+recons_loss_temp_i lpips_loss_i = loss_fn_vgg(g_t_i, gt_t_i) lip_lpips_loss = lip_lpips_loss+lpips_loss_i lip_lpips_loss = lip_lpips_loss/gt_img.shape[0] lip_recons_loss_temp = lip_recons_loss_temp/gt_img.shape[0] score_real = disc(gt_img)#[4,1] score_fake = disc(g)#[4,1] discriminator_rf = score_real - score_fake.mean() discriminator_fr = score_fake - score_real.mean() adversarial_loss_rf = adversarial_criterion(discriminator_rf, fake_labels) adversarial_loss_fr = adversarial_criterion(discriminator_fr, real_labels) adversarial_loss = (adversarial_loss_fr + adversarial_loss_rf) / 2 perceptual_loss = perception_criterion(gt_img, g) content_loss = content_criterion(g, gt_img) loss = adversarial_loss + perceptual_loss + content_loss +lip_lpips_loss+lip_recons_loss_temp loss.backward() optimizer.step() ########################## # training discriminator # ########################## disc_optimizer.zero_grad() score_real = disc(gt_img) score_fake = disc(g.detach()) discriminator_rf = score_real - score_fake.mean() discriminator_fr = score_fake - score_real.mean() adversarial_loss_rf = adversarial_criterion(discriminator_rf, real_labels) adversarial_loss_fr = adversarial_criterion(discriminator_fr, fake_labels) discriminator_loss = (adversarial_loss_fr + adversarial_loss_rf) / 2 discriminator_loss.backward() disc_optimizer.step() if global_step % checkpoint_interval == 0: hyper_img_temp = torch.nn.functional.interpolate(hyper_img,(gt_img.size()[2], gt_img.size()[3]), mode='bilinear', align_corners=False) hyper_sketch_temp = torch.nn.functional.interpolate(hyper_sketch,(gt_img.size()[2], gt_img.size()[3]), mode='bilinear', align_corners=False) if input_dim_size > 4:#训练时输入为5维,测试时输入为4维(把T与B进行了合并) output = torch.split(g, B, dim=0) outputs1 = torch.stack(output, dim=2) hyper_img_temp = torch.split(hyper_img_temp, B, dim=0) hyper_img_temp = torch.stack(hyper_img_temp, dim=2) hyper_sketch_temp = torch.split(hyper_sketch_temp, B, dim=0) hyper_sketch_temp = torch.stack(hyper_sketch_temp, dim=2) gt_img = torch.split(gt_img, B, dim=0) gt_img = torch.stack(gt_img, dim=2) else: outputs1 = output save_sample_images(hyper_img_temp, hyper_sketch_temp, outputs1,gt_img, global_step, checkpoint_dir) # Logs global_step += 1 cur_session_steps = global_step - resumed_step if global_step == 1 or global_step % checkpoint_interval == 0: save_checkpoint(model, optimizer, global_step, checkpoint_dir, global_epoch) save_checkpoint(disc, disc_optimizer, global_step, checkpoint_dir, global_epoch, prefix='disc_') current_lr = optimizer.state_dict()['param_groups'][0]['lr'] current_lr_disc = disc_optimizer.state_dict()['param_groups'][0]['lr'] running_l1_loss+= adversarial_loss.item() running_mse_loss+= perceptual_loss.item() running_con_loss+= content_loss.item() running_lip_c_loss+= lip_recons_loss_temp.item() running_lip_l_loss +=lip_lpips_loss.item()#+lip_recons_loss_temp disc_loss+= discriminator_loss.item() prog_bar.set_description('ad_loss: {}, perc_loss: {},cont_loss: {},lipc_loss: {},lipl_loss: {},disc_loss: {}'.format(running_l1_loss / (step + 1), running_mse_loss / (step + 1), running_con_loss / (step + 1), running_lip_c_loss / (step + 1), running_lip_l_loss / (step + 1), disc_loss / (step + 1), # running_disc_fake_loss / (step + 1), # running_disc_real_loss / (step + 1) )) global_epoch += 1 def eval_model(test_data_loader, global_step, device, model): eval_steps = 300 print('Evaluating for {} steps'.format(eval_steps)) running_sync_loss, running_l1_loss, running_disc_real_loss, running_disc_fake_loss, running_perceptual_loss = [], [], [], [], [] while 1: for step, (x, indiv_mels, mel, gt,m,coords) in enumerate((test_data_loader)): # for step, (x, indiv_mels, mel, gt,m,coords) in prog_bar: model.eval() # disc.eval() x = x.to(device) mel = mel.to(device) indiv_mels = indiv_mels.to(device) gt = gt.to(device) g = model(indiv_mels, x) l1loss = recon_loss(g, gt) running_l1_loss.append(l1loss.item()) running_sync_loss.append(sync_loss.item()) if step > eval_steps: break print('L1: {}, Sync: {}'.format(sum(running_l1_loss) / len(running_l1_loss), sum(running_sync_loss) / len(running_sync_loss), # sum(running_perceptual_loss) / len(running_perceptual_loss), # sum(running_disc_fake_loss) / len(running_disc_fake_loss), # sum(running_disc_real_loss) / len(running_disc_real_loss) )) return sum(running_sync_loss) / len(running_sync_loss) def save_checkpoint(model, optimizer, step, checkpoint_dir, epoch, prefix=''): checkpoint_path = join( checkpoint_dir, "{}checkpoint_step{:09d}.pth".format(prefix, global_step)) optimizer_state = optimizer.state_dict() if hparams.save_optimizer_state else None torch.save({ "state_dict": model.state_dict(), "optimizer": optimizer_state, "global_step": step, "global_epoch": epoch, }, checkpoint_path) print("Saved checkpoint:", checkpoint_path) def _load(checkpoint_path): if use_cuda: checkpoint = torch.load(checkpoint_path) else: checkpoint = torch.load(checkpoint_path, map_location=lambda storage, loc: storage) return checkpoint def load_checkpoint(path, model, reset_optimizer=False, overwrite_global_states=True): global global_step global global_epoch print("Load checkpoint from: {}".format(path)) checkpoint = _load(path) s = checkpoint["state_dict"] new_s = {} for k, v in s.items(): new_s[k.replace('module.', '')] = v model.load_state_dict(new_s,strict=False) if overwrite_global_states: global_step = checkpoint["global_step"] global_epoch = checkpoint["global_epoch"] return model if __name__ == "__main__": checkpoint_dir = args.checkpoint_dir # Dataset and Dataloader setup train_dataset = Dataset('train') test_dataset = Dataset('val') train_data_loader = data_utils.DataLoader( train_dataset, batch_size=args.batch_size, shuffle=True, num_workers=hparams.num_workers) test_data_loader = data_utils.DataLoader( test_dataset, batch_size=args.batch_size, num_workers=4) device = torch.device("cuda" if use_cuda else "cpu") if args.img_size==512: rescaling = 4 elif args.img_size==256: rescaling = 2 else: rescaling = 1 model = HRDecoder(rescaling) if torch.cuda.device_count() > 1: print("Let's use", torch.cuda.device_count(), "GPUs!") model = nn.DataParallel(model) model = model.to(device) disc = HRDecoder_disc_qual() if torch.cuda.device_count() > 1: print("Let's use", torch.cuda.device_count(), "GPUs!") disc = nn.DataParallel(disc) disc = disc.to(device) print('total trainable params {}'.format(sum(p.numel() for p in model.parameters() if p.requires_grad))) print('total DISC trainable params {}'.format(sum(p.numel() for p in disc.parameters() if p.requires_grad))) disc_optimizer = optim.Adam([p for p in disc.parameters() if p.requires_grad], lr=hparams.disc_initial_learning_rate, betas=(0.5, 0.999)) if args.checkpoint_path is not None: load_checkpoint(args.checkpoint_path, model, reset_optimizer=False) if args.disc_checkpoint_path is not None: load_checkpoint(args.disc_checkpoint_path, disc, reset_optimizer=False, overwrite_global_states=False) optimizer = optim.Adam([p for p in model.parameters() if p.requires_grad], lr=hparams.initial_learning_rate, betas=(0.5, 0.999)) disc_optimizer = optim.Adam([p for p in disc.parameters() if p.requires_grad], lr=hparams.disc_initial_learning_rate, betas=(0.5, 0.999)) if not os.path.exists(checkpoint_dir): os.mkdir(checkpoint_dir) # Train! train(device, model,disc, train_data_loader, test_data_loader, optimizer,disc_optimizer, checkpoint_dir=checkpoint_dir, checkpoint_interval=hparams.checkpoint_interval, nepochs=hparams.nepochs) ================================================ FILE: audio.py ================================================ import librosa import librosa.filters import numpy as np # import tensorflow as tf from scipy import signal from scipy.io import wavfile from hparams import hparams as hp def load_wav(path, sr): return librosa.core.load(path, sr=sr)[0] def save_wav(wav, path, sr): wav *= 32767 / max(0.01, np.max(np.abs(wav))) #proposed by @dsmiller wavfile.write(path, sr, wav.astype(np.int16)) def save_wavenet_wav(wav, path, sr): librosa.output.write_wav(path, wav, sr=sr) def preemphasis(wav, k, preemphasize=True): if preemphasize: return signal.lfilter([1, -k], [1], wav) return wav def inv_preemphasis(wav, k, inv_preemphasize=True): if inv_preemphasize: return signal.lfilter([1], [1, -k], wav) return wav def get_hop_size(): hop_size = hp.hop_size if hop_size is None: assert hp.frame_shift_ms is not None hop_size = int(hp.frame_shift_ms / 1000 * hp.sample_rate) return hop_size def linearspectrogram(wav): D = _stft(preemphasis(wav, hp.preemphasis, hp.preemphasize)) S = _amp_to_db(np.abs(D)) - hp.ref_level_db if hp.signal_normalization: return _normalize(S) return S def melspectrogram(wav): D = _stft(preemphasis(wav, hp.preemphasis, hp.preemphasize)) S = _amp_to_db(_linear_to_mel(np.abs(D))) - hp.ref_level_db if hp.signal_normalization: return _normalize(S) return S def _lws_processor(): import lws return lws.lws(hp.n_fft, get_hop_size(), fftsize=hp.win_size, mode="speech") def _stft(y): if hp.use_lws: return _lws_processor(hp).stft(y).T else: # return librosa.stft(y=y, n_fft=hp.n_fft, hop_length=get_hop_size(), win_length=hp.win_size) return librosa.stft(y=y, n_fft=hp.n_fft, hop_length=get_hop_size(), win_length=hp.win_size) ########################################################## #Those are only correct when using lws!!! (This was messing with Wavenet quality for a long time!) def num_frames(length, fsize, fshift): """Compute number of time frames of spectrogram """ pad = (fsize - fshift) if length % fshift == 0: M = (length + pad * 2 - fsize) // fshift + 1 else: M = (length + pad * 2 - fsize) // fshift + 2 return M def pad_lr(x, fsize, fshift): """Compute left and right padding """ M = num_frames(len(x), fsize, fshift) pad = (fsize - fshift) T = len(x) + 2 * pad r = (M - 1) * fshift + fsize - T return pad, pad + r ########################################################## #Librosa correct padding def librosa_pad_lr(x, fsize, fshift): return 0, (x.shape[0] // fshift + 1) * fshift - x.shape[0] # Conversions _mel_basis = None def _linear_to_mel(spectogram): global _mel_basis if _mel_basis is None: _mel_basis = _build_mel_basis() return np.dot(_mel_basis, spectogram) def _build_mel_basis(): assert hp.fmax <= hp.sample_rate // 2 # return librosa.filters.mel(hp.sample_rate, hp.n_fft, n_mels=hp.num_mels, # fmin=hp.fmin, fmax=hp.fmax) return librosa.filters.mel(sr=hp.sample_rate, n_fft=hp.n_fft, n_mels=hp.num_mels, fmin=hp.fmin, fmax=hp.fmax) def _amp_to_db(x): min_level = np.exp(hp.min_level_db / 20 * np.log(10)) return 20 * np.log10(np.maximum(min_level, x)) def _db_to_amp(x): return np.power(10.0, (x) * 0.05) def _normalize(S): if hp.allow_clipping_in_normalization: if hp.symmetric_mels: return np.clip((2 * hp.max_abs_value) * ((S - hp.min_level_db) / (-hp.min_level_db)) - hp.max_abs_value, -hp.max_abs_value, hp.max_abs_value) else: return np.clip(hp.max_abs_value * ((S - hp.min_level_db) / (-hp.min_level_db)), 0, hp.max_abs_value) assert S.max() <= 0 and S.min() - hp.min_level_db >= 0 if hp.symmetric_mels: return (2 * hp.max_abs_value) * ((S - hp.min_level_db) / (-hp.min_level_db)) - hp.max_abs_value else: return hp.max_abs_value * ((S - hp.min_level_db) / (-hp.min_level_db)) def _denormalize(D): if hp.allow_clipping_in_normalization: if hp.symmetric_mels: return (((np.clip(D, -hp.max_abs_value, hp.max_abs_value) + hp.max_abs_value) * -hp.min_level_db / (2 * hp.max_abs_value)) + hp.min_level_db) else: return ((np.clip(D, 0, hp.max_abs_value) * -hp.min_level_db / hp.max_abs_value) + hp.min_level_db) if hp.symmetric_mels: return (((D + hp.max_abs_value) * -hp.min_level_db / (2 * hp.max_abs_value)) + hp.min_level_db) else: return ((D * -hp.min_level_db / hp.max_abs_value) + hp.min_level_db) ================================================ FILE: checkpoint ================================================ ================================================ FILE: checkpoints/readme.txt ================================================ Put checkpoint here. ================================================ FILE: color_syncnet_trainv3.py ================================================ from os.path import dirname, join, basename, isfile from tqdm import tqdm from models import SyncNet_color as SyncNet import audio import torch from torch import nn from torch import optim import torch.backends.cudnn as cudnn from torch.utils import data as data_utils import numpy as np from glob import glob import os, random, cv2, argparse os.environ["CUDA_VISIBLE_DEVICES"] = '0' from hparams import hparams, get_image_list parser = argparse.ArgumentParser(description='Code to train the expert lip-sync discriminator') parser.add_argument("--data_root", help="Root folder of the preprocessed LRS2 dataset", default='Train_data/imgs') parser.add_argument('--checkpoint_dir', help='Save checkpoints to this directory', default="./checkpoints_lipsync_expert", type=str) parser.add_argument('--checkpoint_path', help='Resumed from this checkpoint', default=None, type=str) args = parser.parse_args() global_step = 0 global_epoch = 0 use_cuda = torch.cuda.is_available() ema_decay = 0.5 ** (32 / (10 * 1000)) syncnet_T = 5 syncnet_mel_step_size = 16 class Dataset(object): def __init__(self, split): self.all_videos = get_image_list(args.data_root, split) self.av_offset_shift = 0 def get_frame_id(self, frame): return int(basename(frame).split('.')[0]) def get_window(self, start_frame): start_id = self.get_frame_id(start_frame) vidname = dirname(start_frame) window_fnames = [] for frame_id in range(start_id, start_id + syncnet_T): frame = join(vidname, '{}.jpg'.format(frame_id)) if not isfile(frame): return None window_fnames.append(frame) return window_fnames def crop_audio_window(self, spec, start_frame): start_frame_num = self.get_frame_id(start_frame) start_frame_num = start_frame_num + self.av_offset_shift start_idx = int(80. * (start_frame_num / float(hparams.fps))) end_idx = start_idx + syncnet_mel_step_size return spec[start_idx: end_idx, :] def read_window(self, window_fnames, flip_flag=False): if window_fnames is None: return None window = [] for fname in window_fnames: img = cv2.imread(fname) if img is None: return None try: img = cv2.resize(img, (hparams.img_size, hparams.img_size)) except Exception as e: return None if flip_flag: img = np.flip(img, axis=1).copy() window.append(img) return window def __len__(self): return len(self.all_videos) def __getitem__(self, idx): while 1: idx = random.randint(0, len(self.all_videos) - 1) vidname = self.all_videos[idx] img_names = list(glob(join(vidname, '*.jpg'))) if len(img_names) <= 3 * syncnet_T: continue img_name = random.choice(img_names) wrong_img_name = random.choice(img_names) while wrong_img_name == img_name: wrong_img_name = random.choice(img_names) if random.choice([True, False]): y = torch.ones(1).float() chosen = img_name else: y = torch.zeros(1).float() chosen = wrong_img_name window_fnames = self.get_window(chosen) if window_fnames is None: continue window = self.read_window(window_fnames, flip_flag=True) try: wavpath = join(vidname, "audio.wav") wav = audio.load_wav(wavpath, hparams.sample_rate) orig_mel = audio.melspectrogram(wav).T except Exception as e: continue mel = self.crop_audio_window(orig_mel.copy(), img_name) if (mel.shape[0] != syncnet_mel_step_size): continue # H x W x 3 * T x = np.concatenate(window, axis=2) / 255. x = x.transpose(2, 0, 1) x = x[:, x.shape[1]//2:] x = torch.FloatTensor(x) mel = torch.FloatTensor(mel.T).unsqueeze(0) return x, mel, y logloss = nn.BCELoss() def cosine_loss(a, v, y): d = nn.functional.cosine_similarity(a, v) loss = logloss(d.unsqueeze(1), y) return loss def train(device, model, train_data_loader, test_data_loader, optimizer, checkpoint_dir=None, checkpoint_interval=None, nepochs=None): global global_step, global_epoch resumed_step = global_step while global_epoch < nepochs: running_loss = 0. prog_bar = tqdm(enumerate(train_data_loader)) for step, (x, mel, y) in prog_bar: model.train() optimizer.zero_grad() # Transform data to CUDA device x = x.to(device) mel = mel.to(device) a, v = model(mel, x) y = y.to(device) loss = cosine_loss(a, v, y) loss.backward() optimizer.step() # model_ema.update_parameters(model) global_step += 1 cur_session_steps = global_step - resumed_step running_loss += loss.item() if global_step == 1 or global_step % checkpoint_interval == 0: save_checkpoint( model, optimizer, global_step, checkpoint_dir, global_epoch) with torch.no_grad(): eval_model(test_data_loader, global_step, device, model, checkpoint_dir) if global_step % hparams.syncnet_eval_interval == 0: with torch.no_grad(): pass eval_model(test_data_loader, global_step, device, model, checkpoint_dir) lr_temp = optimizer.state_dict()['param_groups'][0]['lr'] # print(lr_temp) prog_bar.set_description('Loss: {}'.format(running_loss / (step + 1))+' '+'lr: {}'.format(lr_temp)) global_epoch += 1 print(global_epoch) def eval_model(test_data_loader, global_step, device, model, checkpoint_dir): eval_steps = 1400 print('Evaluating for {} steps'.format(eval_steps)) losses = [] while 1: for step, (x, mel, y) in enumerate(test_data_loader): # Transform data to CUDA device x = x.to(device) mel = mel.to(device) model.eval() a, v = model(mel, x) # model_ema.eval() # a, v = model_ema(mel, x) y = y.to(device) loss = cosine_loss(a, v, y) losses.append(loss.item()) if step > eval_steps: break averaged_loss = sum(losses) / len(losses) print(averaged_loss) return def save_checkpoint(model, optimizer, step, checkpoint_dir, epoch): checkpoint_path = join( checkpoint_dir, "checkpoint_step{:09d}.pth".format(global_step)) optimizer_state = optimizer.state_dict() if hparams.save_optimizer_state else None torch.save({ "state_dict": model.state_dict(), "optimizer": optimizer_state, "global_step": step, "global_epoch": epoch, }, checkpoint_path) print("Saved checkpoint:", checkpoint_path) def _load(checkpoint_path): if use_cuda: checkpoint = torch.load(checkpoint_path) else: checkpoint = torch.load(checkpoint_path, map_location=lambda storage, loc: storage) return checkpoint def load_checkpoint(path, model, optimizer, reset_optimizer=False): global global_step global global_epoch print("Load checkpoint from: {}".format(path)) checkpoint = _load(path) model.load_state_dict(checkpoint["state_dict"]) if not reset_optimizer: optimizer_state = checkpoint["optimizer"] if optimizer_state is not None: print("Load optimizer state from {}".format(path)) optimizer.load_state_dict(checkpoint["optimizer"]) global_step = checkpoint["global_step"] global_epoch = checkpoint["global_epoch"] if __name__ == "__main__": checkpoint_dir = args.checkpoint_dir checkpoint_path = args.checkpoint_path if not os.path.exists(checkpoint_dir): os.mkdir(checkpoint_dir) # Dataset and Dataloader setup train_dataset = Dataset('train') test_dataset = Dataset('val') train_data_loader = data_utils.DataLoader( train_dataset, batch_size=hparams.syncnet_batch_size, shuffle=True, num_workers=hparams.num_workers) test_data_loader = data_utils.DataLoader( # test_dataset, batch_size=hparams.syncnet_batch_size, test_dataset, batch_size=1, num_workers=1) device = torch.device("cuda" if use_cuda else "cpu") # Model model = SyncNet().to(device) print('total trainable params {}'.format(sum(p.numel() for p in model.parameters() if p.requires_grad))) optimizer = optim.Adam([p for p in model.parameters() if p.requires_grad], lr=hparams.syncnet_lr) if checkpoint_path is not None: load_checkpoint(checkpoint_path, model, optimizer, reset_optimizer=False) train(device, model, train_data_loader, test_data_loader, optimizer, checkpoint_dir=checkpoint_dir, checkpoint_interval=hparams.syncnet_checkpoint_interval, nepochs=hparams.nepochs) ================================================ FILE: conv.py ================================================ import torch from torch import nn from torch.nn import functional as F class Conv2d(nn.Module): def __init__(self, cin, cout, kernel_size, stride, padding, residual=False, *args, **kwargs): super().__init__(*args, **kwargs) self.conv_block = nn.Sequential( nn.Conv2d(cin, cout, kernel_size, stride, padding), nn.BatchNorm2d(cout) ) self.act = nn.ReLU() self.residual = residual def forward(self, x): out = self.conv_block(x) if self.residual: out += x return self.act(out) class nonorm_Conv2d(nn.Module): def __init__(self, cin, cout, kernel_size, stride, padding, residual=False, *args, **kwargs): super().__init__(*args, **kwargs) self.conv_block = nn.Sequential( nn.Conv2d(cin, cout, kernel_size, stride, padding), ) self.act = nn.LeakyReLU(0.01, inplace=True) def forward(self, x): out = self.conv_block(x) return self.act(out) class Conv2dTranspose(nn.Module): def __init__(self, cin, cout, kernel_size, stride, padding, output_padding=0, *args, **kwargs): super().__init__(*args, **kwargs) self.conv_block = nn.Sequential( nn.ConvTranspose2d(cin, cout, kernel_size, stride, padding, output_padding), nn.BatchNorm2d(cout) ) self.act = nn.ReLU() def forward(self, x): out = self.conv_block(x) return self.act(out) ================================================ FILE: datasets/MEAD/readme.txt ================================================ Put all the traning Mead .mp4 file here. ================================================ FILE: environment.yml ================================================ name: hyperlips channels: - http://mirrors.ustc.edu.cn/anaconda/pkgs/free/ - http://mirrors.ustc.edu.cn/anaconda/cloud/msys2/ - defaults dependencies: - _libgcc_mutex=0.1=main - _openmp_mutex=5.1=1_gnu - ca-certificates=2023.05.30=h06a4308_0 - ld_impl_linux-64=2.38=h1181459_1 - libffi=3.4.4=h6a678d5_0 - libgcc-ng=11.2.0=h1234567_1 - libgomp=11.2.0=h1234567_1 - libstdcxx-ng=11.2.0=h1234567_1 - ncurses=6.4=h6a678d5_0 - openssl=3.0.10=h7f8727e_1 - pip=23.2.1=py38h06a4308_0 - python=3.8.16=h955ad1f_4 - readline=8.2=h5eee18b_0 - setuptools=68.0.0=py38h06a4308_0 - sqlite=3.41.2=h5eee18b_0 - tk=8.6.12=h1ccaba5_0 - wheel=0.38.4=py38h06a4308_0 - xz=5.4.2=h5eee18b_0 - zlib=1.2.13=h5eee18b_0 - pip: - absl-py==1.4.0 - addict==2.4.0 - attrs==23.1.0 - audioread==3.0.0 - basicsr==1.4.2 - cachetools==5.3.1 - certifi==2023.7.22 - cffi==1.15.1 - charset-normalizer==3.2.0 - contourpy==1.1.0 - cycler==0.11.0 - decorator==5.1.1 - facexlib==0.2.5 - filterpy==1.4.5 - flatbuffers==23.5.26 - fonttools==4.42.1 - future==0.18.3 - google-auth==2.22.0 - google-auth-oauthlib==1.0.0 - grpcio==1.57.0 - idna==3.4 - imageio==2.31.1 - importlib-metadata==6.8.0 - importlib-resources==6.0.1 - joblib==1.3.2 - kiwisolver==1.4.4 - lazy-loader==0.3 - librosa==0.9.2 - llvmlite==0.39.1 - lmdb==1.4.1 - markdown==3.4.4 - markupsafe==2.1.3 - matplotlib==3.7.2 - mediapipe==0.10.1 - networkx==3.1 - numba==0.56.4 - numpy==1.21.5 - oauthlib==3.2.2 - opencv-contrib-python==4.7.0.72 - opencv-python==4.7.0.72 - packaging==23.1 - pillow==10.0.0 - platformdirs==3.10.0 - pooch==1.7.0 - protobuf==3.20.3 - pyasn1==0.5.0 - pyasn1-modules==0.3.0 - pycparser==2.21 - pyparsing==3.0.9 - python-dateutil==2.8.2 - pywavelets==1.4.1 - pyyaml==6.0.1 - requests==2.31.0 - requests-oauthlib==1.3.1 - resampy==0.4.2 - rsa==4.9 - scikit-image==0.21.0 - scikit-learn==1.3.0 - scipy==1.10.1 - six==1.16.0 - sounddevice==0.4.6 - soundfile==0.12.1 - tb-nightly==2.14.0a20230808 - tensorboard-data-server==0.7.1 - threadpoolctl==3.2.0 - tifffile==2023.7.10 - tomli==2.0.1 - torch==1.10.1+cu113 - torchvision==0.11.2+cu113 - tqdm==4.65.0 - typing-extensions==4.7.1 - urllib3==1.26.16 - werkzeug==2.3.7 - yapf==0.40.1 - zipp==3.16.2 prefix: /root/anaconda3/envs/hyperlips ================================================ FILE: face_detection/README.md ================================================ The code for Face Detection in this folder has been taken from the wonderful [face_alignment](https://github.com/1adrianb/face-alignment) repository. This has been modified to take batches of faces at a time. ================================================ FILE: face_detection/__init__.py ================================================ # -*- coding: utf-8 -*- __author__ = """Adrian Bulat""" __email__ = 'adrian.bulat@nottingham.ac.uk' __version__ = '1.0.1' from .api import FaceAlignment, LandmarksType, NetworkSize ================================================ FILE: face_detection/api.py ================================================ from __future__ import print_function import os import torch from torch.utils.model_zoo import load_url from enum import Enum import numpy as np import cv2 try: import urllib.request as request_file except BaseException: import urllib as request_file from .models import FAN, ResNetDepth from .utils import * class LandmarksType(Enum): """Enum class defining the type of landmarks to detect. ``_2D`` - the detected points ``(x,y)`` are detected in a 2D space and follow the visible contour of the face ``_2halfD`` - this points represent the projection of the 3D points into 3D ``_3D`` - detect the points ``(x,y,z)``` in a 3D space """ _2D = 1 _2halfD = 2 _3D = 3 class NetworkSize(Enum): # TINY = 1 # SMALL = 2 # MEDIUM = 3 LARGE = 4 def __new__(cls, value): member = object.__new__(cls) member._value_ = value return member def __int__(self): return self.value ROOT = os.path.dirname(os.path.abspath(__file__)) class FaceAlignment: def __init__(self, landmarks_type, network_size=NetworkSize.LARGE, device='cuda', flip_input=False, face_detector='sfd', verbose=False): self.device = device self.flip_input = flip_input self.landmarks_type = landmarks_type self.verbose = verbose network_size = int(network_size) if 'cuda' in device: torch.backends.cudnn.benchmark = True # Get the face detector face_detector_module = __import__('face_detection.detection.' + face_detector, globals(), locals(), [face_detector], 0) self.face_detector = face_detector_module.FaceDetector(device=device, verbose=verbose) def get_detections_for_batch(self, images): images = images[..., ::-1] detected_faces = self.face_detector.detect_from_batch(images.copy()) results = [] for i, d in enumerate(detected_faces): if len(d) == 0: results.append(None) continue d = d[0] d = np.clip(d, 0, None) x1, y1, x2, y2 = map(int, d[:-1]) results.append((x1, y1, x2, y2)) return results ================================================ FILE: face_detection/detection/__init__.py ================================================ from .core import FaceDetector ================================================ FILE: face_detection/detection/core.py ================================================ import logging import glob from tqdm import tqdm import numpy as np import torch import cv2 class FaceDetector(object): """An abstract class representing a face detector. Any other face detection implementation must subclass it. All subclasses must implement ``detect_from_image``, that return a list of detected bounding boxes. Optionally, for speed considerations detect from path is recommended. """ def __init__(self, device, verbose): self.device = device self.verbose = verbose if verbose: if 'cpu' in device: logger = logging.getLogger(__name__) logger.warning("Detection running on CPU, this may be potentially slow.") if 'cpu' not in device and 'cuda' not in device: if verbose: logger.error("Expected values for device are: {cpu, cuda} but got: %s", device) raise ValueError def detect_from_image(self, tensor_or_path): """Detects faces in a given image. This function detects the faces present in a provided BGR(usually) image. The input can be either the image itself or the path to it. Arguments: tensor_or_path {numpy.ndarray, torch.tensor or string} -- the path to an image or the image itself. Example:: >>> path_to_image = 'data/image_01.jpg' ... detected_faces = detect_from_image(path_to_image) [A list of bounding boxes (x1, y1, x2, y2)] >>> image = cv2.imread(path_to_image) ... detected_faces = detect_from_image(image) [A list of bounding boxes (x1, y1, x2, y2)] """ raise NotImplementedError def detect_from_directory(self, path, extensions=['.jpg', '.png'], recursive=False, show_progress_bar=True): """Detects faces from all the images present in a given directory. Arguments: path {string} -- a string containing a path that points to the folder containing the images Keyword Arguments: extensions {list} -- list of string containing the extensions to be consider in the following format: ``.extension_name`` (default: {['.jpg', '.png']}) recursive {bool} -- option wherever to scan the folder recursively (default: {False}) show_progress_bar {bool} -- display a progressbar (default: {True}) Example: >>> directory = 'data' ... detected_faces = detect_from_directory(directory) {A dictionary of [lists containing bounding boxes(x1, y1, x2, y2)]} """ if self.verbose: logger = logging.getLogger(__name__) if len(extensions) == 0: if self.verbose: logger.error("Expected at list one extension, but none was received.") raise ValueError if self.verbose: logger.info("Constructing the list of images.") additional_pattern = '/**/*' if recursive else '/*' files = [] for extension in extensions: files.extend(glob.glob(path + additional_pattern + extension, recursive=recursive)) if self.verbose: logger.info("Finished searching for images. %s images found", len(files)) logger.info("Preparing to run the detection.") predictions = {} for image_path in tqdm(files, disable=not show_progress_bar): if self.verbose: logger.info("Running the face detector on image: %s", image_path) predictions[image_path] = self.detect_from_image(image_path) if self.verbose: logger.info("The detector was successfully run on all %s images", len(files)) return predictions @property def reference_scale(self): raise NotImplementedError @property def reference_x_shift(self): raise NotImplementedError @property def reference_y_shift(self): raise NotImplementedError @staticmethod def tensor_or_path_to_ndarray(tensor_or_path, rgb=True): """Convert path (represented as a string) or torch.tensor to a numpy.ndarray Arguments: tensor_or_path {numpy.ndarray, torch.tensor or string} -- path to the image, or the image itself """ if isinstance(tensor_or_path, str): return cv2.imread(tensor_or_path) if not rgb else cv2.imread(tensor_or_path)[..., ::-1] elif torch.is_tensor(tensor_or_path): # Call cpu in case its coming from cuda return tensor_or_path.cpu().numpy()[..., ::-1].copy() if not rgb else tensor_or_path.cpu().numpy() elif isinstance(tensor_or_path, np.ndarray): return tensor_or_path[..., ::-1].copy() if not rgb else tensor_or_path else: raise TypeError ================================================ FILE: face_detection/detection/sfd/__init__.py ================================================ from .sfd_detector import SFDDetector as FaceDetector ================================================ FILE: face_detection/detection/sfd/bbox.py ================================================ from __future__ import print_function import os import sys import cv2 import random import datetime import time import math import argparse import numpy as np import torch try: from iou import IOU except BaseException: # IOU cython speedup 10x def IOU(ax1, ay1, ax2, ay2, bx1, by1, bx2, by2): sa = abs((ax2 - ax1) * (ay2 - ay1)) sb = abs((bx2 - bx1) * (by2 - by1)) x1, y1 = max(ax1, bx1), max(ay1, by1) x2, y2 = min(ax2, bx2), min(ay2, by2) w = x2 - x1 h = y2 - y1 if w < 0 or h < 0: return 0.0 else: return 1.0 * w * h / (sa + sb - w * h) def bboxlog(x1, y1, x2, y2, axc, ayc, aww, ahh): xc, yc, ww, hh = (x2 + x1) / 2, (y2 + y1) / 2, x2 - x1, y2 - y1 dx, dy = (xc - axc) / aww, (yc - ayc) / ahh dw, dh = math.log(ww / aww), math.log(hh / ahh) return dx, dy, dw, dh def bboxloginv(dx, dy, dw, dh, axc, ayc, aww, ahh): xc, yc = dx * aww + axc, dy * ahh + ayc ww, hh = math.exp(dw) * aww, math.exp(dh) * ahh x1, x2, y1, y2 = xc - ww / 2, xc + ww / 2, yc - hh / 2, yc + hh / 2 return x1, y1, x2, y2 def nms(dets, thresh): if 0 == len(dets): return [] x1, y1, x2, y2, scores = dets[:, 0], dets[:, 1], dets[:, 2], dets[:, 3], dets[:, 4] areas = (x2 - x1 + 1) * (y2 - y1 + 1) order = scores.argsort()[::-1] keep = [] while order.size > 0: i = order[0] keep.append(i) xx1, yy1 = np.maximum(x1[i], x1[order[1:]]), np.maximum(y1[i], y1[order[1:]]) xx2, yy2 = np.minimum(x2[i], x2[order[1:]]), np.minimum(y2[i], y2[order[1:]]) w, h = np.maximum(0.0, xx2 - xx1 + 1), np.maximum(0.0, yy2 - yy1 + 1) ovr = w * h / (areas[i] + areas[order[1:]] - w * h) inds = np.where(ovr <= thresh)[0] order = order[inds + 1] return keep def encode(matched, priors, variances): """Encode the variances from the priorbox layers into the ground truth boxes we have matched (based on jaccard overlap) with the prior boxes. Args: matched: (tensor) Coords of ground truth for each prior in point-form Shape: [num_priors, 4]. priors: (tensor) Prior boxes in center-offset form Shape: [num_priors,4]. variances: (list[float]) Variances of priorboxes Return: encoded boxes (tensor), Shape: [num_priors, 4] """ # dist b/t match center and prior's center g_cxcy = (matched[:, :2] + matched[:, 2:]) / 2 - priors[:, :2] # encode variance g_cxcy /= (variances[0] * priors[:, 2:]) # match wh / prior wh g_wh = (matched[:, 2:] - matched[:, :2]) / priors[:, 2:] g_wh = torch.log(g_wh) / variances[1] # return target for smooth_l1_loss return torch.cat([g_cxcy, g_wh], 1) # [num_priors,4] def decode(loc, priors, variances): """Decode locations from predictions using priors to undo the encoding we did for offset regression at train time. Args: loc (tensor): location predictions for loc layers, Shape: [num_priors,4] priors (tensor): Prior boxes in center-offset form. Shape: [num_priors,4]. variances: (list[float]) Variances of priorboxes Return: decoded bounding box predictions """ boxes = torch.cat(( priors[:, :2] + loc[:, :2] * variances[0] * priors[:, 2:], priors[:, 2:] * torch.exp(loc[:, 2:] * variances[1])), 1) boxes[:, :2] -= boxes[:, 2:] / 2 boxes[:, 2:] += boxes[:, :2] return boxes def batch_decode(loc, priors, variances): """Decode locations from predictions using priors to undo the encoding we did for offset regression at train time. Args: loc (tensor): location predictions for loc layers, Shape: [num_priors,4] priors (tensor): Prior boxes in center-offset form. Shape: [num_priors,4]. variances: (list[float]) Variances of priorboxes Return: decoded bounding box predictions """ boxes = torch.cat(( priors[:, :, :2] + loc[:, :, :2] * variances[0] * priors[:, :, 2:], priors[:, :, 2:] * torch.exp(loc[:, :, 2:] * variances[1])), 2) boxes[:, :, :2] -= boxes[:, :, 2:] / 2 boxes[:, :, 2:] += boxes[:, :, :2] return boxes ================================================ FILE: face_detection/detection/sfd/detect.py ================================================ import torch import torch.nn.functional as F import os import sys import cv2 import random import datetime import math import argparse import numpy as np import scipy.io as sio import zipfile from .net_s3fd import s3fd from .bbox import * def detect(net, img, device): img = img - np.array([104, 117, 123]) img = img.transpose(2, 0, 1) img = img.reshape((1,) + img.shape) if 'cuda' in device: torch.backends.cudnn.benchmark = True img = torch.from_numpy(img).float().to(device) BB, CC, HH, WW = img.size() with torch.no_grad(): olist = net(img) bboxlist = [] for i in range(len(olist) // 2): olist[i * 2] = F.softmax(olist[i * 2], dim=1) olist = [oelem.data.cpu() for oelem in olist] for i in range(len(olist) // 2): ocls, oreg = olist[i * 2], olist[i * 2 + 1] FB, FC, FH, FW = ocls.size() # feature map size stride = 2**(i + 2) # 4,8,16,32,64,128 anchor = stride * 4 poss = zip(*np.where(ocls[:, 1, :, :] > 0.05)) for Iindex, hindex, windex in poss: axc, ayc = stride / 2 + windex * stride, stride / 2 + hindex * stride score = ocls[0, 1, hindex, windex] loc = oreg[0, :, hindex, windex].contiguous().view(1, 4) priors = torch.Tensor([[axc / 1.0, ayc / 1.0, stride * 4 / 1.0, stride * 4 / 1.0]]) variances = [0.1, 0.2] box = decode(loc, priors, variances) x1, y1, x2, y2 = box[0] * 1.0 # cv2.rectangle(imgshow,(int(x1),int(y1)),(int(x2),int(y2)),(0,0,255),1) bboxlist.append([x1, y1, x2, y2, score]) bboxlist = np.array(bboxlist) if 0 == len(bboxlist): bboxlist = np.zeros((1, 5)) return bboxlist def batch_detect(net, imgs, device): imgs = imgs - np.array([104, 117, 123]) imgs = imgs.transpose(0, 3, 1, 2) if 'cuda' in device: torch.backends.cudnn.benchmark = True imgs = torch.from_numpy(imgs).float().to(device) BB, CC, HH, WW = imgs.size() with torch.no_grad(): olist = net(imgs) bboxlist = [] for i in range(len(olist) // 2): olist[i * 2] = F.softmax(olist[i * 2], dim=1) olist = [oelem.data.cpu() for oelem in olist] for i in range(len(olist) // 2): ocls, oreg = olist[i * 2], olist[i * 2 + 1] FB, FC, FH, FW = ocls.size() # feature map size stride = 2**(i + 2) # 4,8,16,32,64,128 anchor = stride * 4 poss = zip(*np.where(ocls[:, 1, :, :] > 0.05)) for Iindex, hindex, windex in poss: axc, ayc = stride / 2 + windex * stride, stride / 2 + hindex * stride score = ocls[:, 1, hindex, windex] loc = oreg[:, :, hindex, windex].contiguous().view(BB, 1, 4) priors = torch.Tensor([[axc / 1.0, ayc / 1.0, stride * 4 / 1.0, stride * 4 / 1.0]]).view(1, 1, 4) variances = [0.1, 0.2] box = batch_decode(loc, priors, variances) box = box[:, 0] * 1.0 # cv2.rectangle(imgshow,(int(x1),int(y1)),(int(x2),int(y2)),(0,0,255),1) bboxlist.append(torch.cat([box, score.unsqueeze(1)], 1).cpu().numpy()) bboxlist = np.array(bboxlist) if 0 == len(bboxlist): bboxlist = np.zeros((1, BB, 5)) return bboxlist def flip_detect(net, img, device): img = cv2.flip(img, 1) b = detect(net, img, device) bboxlist = np.zeros(b.shape) bboxlist[:, 0] = img.shape[1] - b[:, 2] bboxlist[:, 1] = b[:, 1] bboxlist[:, 2] = img.shape[1] - b[:, 0] bboxlist[:, 3] = b[:, 3] bboxlist[:, 4] = b[:, 4] return bboxlist def pts_to_bb(pts): min_x, min_y = np.min(pts, axis=0) max_x, max_y = np.max(pts, axis=0) return np.array([min_x, min_y, max_x, max_y]) ================================================ FILE: face_detection/detection/sfd/net_s3fd.py ================================================ import torch import torch.nn as nn import torch.nn.functional as F class L2Norm(nn.Module): def __init__(self, n_channels, scale=1.0): super(L2Norm, self).__init__() self.n_channels = n_channels self.scale = scale self.eps = 1e-10 self.weight = nn.Parameter(torch.Tensor(self.n_channels)) self.weight.data *= 0.0 self.weight.data += self.scale def forward(self, x): norm = x.pow(2).sum(dim=1, keepdim=True).sqrt() + self.eps x = x / norm * self.weight.view(1, -1, 1, 1) return x class s3fd(nn.Module): def __init__(self): super(s3fd, self).__init__() self.conv1_1 = nn.Conv2d(3, 64, kernel_size=3, stride=1, padding=1) self.conv1_2 = nn.Conv2d(64, 64, kernel_size=3, stride=1, padding=1) self.conv2_1 = nn.Conv2d(64, 128, kernel_size=3, stride=1, padding=1) self.conv2_2 = nn.Conv2d(128, 128, kernel_size=3, stride=1, padding=1) self.conv3_1 = nn.Conv2d(128, 256, kernel_size=3, stride=1, padding=1) self.conv3_2 = nn.Conv2d(256, 256, kernel_size=3, stride=1, padding=1) self.conv3_3 = nn.Conv2d(256, 256, kernel_size=3, stride=1, padding=1) self.conv4_1 = nn.Conv2d(256, 512, kernel_size=3, stride=1, padding=1) self.conv4_2 = nn.Conv2d(512, 512, kernel_size=3, stride=1, padding=1) self.conv4_3 = nn.Conv2d(512, 512, kernel_size=3, stride=1, padding=1) self.conv5_1 = nn.Conv2d(512, 512, kernel_size=3, stride=1, padding=1) self.conv5_2 = nn.Conv2d(512, 512, kernel_size=3, stride=1, padding=1) self.conv5_3 = nn.Conv2d(512, 512, kernel_size=3, stride=1, padding=1) self.fc6 = nn.Conv2d(512, 1024, kernel_size=3, stride=1, padding=3) self.fc7 = nn.Conv2d(1024, 1024, kernel_size=1, stride=1, padding=0) self.conv6_1 = nn.Conv2d(1024, 256, kernel_size=1, stride=1, padding=0) self.conv6_2 = nn.Conv2d(256, 512, kernel_size=3, stride=2, padding=1) self.conv7_1 = nn.Conv2d(512, 128, kernel_size=1, stride=1, padding=0) self.conv7_2 = nn.Conv2d(128, 256, kernel_size=3, stride=2, padding=1) self.conv3_3_norm = L2Norm(256, scale=10) self.conv4_3_norm = L2Norm(512, scale=8) self.conv5_3_norm = L2Norm(512, scale=5) self.conv3_3_norm_mbox_conf = nn.Conv2d(256, 4, kernel_size=3, stride=1, padding=1) self.conv3_3_norm_mbox_loc = nn.Conv2d(256, 4, kernel_size=3, stride=1, padding=1) self.conv4_3_norm_mbox_conf = nn.Conv2d(512, 2, kernel_size=3, stride=1, padding=1) self.conv4_3_norm_mbox_loc = nn.Conv2d(512, 4, kernel_size=3, stride=1, padding=1) self.conv5_3_norm_mbox_conf = nn.Conv2d(512, 2, kernel_size=3, stride=1, padding=1) self.conv5_3_norm_mbox_loc = nn.Conv2d(512, 4, kernel_size=3, stride=1, padding=1) self.fc7_mbox_conf = nn.Conv2d(1024, 2, kernel_size=3, stride=1, padding=1) self.fc7_mbox_loc = nn.Conv2d(1024, 4, kernel_size=3, stride=1, padding=1) self.conv6_2_mbox_conf = nn.Conv2d(512, 2, kernel_size=3, stride=1, padding=1) self.conv6_2_mbox_loc = nn.Conv2d(512, 4, kernel_size=3, stride=1, padding=1) self.conv7_2_mbox_conf = nn.Conv2d(256, 2, kernel_size=3, stride=1, padding=1) self.conv7_2_mbox_loc = nn.Conv2d(256, 4, kernel_size=3, stride=1, padding=1) def forward(self, x): h = F.relu(self.conv1_1(x)) h = F.relu(self.conv1_2(h)) h = F.max_pool2d(h, 2, 2) h = F.relu(self.conv2_1(h)) h = F.relu(self.conv2_2(h)) h = F.max_pool2d(h, 2, 2) h = F.relu(self.conv3_1(h)) h = F.relu(self.conv3_2(h)) h = F.relu(self.conv3_3(h)) f3_3 = h h = F.max_pool2d(h, 2, 2) h = F.relu(self.conv4_1(h)) h = F.relu(self.conv4_2(h)) h = F.relu(self.conv4_3(h)) f4_3 = h h = F.max_pool2d(h, 2, 2) h = F.relu(self.conv5_1(h)) h = F.relu(self.conv5_2(h)) h = F.relu(self.conv5_3(h)) f5_3 = h h = F.max_pool2d(h, 2, 2) h = F.relu(self.fc6(h)) h = F.relu(self.fc7(h)) ffc7 = h h = F.relu(self.conv6_1(h)) h = F.relu(self.conv6_2(h)) f6_2 = h h = F.relu(self.conv7_1(h)) h = F.relu(self.conv7_2(h)) f7_2 = h f3_3 = self.conv3_3_norm(f3_3) f4_3 = self.conv4_3_norm(f4_3) f5_3 = self.conv5_3_norm(f5_3) cls1 = self.conv3_3_norm_mbox_conf(f3_3) reg1 = self.conv3_3_norm_mbox_loc(f3_3) cls2 = self.conv4_3_norm_mbox_conf(f4_3) reg2 = self.conv4_3_norm_mbox_loc(f4_3) cls3 = self.conv5_3_norm_mbox_conf(f5_3) reg3 = self.conv5_3_norm_mbox_loc(f5_3) cls4 = self.fc7_mbox_conf(ffc7) reg4 = self.fc7_mbox_loc(ffc7) cls5 = self.conv6_2_mbox_conf(f6_2) reg5 = self.conv6_2_mbox_loc(f6_2) cls6 = self.conv7_2_mbox_conf(f7_2) reg6 = self.conv7_2_mbox_loc(f7_2) # max-out background label chunk = torch.chunk(cls1, 4, 1) bmax = torch.max(torch.max(chunk[0], chunk[1]), chunk[2]) cls1 = torch.cat([bmax, chunk[3]], dim=1) return [cls1, reg1, cls2, reg2, cls3, reg3, cls4, reg4, cls5, reg5, cls6, reg6] ================================================ FILE: face_detection/detection/sfd/s3fd.pth ================================================ [File too large to display: 85.7 MB] ================================================ FILE: face_detection/detection/sfd/sfd_detector.py ================================================ import os import cv2 from torch.utils.model_zoo import load_url from ..core import FaceDetector from .net_s3fd import s3fd from .bbox import * from .detect import * models_urls = { 's3fd': 'https://www.adrianbulat.com/downloads/python-fan/s3fd-619a316812.pth', } class SFDDetector(FaceDetector): def __init__(self, device, path_to_detector=os.path.join(os.path.dirname(os.path.abspath(__file__)), 's3fd.pth'), verbose=False): super(SFDDetector, self).__init__(device, verbose) # Initialise the face detector if not os.path.isfile(path_to_detector): model_weights = load_url(models_urls['s3fd']) else: model_weights = torch.load(path_to_detector) self.face_detector = s3fd() self.face_detector.load_state_dict(model_weights) self.face_detector.to(device) self.face_detector.eval() def detect_from_image(self, tensor_or_path): image = self.tensor_or_path_to_ndarray(tensor_or_path) bboxlist = detect(self.face_detector, image, device=self.device) keep = nms(bboxlist, 0.3) bboxlist = bboxlist[keep, :] bboxlist = [x for x in bboxlist if x[-1] > 0.5] return bboxlist def detect_from_batch(self, images): bboxlists = batch_detect(self.face_detector, images, device=self.device) keeps = [nms(bboxlists[:, i, :], 0.3) for i in range(bboxlists.shape[1])] bboxlists = [bboxlists[keep, i, :] for i, keep in enumerate(keeps)] bboxlists = [[x for x in bboxlist if x[-1] > 0.5] for bboxlist in bboxlists] return bboxlists @property def reference_scale(self): return 195 @property def reference_x_shift(self): return 0 @property def reference_y_shift(self): return 0 ================================================ FILE: face_detection/models.py ================================================ import torch import torch.nn as nn import torch.nn.functional as F import math def conv3x3(in_planes, out_planes, strd=1, padding=1, bias=False): "3x3 convolution with padding" return nn.Conv2d(in_planes, out_planes, kernel_size=3, stride=strd, padding=padding, bias=bias) class ConvBlock(nn.Module): def __init__(self, in_planes, out_planes): super(ConvBlock, self).__init__() self.bn1 = nn.BatchNorm2d(in_planes) self.conv1 = conv3x3(in_planes, int(out_planes / 2)) self.bn2 = nn.BatchNorm2d(int(out_planes / 2)) self.conv2 = conv3x3(int(out_planes / 2), int(out_planes / 4)) self.bn3 = nn.BatchNorm2d(int(out_planes / 4)) self.conv3 = conv3x3(int(out_planes / 4), int(out_planes / 4)) if in_planes != out_planes: self.downsample = nn.Sequential( nn.BatchNorm2d(in_planes), nn.ReLU(True), nn.Conv2d(in_planes, out_planes, kernel_size=1, stride=1, bias=False), ) else: self.downsample = None def forward(self, x): residual = x out1 = self.bn1(x) out1 = F.relu(out1, True) out1 = self.conv1(out1) out2 = self.bn2(out1) out2 = F.relu(out2, True) out2 = self.conv2(out2) out3 = self.bn3(out2) out3 = F.relu(out3, True) out3 = self.conv3(out3) out3 = torch.cat((out1, out2, out3), 1) if self.downsample is not None: residual = self.downsample(residual) out3 += residual return out3 class Bottleneck(nn.Module): expansion = 4 def __init__(self, inplanes, planes, stride=1, downsample=None): super(Bottleneck, self).__init__() self.conv1 = nn.Conv2d(inplanes, planes, kernel_size=1, bias=False) self.bn1 = nn.BatchNorm2d(planes) self.conv2 = nn.Conv2d(planes, planes, kernel_size=3, stride=stride, padding=1, bias=False) self.bn2 = nn.BatchNorm2d(planes) self.conv3 = nn.Conv2d(planes, planes * 4, kernel_size=1, bias=False) self.bn3 = nn.BatchNorm2d(planes * 4) self.relu = nn.ReLU(inplace=True) self.downsample = downsample self.stride = stride def forward(self, x): residual = x out = self.conv1(x) out = self.bn1(out) out = self.relu(out) out = self.conv2(out) out = self.bn2(out) out = self.relu(out) out = self.conv3(out) out = self.bn3(out) if self.downsample is not None: residual = self.downsample(x) out += residual out = self.relu(out) return out class HourGlass(nn.Module): def __init__(self, num_modules, depth, num_features): super(HourGlass, self).__init__() self.num_modules = num_modules self.depth = depth self.features = num_features self._generate_network(self.depth) def _generate_network(self, level): self.add_module('b1_' + str(level), ConvBlock(self.features, self.features)) self.add_module('b2_' + str(level), ConvBlock(self.features, self.features)) if level > 1: self._generate_network(level - 1) else: self.add_module('b2_plus_' + str(level), ConvBlock(self.features, self.features)) self.add_module('b3_' + str(level), ConvBlock(self.features, self.features)) def _forward(self, level, inp): # Upper branch up1 = inp up1 = self._modules['b1_' + str(level)](up1) # Lower branch low1 = F.avg_pool2d(inp, 2, stride=2) low1 = self._modules['b2_' + str(level)](low1) if level > 1: low2 = self._forward(level - 1, low1) else: low2 = low1 low2 = self._modules['b2_plus_' + str(level)](low2) low3 = low2 low3 = self._modules['b3_' + str(level)](low3) up2 = F.interpolate(low3, scale_factor=2, mode='nearest') return up1 + up2 def forward(self, x): return self._forward(self.depth, x) class FAN(nn.Module): def __init__(self, num_modules=1): super(FAN, self).__init__() self.num_modules = num_modules # Base part self.conv1 = nn.Conv2d(3, 64, kernel_size=7, stride=2, padding=3) self.bn1 = nn.BatchNorm2d(64) self.conv2 = ConvBlock(64, 128) self.conv3 = ConvBlock(128, 128) self.conv4 = ConvBlock(128, 256) # Stacking part for hg_module in range(self.num_modules): self.add_module('m' + str(hg_module), HourGlass(1, 4, 256)) self.add_module('top_m_' + str(hg_module), ConvBlock(256, 256)) self.add_module('conv_last' + str(hg_module), nn.Conv2d(256, 256, kernel_size=1, stride=1, padding=0)) self.add_module('bn_end' + str(hg_module), nn.BatchNorm2d(256)) self.add_module('l' + str(hg_module), nn.Conv2d(256, 68, kernel_size=1, stride=1, padding=0)) if hg_module < self.num_modules - 1: self.add_module( 'bl' + str(hg_module), nn.Conv2d(256, 256, kernel_size=1, stride=1, padding=0)) self.add_module('al' + str(hg_module), nn.Conv2d(68, 256, kernel_size=1, stride=1, padding=0)) def forward(self, x): x = F.relu(self.bn1(self.conv1(x)), True) x = F.avg_pool2d(self.conv2(x), 2, stride=2) x = self.conv3(x) x = self.conv4(x) previous = x outputs = [] for i in range(self.num_modules): hg = self._modules['m' + str(i)](previous) ll = hg ll = self._modules['top_m_' + str(i)](ll) ll = F.relu(self._modules['bn_end' + str(i)] (self._modules['conv_last' + str(i)](ll)), True) # Predict heatmaps tmp_out = self._modules['l' + str(i)](ll) outputs.append(tmp_out) if i < self.num_modules - 1: ll = self._modules['bl' + str(i)](ll) tmp_out_ = self._modules['al' + str(i)](tmp_out) previous = previous + ll + tmp_out_ return outputs class ResNetDepth(nn.Module): def __init__(self, block=Bottleneck, layers=[3, 8, 36, 3], num_classes=68): self.inplanes = 64 super(ResNetDepth, self).__init__() self.conv1 = nn.Conv2d(3 + 68, 64, kernel_size=7, stride=2, padding=3, bias=False) self.bn1 = nn.BatchNorm2d(64) self.relu = nn.ReLU(inplace=True) self.maxpool = nn.MaxPool2d(kernel_size=3, stride=2, padding=1) self.layer1 = self._make_layer(block, 64, layers[0]) self.layer2 = self._make_layer(block, 128, layers[1], stride=2) self.layer3 = self._make_layer(block, 256, layers[2], stride=2) self.layer4 = self._make_layer(block, 512, layers[3], stride=2) self.avgpool = nn.AvgPool2d(7) self.fc = nn.Linear(512 * block.expansion, num_classes) for m in self.modules(): if isinstance(m, nn.Conv2d): n = m.kernel_size[0] * m.kernel_size[1] * m.out_channels m.weight.data.normal_(0, math.sqrt(2. / n)) elif isinstance(m, nn.BatchNorm2d): m.weight.data.fill_(1) m.bias.data.zero_() def _make_layer(self, block, planes, blocks, stride=1): downsample = None if stride != 1 or self.inplanes != planes * block.expansion: downsample = nn.Sequential( nn.Conv2d(self.inplanes, planes * block.expansion, kernel_size=1, stride=stride, bias=False), nn.BatchNorm2d(planes * block.expansion), ) layers = [] layers.append(block(self.inplanes, planes, stride, downsample)) self.inplanes = planes * block.expansion for i in range(1, blocks): layers.append(block(self.inplanes, planes)) return nn.Sequential(*layers) def forward(self, x): x = self.conv1(x) x = self.bn1(x) x = self.relu(x) x = self.maxpool(x) x = self.layer1(x) x = self.layer2(x) x = self.layer3(x) x = self.layer4(x) x = self.avgpool(x) x = x.view(x.size(0), -1) x = self.fc(x) return x ================================================ FILE: face_detection/utils.py ================================================ from __future__ import print_function import os import sys import time import torch import math import numpy as np import cv2 def _gaussian( size=3, sigma=0.25, amplitude=1, normalize=False, width=None, height=None, sigma_horz=None, sigma_vert=None, mean_horz=0.5, mean_vert=0.5): # handle some defaults if width is None: width = size if height is None: height = size if sigma_horz is None: sigma_horz = sigma if sigma_vert is None: sigma_vert = sigma center_x = mean_horz * width + 0.5 center_y = mean_vert * height + 0.5 gauss = np.empty((height, width), dtype=np.float32) # generate kernel for i in range(height): for j in range(width): gauss[i][j] = amplitude * math.exp(-(math.pow((j + 1 - center_x) / ( sigma_horz * width), 2) / 2.0 + math.pow((i + 1 - center_y) / (sigma_vert * height), 2) / 2.0)) if normalize: gauss = gauss / np.sum(gauss) return gauss def draw_gaussian(image, point, sigma): # Check if the gaussian is inside ul = [math.floor(point[0] - 3 * sigma), math.floor(point[1] - 3 * sigma)] br = [math.floor(point[0] + 3 * sigma), math.floor(point[1] + 3 * sigma)] if (ul[0] > image.shape[1] or ul[1] > image.shape[0] or br[0] < 1 or br[1] < 1): return image size = 6 * sigma + 1 g = _gaussian(size) g_x = [int(max(1, -ul[0])), int(min(br[0], image.shape[1])) - int(max(1, ul[0])) + int(max(1, -ul[0]))] g_y = [int(max(1, -ul[1])), int(min(br[1], image.shape[0])) - int(max(1, ul[1])) + int(max(1, -ul[1]))] img_x = [int(max(1, ul[0])), int(min(br[0], image.shape[1]))] img_y = [int(max(1, ul[1])), int(min(br[1], image.shape[0]))] assert (g_x[0] > 0 and g_y[1] > 0) image[img_y[0] - 1:img_y[1], img_x[0] - 1:img_x[1] ] = image[img_y[0] - 1:img_y[1], img_x[0] - 1:img_x[1]] + g[g_y[0] - 1:g_y[1], g_x[0] - 1:g_x[1]] image[image > 1] = 1 return image def transform(point, center, scale, resolution, invert=False): """Generate and affine transformation matrix. Given a set of points, a center, a scale and a targer resolution, the function generates and affine transformation matrix. If invert is ``True`` it will produce the inverse transformation. Arguments: point {torch.tensor} -- the input 2D point center {torch.tensor or numpy.array} -- the center around which to perform the transformations scale {float} -- the scale of the face/object resolution {float} -- the output resolution Keyword Arguments: invert {bool} -- define wherever the function should produce the direct or the inverse transformation matrix (default: {False}) """ _pt = torch.ones(3) _pt[0] = point[0] _pt[1] = point[1] h = 200.0 * scale t = torch.eye(3) t[0, 0] = resolution / h t[1, 1] = resolution / h t[0, 2] = resolution * (-center[0] / h + 0.5) t[1, 2] = resolution * (-center[1] / h + 0.5) if invert: t = torch.inverse(t) new_point = (torch.matmul(t, _pt))[0:2] return new_point.int() def crop(image, center, scale, resolution=256.0): """Center crops an image or set of heatmaps Arguments: image {numpy.array} -- an rgb image center {numpy.array} -- the center of the object, usually the same as of the bounding box scale {float} -- scale of the face Keyword Arguments: resolution {float} -- the size of the output cropped image (default: {256.0}) Returns: [type] -- [description] """ # Crop around the center point """ Crops the image around the center. Input is expected to be an np.ndarray """ ul = transform([1, 1], center, scale, resolution, True) br = transform([resolution, resolution], center, scale, resolution, True) # pad = math.ceil(torch.norm((ul - br).float()) / 2.0 - (br[0] - ul[0]) / 2.0) if image.ndim > 2: newDim = np.array([br[1] - ul[1], br[0] - ul[0], image.shape[2]], dtype=np.int32) newImg = np.zeros(newDim, dtype=np.uint8) else: newDim = np.array([br[1] - ul[1], br[0] - ul[0]], dtype=np.int) newImg = np.zeros(newDim, dtype=np.uint8) ht = image.shape[0] wd = image.shape[1] newX = np.array( [max(1, -ul[0] + 1), min(br[0], wd) - ul[0]], dtype=np.int32) newY = np.array( [max(1, -ul[1] + 1), min(br[1], ht) - ul[1]], dtype=np.int32) oldX = np.array([max(1, ul[0] + 1), min(br[0], wd)], dtype=np.int32) oldY = np.array([max(1, ul[1] + 1), min(br[1], ht)], dtype=np.int32) newImg[newY[0] - 1:newY[1], newX[0] - 1:newX[1] ] = image[oldY[0] - 1:oldY[1], oldX[0] - 1:oldX[1], :] newImg = cv2.resize(newImg, dsize=(int(resolution), int(resolution)), interpolation=cv2.INTER_LINEAR) return newImg def get_preds_fromhm(hm, center=None, scale=None): """Obtain (x,y) coordinates given a set of N heatmaps. If the center and the scale is provided the function will return the points also in the original coordinate frame. Arguments: hm {torch.tensor} -- the predicted heatmaps, of shape [B, N, W, H] Keyword Arguments: center {torch.tensor} -- the center of the bounding box (default: {None}) scale {float} -- face scale (default: {None}) """ max, idx = torch.max( hm.view(hm.size(0), hm.size(1), hm.size(2) * hm.size(3)), 2) idx += 1 preds = idx.view(idx.size(0), idx.size(1), 1).repeat(1, 1, 2).float() preds[..., 0].apply_(lambda x: (x - 1) % hm.size(3) + 1) preds[..., 1].add_(-1).div_(hm.size(2)).floor_().add_(1) for i in range(preds.size(0)): for j in range(preds.size(1)): hm_ = hm[i, j, :] pX, pY = int(preds[i, j, 0]) - 1, int(preds[i, j, 1]) - 1 if pX > 0 and pX < 63 and pY > 0 and pY < 63: diff = torch.FloatTensor( [hm_[pY, pX + 1] - hm_[pY, pX - 1], hm_[pY + 1, pX] - hm_[pY - 1, pX]]) preds[i, j].add_(diff.sign_().mul_(.25)) preds.add_(-.5) preds_orig = torch.zeros(preds.size()) if center is not None and scale is not None: for i in range(hm.size(0)): for j in range(hm.size(1)): preds_orig[i, j] = transform( preds[i, j], center, scale, hm.size(2), True) return preds, preds_orig def get_preds_fromhm_batch(hm, centers=None, scales=None): """Obtain (x,y) coordinates given a set of N heatmaps. If the centers and the scales is provided the function will return the points also in the original coordinate frame. Arguments: hm {torch.tensor} -- the predicted heatmaps, of shape [B, N, W, H] Keyword Arguments: centers {torch.tensor} -- the centers of the bounding box (default: {None}) scales {float} -- face scales (default: {None}) """ max, idx = torch.max( hm.view(hm.size(0), hm.size(1), hm.size(2) * hm.size(3)), 2) idx += 1 preds = idx.view(idx.size(0), idx.size(1), 1).repeat(1, 1, 2).float() preds[..., 0].apply_(lambda x: (x - 1) % hm.size(3) + 1) preds[..., 1].add_(-1).div_(hm.size(2)).floor_().add_(1) for i in range(preds.size(0)): for j in range(preds.size(1)): hm_ = hm[i, j, :] pX, pY = int(preds[i, j, 0]) - 1, int(preds[i, j, 1]) - 1 if pX > 0 and pX < 63 and pY > 0 and pY < 63: diff = torch.FloatTensor( [hm_[pY, pX + 1] - hm_[pY, pX - 1], hm_[pY + 1, pX] - hm_[pY - 1, pX]]) preds[i, j].add_(diff.sign_().mul_(.25)) preds.add_(-.5) preds_orig = torch.zeros(preds.size()) if centers is not None and scales is not None: for i in range(hm.size(0)): for j in range(hm.size(1)): preds_orig[i, j] = transform( preds[i, j], centers[i], scales[i], hm.size(2), True) return preds, preds_orig def shuffle_lr(parts, pairs=None): """Shuffle the points left-right according to the axis of symmetry of the object. Arguments: parts {torch.tensor} -- a 3D or 4D object containing the heatmaps. Keyword Arguments: pairs {list of integers} -- [order of the flipped points] (default: {None}) """ if pairs is None: pairs = [16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0, 26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 27, 28, 29, 30, 35, 34, 33, 32, 31, 45, 44, 43, 42, 47, 46, 39, 38, 37, 36, 41, 40, 54, 53, 52, 51, 50, 49, 48, 59, 58, 57, 56, 55, 64, 63, 62, 61, 60, 67, 66, 65] if parts.ndimension() == 3: parts = parts[pairs, ...] else: parts = parts[:, pairs, ...] return parts def flip(tensor, is_label=False): """Flip an image or a set of heatmaps left-right Arguments: tensor {numpy.array or torch.tensor} -- [the input image or heatmaps] Keyword Arguments: is_label {bool} -- [denote wherever the input is an image or a set of heatmaps ] (default: {False}) """ if not torch.is_tensor(tensor): tensor = torch.from_numpy(tensor) if is_label: tensor = shuffle_lr(tensor).flip(tensor.ndimension() - 1) else: tensor = tensor.flip(tensor.ndimension() - 1) return tensor # From pyzolib/paths.py (https://bitbucket.org/pyzo/pyzolib/src/tip/paths.py) def appdata_dir(appname=None, roaming=False): """ appdata_dir(appname=None, roaming=False) Get the path to the application directory, where applications are allowed to write user specific files (e.g. configurations). For non-user specific data, consider using common_appdata_dir(). If appname is given, a subdir is appended (and created if necessary). If roaming is True, will prefer a roaming directory (Windows Vista/7). """ # Define default user directory userDir = os.getenv('FACEALIGNMENT_USERDIR', None) if userDir is None: userDir = os.path.expanduser('~') if not os.path.isdir(userDir): # pragma: no cover userDir = '/var/tmp' # issue #54 # Get system app data dir path = None if sys.platform.startswith('win'): path1, path2 = os.getenv('LOCALAPPDATA'), os.getenv('APPDATA') path = (path2 or path1) if roaming else (path1 or path2) elif sys.platform.startswith('darwin'): path = os.path.join(userDir, 'Library', 'Application Support') # On Linux and as fallback if not (path and os.path.isdir(path)): path = userDir # Maybe we should store things local to the executable (in case of a # portable distro or a frozen application that wants to be portable) prefix = sys.prefix if getattr(sys, 'frozen', None): prefix = os.path.abspath(os.path.dirname(sys.executable)) for reldir in ('settings', '../settings'): localpath = os.path.abspath(os.path.join(prefix, reldir)) if os.path.isdir(localpath): # pragma: no cover try: open(os.path.join(localpath, 'test.write'), 'wb').close() os.remove(os.path.join(localpath, 'test.write')) except IOError: pass # We cannot write in this directory else: path = localpath break # Get path specific for this app if appname: if path == userDir: appname = '.' + appname.lstrip('.') # Make it a hidden directory path = os.path.join(path, appname) if not os.path.isdir(path): # pragma: no cover os.mkdir(path) # Done return path ================================================ FILE: face_parsing/README.md ================================================ Most of the code in this folder was taken from the awesome [face parsing](https://github.com/zllrunning/face-parsing.PyTorch.git) repository. ================================================ FILE: face_parsing/__init__.py ================================================ from .swap import init_parser,swap_regions ================================================ FILE: face_parsing/model.py ================================================ #!/usr/bin/python # -*- encoding: utf-8 -*- import torch import torch.nn as nn import torch.nn.functional as F import torchvision from .resnet import Resnet18 # from modules.bn import InPlaceABNSync as BatchNorm2d class ConvBNReLU(nn.Module): def __init__(self, in_chan, out_chan, ks=3, stride=1, padding=1, *args, **kwargs): super(ConvBNReLU, self).__init__() self.conv = nn.Conv2d(in_chan, out_chan, kernel_size = ks, stride = stride, padding = padding, bias = False) self.bn = nn.BatchNorm2d(out_chan) self.init_weight() def forward(self, x): x = self.conv(x) x = F.relu(self.bn(x)) return x def init_weight(self): for ly in self.children(): if isinstance(ly, nn.Conv2d): nn.init.kaiming_normal_(ly.weight, a=1) if not ly.bias is None: nn.init.constant_(ly.bias, 0) class BiSeNetOutput(nn.Module): def __init__(self, in_chan, mid_chan, n_classes, *args, **kwargs): super(BiSeNetOutput, self).__init__() self.conv = ConvBNReLU(in_chan, mid_chan, ks=3, stride=1, padding=1) self.conv_out = nn.Conv2d(mid_chan, n_classes, kernel_size=1, bias=False) self.init_weight() def forward(self, x): x = self.conv(x) x = self.conv_out(x) return x def init_weight(self): for ly in self.children(): if isinstance(ly, nn.Conv2d): nn.init.kaiming_normal_(ly.weight, a=1) if not ly.bias is None: nn.init.constant_(ly.bias, 0) def get_params(self): wd_params, nowd_params = [], [] for name, module in self.named_modules(): if isinstance(module, nn.Linear) or isinstance(module, nn.Conv2d): wd_params.append(module.weight) if not module.bias is None: nowd_params.append(module.bias) elif isinstance(module, nn.BatchNorm2d): nowd_params += list(module.parameters()) return wd_params, nowd_params class AttentionRefinementModule(nn.Module): def __init__(self, in_chan, out_chan, *args, **kwargs): super(AttentionRefinementModule, self).__init__() self.conv = ConvBNReLU(in_chan, out_chan, ks=3, stride=1, padding=1) self.conv_atten = nn.Conv2d(out_chan, out_chan, kernel_size= 1, bias=False) self.bn_atten = nn.BatchNorm2d(out_chan) self.sigmoid_atten = nn.Sigmoid() self.init_weight() def forward(self, x): feat = self.conv(x) atten = F.avg_pool2d(feat, feat.size()[2:]) atten = self.conv_atten(atten) atten = self.bn_atten(atten) atten = self.sigmoid_atten(atten) out = torch.mul(feat, atten) return out def init_weight(self): for ly in self.children(): if isinstance(ly, nn.Conv2d): nn.init.kaiming_normal_(ly.weight, a=1) if not ly.bias is None: nn.init.constant_(ly.bias, 0) class ContextPath(nn.Module): def __init__(self, device,*args, **kwargs): super(ContextPath, self).__init__() self.resnet = Resnet18(device) self.arm16 = AttentionRefinementModule(256, 128) self.arm32 = AttentionRefinementModule(512, 128) self.conv_head32 = ConvBNReLU(128, 128, ks=3, stride=1, padding=1) self.conv_head16 = ConvBNReLU(128, 128, ks=3, stride=1, padding=1) self.conv_avg = ConvBNReLU(512, 128, ks=1, stride=1, padding=0) self.init_weight() def forward(self, x): H0, W0 = x.size()[2:] feat8, feat16, feat32 = self.resnet(x) H8, W8 = feat8.size()[2:] H16, W16 = feat16.size()[2:] H32, W32 = feat32.size()[2:] avg = F.avg_pool2d(feat32, feat32.size()[2:]) avg = self.conv_avg(avg) avg_up = F.interpolate(avg, (H32, W32), mode='nearest') feat32_arm = self.arm32(feat32) feat32_sum = feat32_arm + avg_up feat32_up = F.interpolate(feat32_sum, (H16, W16), mode='nearest') feat32_up = self.conv_head32(feat32_up) feat16_arm = self.arm16(feat16) feat16_sum = feat16_arm + feat32_up feat16_up = F.interpolate(feat16_sum, (H8, W8), mode='nearest') feat16_up = self.conv_head16(feat16_up) return feat8, feat16_up, feat32_up # x8, x8, x16 def init_weight(self): for ly in self.children(): if isinstance(ly, nn.Conv2d): nn.init.kaiming_normal_(ly.weight, a=1) if not ly.bias is None: nn.init.constant_(ly.bias, 0) def get_params(self): wd_params, nowd_params = [], [] for name, module in self.named_modules(): if isinstance(module, (nn.Linear, nn.Conv2d)): wd_params.append(module.weight) if not module.bias is None: nowd_params.append(module.bias) elif isinstance(module, nn.BatchNorm2d): nowd_params += list(module.parameters()) return wd_params, nowd_params ### This is not used, since I replace this with the resnet feature with the same size class SpatialPath(nn.Module): def __init__(self, *args, **kwargs): super(SpatialPath, self).__init__() self.conv1 = ConvBNReLU(3, 64, ks=7, stride=2, padding=3) self.conv2 = ConvBNReLU(64, 64, ks=3, stride=2, padding=1) self.conv3 = ConvBNReLU(64, 64, ks=3, stride=2, padding=1) self.conv_out = ConvBNReLU(64, 128, ks=1, stride=1, padding=0) self.init_weight() def forward(self, x): feat = self.conv1(x) feat = self.conv2(feat) feat = self.conv3(feat) feat = self.conv_out(feat) return feat def init_weight(self): for ly in self.children(): if isinstance(ly, nn.Conv2d): nn.init.kaiming_normal_(ly.weight, a=1) if not ly.bias is None: nn.init.constant_(ly.bias, 0) def get_params(self): wd_params, nowd_params = [], [] for name, module in self.named_modules(): if isinstance(module, nn.Linear) or isinstance(module, nn.Conv2d): wd_params.append(module.weight) if not module.bias is None: nowd_params.append(module.bias) elif isinstance(module, nn.BatchNorm2d): nowd_params += list(module.parameters()) return wd_params, nowd_params class FeatureFusionModule(nn.Module): def __init__(self, in_chan, out_chan, *args, **kwargs): super(FeatureFusionModule, self).__init__() self.convblk = ConvBNReLU(in_chan, out_chan, ks=1, stride=1, padding=0) self.conv1 = nn.Conv2d(out_chan, out_chan//4, kernel_size = 1, stride = 1, padding = 0, bias = False) self.conv2 = nn.Conv2d(out_chan//4, out_chan, kernel_size = 1, stride = 1, padding = 0, bias = False) self.relu = nn.ReLU(inplace=True) self.sigmoid = nn.Sigmoid() self.init_weight() def forward(self, fsp, fcp): fcat = torch.cat([fsp, fcp], dim=1) feat = self.convblk(fcat) atten = F.avg_pool2d(feat, feat.size()[2:]) atten = self.conv1(atten) atten = self.relu(atten) atten = self.conv2(atten) atten = self.sigmoid(atten) feat_atten = torch.mul(feat, atten) feat_out = feat_atten + feat return feat_out def init_weight(self): for ly in self.children(): if isinstance(ly, nn.Conv2d): nn.init.kaiming_normal_(ly.weight, a=1) if not ly.bias is None: nn.init.constant_(ly.bias, 0) def get_params(self): wd_params, nowd_params = [], [] for name, module in self.named_modules(): if isinstance(module, nn.Linear) or isinstance(module, nn.Conv2d): wd_params.append(module.weight) if not module.bias is None: nowd_params.append(module.bias) elif isinstance(module, nn.BatchNorm2d): nowd_params += list(module.parameters()) return wd_params, nowd_params class BiSeNet(nn.Module): def __init__(self,device, n_classes, *args, **kwargs): super(BiSeNet, self).__init__() self.cp = ContextPath(device) ## here self.sp is deleted self.ffm = FeatureFusionModule(256, 256) self.conv_out = BiSeNetOutput(256, 256, n_classes) self.conv_out16 = BiSeNetOutput(128, 64, n_classes) self.conv_out32 = BiSeNetOutput(128, 64, n_classes) self.init_weight() def forward(self, x): H, W = x.size()[2:] feat_res8, feat_cp8, feat_cp16 = self.cp(x) # here return res3b1 feature feat_sp = feat_res8 # use res3b1 feature to replace spatial path feature feat_fuse = self.ffm(feat_sp, feat_cp8) feat_out = self.conv_out(feat_fuse) feat_out16 = self.conv_out16(feat_cp8) feat_out32 = self.conv_out32(feat_cp16) feat_out = F.interpolate(feat_out, (H, W), mode='bilinear', align_corners=True) feat_out16 = F.interpolate(feat_out16, (H, W), mode='bilinear', align_corners=True) feat_out32 = F.interpolate(feat_out32, (H, W), mode='bilinear', align_corners=True) return feat_out, feat_out16, feat_out32 def init_weight(self): for ly in self.children(): if isinstance(ly, nn.Conv2d): nn.init.kaiming_normal_(ly.weight, a=1) if not ly.bias is None: nn.init.constant_(ly.bias, 0) def get_params(self): wd_params, nowd_params, lr_mul_wd_params, lr_mul_nowd_params = [], [], [], [] for name, child in self.named_children(): child_wd_params, child_nowd_params = child.get_params() if isinstance(child, FeatureFusionModule) or isinstance(child, BiSeNetOutput): lr_mul_wd_params += child_wd_params lr_mul_nowd_params += child_nowd_params else: wd_params += child_wd_params nowd_params += child_nowd_params return wd_params, nowd_params, lr_mul_wd_params, lr_mul_nowd_params ================================================ FILE: face_parsing/resnet.py ================================================ #!/usr/bin/python # -*- encoding: utf-8 -*- import torch import torch.nn as nn import torch.nn.functional as F import torch.utils.model_zoo as modelzoo # from modules.bn import InPlaceABNSync as BatchNorm2d resnet18_url = 'https://download.pytorch.org/models/resnet18-5c106cde.pth' def conv3x3(in_planes, out_planes, stride=1): """3x3 convolution with padding""" return nn.Conv2d(in_planes, out_planes, kernel_size=3, stride=stride, padding=1, bias=False) class BasicBlock(nn.Module): def __init__(self, in_chan, out_chan, stride=1): super(BasicBlock, self).__init__() self.conv1 = conv3x3(in_chan, out_chan, stride) self.bn1 = nn.BatchNorm2d(out_chan) self.conv2 = conv3x3(out_chan, out_chan) self.bn2 = nn.BatchNorm2d(out_chan) self.relu = nn.ReLU(inplace=True) self.downsample = None if in_chan != out_chan or stride != 1: self.downsample = nn.Sequential( nn.Conv2d(in_chan, out_chan, kernel_size=1, stride=stride, bias=False), nn.BatchNorm2d(out_chan), ) def forward(self, x): residual = self.conv1(x) residual = F.relu(self.bn1(residual)) residual = self.conv2(residual) residual = self.bn2(residual) shortcut = x if self.downsample is not None: shortcut = self.downsample(x) out = shortcut + residual out = self.relu(out) return out def create_layer_basic(in_chan, out_chan, bnum, stride=1): layers = [BasicBlock(in_chan, out_chan, stride=stride)] for i in range(bnum-1): layers.append(BasicBlock(out_chan, out_chan, stride=1)) return nn.Sequential(*layers) class Resnet18(nn.Module): def __init__(self,device): super(Resnet18, self).__init__() self.conv1 = nn.Conv2d(3, 64, kernel_size=7, stride=2, padding=3, bias=False) self.bn1 = nn.BatchNorm2d(64) self.maxpool = nn.MaxPool2d(kernel_size=3, stride=2, padding=1) self.layer1 = create_layer_basic(64, 64, bnum=2, stride=1) self.layer2 = create_layer_basic(64, 128, bnum=2, stride=2) self.layer3 = create_layer_basic(128, 256, bnum=2, stride=2) self.layer4 = create_layer_basic(256, 512, bnum=2, stride=2) self.init_weight(device) def forward(self, x): x = self.conv1(x) x = F.relu(self.bn1(x)) x = self.maxpool(x) x = self.layer1(x) feat8 = self.layer2(x) # 1/8 feat16 = self.layer3(feat8) # 1/16 feat32 = self.layer4(feat16) # 1/32 return feat8, feat16, feat32 def init_weight(self,device): print('load resnet18 model from dir') checkpoint_path = "./checkpoints/resnet18-5c106cde.pth" state_dict = torch.load(checkpoint_path) #state_dict = modelzoo.load_url(resnet18_url) self_state_dict = self.state_dict() for k, v in state_dict.items(): if 'fc' in k: continue self_state_dict.update({k: v}) self.load_state_dict(self_state_dict) def get_params(self): wd_params, nowd_params = [], [] for name, module in self.named_modules(): if isinstance(module, (nn.Linear, nn.Conv2d)): wd_params.append(module.weight) if not module.bias is None: nowd_params.append(module.bias) elif isinstance(module, nn.BatchNorm2d): nowd_params += list(module.parameters()) return wd_params, nowd_params if __name__ == "__main__": net = Resnet18() x = torch.randn(16, 3, 224, 224) out = net(x) print(out[0].size()) print(out[1].size()) print(out[2].size()) net.get_params() ================================================ FILE: face_parsing/swap.py ================================================ import torch import torchvision.transforms as transforms import cv2 import numpy as np import torch.nn.functional as F from .model import BiSeNet from torchvision.transforms.functional import normalize from torchvision.transforms import Resize def init_parser(pth_path, device): n_classes = 19 net = BiSeNet(device,n_classes=n_classes) net.to(device) net.load_state_dict(torch.load(pth_path,map_location=device)) net.eval().to(device) print('Parser model loaded') return net def image_to_parsing_img(img, net): import time start = time.time() img = cv2.resize(img, (512, 512)) img_copy = img.copy() img = img[:,:,::-1] transform = transforms.Compose([ transforms.ToTensor(), transforms.Normalize((0.485, 0.456, 0.406), (0.229, 0.224, 0.225)) ]) img = transform(img.copy()) img = torch.unsqueeze(img, 0) end = time.time() start1 = time.time() with torch.no_grad(): img = img.cuda() out = net(img)[0] parsing = out.squeeze(0).argmax(0) parsing = parsing.cpu().numpy() end1 = time.time() return parsing def image_to_parsing(img, net): img = cv2.resize(img, (512, 512)) img_copy = img.copy() img = img[:,:,::-1] transform = transforms.Compose([ transforms.ToTensor(), transforms.Normalize((0.485, 0.456, 0.406), (0.229, 0.224, 0.225)) ]) img = transform(img.copy()) img = torch.unsqueeze(img, 0) device = next(net.parameters()).device with torch.no_grad(): img = img.to(device) out = net(img)[0] parsing = out.squeeze(0).argmax(0) parsing = parsing.cpu().numpy() return parsing def image_to_parsing2(img, net): img = img.to(dtype=torch.float32).div(255) normalize(img, (0.485, 0.456, 0.406), (0.229, 0.224, 0.225), inplace=True) img = torch.unsqueeze(img, 0) img = F.interpolate(img, (512, 512), mode='bilinear', align_corners=True) with torch.no_grad(): out = net(img)[0] #15ms parsing = out.squeeze(0).argmax(0) return parsing def get_mask(parsing, classes): res = parsing == classes[0] for val in classes[1:]: res += parsing == val return res def swap_regions_img(source, target, net): import time parsing = image_to_parsing_img(source, net) #13ms source = cv2.resize(source,(512,512)) face_classes = [1, 11, 12, 13] mask = get_mask(parsing, face_classes) mask = np.repeat(np.expand_dims(mask, axis=2), 3, 2) mask = mask.astype(np.float) result = (1 - mask) * cv2.resize(source, (512, 512)) + mask * cv2.resize(target, (512, 512)) result = cv2.resize(result.astype(np.uint8), (source.shape[1], source.shape[0])) return result,mask def swap_regions(source, target, net): parsing = image_to_parsing(source, net) #13ms face_classes = [1, 11, 12, 13] mask = get_mask(parsing, face_classes) mask = np.repeat(np.expand_dims(mask, axis=2), 3, 2) result = (1 - mask) * cv2.resize(source, (512, 512)) + mask * cv2.resize(target, (512, 512)) result = cv2.resize(result.astype(np.uint8), (source.shape[1], source.shape[0])) mask = cv2.resize(mask.astype(np.uint8), (source.shape[1], source.shape[0])) return result,mask ================================================ FILE: filelists/train.txt ================================================ MEAD/M003-002 MEAD/M003-004 MEAD/M003-003 MEAD/M005-001 MEAD/M003-005 MEAD/M003-001 ================================================ FILE: filelists/val.txt ================================================ ================================================ FILE: filelists_lrs2/README.md ================================================ Place LRS2 (and any other) filelists here for training. ================================================ FILE: filelists_lrs2/test.txt ================================================ 00001\00002 ================================================ FILE: filelists_lrs2/train.txt ================================================ 6251513448847229551/00029 6251513448847229551/00015 6251513448847229551/00003 6251513448847229551/00032 6251513448847229551/00009 6251513448847229551/00010 6251513448847229551/00033 6251513448847229551/00031 6251513448847229551/00013 6251513448847229551/00022 6251513448847229551/00026 6251513448847229551/00001 6251513448847229551/00018 6251513448847229551/00012 6251513448847229551/00014 6251513448847229551/00016 6251513448847229551/00011 6251513448847229551/00034 6251513448847229551/00002 6251513448847229551/00025 6251513448847229551/00004 5939542915844728475/00015 5939542915844728475/00006 5939542915844728475/00046 5939542915844728475/00010 5939542915844728475/00033 5939542915844728475/00013 5939542915844728475/00022 5939542915844728475/00026 5939542915844728475/00044 5939542915844728475/00050 5939542915844728475/00001 5939542915844728475/00023 5939542915844728475/00048 5939542915844728475/00042 5939542915844728475/00041 5939542915844728475/00021 5939542915844728475/00014 5939542915844728475/00039 5939542915844728475/00020 5939542915844728475/00035 5939542915844728475/00027 5939542915844728475/00034 5939542915844728475/00008 5939542915844728475/00040 5939542915844728475/00007 5939542915844728475/00043 6287945508935485444/00003 6287945508935485444/00006 6287945508935485444/00010 6287945508935485444/00012 6287945508935485444/00014 6287945508935485444/00016 6287945508935485444/00002 6287945508935485444/00005 6287945508935485444/00004 6101595038399976173/00015 6101595038399976173/00003 6101595038399976173/00009 6101595038399976173/00010 6101595038399976173/00013 6101595038399976173/00001 6101595038399976173/00012 6101595038399976173/00014 6101595038399976173/00016 6101595038399976173/00011 6101595038399976173/00002 6101595038399976173/00007 6101595038399976173/00005 6101595038399976173/00004 5944231731641774858/00029 5944231731641774858/00015 5944231731641774858/00003 5944231731641774858/00010 5944231731641774858/00013 5944231731641774858/00026 5944231731641774858/00023 5944231731641774858/00018 5944231731641774858/00021 5944231731641774858/00016 5944231731641774858/00019 5944231731641774858/00011 5944231731641774858/00002 5944231731641774858/00008 5944231731641774858/00004 5944231731641774858/00028 6077845587240023489/00003 6077845587240023489/00010 6077845587240023489/00013 6077845587240023489/00001 6077845587240023489/00008 6077845587240023489/00007 6077845587240023489/00005 6251200345731287347/00006 6251200345731287347/00010 6251200345731287347/00018 6251200345731287347/00012 6251200345731287347/00014 6251200345731287347/00011 6251200345731287347/00002 6251200345731287347/00008 6251200345731287347/00007 6251200345731287347/00005 6092441604098670412/00060 6092441604098670412/00029 6092441604098670412/00015 6092441604098670412/00003 6092441604098670412/00006 6092441604098670412/00140 6092441604098670412/00046 6092441604098670412/00107 6092441604098670412/00032 6092441604098670412/00113 6092441604098670412/00109 6092441604098670412/00122 6092441604098670412/00070 6092441604098670412/00090 6092441604098670412/00010 6092441604098670412/00033 6092441604098670412/00123 6092441604098670412/00024 6092441604098670412/00141 6092441604098670412/00053 6092441604098670412/00118 6092441604098670412/00116 6092441604098670412/00030 6092441604098670412/00071 6092441604098670412/00058 6092441604098670412/00121 6092441604098670412/00062 6092441604098670412/00142 6092441604098670412/00013 6092441604098670412/00137 6092441604098670412/00022 6092441604098670412/00096 6092441604098670412/00094 6092441604098670412/00026 6092441604098670412/00044 6092441604098670412/00130 6092441604098670412/00099 6092441604098670412/00120 6092441604098670412/00103 6092441604098670412/00050 6092441604098670412/00105 6092441604098670412/00063 6092441604098670412/00110 6092441604098670412/00001 6092441604098670412/00045 6092441604098670412/00064 6092441604098670412/00136 6092441604098670412/00049 6092441604098670412/00072 6092441604098670412/00114 6092441604098670412/00038 6092441604098670412/00048 6092441604098670412/00134 6092441604098670412/00108 6092441604098670412/00145 6092441604098670412/00018 6092441604098670412/00085 6092441604098670412/00135 6092441604098670412/00041 6092441604098670412/00126 6092441604098670412/00065 6092441604098670412/00129 6092441604098670412/00144 6092441604098670412/00083 6092441604098670412/00021 6092441604098670412/00075 6092441604098670412/00079 6092441604098670412/00014 6092441604098670412/00127 6092441604098670412/00101 6092441604098670412/00047 6092441604098670412/00039 6092441604098670412/00124 6092441604098670412/00020 6092441604098670412/00035 6092441604098670412/00051 6092441604098670412/00017 6092441604098670412/00076 6092441604098670412/00080 6092441604098670412/00091 6092441604098670412/00055 6092441604098670412/00016 6092441604098670412/00095 6092441604098670412/00138 6092441604098670412/00111 6092441604098670412/00059 6092441604098670412/00119 6092441604098670412/00027 6092441604098670412/00115 6092441604098670412/00034 6092441604098670412/00100 6092441604098670412/00002 6092441604098670412/00133 6092441604098670412/00106 6092441604098670412/00089 6092441604098670412/00092 6092441604098670412/00008 6092441604098670412/00131 6092441604098670412/00040 6092441604098670412/00007 6092441604098670412/00068 6092441604098670412/00143 6092441604098670412/00132 6092441604098670412/00139 6092441604098670412/00054 6092441604098670412/00043 6092441604098670412/00005 6092441604098670412/00004 6092441604098670412/00028 5898692622899070396/00003 5898692622899070396/00006 5898692622899070396/00009 5898692622899070396/00001 5898692622899070396/00012 5898692622899070396/00007 5898692622899070396/00004 6117277252487848891/00009 6117277252487848891/00002 6117277252487848891/00004 6238985458741516828/00003 6238985458741516828/00009 6238985458741516828/00010 6238985458741516828/00017 6238985458741516828/00016 6238985458741516828/00011 6238985458741516828/00008 6238985458741516828/00007 6091575738691860542/00003 6091575738691860542/00006 6091575738691860542/00009 6091575738691860542/00002 6091575738691860542/00007 6091575738691860542/00004 5983702051595260731/00003 5983702051595260731/00006 5983702051595260731/00009 5983702051595260731/00033 5983702051595260731/00024 5983702051595260731/00030 5983702051595260731/00013 5983702051595260731/00001 5983702051595260731/00023 5983702051595260731/00018 5983702051595260731/00012 5983702051595260731/00020 5983702051595260731/00035 5983702051595260731/00016 5983702051595260731/00019 5983702051595260731/00034 5983702051595260731/00002 5983702051595260731/00008 5983702051595260731/00007 5983702051595260731/00005 5983702051595260731/00004 5983702051595260731/00028 6209650402613110582/00003 6209650402613110582/00032 6209650402613110582/00009 6209650402613110582/00010 6209650402613110582/00033 6209650402613110582/00024 6209650402613110582/00030 6209650402613110582/00013 6209650402613110582/00022 6209650402613110582/00044 6209650402613110582/00036 6209650402613110582/00045 6209650402613110582/00023 6209650402613110582/00038 6209650402613110582/00018 6209650402613110582/00042 6209650402613110582/00041 6209650402613110582/00037 6209650402613110582/00039 6209650402613110582/00020 6209650402613110582/00035 6209650402613110582/00017 6209650402613110582/00016 6209650402613110582/00019 6209650402613110582/00011 6209650402613110582/00027 6209650402613110582/00034 6209650402613110582/00002 6209650402613110582/00008 6209650402613110582/00040 6209650402613110582/00007 6209650402613110582/00025 6209650402613110582/00043 5930153687838935272/00006 5930153687838935272/00010 5930153687838935272/00008 5930153687838935272/00005 5930153687838935272/00004 6345850258020171127/00006 6117922786072437795/00003 6117922786072437795/00010 6117922786072437795/00001 6117922786072437795/00011 6117922786072437795/00008 6117922786072437795/00004 6233055826892590338/00015 6233055826892590338/00003 6233055826892590338/00006 6233055826892590338/00010 6233055826892590338/00013 6233055826892590338/00001 6233055826892590338/00012 6233055826892590338/00014 6233055826892590338/00017 6233055826892590338/00016 6233055826892590338/00019 6233055826892590338/00011 6233055826892590338/00002 6233055826892590338/00008 6233055826892590338/00007 6233055826892590338/00005 5943860646467464220/00015 5943860646467464220/00006 5943860646467464220/00010 5943860646467464220/00013 5943860646467464220/00012 5943860646467464220/00016 5943860646467464220/00011 5943860646467464220/00004 6365141533126941637/00060 6365141533126941637/00056 6365141533126941637/00057 6365141533126941637/00013 6365141533126941637/00012 6365141533126941637/00051 6188213791342693604/00002 5687503926993979657/00003 5687503926993979657/00006 5687503926993979657/00001 5687503926993979657/00002 5687503926993979657/00004 6122793278986045329/00015 6122793278986045329/00006 6122793278986045329/00013 6122793278986045329/00023 6122793278986045329/00012 6122793278986045329/00017 6122793278986045329/00008 6122793278986045329/00007 6106395952843454846/00003 6106395952843454846/00009 6106395952843454846/00010 6106395952843454846/00005 5977512144728289991/00006 5977512144728289991/00009 5977512144728289991/00010 5977512144728289991/00001 5977512144728289991/00012 5977512144728289991/00011 5977512144728289991/00002 5977512144728289991/00005 5977512144728289991/00004 6284219195309469824/00015 6284219195309469824/00003 6284219195309469824/00006 6284219195309469824/00009 6284219195309469824/00013 6284219195309469824/00001 6284219195309469824/00014 6284219195309469824/00016 6284219195309469824/00011 6284219195309469824/00002 6284219195309469824/00008 6284219195309469824/00007 6284219195309469824/00005 6086751631424989624/00015 6086751631424989624/00006 6086751631424989624/00009 6086751631424989624/00010 6086751631424989624/00013 6086751631424989624/00001 6086751631424989624/00018 6086751631424989624/00014 6086751631424989624/00020 6086751631424989624/00017 6086751631424989624/00016 6086751631424989624/00019 6086751631424989624/00002 6086751631424989624/00008 6086751631424989624/00007 6086751631424989624/00005 6086751631424989624/00004 6259402874273258680/00003 6259402874273258680/00006 6259402874273258680/00001 6259402874273258680/00005 5987277611869252470/00015 5987277611869252470/00006 5987277611869252470/00009 5987277611869252470/00013 5987277611869252470/00012 5987277611869252470/00021 5987277611869252470/00014 5987277611869252470/00016 5987277611869252470/00011 5987277611869252470/00007 5971320949371164880/00024 5971320949371164880/00013 5971320949371164880/00026 5971320949371164880/00018 5971320949371164880/00012 5971320949371164880/00021 5971320949371164880/00014 5971320949371164880/00019 5971320949371164880/00011 5971320949371164880/00002 5971320949371164880/00008 5971320949371164880/00007 5971320949371164880/00025 5971320949371164880/00005 5971320949371164880/00004 5995503333234560715/00029 5995503333234560715/00015 5995503333234560715/00003 5995503333234560715/00006 5995503333234560715/00009 5995503333234560715/00010 5995503333234560715/00024 5995503333234560715/00001 5995503333234560715/00021 5995503333234560715/00017 5995503333234560715/00016 5995503333234560715/00027 5995503333234560715/00002 5995503333234560715/00008 5995503333234560715/00007 5995503333234560715/00025 5995503333234560715/00004 5568055732531473539/00029 5568055732531473539/00015 5568055732531473539/00003 5568055732531473539/00032 5568055732531473539/00009 5568055732531473539/00024 5568055732531473539/00030 5568055732531473539/00013 5568055732531473539/00022 5568055732531473539/00026 5568055732531473539/00044 5568055732531473539/00050 5568055732531473539/00036 5568055732531473539/00001 5568055732531473539/00023 5568055732531473539/00038 5568055732531473539/00048 5568055732531473539/00018 5568055732531473539/00042 5568055732531473539/00041 5568055732531473539/00021 5568055732531473539/00037 5568055732531473539/00047 5568055732531473539/00020 5568055732531473539/00035 5568055732531473539/00016 5568055732531473539/00019 5568055732531473539/00011 5568055732531473539/00027 5568055732531473539/00034 5568055732531473539/00002 5568055732531473539/00008 5568055732531473539/00040 5568055732531473539/00007 5568055732531473539/00025 5568055732531473539/00043 5568055732531473539/00005 5568055732531473539/00004 5568055732531473539/00028 6079283542290698524/00015 6079283542290698524/00001 6079283542290698524/00012 6079283542290698524/00014 6079283542290698524/00027 6079283542290698524/00002 6079283542290698524/00025 6079283542290698524/00004 6140640156591170371/00004 6253625284266609126/00015 6253625284266609126/00009 6253625284266609126/00026 6253625284266609126/00001 6253625284266609126/00023 6253625284266609126/00018 6253625284266609126/00014 6253625284266609126/00020 6253625284266609126/00016 6253625284266609126/00002 6253625284266609126/00007 6253625284266609126/00025 6253625284266609126/00004 6121278014524018920/00024 6121278014524018920/00031 6121278014524018920/00013 6121278014524018920/00012 6121278014524018920/00014 6121278014524018920/00017 6121278014524018920/00027 5586505623544917789/00003 5586505623544917789/00006 5586505623544917789/00011 5586505623544917789/00002 5586505623544917789/00007 5586505623544917789/00004 6260918138735224811/00003 6260918138735224811/00006 6260918138735224811/00009 6260918138735224811/00010 6260918138735224811/00012 6260918138735224811/00011 6260918138735224811/00002 6260918138735224811/00008 6260918138735224811/00007 6260918138735224811/00005 6260918138735224811/00004 6125383144265536003/00005 6125383144265536003/00004 5541186846624433836/00003 5541186846624433836/00006 5541186846624433836/00032 5541186846624433836/00010 5541186846624433836/00033 5541186846624433836/00030 5541186846624433836/00031 5541186846624433836/00013 5541186846624433836/00022 5541186846624433836/00026 5541186846624433836/00001 5541186846624433836/00023 5541186846624433836/00012 5541186846624433836/00014 5541186846624433836/00020 5541186846624433836/00017 5541186846624433836/00016 5541186846624433836/00019 5541186846624433836/00011 5541186846624433836/00027 5541186846624433836/00002 5541186846624433836/00025 5541186846624433836/00005 5541186846624433836/00004 5541186846624433836/00028 6123214615277782961/00001 6123214615277782961/00002 6123214615277782961/00005 6064123166729284457/00003 6064123166729284457/00006 6064123166729284457/00009 6064123166729284457/00013 6064123166729284457/00005 6064123166729284457/00004 6075674481271828339/00029 6075674481271828339/00046 6075674481271828339/00009 6075674481271828339/00024 6075674481271828339/00030 6075674481271828339/00026 6075674481271828339/00036 6075674481271828339/00045 6075674481271828339/00023 6075674481271828339/00037 6075674481271828339/00020 6075674481271828339/00035 6075674481271828339/00017 6075674481271828339/00016 6075674481271828339/00019 6075674481271828339/00027 6075674481271828339/00034 6075674481271828339/00043 6075674481271828339/00004 6215243738522697556/00006 6215243738522697556/00002 6215243738522697556/00008 5551623617153720258/00015 5551623617153720258/00003 5551623617153720258/00001 5551623617153720258/00012 5551623617153720258/00014 5551623617153720258/00017 5551623617153720258/00016 5551623617153720258/00019 5551623617153720258/00002 5551623617153720258/00008 5551623617153720258/00007 5551623617153720258/00005 6130667242529814803/00003 6130667242529814803/00002 6102070491279641383/00006 6102070491279641383/00012 6102070491279641383/00011 6324230681142278360/00006 6324230681142278360/00009 6324230681142278360/00010 6324230681142278360/00013 6324230681142278360/00016 6324230681142278360/00002 6324230681142278360/00007 6077772143299170798/00015 6077772143299170798/00003 6077772143299170798/00009 6077772143299170798/00013 6077772143299170798/00001 6077772143299170798/00012 6077772143299170798/00014 6077772143299170798/00016 6077772143299170798/00019 6077772143299170798/00011 6077772143299170798/00002 6077772143299170798/00008 5860790395505332421/00003 5860790395505332421/00009 5860790395505332421/00010 5860790395505332421/00001 5860790395505332421/00023 5860790395505332421/00020 5860790395505332421/00011 5860790395505332421/00002 5860790395505332421/00007 5860790395505332421/00025 5860790395505332421/00005 6139542362950251255/00006 6139542362950251255/00009 6139542362950251255/00010 6139542362950251255/00007 6139542362950251255/00005 6139542362950251255/00004 6041181598917637143/00009 6041181598917637143/00010 6041181598917637143/00013 6041181598917637143/00018 6041181598917637143/00021 6041181598917637143/00014 6041181598917637143/00020 6041181598917637143/00016 6041181598917637143/00011 6041181598917637143/00002 6041181598917637143/00008 6041181598917637143/00007 6041181598917637143/00004 6085394851386601911/00006 6085394851386601911/00046 6085394851386601911/00032 6085394851386601911/00010 6085394851386601911/00033 6085394851386601911/00024 6085394851386601911/00031 6085394851386601911/00013 6085394851386601911/00022 6085394851386601911/00050 6085394851386601911/00001 6085394851386601911/00045 6085394851386601911/00023 6085394851386601911/00048 6085394851386601911/00018 6085394851386601911/00012 6085394851386601911/00014 6085394851386601911/00039 6085394851386601911/00017 6085394851386601911/00016 6085394851386601911/00011 6085394851386601911/00027 6085394851386601911/00007 5687545158680046865/00003 5687545158680046865/00024 5687545158680046865/00013 5687545158680046865/00022 5687545158680046865/00001 5687545158680046865/00023 5687545158680046865/00018 5687545158680046865/00021 5687545158680046865/00014 5687545158680046865/00020 5687545158680046865/00017 5687545158680046865/00008 5687545158680046865/00007 5687545158680046865/00025 5687545158680046865/00005 5687545158680046865/00004 5687545158680046865/00028 5960558190824112934/00029 5960558190824112934/00015 5960558190824112934/00009 5960558190824112934/00031 5960558190824112934/00013 5960558190824112934/00019 5960558190824112934/00008 5538635636050605931/00003 5538635636050605931/00005 5538635636050605931/00004 6212592025714146595/00029 6212592025714146595/00003 6212592025714146595/00046 6212592025714146595/00010 6212592025714146595/00024 6212592025714146595/00030 6212592025714146595/00031 6212592025714146595/00013 6212592025714146595/00026 6212592025714146595/00044 6212592025714146595/00036 6212592025714146595/00001 6212592025714146595/00023 6212592025714146595/00018 6212592025714146595/00042 6212592025714146595/00021 6212592025714146595/00014 6212592025714146595/00037 6212592025714146595/00017 6212592025714146595/00011 6212592025714146595/00027 6212592025714146595/00034 6212592025714146595/00002 6212592025714146595/00040 6212592025714146595/00025 6212592025714146595/00005 6212592025714146595/00004 6212592025714146595/00028 6151015079591335531/00003 6151015079591335531/00006 6151015079591335531/00010 6151015079591335531/00001 6151015079591335531/00012 6151015079591335531/00011 6151015079591335531/00002 6151015079591335531/00007 6151015079591335531/00005 6151015079591335531/00004 6247520417752134275/00006 6247520417752134275/00009 6247520417752134275/00010 6247520417752134275/00018 6247520417752134275/00012 6247520417752134275/00019 6247520417752134275/00011 6247520417752134275/00002 6247520417752134275/00008 6247520417752134275/00007 6247520417752134275/00004 6212920590712289083/00003 6212920590712289083/00006 6212920590712289083/00002 6212920590712289083/00007 6212920590712289083/00005 6030412397919638139/00003 6030412397919638139/00006 6030412397919638139/00008 6030412397919638139/00007 6030412397919638139/00004 6244462830534109905/00003 6244462830534109905/00006 6244462830534109905/00009 6244462830534109905/00010 6244462830534109905/00001 6244462830534109905/00012 6244462830534109905/00014 6244462830534109905/00002 6244462830534109905/00007 6244462830534109905/00004 6096747738309648778/00010 6096747738309648778/00001 6096747738309648778/00012 6096747738309648778/00008 6096747738309648778/00007 6096747738309648778/00005 5984459683827001604/00015 5984459683827001604/00003 5984459683827001604/00006 5984459683827001604/00013 5984459683827001604/00001 5984459683827001604/00012 5984459683827001604/00014 5984459683827001604/00017 5984459683827001604/00008 5984459683827001604/00007 5984459683827001604/00005 6203140950179222464/00125 6203140950179222464/00060 6203140950179222464/00003 6203140950179222464/00009 6203140950179222464/00090 6203140950179222464/00010 6203140950179222464/00057 6203140950179222464/00078 6203140950179222464/00030 6203140950179222464/00071 6203140950179222464/00058 6203140950179222464/00142 6203140950179222464/00086 6203140950179222464/00013 6203140950179222464/00069 6203140950179222464/00026 6203140950179222464/00044 6203140950179222464/00077 6203140950179222464/00093 6203140950179222464/00103 6203140950179222464/00117 6203140950179222464/00001 6203140950179222464/00064 6203140950179222464/00072 6203140950179222464/00038 6203140950179222464/00088 6203140950179222464/00135 6203140950179222464/00012 6203140950179222464/00126 6203140950179222464/00065 6203140950179222464/00144 6203140950179222464/00021 6203140950179222464/00104 6203140950179222464/00037 6203140950179222464/00101 6203140950179222464/00124 6203140950179222464/00020 6203140950179222464/00052 6203140950179222464/00091 6203140950179222464/00095 6203140950179222464/00084 6203140950179222464/00082 6203140950179222464/00106 6203140950179222464/00089 6203140950179222464/00092 6203140950179222464/00040 6203140950179222464/00102 6203140950179222464/00068 6203140950179222464/00132 6203140950179222464/00054 6203140950179222464/00043 6203140950179222464/00004 6098013035675050600/00009 6098013035675050600/00010 6098013035675050600/00001 6098013035675050600/00007 6115801931221609643/00015 6115801931221609643/00001 6115801931221609643/00018 6115801931221609643/00017 6115801931221609643/00004 6211490366602652865/00015 6211490366602652865/00003 6211490366602652865/00033 6211490366602652865/00024 6211490366602652865/00030 6211490366602652865/00013 6211490366602652865/00022 6211490366602652865/00026 6211490366602652865/00049 6211490366602652865/00038 6211490366602652865/00041 6211490366602652865/00021 6211490366602652865/00014 6211490366602652865/00039 6211490366602652865/00020 6211490366602652865/00027 6211490366602652865/00034 6211490366602652865/00002 6211490366602652865/00040 6211490366602652865/00025 6037519709801129291/00003 6037519709801129291/00010 6037519709801129291/00012 6037519709801129291/00014 6037519709801129291/00017 6037519709801129291/00016 6037519709801129291/00019 6037519709801129291/00011 6037519709801129291/00002 6037519709801129291/00008 5996956750167467138/00009 5996956750167467138/00010 5996956750167467138/00007 5996956750167467138/00004 6249375843624008338/00013 6249375843624008338/00001 6249375843624008338/00012 6249375843624008338/00021 6249375843624008338/00011 5951349351444679853/00003 5951349351444679853/00009 5951349351444679853/00010 5951349351444679853/00013 5951349351444679853/00011 5951349351444679853/00002 5951349351444679853/00007 5951349351444679853/00005 5951349351444679853/00004 5918933515274853764/00029 5918933515274853764/00015 5918933515274853764/00056 5918933515274853764/00032 5918933515274853764/00057 5918933515274853764/00030 5918933515274853764/00044 5918933515274853764/00050 5918933515274853764/00049 5918933515274853764/00023 5918933515274853764/00018 5918933515274853764/00042 5918933515274853764/00012 5918933515274853764/00014 5918933515274853764/00047 5918933515274853764/00035 5918933515274853764/00017 5918933515274853764/00016 5918933515274853764/00019 5918933515274853764/00011 5918933515274853764/00034 5918933515274853764/00008 5918933515274853764/00040 5918933515274853764/00054 5687877589148733737/00029 5687877589148733737/00015 5687877589148733737/00003 5687877589148733737/00006 5687877589148733737/00010 5687877589148733737/00033 5687877589148733737/00024 5687877589148733737/00018 5687877589148733737/00012 5687877589148733737/00020 5687877589148733737/00017 5687877589148733737/00016 5687877589148733737/00019 5687877589148733737/00011 5687877589148733737/00027 5687877589148733737/00002 5687877589148733737/00040 5687877589148733737/00025 5687877589148733737/00005 5687877589148733737/00028 5891394614469626449/00015 5891394614469626449/00003 5891394614469626449/00006 5891394614469626449/00046 5891394614469626449/00024 5891394614469626449/00031 5891394614469626449/00013 5891394614469626449/00022 5891394614469626449/00026 5891394614469626449/00050 5891394614469626449/00036 5891394614469626449/00049 5891394614469626449/00023 5891394614469626449/00018 5891394614469626449/00012 5891394614469626449/00021 5891394614469626449/00014 5891394614469626449/00037 5891394614469626449/00047 5891394614469626449/00020 5891394614469626449/00035 5891394614469626449/00017 5891394614469626449/00011 5891394614469626449/00034 5891394614469626449/00008 5891394614469626449/00040 5891394614469626449/00007 5891394614469626449/00025 5891394614469626449/00043 5891394614469626449/00005 5891394614469626449/00028 5985493052957700168/00010 5985493052957700168/00012 5985493052957700168/00017 5985493052957700168/00007 5974038375309754904/00029 5974038375309754904/00015 5974038375309754904/00003 5974038375309754904/00009 5974038375309754904/00022 5974038375309754904/00026 5974038375309754904/00001 5974038375309754904/00018 5974038375309754904/00012 5974038375309754904/00021 5974038375309754904/00014 5974038375309754904/00016 5974038375309754904/00019 5974038375309754904/00011 5974038375309754904/00027 5974038375309754904/00002 5974038375309754904/00008 5974038375309754904/00025 5974038375309754904/00005 5974038375309754904/00004 5974038375309754904/00028 5916118164212416257/00015 5916118164212416257/00003 5916118164212416257/00010 5916118164212416257/00013 5916118164212416257/00001 5916118164212416257/00018 5916118164212416257/00012 5916118164212416257/00014 5916118164212416257/00017 5916118164212416257/00016 5916118164212416257/00019 5916118164212416257/00011 5916118164212416257/00002 5916118164212416257/00004 6354369755148493407/00023 6354369755148493407/00048 6354369755148493407/00051 6354369755148493407/00055 6354369755148493407/00019 6354369755148493407/00028 5604861454774550869/00006 5604861454774550869/00046 5604861454774550869/00032 5604861454774550869/00024 5604861454774550869/00053 5604861454774550869/00030 5604861454774550869/00031 5604861454774550869/00044 5604861454774550869/00036 5604861454774550869/00001 5604861454774550869/00049 5604861454774550869/00038 5604861454774550869/00048 5604861454774550869/00041 5604861454774550869/00021 5604861454774550869/00020 5604861454774550869/00051 5604861454774550869/00052 5604861454774550869/00016 5604861454774550869/00002 5604861454774550869/00008 6236387862520918446/00015 6236387862520918446/00021 6236387862520918446/00014 6236387862520918446/00020 6236387862520918446/00016 6236387862520918446/00008 6236387862520918446/00004 6116148535082467916/00029 6116148535082467916/00015 6116148535082467916/00003 6116148535082467916/00006 6116148535082467916/00009 6116148535082467916/00010 6116148535082467916/00024 6116148535082467916/00030 6116148535082467916/00031 6116148535082467916/00013 6116148535082467916/00023 6116148535082467916/00012 6116148535082467916/00021 6116148535082467916/00014 6116148535082467916/00017 6116148535082467916/00016 6116148535082467916/00019 6116148535082467916/00011 6116148535082467916/00027 6116148535082467916/00034 6116148535082467916/00007 6116148535082467916/00025 6116148535082467916/00005 6116148535082467916/00004 6104169441797205846/00003 6104169441797205846/00009 6104169441797205846/00024 6104169441797205846/00013 6104169441797205846/00044 6104169441797205846/00050 6104169441797205846/00036 6104169441797205846/00001 6104169441797205846/00045 6104169441797205846/00023 6104169441797205846/00042 6104169441797205846/00021 6104169441797205846/00014 6104169441797205846/00039 6104169441797205846/00020 6104169441797205846/00011 6104169441797205846/00027 6104169441797205846/00002 6104169441797205846/00040 6104169441797205846/00007 6104169441797205846/00043 6104169441797205846/00028 6076079067191174370/00015 6076079067191174370/00009 6076079067191174370/00017 6076079067191174370/00016 6076079067191174370/00004 5946535552099351181/00001 6027834129051942560/00029 6027834129051942560/00015 6027834129051942560/00003 6027834129051942560/00006 6027834129051942560/00046 6027834129051942560/00009 6027834129051942560/00026 6027834129051942560/00044 6027834129051942560/00036 6027834129051942560/00045 6027834129051942560/00023 6027834129051942560/00038 6027834129051942560/00042 6027834129051942560/00012 6027834129051942560/00041 6027834129051942560/00047 6027834129051942560/00039 6027834129051942560/00020 6027834129051942560/00035 6027834129051942560/00051 6027834129051942560/00019 6027834129051942560/00011 6027834129051942560/00002 6027834129051942560/00008 6027834129051942560/00007 6027834129051942560/00043 6027834129051942560/00005 6303167732026041278/00006 6303167732026041278/00013 6303167732026041278/00001 6303167732026041278/00023 6303167732026041278/00018 6303167732026041278/00014 6303167732026041278/00020 6303167732026041278/00017 6303167732026041278/00019 6303167732026041278/00011 6303167732026041278/00007 6303167732026041278/00005 6303167732026041278/00004 6037841832348266408/00015 6037841832348266408/00006 6037841832348266408/00032 6037841832348266408/00009 6037841832348266408/00010 6037841832348266408/00033 6037841832348266408/00030 6037841832348266408/00044 6037841832348266408/00036 6037841832348266408/00038 6037841832348266408/00042 6037841832348266408/00014 6037841832348266408/00039 6037841832348266408/00020 6037841832348266408/00035 6037841832348266408/00016 6037841832348266408/00034 6037841832348266408/00008 6037841832348266408/00040 6037841832348266408/00025 6037841832348266408/00043 6037841832348266408/00004 5927606342735671442/00009 5927606342735671442/00013 5927606342735671442/00016 5927606342735671442/00002 5927606342735671442/00007 5687421463621925907/00015 5687421463621925907/00003 5687421463621925907/00070 5687421463621925907/00010 5687421463621925907/00071 5687421463621925907/00031 5687421463621925907/00013 5687421463621925907/00069 5687421463621925907/00022 5687421463621925907/00026 5687421463621925907/00050 5687421463621925907/00001 5687421463621925907/00066 5687421463621925907/00064 5687421463621925907/00049 5687421463621925907/00072 5687421463621925907/00023 5687421463621925907/00038 5687421463621925907/00018 5687421463621925907/00042 5687421463621925907/00012 5687421463621925907/00041 5687421463621925907/00061 5687421463621925907/00014 5687421463621925907/00037 5687421463621925907/00039 5687421463621925907/00020 5687421463621925907/00035 5687421463621925907/00017 5687421463621925907/00052 5687421463621925907/00055 5687421463621925907/00011 5687421463621925907/00008 5687421463621925907/00007 5687421463621925907/00068 5687421463621925907/00005 5687421463621925907/00004 5571739525981255385/00006 5571739525981255385/00009 5571739525981255385/00013 5571739525981255385/00022 5571739525981255385/00001 5571739525981255385/00012 5571739525981255385/00016 5571739525981255385/00007 5571739525981255385/00004 6361354660462048727/00006 6361354660462048727/00012 6103933648092657631/00001 6358014893892677091/00008 6131395239486549066/00001 6108645656713071245/00009 6108645656713071245/00010 6108645656713071245/00001 6108645656713071245/00011 6108645656713071245/00008 6108645656713071245/00005 6116163996964662518/00009 6116163996964662518/00010 6116163996964662518/00022 6116163996964662518/00001 6116163996964662518/00023 6116163996964662518/00018 6116163996964662518/00014 6116163996964662518/00020 6116163996964662518/00019 6116163996964662518/00027 6116163996964662518/00025 6116163996964662518/00005 6116163996964662518/00004 6352916338215591806/00003 6364396785797743449/00020 6231556024312892994/00003 6231556024312892994/00001 6231556024312892994/00011 6231556024312892994/00002 6231556024312892994/00007 6017335510993592483/00015 6017335510993592483/00009 6017335510993592483/00031 6017335510993592483/00013 6017335510993592483/00026 6017335510993592483/00023 6017335510993592483/00018 6017335510993592483/00020 6017335510993592483/00017 6017335510993592483/00016 6017335510993592483/00019 6017335510993592483/00027 6017335510993592483/00025 6017335510993592483/00004 6224528598823197354/00001 6224528598823197354/00002 6224528598823197354/00008 6224528598823197354/00004 6129886417475464158/00015 6129886417475464158/00017 6129886417475464158/00016 6129886417475464158/00008 6129886417475464158/00004 5941641866362287742/00029 5941641866362287742/00003 5941641866362287742/00010 5941641866362287742/00053 5941641866362287742/00031 5941641866362287742/00013 5941641866362287742/00022 5941641866362287742/00044 5941641866362287742/00036 5941641866362287742/00045 5941641866362287742/00023 5941641866362287742/00038 5941641866362287742/00018 5941641866362287742/00012 5941641866362287742/00014 5941641866362287742/00037 5941641866362287742/00020 5941641866362287742/00051 5941641866362287742/00017 5941641866362287742/00052 5941641866362287742/00019 5941641866362287742/00011 5941641866362287742/00027 5941641866362287742/00040 5941641866362287742/00025 5941641866362287742/00043 5941641866362287742/00004 5941641866362287742/00028 5939854730470416272/00036 5939854730470416272/00020 5939854730470416272/00035 5939854730470416272/00011 5939854730470416272/00007 5939854730470416272/00004 5958437336103762271/00015 5958437336103762271/00006 5958437336103762271/00046 5958437336103762271/00009 5958437336103762271/00010 5958437336103762271/00030 5958437336103762271/00031 5958437336103762271/00013 5958437336103762271/00022 5958437336103762271/00050 5958437336103762271/00036 5958437336103762271/00045 5958437336103762271/00049 5958437336103762271/00048 5958437336103762271/00014 5958437336103762271/00037 5958437336103762271/00039 5958437336103762271/00020 5958437336103762271/00035 5958437336103762271/00051 5958437336103762271/00019 5958437336103762271/00011 5958437336103762271/00034 5958437336103762271/00002 5958437336103762271/00008 5958437336103762271/00040 5958437336103762271/00025 5958437336103762271/00005 5958437336103762271/00004 6148804030427354501/00029 6148804030427354501/00015 6148804030427354501/00003 6148804030427354501/00046 6148804030427354501/00009 6148804030427354501/00010 6148804030427354501/00013 6148804030427354501/00036 6148804030427354501/00045 6148804030427354501/00021 6148804030427354501/00014 6148804030427354501/00037 6148804030427354501/00020 6148804030427354501/00027 6148804030427354501/00034 6148804030427354501/00002 6148804030427354501/00007 6148804030427354501/00043 6148804030427354501/00005 6148804030427354501/00004 6148804030427354501/00028 5708592645914094895/00003 5708592645914094895/00013 5708592645914094895/00001 5708592645914094895/00012 5708592645914094895/00007 5708592645914094895/00004 5895337394447370328/00029 5895337394447370328/00015 5895337394447370328/00003 5895337394447370328/00046 5895337394447370328/00056 5895337394447370328/00070 5895337394447370328/00009 5895337394447370328/00073 5895337394447370328/00010 5895337394447370328/00033 5895337394447370328/00057 5895337394447370328/00078 5895337394447370328/00030 5895337394447370328/00058 5895337394447370328/00013 5895337394447370328/00044 5895337394447370328/00077 5895337394447370328/00036 5895337394447370328/00001 5895337394447370328/00045 5895337394447370328/00066 5895337394447370328/00064 5895337394447370328/00072 5895337394447370328/00023 5895337394447370328/00038 5895337394447370328/00048 5895337394447370328/00018 5895337394447370328/00012 5895337394447370328/00041 5895337394447370328/00021 5895337394447370328/00075 5895337394447370328/00014 5895337394447370328/00037 5895337394447370328/00047 5895337394447370328/00039 5895337394447370328/00035 5895337394447370328/00017 5895337394447370328/00076 5895337394447370328/00080 5895337394447370328/00052 5895337394447370328/00016 5895337394447370328/00019 5895337394447370328/00011 5895337394447370328/00027 5895337394447370328/00067 5895337394447370328/00034 5895337394447370328/00002 5895337394447370328/00008 5895337394447370328/00007 5895337394447370328/00054 5895337394447370328/00005 5895337394447370328/00074 5895337394447370328/00004 5947277722448076910/00015 5947277722448076910/00006 5947277722448076910/00009 5947277722448076910/00033 5947277722448076910/00031 5947277722448076910/00013 5947277722448076910/00036 5947277722448076910/00001 5947277722448076910/00018 5947277722448076910/00039 5947277722448076910/00020 5947277722448076910/00019 5947277722448076910/00011 5947277722448076910/00034 5947277722448076910/00002 5947277722448076910/00040 5947277722448076910/00007 5947277722448076910/00005 5947277722448076910/00028 5987041818165357049/00015 5987041818165357049/00003 5987041818165357049/00006 5987041818165357049/00013 5987041818165357049/00012 5987041818165357049/00008 5987041818165357049/00007 5987041818165357049/00005 5987041818165357049/00004 6124285350624678326/00015 6124285350624678326/00010 6124285350624678326/00013 6124285350624678326/00001 6124285350624678326/00018 6124285350624678326/00016 6124285350624678326/00011 6124285350624678326/00008 6124285350624678326/00004 6130918498116695542/00015 6130918498116695542/00010 6130918498116695542/00012 6130918498116695542/00004 6219963478084279489/00015 6219963478084279489/00006 6219963478084279489/00009 6219963478084279489/00022 6219963478084279489/00001 6219963478084279489/00012 6219963478084279489/00021 6219963478084279489/00014 6219963478084279489/00016 6219963478084279489/00019 6219963478084279489/00002 6219963478084279489/00007 6219963478084279489/00005 6219963478084279489/00004 6169430181369718653/00029 6169430181369718653/00015 6169430181369718653/00006 6169430181369718653/00032 6169430181369718653/00033 6169430181369718653/00057 6169430181369718653/00024 6169430181369718653/00030 6169430181369718653/00058 6169430181369718653/00062 6169430181369718653/00031 6169430181369718653/00022 6169430181369718653/00026 6169430181369718653/00050 6169430181369718653/00063 6169430181369718653/00001 6169430181369718653/00045 6169430181369718653/00064 6169430181369718653/00023 6169430181369718653/00048 6169430181369718653/00018 6169430181369718653/00020 6169430181369718653/00035 6169430181369718653/00017 6169430181369718653/00052 6169430181369718653/00055 6169430181369718653/00016 6169430181369718653/00059 6169430181369718653/00019 6169430181369718653/00034 6169430181369718653/00002 6169430181369718653/00007 6169430181369718653/00054 6169430181369718653/00005 6169430181369718653/00028 6118641763597797400/00015 6118641763597797400/00003 6118641763597797400/00032 6118641763597797400/00009 6118641763597797400/00024 6118641763597797400/00030 6118641763597797400/00022 6118641763597797400/00026 6118641763597797400/00001 6118641763597797400/00018 6118641763597797400/00021 6118641763597797400/00017 6118641763597797400/00019 6118641763597797400/00011 6118641763597797400/00025 6118641763597797400/00004 6210419631255826093/00003 6210419631255826093/00013 6210419631255826093/00012 6210419631255826093/00014 6210419631255826093/00011 6210419631255826093/00008 6210419631255826093/00007 6210419631255826093/00004 6114300840151718516/00015 6114300840151718516/00009 6114300840151718516/00024 6114300840151718516/00018 6114300840151718516/00012 6114300840151718516/00014 6114300840151718516/00020 6114300840151718516/00035 6114300840151718516/00034 6114300840151718516/00004 5934962333223604042/00003 5934962333223604042/00002 6376623269199281113/00006 6376623269199281113/00012 6376623269199281113/00008 5940559534603755744/00003 5940559534603755744/00006 5940559534603755744/00001 5940559534603755744/00012 5940559534603755744/00011 5940559534603755744/00005 6380021017827118123/00015 6289429849632983109/00009 6289429849632983109/00010 6289429849632983109/00011 6289429849632983109/00007 5943118476118715363/00003 5943118476118715363/00006 5943118476118715363/00009 5943118476118715363/00012 5943118476118715363/00011 5943118476118715363/00008 5943118476118715363/00007 5854865917617226996/00006 5854865917617226996/00033 5854865917617226996/00024 5854865917617226996/00030 5854865917617226996/00031 5854865917617226996/00022 5854865917617226996/00036 5854865917617226996/00001 5854865917617226996/00023 5854865917617226996/00048 5854865917617226996/00018 5854865917617226996/00042 5854865917617226996/00041 5854865917617226996/00021 5854865917617226996/00037 5854865917617226996/00020 5854865917617226996/00035 5854865917617226996/00019 5854865917617226996/00027 5854865917617226996/00034 5854865917617226996/00002 5854865917617226996/00008 5854865917617226996/00025 5854865917617226996/00004 5854865917617226996/00028 6085997864664478795/00003 6085997864664478795/00002 6387705573313124513/00019 6387705573313124513/00008 6356530553195178439/00012 6356530553195178439/00014 5966608940751361483/00029 5966608940751361483/00003 5966608940751361483/00006 5966608940751361483/00032 5966608940751361483/00010 5966608940751361483/00024 5966608940751361483/00013 5966608940751361483/00026 5966608940751361483/00036 5966608940751361483/00001 5966608940751361483/00018 5966608940751361483/00021 5966608940751361483/00014 5966608940751361483/00035 5966608940751361483/00017 5966608940751361483/00016 5966608940751361483/00011 5966608940751361483/00027 5966608940751361483/00002 5966608940751361483/00005 5966608940751361483/00004 5966608940751361483/00028 5944660798874623791/00003 5944660798874623791/00010 5944660798874623791/00033 5944660798874623791/00024 5944660798874623791/00030 5944660798874623791/00031 5944660798874623791/00026 5944660798874623791/00044 5944660798874623791/00036 5944660798874623791/00023 5944660798874623791/00018 5944660798874623791/00042 5944660798874623791/00041 5944660798874623791/00037 5944660798874623791/00039 5944660798874623791/00017 5944660798874623791/00016 5944660798874623791/00034 5944660798874623791/00002 5944660798874623791/00008 5944660798874623791/00007 5944660798874623791/00025 5944660798874623791/00043 5944660798874623791/00005 5944660798874623791/00004 5944660798874623791/00028 6248656866098592084/00029 6248656866098592084/00006 6248656866098592084/00046 6248656866098592084/00009 6248656866098592084/00033 6248656866098592084/00053 6248656866098592084/00026 6248656866098592084/00044 6248656866098592084/00050 6248656866098592084/00023 6248656866098592084/00048 6248656866098592084/00042 6248656866098592084/00041 6248656866098592084/00021 6248656866098592084/00037 6248656866098592084/00047 6248656866098592084/00039 6248656866098592084/00020 6248656866098592084/00035 6248656866098592084/00052 6248656866098592084/00002 6248656866098592084/00008 6248656866098592084/00007 6248656866098592084/00025 6248656866098592084/00043 6248656866098592084/00005 6248656866098592084/00028 5987745333807723731/00003 5987745333807723731/00006 5987745333807723731/00009 5987745333807723731/00010 5987745333807723731/00001 5987745333807723731/00011 5987745333807723731/00008 5987745333807723731/00004 6287225242920010832/00003 6287225242920010832/00032 6287225242920010832/00009 6287225242920010832/00033 6287225242920010832/00024 6287225242920010832/00030 6287225242920010832/00031 6287225242920010832/00022 6287225242920010832/00036 6287225242920010832/00023 6287225242920010832/00021 6287225242920010832/00035 6287225242920010832/00016 6287225242920010832/00019 6287225242920010832/00034 6287225242920010832/00025 5987258284516420468/00015 5987258284516420468/00003 5987258284516420468/00009 5987258284516420468/00013 5987258284516420468/00018 5987258284516420468/00007 5987258284516420468/00004 6094544420086858327/00003 6116477100080540984/00003 6116477100080540984/00018 6116477100080540984/00016 6116477100080540984/00002 6007034031934141705/00015 6007034031934141705/00003 6007034031934141705/00056 6007034031934141705/00009 6007034031934141705/00010 6007034031934141705/00033 6007034031934141705/00057 6007034031934141705/00024 6007034031934141705/00053 6007034031934141705/00030 6007034031934141705/00026 6007034031934141705/00036 6007034031934141705/00001 6007034031934141705/00049 6007034031934141705/00023 6007034031934141705/00038 6007034031934141705/00048 6007034031934141705/00042 6007034031934141705/00041 6007034031934141705/00021 6007034031934141705/00037 6007034031934141705/00039 6007034031934141705/00051 6007034031934141705/00017 6007034031934141705/00052 6007034031934141705/00055 6007034031934141705/00016 6007034031934141705/00019 6007034031934141705/00011 6007034031934141705/00027 6007034031934141705/00002 6007034031934141705/00025 6007034031934141705/00054 6007034031934141705/00043 6007034031934141705/00028 5871871411128999642/00029 5871871411128999642/00015 5871871411128999642/00006 5871871411128999642/00070 5871871411128999642/00033 5871871411128999642/00030 5871871411128999642/00013 5871871411128999642/00069 5871871411128999642/00050 5871871411128999642/00001 5871871411128999642/00064 5871871411128999642/00023 5871871411128999642/00041 5871871411128999642/00021 5871871411128999642/00047 5871871411128999642/00020 5871871411128999642/00051 5871871411128999642/00016 5871871411128999642/00025 5871871411128999642/00005 5871871411128999642/00028 6355568051024147448/00003 6355568051024147448/00012 6355568051024147448/00016 6353190786625806236/00012 6235630230289903990/00029 6235630230289903990/00015 6235630230289903990/00032 6235630230289903990/00024 6235630230289903990/00030 6235630230289903990/00013 6235630230289903990/00026 6235630230289903990/00036 6235630230289903990/00038 6235630230289903990/00018 6235630230289903990/00012 6235630230289903990/00021 6235630230289903990/00037 6235630230289903990/00017 6235630230289903990/00011 6235630230289903990/00027 6235630230289903990/00034 6235630230289903990/00004 6235630230289903990/00028 6294253956899852711/00006 6294253956899852711/00009 6294253956899852711/00010 6294253956899852711/00013 6294253956899852711/00022 6294253956899852711/00012 6294253956899852711/00014 6294253956899852711/00002 6294253956899852711/00008 6294253956899852711/00007 6074973542609183887/00003 6074973542609183887/00006 6074973542609183887/00009 6074973542609183887/00014 6074973542609183887/00011 6074973542609183887/00002 6074973542609183887/00007 5949893357531430238/00029 5949893357531430238/00015 5949893357531430238/00009 5949893357531430238/00010 5949893357531430238/00033 5949893357531430238/00024 5949893357531430238/00030 5949893357531430238/00013 5949893357531430238/00022 5949893357531430238/00036 5949893357531430238/00001 5949893357531430238/00018 5949893357531430238/00012 5949893357531430238/00021 5949893357531430238/00014 5949893357531430238/00037 5949893357531430238/00020 5949893357531430238/00016 5949893357531430238/00019 5949893357531430238/00011 5949893357531430238/00034 5949893357531430238/00002 5949893357531430238/00008 5949893357531430238/00007 5949893357531430238/00004 5949893357531430238/00028 6195000269166409759/00008 6195000269166409759/00007 6262356093785926416/00003 6262356093785926416/00009 6262356093785926416/00005 6262356093785926416/00004 6228854060387002490/00015 6228854060387002490/00003 6228854060387002490/00013 6228854060387002490/00007 6228854060387002490/00004 5543216218671794127/00001 5884931547682632545/00060 5884931547682632545/00003 5884931547682632545/00006 5884931547682632545/00056 5884931547682632545/00009 5884931547682632545/00024 5884931547682632545/00053 5884931547682632545/00062 5884931547682632545/00026 5884931547682632545/00044 5884931547682632545/00050 5884931547682632545/00063 5884931547682632545/00001 5884931547682632545/00045 5884931547682632545/00064 5884931547682632545/00023 5884931547682632545/00038 5884931547682632545/00012 5884931547682632545/00041 5884931547682632545/00021 5884931547682632545/00039 5884931547682632545/00051 5884931547682632545/00017 5884931547682632545/00052 5884931547682632545/00055 5884931547682632545/00059 5884931547682632545/00002 5884931547682632545/00008 5884931547682632545/00025 5884931547682632545/00054 5884931547682632545/00028 6049295221636520320/00015 6049295221636520320/00003 6049295221636520320/00006 6049295221636520320/00009 6049295221636520320/00022 6049295221636520320/00001 6049295221636520320/00018 6049295221636520320/00012 6049295221636520320/00021 6049295221636520320/00014 6049295221636520320/00020 6049295221636520320/00017 6049295221636520320/00016 6049295221636520320/00019 6049295221636520320/00011 6049295221636520320/00002 6049295221636520320/00008 6049295221636520320/00007 6049295221636520320/00005 6049295221636520320/00004 6250496830088198607/00003 6250496830088198607/00006 6250496830088198607/00001 6250496830088198607/00002 6250496830088198607/00007 6250496830088198607/00005 6168316925846595385/00060 6168316925846595385/00029 6168316925846595385/00046 6168316925846595385/00056 6168316925846595385/00032 6168316925846595385/00010 6168316925846595385/00057 6168316925846595385/00024 6168316925846595385/00053 6168316925846595385/00071 6168316925846595385/00058 6168316925846595385/00062 6168316925846595385/00031 6168316925846595385/00026 6168316925846595385/00044 6168316925846595385/00050 6168316925846595385/00001 6168316925846595385/00049 6168316925846595385/00023 6168316925846595385/00018 6168316925846595385/00042 6168316925846595385/00012 6168316925846595385/00041 6168316925846595385/00075 6168316925846595385/00047 6168316925846595385/00039 6168316925846595385/00051 6168316925846595385/00076 6168316925846595385/00052 6168316925846595385/00055 6168316925846595385/00059 6168316925846595385/00011 6168316925846595385/00034 6168316925846595385/00002 6168316925846595385/00008 6168316925846595385/00007 6168316925846595385/00054 6168316925846595385/00043 6168316925846595385/00028 6239774014737727302/00015 6239774014737727302/00009 6239774014737727302/00013 6239774014737727302/00012 6239774014737727302/00014 6239774014737727302/00002 6239774014737727302/00004 6100224084839091944/00006 6100224084839091944/00009 6100224084839091944/00010 6100224084839091944/00013 6100224084839091944/00011 6100224084839091944/00007 5972909657773893974/00029 5972909657773893974/00015 5972909657773893974/00006 5972909657773893974/00010 5972909657773893974/00030 5972909657773893974/00031 5972909657773893974/00026 5972909657773893974/00044 5972909657773893974/00001 5972909657773893974/00017 5972909657773893974/00016 5972909657773893974/00034 5972909657773893974/00007 5972909657773893974/00025 5972909657773893974/00005 5972909657773893974/00004 5972909657773893974/00028 5926330737448759342/00015 5926330737448759342/00009 5926330737448759342/00010 5926330737448759342/00013 5926330737448759342/00018 5926330737448759342/00014 5926330737448759342/00019 5926330737448759342/00011 5926330737448759342/00002 5926330737448759342/00008 5926330737448759342/00007 5926330737448759342/00005 5926330737448759342/00004 6342112347982522696/00026 6342112347982522696/00001 6342112347982522696/00020 6342112347982522696/00008 6342112347982522696/00004 5947289318859772112/00015 5947289318859772112/00006 5947289318859772112/00009 5947289318859772112/00022 5947289318859772112/00026 5947289318859772112/00023 5947289318859772112/00018 5947289318859772112/00012 5947289318859772112/00014 5947289318859772112/00020 5947289318859772112/00016 5947289318859772112/00019 5947289318859772112/00011 5947289318859772112/00027 5947289318859772112/00002 5947289318859772112/00025 5947289318859772112/00004 5947289318859772112/00028 5577228494185548044/00003 5577228494185548044/00006 5577228494185548044/00032 5577228494185548044/00009 5577228494185548044/00010 5577228494185548044/00030 5577228494185548044/00013 5577228494185548044/00022 5577228494185548044/00026 5577228494185548044/00036 5577228494185548044/00023 5577228494185548044/00012 5577228494185548044/00021 5577228494185548044/00014 5577228494185548044/00037 5577228494185548044/00017 5577228494185548044/00019 5577228494185548044/00011 5577228494185548044/00002 5577228494185548044/00008 5577228494185548044/00005 6151335913648346755/00029 6151335913648346755/00030 6151335913648346755/00031 6151335913648346755/00022 6151335913648346755/00012 6151335913648346755/00014 6151335913648346755/00016 6151335913648346755/00008 6151335913648346755/00007 6151335913648346755/00005 6151335913648346755/00028 6261613923437239642/00006 6261613923437239642/00056 6261613923437239642/00009 6261613923437239642/00033 6261613923437239642/00057 6261613923437239642/00024 6261613923437239642/00022 6261613923437239642/00026 6261613923437239642/00023 6261613923437239642/00042 6261613923437239642/00021 6261613923437239642/00037 6261613923437239642/00047 6261613923437239642/00051 6261613923437239642/00017 6261613923437239642/00052 6261613923437239642/00055 6261613923437239642/00019 6261613923437239642/00011 6261613923437239642/00002 6261613923437239642/00008 6261613923437239642/00007 6261613923437239642/00043 6261613923437239642/00004 6261613923437239642/00028 5933559167407934721/00003 5933559167407934721/00006 5933559167407934721/00031 5933559167407934721/00013 5933559167407934721/00022 5933559167407934721/00026 5933559167407934721/00023 5933559167407934721/00012 5933559167407934721/00017 5933559167407934721/00016 5933559167407934721/00034 5933559167407934721/00002 5933559167407934721/00008 5933559167407934721/00040 5933559167407934721/00025 5933559167407934721/00005 5933559167407934721/00004 6093779056914711069/00015 6093779056914711069/00003 6093779056914711069/00024 6093779056914711069/00023 6093779056914711069/00018 6093779056914711069/00014 6093779056914711069/00020 6093779056914711069/00017 6093779056914711069/00016 6093779056914711069/00007 6093779056914711069/00004 6126140776496558590/00032 6126140776496558590/00009 6126140776496558590/00022 6126140776496558590/00026 6126140776496558590/00018 6126140776496558590/00042 6126140776496558590/00014 6126140776496558590/00037 6126140776496558590/00020 6126140776496558590/00016 6126140776496558590/00019 6126140776496558590/00002 6126140776496558590/00040 6126140776496558590/00004 6126140776496558590/00028 5556923177300261006/00003 5556923177300261006/00006 5556923177300261006/00009 5556923177300261006/00010 5556923177300261006/00013 5556923177300261006/00001 5556923177300261006/00023 5556923177300261006/00012 5556923177300261006/00014 5556923177300261006/00011 5556923177300261006/00002 5556923177300261006/00007 5976145056638036431/00003 5976145056638036431/00006 5976145056638036431/00010 5976145056638036431/00013 5976145056638036431/00022 5976145056638036431/00023 5976145056638036431/00018 5976145056638036431/00012 5976145056638036431/00021 5976145056638036431/00014 5976145056638036431/00020 5976145056638036431/00017 5976145056638036431/00019 5976145056638036431/00002 5976145056638036431/00008 5976145056638036431/00005 5976145056638036431/00004 5935567923612276359/00015 5935567923612276359/00003 5935567923612276359/00006 5935567923612276359/00009 5935567923612276359/00010 5935567923612276359/00013 5935567923612276359/00001 5935567923612276359/00012 5935567923612276359/00014 5935567923612276359/00016 5935567923612276359/00011 5935567923612276359/00002 5935567923612276359/00008 5935567923612276359/00005 5935567923612276359/00004 6379595816064843367/00017 6240840884613392010/00015 6240840884613392010/00003 6240840884613392010/00006 6240840884613392010/00010 6240840884613392010/00024 6240840884613392010/00013 6240840884613392010/00022 6240840884613392010/00026 6240840884613392010/00001 6240840884613392010/00023 6240840884613392010/00018 6240840884613392010/00012 6240840884613392010/00014 6240840884613392010/00017 6240840884613392010/00016 6240840884613392010/00019 6240840884613392010/00011 6240840884613392010/00008 6240840884613392010/00007 6240840884613392010/00005 6240840884613392010/00004 6240840884613392010/00028 6022990694432174627/00013 6022990694432174627/00018 6022990694432174627/00017 6022990694432174627/00019 6022990694432174627/00002 6022990694432174627/00005 6213009496535316292/00031 6213009496535316292/00013 6213009496535316292/00026 6213009496535316292/00023 6213009496535316292/00038 6213009496535316292/00021 6213009496535316292/00014 6213009496535316292/00016 6213009496535316292/00011 6213009496535316292/00007 6213009496535316292/00025 5956923360001435701/00015 5956923360001435701/00006 5956923360001435701/00009 5956923360001435701/00010 5956923360001435701/00001 5956923360001435701/00012 5956923360001435701/00014 5956923360001435701/00017 5956923360001435701/00016 5956923360001435701/00005 5956923360001435701/00004 5654503116278459659/00003 5654503116278459659/00001 5654503116278459659/00007 5654503116278459659/00005 5654503116278459659/00004 5716385434575938217/00010 5716385434575938217/00013 5716385434575938217/00022 5716385434575938217/00018 5716385434575938217/00016 5716385434575938217/00019 5716385434575938217/00008 6254536246830093202/00003 6254536246830093202/00001 6254536246830093202/00004 5970683146727710991/00015 5970683146727710991/00032 5970683146727710991/00033 5970683146727710991/00024 5970683146727710991/00030 5970683146727710991/00031 5970683146727710991/00013 5970683146727710991/00022 5970683146727710991/00026 5970683146727710991/00036 5970683146727710991/00001 5970683146727710991/00023 5970683146727710991/00012 5970683146727710991/00016 5970683146727710991/00011 5970683146727710991/00008 5970683146727710991/00005 6327740528416575363/00015 6327740528416575363/00003 6327740528416575363/00006 6327740528416575363/00009 6327740528416575363/00010 6327740528416575363/00024 6327740528416575363/00013 6327740528416575363/00022 6327740528416575363/00026 6327740528416575363/00036 6327740528416575363/00001 6327740528416575363/00023 6327740528416575363/00038 6327740528416575363/00012 6327740528416575363/00021 6327740528416575363/00037 6327740528416575363/00039 6327740528416575363/00020 6327740528416575363/00017 6327740528416575363/00019 6327740528416575363/00011 6327740528416575363/00027 6327740528416575363/00002 6327740528416575363/00008 6327740528416575363/00007 6327740528416575363/00025 6327740528416575363/00005 6327740528416575363/00004 6327740528416575363/00028 5542717572968728466/00015 5542717572968728466/00013 5542717572968728466/00001 5542717572968728466/00012 5542717572968728466/00014 5542717572968728466/00016 5542717572968728466/00011 5542717572968728466/00007 5542717572968728466/00004 6124579126387788170/00029 6124579126387788170/00015 6124579126387788170/00010 6124579126387788170/00024 6124579126387788170/00031 6124579126387788170/00022 6124579126387788170/00026 6124579126387788170/00023 6124579126387788170/00018 6124579126387788170/00021 6124579126387788170/00014 6124579126387788170/00020 6124579126387788170/00017 6124579126387788170/00016 6124579126387788170/00019 6124579126387788170/00011 6124579126387788170/00027 6124579126387788170/00002 6124579126387788170/00008 6124579126387788170/00025 6124579126387788170/00028 5945422296576227957/00015 5945422296576227957/00003 5945422296576227957/00006 5945422296576227957/00032 5945422296576227957/00010 5945422296576227957/00030 5945422296576227957/00031 5945422296576227957/00013 5945422296576227957/00022 5945422296576227957/00026 5945422296576227957/00044 5945422296576227957/00036 5945422296576227957/00001 5945422296576227957/00038 5945422296576227957/00018 5945422296576227957/00012 5945422296576227957/00041 5945422296576227957/00021 5945422296576227957/00037 5945422296576227957/00039 5945422296576227957/00017 5945422296576227957/00019 5945422296576227957/00011 5945422296576227957/00034 5945422296576227957/00002 5945422296576227957/00008 5945422296576227957/00040 5945422296576227957/00005 5945422296576227957/00004 5956558717278005294/00003 5956558717278005294/00032 5956558717278005294/00009 5956558717278005294/00033 5956558717278005294/00024 5956558717278005294/00030 5956558717278005294/00013 5956558717278005294/00026 5956558717278005294/00044 5956558717278005294/00050 5956558717278005294/00036 5956558717278005294/00045 5956558717278005294/00049 5956558717278005294/00048 5956558717278005294/00012 5956558717278005294/00041 5956558717278005294/00021 5956558717278005294/00037 5956558717278005294/00047 5956558717278005294/00035 5956558717278005294/00051 5956558717278005294/00016 5956558717278005294/00034 5956558717278005294/00002 5956558717278005294/00008 5956558717278005294/00040 5956558717278005294/00043 5956558717278005294/00005 5956558717278005294/00028 5925008746515048282/00003 5925008746515048282/00006 5925008746515048282/00001 5925008746515048282/00011 5925008746515048282/00008 5925008746515048282/00007 5925008746515048282/00004 5957665530350186534/00015 5957665530350186534/00010 5957665530350186534/00013 5957665530350186534/00012 5957665530350186534/00016 5957665530350186534/00011 5957665530350186534/00007 5992163566665125113/00032 5992163566665125113/00010 5992163566665125113/00033 5992163566665125113/00030 5992163566665125113/00031 5992163566665125113/00044 5992163566665125113/00036 5992163566665125113/00001 5992163566665125113/00038 5992163566665125113/00037 5992163566665125113/00016 5992163566665125113/00011 5992163566665125113/00034 5992163566665125113/00002 5992163566665125113/00008 5992163566665125113/00025 5992163566665125113/00004 5672968469174139300/00006 5672968469174139300/00022 5672968469174139300/00026 5672968469174139300/00023 5672968469174139300/00018 5672968469174139300/00012 5672968469174139300/00021 5672968469174139300/00020 5672968469174139300/00027 5672968469174139300/00008 5672968469174139300/00025 6194002977760340900/00003 6194002977760340900/00011 6194002977760340900/00008 6115363844557415132/00003 6115363844557415132/00002 6115363844557415132/00005 6251201634221541303/00029 6251201634221541303/00015 6251201634221541303/00024 6251201634221541303/00031 6251201634221541303/00013 6251201634221541303/00001 6251201634221541303/00023 6251201634221541303/00012 6251201634221541303/00014 6251201634221541303/00035 6251201634221541303/00016 6251201634221541303/00011 6251201634221541303/00027 6251201634221541303/00034 6251201634221541303/00002 6251201634221541303/00008 6251201634221541303/00007 6251201634221541303/00025 6251201634221541303/00005 5881120193704210724/00029 5881120193704210724/00003 5881120193704210724/00006 5881120193704210724/00031 5881120193704210724/00022 5881120193704210724/00026 5881120193704210724/00001 5881120193704210724/00020 5881120193704210724/00019 5881120193704210724/00002 5881120193704210724/00025 5881120193704210724/00004 5881120193704210724/00028 6265355699075927737/00015 6265355699075927737/00003 6265355699075927737/00009 6265355699075927737/00010 6265355699075927737/00024 6265355699075927737/00031 6265355699075927737/00026 6265355699075927737/00001 6265355699075927737/00012 6265355699075927737/00021 6265355699075927737/00014 6265355699075927737/00017 6265355699075927737/00016 6265355699075927737/00028 6214872653348321239/00006 6214872653348321239/00009 6214872653348321239/00013 6214872653348321239/00022 6214872653348321239/00026 6214872653348321239/00023 6214872653348321239/00018 6214872653348321239/00014 6214872653348321239/00019 6214872653348321239/00027 6214872653348321239/00007 6214872653348321239/00025 6214872653348321239/00005 6214872653348321239/00028 6223658867945757282/00009 6223658867945757282/00001 6223658867945757282/00023 6223658867945757282/00020 6223658867945757282/00017 6223658867945757282/00016 6223658867945757282/00011 6223658867945757282/00008 6223658867945757282/00007 6223658867945757282/00004 5904599061924469448/00003 5904599061924469448/00009 5904599061924469448/00013 5904599061924469448/00001 5904599061924469448/00014 5904599061924469448/00002 5904599061924469448/00008 5904599061924469448/00007 6252383179724606883/00003 6252383179724606883/00010 6252383179724606883/00024 6252383179724606883/00013 6252383179724606883/00022 6252383179724606883/00026 6252383179724606883/00001 6252383179724606883/00023 6252383179724606883/00018 6252383179724606883/00021 6252383179724606883/00014 6252383179724606883/00020 6252383179724606883/00011 6252383179724606883/00002 6252383179724606883/00008 6252383179724606883/00007 6252383179724606883/00025 6252383179724606883/00005 5943754990271918838/00001 6221931002602573723/00003 6221931002602573723/00010 6221931002602573723/00013 6221931002602573723/00012 6221931002602573723/00020 6221931002602573723/00019 6221931002602573723/00011 6221931002602573723/00002 6221931002602573723/00005 6369259547770281088/00021 6369259547770281088/00020 6369259547770281088/00011 5540862147096854408/00009 5540862147096854408/00010 5540862147096854408/00001 5540862147096854408/00008 5540862147096854408/00004 6132453089931554846/00006 6132453089931554846/00009 6132453089931554846/00010 6132453089931554846/00001 6132453089931554846/00002 6132453089931554846/00008 6132453089931554846/00007 6132453089931554846/00005 6132453089931554846/00004 5966021389224563004/00001 5966021389224563004/00002 6139403206009858901/00015 6139403206009858901/00006 6139403206009858901/00009 6139403206009858901/00010 6139403206009858901/00024 6139403206009858901/00001 6139403206009858901/00023 6139403206009858901/00012 6139403206009858901/00021 6139403206009858901/00020 6139403206009858901/00016 6139403206009858901/00011 6139403206009858901/00002 6139403206009858901/00007 6139403206009858901/00025 5937204306152054604/00032 5937204306152054604/00009 5937204306152054604/00022 5937204306152054604/00001 5937204306152054604/00018 5937204306152054604/00012 5937204306152054604/00021 5937204306152054604/00020 5937204306152054604/00008 5937204306152054604/00007 5937204306152054604/00005 6129805242593572339/00006 6129805242593572339/00010 6129805242593572339/00017 6129805242593572339/00016 6129805242593572339/00002 6129805242593572339/00008 6129805242593572339/00005 5582794771801168835/00015 5582794771801168835/00001 5582794771801168835/00012 5582794771801168835/00014 5582794771801168835/00007 5940551803662622943/00006 5940551803662622943/00009 5940551803662622943/00012 5940551803662622943/00011 5940551803662622943/00002 5940551803662622943/00008 5940551803662622943/00005 5940551803662622943/00004 6254458937418828486/00003 6254458937418828486/00012 6254458937418828486/00002 5926508549094877801/00029 5926508549094877801/00009 5926508549094877801/00010 5926508549094877801/00030 5926508549094877801/00031 5926508549094877801/00022 5926508549094877801/00026 5926508549094877801/00001 5926508549094877801/00023 5926508549094877801/00012 5926508549094877801/00020 5926508549094877801/00035 5926508549094877801/00017 5926508549094877801/00027 5926508549094877801/00034 5926508549094877801/00002 5926508549094877801/00008 5926508549094877801/00007 5926508549094877801/00005 5926508549094877801/00004 5926508549094877801/00028 5903130183109303512/00003 5903130183109303512/00009 5903130183109303512/00010 5903130183109303512/00002 5903130183109303512/00005 5903130183109303512/00004 6114308571092851318/00003 6076790313775332605/00060 6076790313775332605/00029 6076790313775332605/00015 6076790313775332605/00046 6076790313775332605/00024 6076790313775332605/00053 6076790313775332605/00058 6076790313775332605/00062 6076790313775332605/00022 6076790313775332605/00026 6076790313775332605/00050 6076790313775332605/00036 6076790313775332605/00001 6076790313775332605/00049 6076790313775332605/00023 6076790313775332605/00038 6076790313775332605/00061 6076790313775332605/00021 6076790313775332605/00039 6076790313775332605/00035 6076790313775332605/00051 6076790313775332605/00019 6076790313775332605/00040 6076790313775332605/00004 5682422121689376091/00015 5682422121689376091/00003 5682422121689376091/00006 5682422121689376091/00024 5682422121689376091/00022 5682422121689376091/00026 5682422121689376091/00023 5682422121689376091/00018 5682422121689376091/00012 5682422121689376091/00021 5682422121689376091/00014 5682422121689376091/00019 5682422121689376091/00027 5682422121689376091/00002 5682422121689376091/00008 5682422121689376091/00007 5682422121689376091/00005 5682422121689376091/00004 6359951494646443684/00007 6203338089178108881/00003 6203338089178108881/00006 6203338089178108881/00009 6203338089178108881/00010 6203338089178108881/00011 6203338089178108881/00007 6203338089178108881/00005 6203338089178108881/00004 5558059625646754879/00006 5558059625646754879/00002 5558059625646754879/00005 5897440210435492534/00002 6007281422050366617/00029 6007281422050366617/00003 6007281422050366617/00032 6007281422050366617/00009 6007281422050366617/00013 6007281422050366617/00026 6007281422050366617/00023 6007281422050366617/00038 6007281422050366617/00021 6007281422050366617/00014 6007281422050366617/00035 6007281422050366617/00016 6007281422050366617/00019 6007281422050366617/00027 6007281422050366617/00034 6007281422050366617/00025 6179959723192533433/00004 5671113043302264673/00009 5671113043302264673/00010 5671113043302264673/00001 5671113043302264673/00002 5671113043302264673/00008 5671113043302264673/00007 5671113043302264673/00005 5671113043302264673/00004 6190415821074656936/00015 6190415821074656936/00006 6190415821074656936/00009 6190415821074656936/00010 6190415821074656936/00013 6190415821074656936/00001 6190415821074656936/00018 6190415821074656936/00012 6190415821074656936/00021 6190415821074656936/00014 6190415821074656936/00020 6190415821074656936/00016 6190415821074656936/00019 6190415821074656936/00011 6190415821074656936/00002 6190415821074656936/00008 6190415821074656936/00007 6190415821074656936/00005 6190415821074656936/00004 5707108305216594023/00029 5707108305216594023/00015 5707108305216594023/00009 5707108305216594023/00010 5707108305216594023/00024 5707108305216594023/00030 5707108305216594023/00031 5707108305216594023/00022 5707108305216594023/00001 5707108305216594023/00012 5707108305216594023/00014 5707108305216594023/00020 5707108305216594023/00016 5707108305216594023/00019 5707108305216594023/00005 5707108305216594023/00004 6128351825660602855/00013 6128351825660602855/00018 6128351825660602855/00014 6128351825660602855/00011 6128351825660602855/00002 6128351825660602855/00008 6128351825660602855/00005 5643215942224562626/00133 5971796402251471627/00001 6244833915708484349/00015 6244833915708484349/00003 6244833915708484349/00006 6244833915708484349/00013 6244833915708484349/00001 6244833915708484349/00012 6244833915708484349/00014 6244833915708484349/00017 6244833915708484349/00016 6244833915708484349/00019 6244833915708484349/00008 6244833915708484349/00005 6244833915708484349/00004 6146221896088994817/00002 6105750419258864270/00029 6105750419258864270/00015 6105750419258864270/00003 6105750419258864270/00006 6105750419258864270/00009 6105750419258864270/00024 6105750419258864270/00022 6105750419258864270/00044 6105750419258864270/00036 6105750419258864270/00001 6105750419258864270/00045 6105750419258864270/00023 6105750419258864270/00038 6105750419258864270/00042 6105750419258864270/00041 6105750419258864270/00021 6105750419258864270/00037 6105750419258864270/00047 6105750419258864270/00039 6105750419258864270/00020 6105750419258864270/00035 6105750419258864270/00051 6105750419258864270/00052 6105750419258864270/00016 6105750419258864270/00019 6105750419258864270/00027 6105750419258864270/00002 6105750419258864270/00008 6105750419258864270/00040 6105750419258864270/00007 6105750419258864270/00043 6105750419258864270/00005 6105750419258864270/00004 5732143669584960477/00003 5732143669584960477/00006 5732143669584960477/00010 5732143669584960477/00001 5732143669584960477/00011 5732143669584960477/00002 5732143669584960477/00008 5732143669584960477/00007 5732143669584960477/00004 6124973404385561002/00003 6124973404385561002/00006 6124973404385561002/00009 6124973404385561002/00010 6124973404385561002/00013 6124973404385561002/00012 6124973404385561002/00011 6124973404385561002/00002 6124973404385561002/00007 5929106145315500929/00015 5929106145315500929/00006 5929106145315500929/00009 5929106145315500929/00010 5929106145315500929/00024 5929106145315500929/00022 5929106145315500929/00012 5929106145315500929/00014 5929106145315500929/00020 5929106145315500929/00017 5929106145315500929/00011 5929106145315500929/00008 5929106145315500929/00025 6245301637646952377/00003 6245301637646952377/00010 6245301637646952377/00001 6245301637646952377/00002 6245301637646952377/00008 5542346487794353870/00003 5542346487794353870/00006 5542346487794353870/00009 5542346487794353870/00010 5542346487794353870/00001 5542346487794353870/00014 5542346487794353870/00002 5542346487794353870/00005 5992739521779520222/00003 5992739521779520222/00010 5992739521779520222/00011 5992739521779520222/00002 5992739521779520222/00007 6126203912515865063/00006 6126203912515865063/00009 6126203912515865063/00013 6126203912515865063/00012 6126203912515865063/00017 6126203912515865063/00011 6126203912515865063/00008 6126203912515865063/00007 6126203912515865063/00005 5947335704506634443/00015 5947335704506634443/00003 5947335704506634443/00032 5947335704506634443/00009 5947335704506634443/00010 5947335704506634443/00033 5947335704506634443/00024 5947335704506634443/00030 5947335704506634443/00022 5947335704506634443/00026 5947335704506634443/00001 5947335704506634443/00023 5947335704506634443/00018 5947335704506634443/00042 5947335704506634443/00041 5947335704506634443/00021 5947335704506634443/00037 5947335704506634443/00020 5947335704506634443/00035 5947335704506634443/00017 5947335704506634443/00016 5947335704506634443/00019 5947335704506634443/00011 5947335704506634443/00027 5947335704506634443/00034 5947335704506634443/00002 5947335704506634443/00008 5947335704506634443/00040 5947335704506634443/00025 5947335704506634443/00043 5947335704506634443/00005 5947335704506634443/00004 6324713864963081921/00015 6324713864963081921/00006 6324713864963081921/00024 6324713864963081921/00013 6324713864963081921/00026 6324713864963081921/00001 6324713864963081921/00021 6324713864963081921/00014 6324713864963081921/00017 6324713864963081921/00016 6324713864963081921/00019 6324713864963081921/00011 6324713864963081921/00008 6128425269601364456/00003 6128425269601364456/00002 6128425269601364456/00004 5896095026678447710/00004 5536038039829982468/00006 5536038039829982468/00010 5536038039829982468/00026 5536038039829982468/00001 5536038039829982468/00018 5536038039829982468/00021 5536038039829982468/00014 5536038039829982468/00017 5536038039829982468/00016 5536038039829982468/00019 6116438445374940080/00003 6116438445374940080/00009 6116438445374940080/00018 6116438445374940080/00020 6116438445374940080/00019 6116438445374940080/00011 6116438445374940080/00002 6116438445374940080/00008 6116438445374940080/00005 6090930205237687776/00003 6090930205237687776/00006 6090930205237687776/00032 6090930205237687776/00009 6090930205237687776/00010 6090930205237687776/00033 6090930205237687776/00024 6090930205237687776/00030 6090930205237687776/00031 6090930205237687776/00022 6090930205237687776/00026 6090930205237687776/00001 6090930205237687776/00023 6090930205237687776/00018 6090930205237687776/00012 6090930205237687776/00021 6090930205237687776/00014 6090930205237687776/00020 6090930205237687776/00017 6090930205237687776/00016 6090930205237687776/00019 6090930205237687776/00011 6090930205237687776/00027 6090930205237687776/00002 6090930205237687776/00007 6090930205237687776/00025 6090930205237687776/00028 6390299304063246834/00003 6113492956803278950/00015 6113492956803278950/00010 6113492956803278950/00031 6113492956803278950/00022 6113492956803278950/00036 6113492956803278950/00001 6113492956803278950/00038 6113492956803278950/00018 6113492956803278950/00012 6113492956803278950/00014 6113492956803278950/00039 6113492956803278950/00020 6113492956803278950/00035 6113492956803278950/00017 6113492956803278950/00016 6113492956803278950/00019 6113492956803278950/00002 6113492956803278950/00004 5945035749519587947/00007 5684930812086971130/00029 5684930812086971130/00003 5684930812086971130/00006 5684930812086971130/00032 5684930812086971130/00009 5684930812086971130/00010 5684930812086971130/00033 5684930812086971130/00053 5684930812086971130/00030 5684930812086971130/00013 5684930812086971130/00022 5684930812086971130/00044 5684930812086971130/00036 5684930812086971130/00001 5684930812086971130/00023 5684930812086971130/00038 5684930812086971130/00018 5684930812086971130/00021 5684930812086971130/00014 5684930812086971130/00037 5684930812086971130/00039 5684930812086971130/00020 5684930812086971130/00035 5684930812086971130/00017 5684930812086971130/00016 5684930812086971130/00019 5684930812086971130/00027 5684930812086971130/00034 5684930812086971130/00002 5684930812086971130/00040 5684930812086971130/00007 5684930812086971130/00004 6246318256405983779/00015 6246318256405983779/00006 6246318256405983779/00001 6246318256405983779/00017 6246318256405983779/00016 6246318256405983779/00011 6246318256405983779/00007 6224091800649194117/00029 6224091800649194117/00006 6224091800649194117/00032 6224091800649194117/00009 6224091800649194117/00033 6224091800649194117/00030 6224091800649194117/00031 6224091800649194117/00013 6224091800649194117/00026 6224091800649194117/00036 6224091800649194117/00042 6224091800649194117/00041 6224091800649194117/00014 6224091800649194117/00037 6224091800649194117/00020 6224091800649194117/00035 6224091800649194117/00027 6224091800649194117/00002 6224091800649194117/00008 6224091800649194117/00028 6027791608875644805/00015 6027791608875644805/00010 6027791608875644805/00013 6027791608875644805/00001 6027791608875644805/00012 6027791608875644805/00014 6027791608875644805/00011 6027791608875644805/00004 6097214171758058800/00015 6097214171758058800/00003 6097214171758058800/00009 6097214171758058800/00010 6097214171758058800/00022 6097214171758058800/00012 6097214171758058800/00014 6097214171758058800/00002 6097214171758058800/00008 6097214171758058800/00007 6176983310856403728/00006 6176983310856403728/00018 6176983310856403728/00012 6176983310856403728/00014 6176983310856403728/00020 6176983310856403728/00017 6176983310856403728/00016 6176983310856403728/00011 6176983310856403728/00002 6176983310856403728/00008 6176983310856403728/00007 6176983310856403728/00005 5535864093654496929/00003 5535864093654496929/00006 5535864093654496929/00009 5535864093654496929/00010 5535864093654496929/00013 5535864093654496929/00008 5535864093654496929/00004 6164033984458952747/00029 6164033984458952747/00015 6164033984458952747/00046 6164033984458952747/00056 6164033984458952747/00032 6164033984458952747/00009 6164033984458952747/00010 6164033984458952747/00033 6164033984458952747/00057 6164033984458952747/00024 6164033984458952747/00053 6164033984458952747/00030 6164033984458952747/00031 6164033984458952747/00022 6164033984458952747/00026 6164033984458952747/00044 6164033984458952747/00050 6164033984458952747/00036 6164033984458952747/00001 6164033984458952747/00045 6164033984458952747/00049 6164033984458952747/00038 6164033984458952747/00048 6164033984458952747/00042 6164033984458952747/00012 6164033984458952747/00041 6164033984458952747/00021 6164033984458952747/00014 6164033984458952747/00037 6164033984458952747/00047 6164033984458952747/00039 6164033984458952747/00020 6164033984458952747/00035 6164033984458952747/00051 6164033984458952747/00055 6164033984458952747/00019 6164033984458952747/00011 6164033984458952747/00027 6164033984458952747/00034 6164033984458952747/00002 6164033984458952747/00008 6164033984458952747/00040 6164033984458952747/00007 6164033984458952747/00025 6164033984458952747/00054 6164033984458952747/00043 6164033984458952747/00005 5962874896183571942/00060 5962874896183571942/00029 5962874896183571942/00003 5962874896183571942/00006 5962874896183571942/00046 5962874896183571942/00032 5962874896183571942/00070 5962874896183571942/00073 5962874896183571942/00033 5962874896183571942/00057 5962874896183571942/00024 5962874896183571942/00058 5962874896183571942/00031 5962874896183571942/00086 5962874896183571942/00013 5962874896183571942/00094 5962874896183571942/00077 5962874896183571942/00093 5962874896183571942/00050 5962874896183571942/00063 5962874896183571942/00001 5962874896183571942/00045 5962874896183571942/00066 5962874896183571942/00064 5962874896183571942/00072 5962874896183571942/00023 5962874896183571942/00048 5962874896183571942/00042 5962874896183571942/00041 5962874896183571942/00065 5962874896183571942/00061 5962874896183571942/00075 5962874896183571942/00037 5962874896183571942/00047 5962874896183571942/00035 5962874896183571942/00017 5962874896183571942/00076 5962874896183571942/00052 5962874896183571942/00091 5962874896183571942/00055 5962874896183571942/00095 5962874896183571942/00084 5962874896183571942/00027 5962874896183571942/00067 5962874896183571942/00034 5962874896183571942/00002 5962874896183571942/00087 5962874896183571942/00068 5962874896183571942/00097 5962874896183571942/00025 5962874896183571942/00054 5962874896183571942/00043 5962874896183571942/00074 5962874896183571942/00004 5962874896183571942/00028 5947293184330429588/00060 5947293184330429588/00015 5947293184330429588/00003 5947293184330429588/00046 5947293184330429588/00056 5947293184330429588/00032 5947293184330429588/00009 5947293184330429588/00010 5947293184330429588/00057 5947293184330429588/00024 5947293184330429588/00062 5947293184330429588/00013 5947293184330429588/00022 5947293184330429588/00063 5947293184330429588/00049 5947293184330429588/00018 5947293184330429588/00042 5947293184330429588/00012 5947293184330429588/00021 5947293184330429588/00037 5947293184330429588/00039 5947293184330429588/00020 5947293184330429588/00051 5947293184330429588/00017 5947293184330429588/00016 5947293184330429588/00011 5947293184330429588/00034 5947293184330429588/00008 5947293184330429588/00040 5947293184330429588/00025 5947293184330429588/00005 5947293184330429588/00028 5669333638351531538/00006 5669333638351531538/00009 5669333638351531538/00010 5669333638351531538/00013 5669333638351531538/00018 5669333638351531538/00012 5669333638351531538/00014 5669333638351531538/00017 5669333638351531538/00016 5669333638351531538/00011 5669333638351531538/00002 5669333638351531538/00007 5669333638351531538/00005 6103821549446229410/00006 6103821549446229410/00004 6005170875121139107/00006 6005170875121139107/00001 6005170875121139107/00002 6005170875121139107/00008 6005170875121139107/00007 6005170875121139107/00005 6005170875121139107/00004 5587012000189116246/00003 5587012000189116246/00001 5587012000189116246/00002 5587012000189116246/00005 5587012000189116246/00004 5923168782525442292/00015 5923168782525442292/00003 5923168782525442292/00009 5923168782525442292/00026 5923168782525442292/00001 5923168782525442292/00021 5923168782525442292/00014 5923168782525442292/00017 5923168782525442292/00016 5923168782525442292/00027 5923168782525442292/00028 6218993244972756022/00009 6218993244972756022/00001 6218993244972756022/00004 5974289630766162410/00015 5974289630766162410/00009 5974289630766162410/00018 5974289630766162410/00012 5974289630766162410/00014 5974289630766162410/00017 5974289630766162410/00016 5974289630766162410/00002 5974289630766162410/00007 6194053228877704105/00029 6194053228877704105/00006 6194053228877704105/00009 6194053228877704105/00010 6194053228877704105/00024 6194053228877704105/00030 6194053228877704105/00031 6194053228877704105/00013 6194053228877704105/00026 6194053228877704105/00036 6194053228877704105/00023 6194053228877704105/00038 6194053228877704105/00018 6194053228877704105/00012 6194053228877704105/00021 6194053228877704105/00014 6194053228877704105/00039 6194053228877704105/00020 6194053228877704105/00035 6194053228877704105/00017 6194053228877704105/00016 6194053228877704105/00019 6194053228877704105/00011 6194053228877704105/00027 6194053228877704105/00002 6194053228877704105/00008 6194053228877704105/00025 6194053228877704105/00005 6194053228877704105/00004 6194053228877704105/00028 5989504122915502641/00003 5989504122915502641/00013 5989504122915502641/00014 5989504122915502641/00016 5989504122915502641/00002 5989504122915502641/00008 5989504122915502641/00004 5965831981166808482/00029 5965831981166808482/00003 5965831981166808482/00032 5965831981166808482/00009 5965831981166808482/00033 5965831981166808482/00031 5965831981166808482/00044 5965831981166808482/00036 5965831981166808482/00023 5965831981166808482/00018 5965831981166808482/00042 5965831981166808482/00012 5965831981166808482/00020 5965831981166808482/00017 5965831981166808482/00019 5965831981166808482/00034 5965831981166808482/00002 5965831981166808482/00008 5965831981166808482/00007 5965831981166808482/00005 6150324448980624706/00003 6150324448980624706/00001 6150324448980624706/00007 6150324448980624706/00005 6150324448980624706/00004 5935719965454554752/00010 5935719965454554752/00030 5935719965454554752/00031 5935719965454554752/00012 5935719965454554752/00020 5935719965454554752/00016 5935719965454554752/00019 5935719965454554752/00008 5935719965454554752/00025 5935719965454554752/00028 6050450997335875180/00006 6050450997335875180/00009 6050450997335875180/00010 6050450997335875180/00002 6050450997335875180/00005 5934254952109889096/00015 5934254952109889096/00006 5934254952109889096/00009 5934254952109889096/00010 5934254952109889096/00014 5934254952109889096/00016 5934254952109889096/00008 5934254952109889096/00007 5934254952109889096/00005 5953126179415105574/00015 5953126179415105574/00013 5953126179415105574/00018 5953126179415105574/00016 5953126179415105574/00019 5953126179415105574/00008 5953126179415105574/00007 6119809135708779685/00029 6119809135708779685/00015 6119809135708779685/00003 6119809135708779685/00006 6119809135708779685/00010 6119809135708779685/00013 6119809135708779685/00036 6119809135708779685/00012 6119809135708779685/00037 6119809135708779685/00017 6119809135708779685/00016 6119809135708779685/00019 6119809135708779685/00002 5992198355900220475/00003 5992198355900220475/00006 5992198355900220475/00001 5992198355900220475/00002 5992198355900220475/00008 5992198355900220475/00007 5992198355900220475/00005 5992198355900220475/00004 6251927054197835730/00015 6251927054197835730/00006 6251927054197835730/00009 6251927054197835730/00022 6251927054197835730/00001 6251927054197835730/00018 6251927054197835730/00012 6251927054197835730/00017 6251927054197835730/00016 6251927054197835730/00019 6251927054197835730/00002 6251927054197835730/00008 6279766173217041953/00029 6279766173217041953/00015 6279766173217041953/00006 6279766173217041953/00010 6279766173217041953/00024 6279766173217041953/00001 6279766173217041953/00018 6279766173217041953/00014 6279766173217041953/00017 6279766173217041953/00016 6279766173217041953/00008 6279766173217041953/00007 6279766173217041953/00005 6279766173217041953/00028 5537369050195015499/00003 5537369050195015499/00009 5537369050195015499/00002 6247234373060640285/00029 6247234373060640285/00003 6247234373060640285/00006 6247234373060640285/00046 6247234373060640285/00032 6247234373060640285/00070 6247234373060640285/00009 6247234373060640285/00010 6247234373060640285/00033 6247234373060640285/00057 6247234373060640285/00024 6247234373060640285/00078 6247234373060640285/00030 6247234373060640285/00071 6247234373060640285/00058 6247234373060640285/00013 6247234373060640285/00069 6247234373060640285/00026 6247234373060640285/00077 6247234373060640285/00050 6247234373060640285/00036 6247234373060640285/00063 6247234373060640285/00045 6247234373060640285/00023 6247234373060640285/00038 6247234373060640285/00088 6247234373060640285/00048 6247234373060640285/00085 6247234373060640285/00042 6247234373060640285/00041 6247234373060640285/00061 6247234373060640285/00083 6247234373060640285/00021 6247234373060640285/00075 6247234373060640285/00079 6247234373060640285/00047 6247234373060640285/00039 6247234373060640285/00020 6247234373060640285/00035 6247234373060640285/00051 6247234373060640285/00017 6247234373060640285/00076 6247234373060640285/00080 6247234373060640285/00052 6247234373060640285/00055 6247234373060640285/00016 6247234373060640285/00059 6247234373060640285/00019 6247234373060640285/00084 6247234373060640285/00027 6247234373060640285/00067 6247234373060640285/00082 6247234373060640285/00089 6247234373060640285/00008 6247234373060640285/00087 6247234373060640285/00040 6247234373060640285/00007 6247234373060640285/00025 6247234373060640285/00054 6247234373060640285/00043 6247234373060640285/00005 6247234373060640285/00074 6247234373060640285/00004 6247234373060640285/00028 6233782535359139406/00015 6233782535359139406/00046 6233782535359139406/00032 6233782535359139406/00010 6233782535359139406/00033 6233782535359139406/00030 6233782535359139406/00031 6233782535359139406/00013 6233782535359139406/00022 6233782535359139406/00044 6233782535359139406/00036 6233782535359139406/00001 6233782535359139406/00045 6233782535359139406/00023 6233782535359139406/00018 6233782535359139406/00021 6233782535359139406/00047 6233782535359139406/00039 6233782535359139406/00020 6233782535359139406/00035 6233782535359139406/00011 6233782535359139406/00007 6233782535359139406/00004 6233782535359139406/00028 5995132248060120504/00015 5995132248060120504/00006 5995132248060120504/00022 5995132248060120504/00026 5995132248060120504/00014 5995132248060120504/00011 5995132248060120504/00008 5585392368021792024/00006 5585392368021792024/00009 5585392368021792024/00010 5585392368021792024/00013 5585392368021792024/00001 5585392368021792024/00018 5585392368021792024/00012 5585392368021792024/00014 5585392368021792024/00017 5585392368021792024/00002 5585392368021792024/00008 5585392368021792024/00005 6002225386549537803/00003 6002225386549537803/00002 6079649473504322296/00020 6079649473504322296/00002 6079649473504322296/00008 6079649473504322296/00004 5940520879898091739/00006 5940520879898091739/00009 5940520879898091739/00010 5940520879898091739/00013 5940520879898091739/00001 5940520879898091739/00012 5940520879898091739/00014 5940520879898091739/00008 5940520879898091739/00007 5940520879898091739/00005 6177733212146352643/00003 6177733212146352643/00010 6177733212146352643/00001 6177733212146352643/00011 5988031378629640321/00001 5988031378629640321/00002 6058266978821208038/00003 6058266978821208038/00010 6058266978821208038/00024 6058266978821208038/00030 6058266978821208038/00031 6058266978821208038/00013 6058266978821208038/00022 6058266978821208038/00026 6058266978821208038/00023 6058266978821208038/00020 6058266978821208038/00017 6058266978821208038/00016 6058266978821208038/00002 6058266978821208038/00025 5956983919040309338/00003 5956983919040309338/00006 5956983919040309338/00002 6284605742496604171/00060 6284605742496604171/00003 6284605742496604171/00046 6284605742496604171/00056 6284605742496604171/00032 6284605742496604171/00070 6284605742496604171/00009 6284605742496604171/00010 6284605742496604171/00033 6284605742496604171/00024 6284605742496604171/00030 6284605742496604171/00031 6284605742496604171/00013 6284605742496604171/00026 6284605742496604171/00044 6284605742496604171/00050 6284605742496604171/00063 6284605742496604171/00001 6284605742496604171/00045 6284605742496604171/00072 6284605742496604171/00023 6284605742496604171/00048 6284605742496604171/00042 6284605742496604171/00041 6284605742496604171/00065 6284605742496604171/00061 6284605742496604171/00047 6284605742496604171/00039 6284605742496604171/00020 6284605742496604171/00051 6284605742496604171/00055 6284605742496604171/00016 6284605742496604171/00059 6284605742496604171/00019 6284605742496604171/00011 6284605742496604171/00034 6284605742496604171/00002 6284605742496604171/00008 6284605742496604171/00040 6284605742496604171/00025 6284605742496604171/00005 6284605742496604171/00004 6253028713309196084/00003 6253028713309196084/00001 6253028713309196084/00008 6063438978438970740/00003 6063438978438970740/00009 6063438978438970740/00001 6063438978438970740/00002 5954641443877070848/00015 5954641443877070848/00003 5954641443877070848/00006 5954641443877070848/00009 5954641443877070848/00010 5954641443877070848/00013 5954641443877070848/00012 5954641443877070848/00014 5954641443877070848/00020 5954641443877070848/00019 5954641443877070848/00011 5954641443877070848/00002 5954641443877070848/00005 5954641443877070848/00004 5576115238662424730/00003 5576115238662424730/00009 5576115238662424730/00010 5576115238662424730/00013 5576115238662424730/00001 5576115238662424730/00018 5576115238662424730/00011 5576115238662424730/00002 5576115238662424730/00008 5576115238662424730/00007 5946585803216712614/00015 5946585803216712614/00003 5946585803216712614/00009 5946585803216712614/00010 5946585803216712614/00013 5946585803216712614/00001 5946585803216712614/00012 5946585803216712614/00014 5946585803216712614/00016 5946585803216712614/00011 5946585803216712614/00008 5946585803216712614/00007 6359564947589739760/00035 6359564947589739760/00043 6036068869978978350/00006 6036068869978978350/00001 6036068869978978350/00011 6036068869978978350/00002 6126956390786065754/00022 6126956390786065754/00018 6126956390786065754/00014 6126956390786065754/00017 6126956390786065754/00005 5947633345740208898/00003 5947633345740208898/00009 5947633345740208898/00016 5947633345740208898/00007 5903887815340316127/00002 6335676339489461610/00070 6335676339489461610/00030 6335676339489461610/00071 6335676339489461610/00031 6335676339489461610/00038 6335676339489461610/00042 6335676339489461610/00079 6335676339489461610/00014 6335676339489461610/00011 6335676339489461610/00002 6354988230439182363/00107 6354988230439182363/00032 6354988230439182363/00070 6354988230439182363/00141 6354988230439182363/00053 6354988230439182363/00062 6354988230439182363/00179 6354988230439182363/00099 6354988230439182363/00085 6354988230439182363/00181 6354988230439182363/00027 6354988230439182363/00182 6325894121976022773/00003 6325894121976022773/00006 6325894121976022773/00009 6325894121976022773/00010 6325894121976022773/00013 6325894121976022773/00014 6325894121976022773/00016 6325894121976022773/00011 6325894121976022773/00008 6325894121976022773/00005 6325894121976022773/00004 6309468449049188125/00006 6309468449049188125/00024 6309468449049188125/00026 6309468449049188125/00018 6309468449049188125/00021 6309468449049188125/00020 6309468449049188125/00017 6309468449049188125/00016 6309468449049188125/00007 6309468449049188125/00004 5677126427013402045/00029 5677126427013402045/00032 5677126427013402045/00009 5677126427013402045/00010 5677126427013402045/00024 5677126427013402045/00031 5677126427013402045/00013 5677126427013402045/00022 5677126427013402045/00001 5677126427013402045/00023 5677126427013402045/00018 5677126427013402045/00012 5677126427013402045/00021 5677126427013402045/00014 5677126427013402045/00020 5677126427013402045/00017 5677126427013402045/00016 5677126427013402045/00019 5677126427013402045/00011 5677126427013402045/00027 5677126427013402045/00002 5677126427013402045/00007 5677126427013402045/00025 5677126427013402045/00005 5677126427013402045/00004 5677126427013402045/00028 5977809785961966261/00029 5977809785961966261/00015 5977809785961966261/00006 5977809785961966261/00010 5977809785961966261/00026 5977809785961966261/00018 5977809785961966261/00007 5977809785961966261/00004 6360322579951237696/00006 6360322579951237696/00001 6360322579951237696/00023 6360322579951237696/00017 6360322579951237696/00016 6360322579951237696/00027 6360322579951237696/00002 6360322579951237696/00025 6360322579951237696/00004 6348780284709539256/00003 6348780284709539256/00026 6348780284709539256/00016 6348780284709539256/00019 6094269971676647304/00029 6094269971676647304/00003 6094269971676647304/00001 6094269971676647304/00034 6094269971676647304/00004 6094269971676647304/00028 5718983030796562115/00015 5718983030796562115/00003 5718983030796562115/00013 5718983030796562115/00001 5718983030796562115/00014 5718983030796562115/00020 5718983030796562115/00019 5718983030796562115/00005 5718983030796562115/00004 6129167439950051536/00032 6129167439950051536/00010 6129167439950051536/00024 6129167439950051536/00031 6129167439950051536/00013 6129167439950051536/00023 6129167439950051536/00018 6129167439950051536/00020 6129167439950051536/00017 6129167439950051536/00016 6129167439950051536/00019 6129167439950051536/00027 6129167439950051536/00002 6129167439950051536/00025 6129167439950051536/00005 6104192634620604249/00003 6104192634620604249/00006 6104192634620604249/00005 6104192634620604249/00004 6230303611849378443/00060 6230303611849378443/00029 6230303611849378443/00015 6230303611849378443/00003 6230303611849378443/00006 6230303611849378443/00046 6230303611849378443/00032 6230303611849378443/00070 6230303611849378443/00009 6230303611849378443/00010 6230303611849378443/00033 6230303611849378443/00057 6230303611849378443/00053 6230303611849378443/00078 6230303611849378443/00030 6230303611849378443/00071 6230303611849378443/00058 6230303611849378443/00062 6230303611849378443/00031 6230303611849378443/00086 6230303611849378443/00013 6230303611849378443/00069 6230303611849378443/00094 6230303611849378443/00026 6230303611849378443/00077 6230303611849378443/00093 6230303611849378443/00050 6230303611849378443/00036 6230303611849378443/00063 6230303611849378443/00001 6230303611849378443/00064 6230303611849378443/00049 6230303611849378443/00072 6230303611849378443/00038 6230303611849378443/00088 6230303611849378443/00048 6230303611849378443/00018 6230303611849378443/00085 6230303611849378443/00041 6230303611849378443/00065 6230303611849378443/00061 6230303611849378443/00083 6230303611849378443/00021 6230303611849378443/00079 6230303611849378443/00014 6230303611849378443/00037 6230303611849378443/00047 6230303611849378443/00039 6230303611849378443/00020 6230303611849378443/00035 6230303611849378443/00051 6230303611849378443/00017 6230303611849378443/00052 6230303611849378443/00016 6230303611849378443/00095 6230303611849378443/00059 6230303611849378443/00027 6230303611849378443/00067 6230303611849378443/00034 6230303611849378443/00081 6230303611849378443/00082 6230303611849378443/00002 6230303611849378443/00092 6230303611849378443/00087 6230303611849378443/00040 6230303611849378443/00068 6230303611849378443/00025 6230303611849378443/00054 6230303611849378443/00043 6230303611849378443/00074 6230303611849378443/00004 5989565970444568202/00060 5989565970444568202/00029 5989565970444568202/00003 5989565970444568202/00032 5989565970444568202/00010 5989565970444568202/00057 5989565970444568202/00024 5989565970444568202/00078 5989565970444568202/00030 5989565970444568202/00058 5989565970444568202/00062 5989565970444568202/00031 5989565970444568202/00086 5989565970444568202/00069 5989565970444568202/00026 5989565970444568202/00077 5989565970444568202/00050 5989565970444568202/00036 5989565970444568202/00063 5989565970444568202/00001 5989565970444568202/00064 5989565970444568202/00049 5989565970444568202/00038 5989565970444568202/00042 5989565970444568202/00012 5989565970444568202/00041 5989565970444568202/00065 5989565970444568202/00061 5989565970444568202/00021 5989565970444568202/00075 5989565970444568202/00079 5989565970444568202/00014 5989565970444568202/00037 5989565970444568202/00020 5989565970444568202/00035 5989565970444568202/00076 5989565970444568202/00080 5989565970444568202/00052 5989565970444568202/00055 5989565970444568202/00059 5989565970444568202/00011 5989565970444568202/00027 5989565970444568202/00081 5989565970444568202/00082 5989565970444568202/00008 5989565970444568202/00087 5989565970444568202/00040 5989565970444568202/00054 5989565970444568202/00005 5989565970444568202/00074 5989565970444568202/00004 5989565970444568202/00028 6124648704857919952/00006 6124648704857919952/00032 6124648704857919952/00009 6124648704857919952/00033 6124648704857919952/00030 6124648704857919952/00022 6124648704857919952/00012 6124648704857919952/00014 6124648704857919952/00020 6124648704857919952/00017 6124648704857919952/00034 6124648704857919952/00002 6124648704857919952/00008 6124648704857919952/00007 6124648704857919952/00025 6124648704857919952/00005 6348834401297406331/00006 6348834401297406331/00046 6348834401297406331/00023 6348834401297406331/00051 6348834401297406331/00002 6213751666884065165/00015 6213751666884065165/00009 6213751666884065165/00010 6213751666884065165/00024 6213751666884065165/00030 6213751666884065165/00022 6213751666884065165/00023 6213751666884065165/00018 6213751666884065165/00012 6213751666884065165/00021 6213751666884065165/00017 6213751666884065165/00019 6213751666884065165/00011 6213751666884065165/00025 6213751666884065165/00004 5992124911959461099/00015 5992124911959461099/00003 5992124911959461099/00006 5992124911959461099/00009 5992124911959461099/00010 5992124911959461099/00024 5992124911959461099/00013 5992124911959461099/00026 5992124911959461099/00001 5992124911959461099/00023 5992124911959461099/00018 5992124911959461099/00014 5992124911959461099/00020 5992124911959461099/00017 5992124911959461099/00016 5992124911959461099/00019 5992124911959461099/00011 5992124911959461099/00027 5992124911959461099/00002 5992124911959461099/00008 5992124911959461099/00007 5992124911959461099/00025 5992124911959461099/00005 5992124911959461099/00004 6344547594439294233/00037 6264501429950344525/00003 6264501429950344525/00012 6264501429950344525/00016 6264501429950344525/00019 6264501429950344525/00002 5986299647815885561/00003 5986299647815885561/00032 5986299647815885561/00010 5986299647815885561/00024 5986299647815885561/00030 5986299647815885561/00013 5986299647815885561/00036 5986299647815885561/00001 5986299647815885561/00038 5986299647815885561/00018 5986299647815885561/00041 5986299647815885561/00037 5986299647815885561/00039 5986299647815885561/00020 5986299647815885561/00017 5986299647815885561/00027 5986299647815885561/00034 5986299647815885561/00002 5986299647815885561/00040 5986299647815885561/00005 5986299647815885561/00004 6282363769437661444/00029 6282363769437661444/00015 6282363769437661444/00003 6282363769437661444/00032 6282363769437661444/00010 6282363769437661444/00013 6282363769437661444/00022 6282363769437661444/00012 6282363769437661444/00021 6282363769437661444/00020 6282363769437661444/00017 6282363769437661444/00016 6282363769437661444/00019 6282363769437661444/00011 6282363769437661444/00002 6282363769437661444/00008 6282363769437661444/00007 6282363769437661444/00005 6349213217412979095/00010 6349213217412979095/00007 6110876033229894911/00015 6110876033229894911/00009 6110876033229894911/00010 6110876033229894911/00001 6110876033229894911/00014 6110876033229894911/00017 6110876033229894911/00016 6110876033229894911/00002 6110876033229894911/00008 6110876033229894911/00004 6101223953225601745/00015 6101223953225601745/00006 6101223953225601745/00013 6101223953225601745/00001 6101223953225601745/00014 6101223953225601745/00002 6101223953225601745/00008 5983628607654568429/00003 5983628607654568429/00002 6225815800521747234/00015 6225815800521747234/00006 6225815800521747234/00032 6225815800521747234/00009 6225815800521747234/00010 6225815800521747234/00033 6225815800521747234/00024 6225815800521747234/00030 6225815800521747234/00031 6225815800521747234/00022 6225815800521747234/00045 6225815800521747234/00023 6225815800521747234/00042 6225815800521747234/00041 6225815800521747234/00021 6225815800521747234/00047 6225815800521747234/00035 6225815800521747234/00016 6225815800521747234/00019 6225815800521747234/00011 6225815800521747234/00034 6225815800521747234/00008 6225815800521747234/00040 6225815800521747234/00025 6225815800521747234/00043 6225815800521747234/00004 6221923271661375985/00003 6221923271661375985/00009 6221923271661375985/00001 6221923271661375985/00002 6221923271661375985/00005 6221923271661375985/00004 6264180595893270664/00015 6264180595893270664/00013 6264180595893270664/00001 6264180595893270664/00014 6264180595893270664/00004 6228958428092234131/00029 6228958428092234131/00015 6228958428092234131/00010 6228958428092234131/00024 6228958428092234131/00013 6228958428092234131/00022 6228958428092234131/00001 6228958428092234131/00018 6228958428092234131/00014 6228958428092234131/00020 6228958428092234131/00017 6228958428092234131/00027 6228958428092234131/00002 6228958428092234131/00025 6228958428092234131/00004 6334331155732352379/00002 6080168735050402315/00001 6080168735050402315/00004 6117308176252322359/00003 6117308176252322359/00018 6117308176252322359/00012 6117308176252322359/00020 6117308176252322359/00016 6117308176252322359/00002 6117308176252322359/00005 6117308176252322359/00004 6225997477638430969/00015 6225997477638430969/00003 6225997477638430969/00009 6225997477638430969/00010 6225997477638430969/00013 6225997477638430969/00022 6225997477638430969/00012 6225997477638430969/00014 6225997477638430969/00011 6225949803501445364/00006 6225949803501445364/00010 6225949803501445364/00024 6225949803501445364/00053 6225949803501445364/00030 6225949803501445364/00022 6225949803501445364/00026 6225949803501445364/00044 6225949803501445364/00001 6225949803501445364/00023 6225949803501445364/00038 6225949803501445364/00042 6225949803501445364/00012 6225949803501445364/00037 6225949803501445364/00035 6225949803501445364/00055 6225949803501445364/00019 6225949803501445364/00011 6225949803501445364/00040 6225949803501445364/00007 6225949803501445364/00043 6225949803501445364/00028 6257056533639451638/00015 6257056533639451638/00006 6257056533639451638/00022 6257056533639451638/00001 6257056533639451638/00021 6257056533639451638/00020 6257056533639451638/00017 6257056533639451638/00016 6257056533639451638/00008 5860018589882241145/00006 5860018589882241145/00010 5860018589882241145/00001 5860018589882241145/00007 5860018589882241145/00005 5860018589882241145/00004 6116133073200202315/00003 6116133073200202315/00006 6116133073200202315/00009 6116133073200202315/00010 6116133073200202315/00013 6116133073200202315/00001 6116133073200202315/00012 6116133073200202315/00017 6116133073200202315/00016 6116133073200202315/00002 6116133073200202315/00008 6116133073200202315/00007 6116133073200202315/00005 6116133073200202315/00004 6077431981889418654/00029 6077431981889418654/00018 6077431981889418654/00021 6077431981889418654/00014 6077431981889418654/00019 6077431981889418654/00025 6259348757685329073/00060 6259348757685329073/00029 6259348757685329073/00009 6259348757685329073/00010 6259348757685329073/00033 6259348757685329073/00058 6259348757685329073/00062 6259348757685329073/00031 6259348757685329073/00044 6259348757685329073/00050 6259348757685329073/00036 6259348757685329073/00045 6259348757685329073/00038 6259348757685329073/00042 6259348757685329073/00012 6259348757685329073/00041 6259348757685329073/00014 6259348757685329073/00020 6259348757685329073/00051 6259348757685329073/00067 6259348757685329073/00002 6259348757685329073/00008 6259348757685329073/00040 6259348757685329073/00025 6259348757685329073/00043 5998850830744999379/00015 5998850830744999379/00003 5998850830744999379/00024 5998850830744999379/00022 5998850830744999379/00026 5998850830744999379/00001 5998850830744999379/00018 5998850830744999379/00021 5998850830744999379/00014 5998850830744999379/00020 5998850830744999379/00017 5998850830744999379/00016 5998850830744999379/00019 5998850830744999379/00002 5998850830744999379/00008 5998850830744999379/00025 5998850830744999379/00005 5579219211527246450/00003 5971827326015299843/00003 5971827326015299843/00012 5971827326015299843/00014 5971827326015299843/00020 5971827326015299843/00007 6222665442010127905/00009 6222665442010127905/00010 6222665442010127905/00013 6222665442010127905/00014 6222665442010127905/00020 5987128147137777425/00015 5987128147137777425/00006 5987128147137777425/00009 5987128147137777425/00010 5987128147137777425/00030 5987128147137777425/00031 5987128147137777425/00022 5987128147137777425/00026 5987128147137777425/00023 5987128147137777425/00018 5987128147137777425/00012 5987128147137777425/00021 5987128147137777425/00020 5987128147137777425/00017 5987128147137777425/00016 5987128147137777425/00019 5987128147137777425/00011 5987128147137777425/00027 5987128147137777425/00002 5987128147137777425/00007 5987128147137777425/00025 5987128147137777425/00005 5987128147137777425/00004 5987128147137777425/00028 6210806178442879669/00029 6210806178442879669/00015 6210806178442879669/00006 6210806178442879669/00046 6210806178442879669/00009 6210806178442879669/00010 6210806178442879669/00024 6210806178442879669/00030 6210806178442879669/00031 6210806178442879669/00036 6210806178442879669/00045 6210806178442879669/00023 6210806178442879669/00018 6210806178442879669/00042 6210806178442879669/00012 6210806178442879669/00041 6210806178442879669/00021 6210806178442879669/00037 6210806178442879669/00019 6210806178442879669/00011 6210806178442879669/00027 6210806178442879669/00034 6210806178442879669/00002 6210806178442879669/00007 6210806178442879669/00025 6210806178442879669/00005 6210806178442879669/00028 6257427618813826066/00010 6257427618813826066/00001 6257427618813826066/00012 6257427618813826066/00014 6257427618813826066/00004 5982507621190309020/00029 5982507621190309020/00003 5982507621190309020/00032 5982507621190309020/00009 5982507621190309020/00033 5982507621190309020/00030 5982507621190309020/00031 5982507621190309020/00022 5982507621190309020/00026 5982507621190309020/00036 5982507621190309020/00023 5982507621190309020/00018 5982507621190309020/00021 5982507621190309020/00014 5982507621190309020/00020 5982507621190309020/00016 5982507621190309020/00027 5982507621190309020/00002 5982507621190309020/00008 5982507621190309020/00005 5982507621190309020/00028 6173666737111168345/00010 6173666737111168345/00001 6173666737111168345/00012 5943810395350038636/00015 5943810395350038636/00003 5943810395350038636/00098 5943810395350038636/00070 5943810395350038636/00009 5943810395350038636/00073 5943810395350038636/00112 5943810395350038636/00033 5943810395350038636/00024 5943810395350038636/00053 5943810395350038636/00030 5943810395350038636/00071 5943810395350038636/00058 5943810395350038636/00031 5943810395350038636/00086 5943810395350038636/00013 5943810395350038636/00096 5943810395350038636/00044 5943810395350038636/00077 5943810395350038636/00103 5943810395350038636/00050 5943810395350038636/00105 5943810395350038636/00110 5943810395350038636/00001 5943810395350038636/00045 5943810395350038636/00064 5943810395350038636/00049 5943810395350038636/00023 5943810395350038636/00038 5943810395350038636/00108 5943810395350038636/00042 5943810395350038636/00012 5943810395350038636/00041 5943810395350038636/00061 5943810395350038636/00083 5943810395350038636/00075 5943810395350038636/00104 5943810395350038636/00079 5943810395350038636/00014 5943810395350038636/00101 5943810395350038636/00035 5943810395350038636/00076 5943810395350038636/00080 5943810395350038636/00052 5943810395350038636/00055 5943810395350038636/00111 5943810395350038636/00019 5943810395350038636/00011 5943810395350038636/00084 5943810395350038636/00034 5943810395350038636/00082 5943810395350038636/00002 5943810395350038636/00089 5943810395350038636/00092 5943810395350038636/00008 5943810395350038636/00087 5943810395350038636/00040 5943810395350038636/00007 5943810395350038636/00102 5943810395350038636/00097 5943810395350038636/00025 5943810395350038636/00054 5943810395350038636/00074 5943810395350038636/00028 6036416762199451587/00003 6036416762199451587/00001 6036416762199451587/00011 6036416762199451587/00008 6036416762199451587/00007 6036416762199451587/00005 6359499234590174850/00009 6352498867394358158/00018 6352498867394358158/00019 6352498867394358158/00027 6193535255821744118/00147 6193535255821744118/00125 6193535255821744118/00060 6193535255821744118/00029 6193535255821744118/00003 6193535255821744118/00006 6193535255821744118/00140 6193535255821744118/00107 6193535255821744118/00056 6193535255821744118/00032 6193535255821744118/00128 6193535255821744118/00109 6193535255821744118/00073 6193535255821744118/00033 6193535255821744118/00123 6193535255821744118/00024 6193535255821744118/00141 6193535255821744118/00078 6193535255821744118/00071 6193535255821744118/00058 6193535255821744118/00121 6193535255821744118/00062 6193535255821744118/00142 6193535255821744118/00031 6193535255821744118/00137 6193535255821744118/00148 6193535255821744118/00094 6193535255821744118/00093 6193535255821744118/00050 6193535255821744118/00036 6193535255821744118/00063 6193535255821744118/00110 6193535255821744118/00001 6193535255821744118/00049 6193535255821744118/00072 6193535255821744118/00023 6193535255821744118/00114 6193535255821744118/00134 6193535255821744118/00108 6193535255821744118/00145 6193535255821744118/00135 6193535255821744118/00126 6193535255821744118/00065 6193535255821744118/00129 6193535255821744118/00144 6193535255821744118/00021 6193535255821744118/00079 6193535255821744118/00127 6193535255821744118/00124 6193535255821744118/00020 6193535255821744118/00035 6193535255821744118/00051 6193535255821744118/00052 6193535255821744118/00111 6193535255821744118/00059 6193535255821744118/00011 6193535255821744118/00067 6193535255821744118/00115 6193535255821744118/00002 6193535255821744118/00106 6193535255821744118/00008 6193535255821744118/00131 6193535255821744118/00040 6193535255821744118/00007 6193535255821744118/00068 6193535255821744118/00143 6193535255821744118/00132 6193535255821744118/00025 6193535255821744118/00054 6382595421224405529/00009 6382595421224405529/00020 6125004328150028775/00015 6125004328150028775/00006 6125004328150028775/00010 6125004328150028775/00013 6125004328150028775/00001 6125004328150028775/00018 6125004328150028775/00012 6125004328150028775/00014 6125004328150028775/00020 6125004328150028775/00017 6125004328150028775/00016 6125004328150028775/00007 6390301881043558087/00009 6390301881043558087/00023 6390301881043558087/00025 6390301881043558087/00005 6119503763534098366/00003 6119503763534098366/00013 6119503763534098366/00001 6119503763534098366/00012 6119503763534098366/00002 6119503763534098366/00008 6119503763534098366/00007 6129472812124794530/00015 6129472812124794530/00003 6129472812124794530/00024 6129472812124794530/00030 6129472812124794530/00016 6129472812124794530/00027 6129472812124794530/00028 6053388754966342225/00001 6131062809017838651/00030 6131062809017838651/00036 6131062809017838651/00023 6131062809017838651/00018 6131062809017838651/00019 6131062809017838651/00028 5987347190339383998/00015 5987347190339383998/00003 5987347190339383998/00009 5987347190339383998/00010 5987347190339383998/00018 5987347190339383998/00020 5987347190339383998/00017 5987347190339383998/00016 5987347190339383998/00002 5987347190339383998/00008 6080063078854857824/00003 6080063078854857824/00006 6080063078854857824/00009 6080063078854857824/00010 6080063078854857824/00001 6080063078854857824/00002 6080063078854857824/00008 6080063078854857824/00004 6380921672469118671/00002 6127609655311854053/00029 6127609655311854053/00046 6127609655311854053/00009 6127609655311854053/00024 6127609655311854053/00031 6127609655311854053/00022 6127609655311854053/00037 6127609655311854053/00047 6127609655311854053/00019 6127609655311854053/00002 6127609655311854053/00007 6127609655311854053/00025 6127609655311854053/00005 6127609655311854053/00004 6127609655311854053/00028 6092785631109560111/00029 6092785631109560111/00015 6092785631109560111/00003 6092785631109560111/00032 6092785631109560111/00009 6092785631109560111/00010 6092785631109560111/00033 6092785631109560111/00024 6092785631109560111/00030 6092785631109560111/00031 6092785631109560111/00013 6092785631109560111/00022 6092785631109560111/00026 6092785631109560111/00050 6092785631109560111/00049 6092785631109560111/00038 6092785631109560111/00042 6092785631109560111/00012 6092785631109560111/00014 6092785631109560111/00037 6092785631109560111/00020 6092785631109560111/00035 6092785631109560111/00017 6092785631109560111/00016 6092785631109560111/00019 6092785631109560111/00011 6092785631109560111/00027 6092785631109560111/00034 6092785631109560111/00008 6092785631109560111/00040 6092785631109560111/00007 6092785631109560111/00025 6092785631109560111/00005 6092785631109560111/00028 6045997975243443595/00029 6045997975243443595/00015 6045997975243443595/00003 6045997975243443595/00006 6045997975243443595/00009 6045997975243443595/00033 6045997975243443595/00030 6045997975243443595/00013 6045997975243443595/00022 6045997975243443595/00026 6045997975243443595/00001 6045997975243443595/00023 6045997975243443595/00012 6045997975243443595/00021 6045997975243443595/00020 6045997975243443595/00017 6045997975243443595/00016 6045997975243443595/00019 6045997975243443595/00007 6045997975243443595/00025 6045997975243443595/00005 6289995496825866522/00006 6289995496825866522/00001 6289995496825866522/00005 6289995496825866522/00004 5900532586888676925/00003 5900532586888676925/00006 5900532586888676925/00009 5900532586888676925/00013 5900532586888676925/00001 5900532586888676925/00012 5900532586888676925/00017 5900532586888676925/00002 5900532586888676925/00008 5900532586888676925/00004 5560385350437540507/00029 5560385350437540507/00015 5560385350437540507/00006 5560385350437540507/00098 5560385350437540507/00107 5560385350437540507/00056 5560385350437540507/00032 5560385350437540507/00109 5560385350437540507/00009 5560385350437540507/00073 5560385350437540507/00112 5560385350437540507/00010 5560385350437540507/00123 5560385350437540507/00053 5560385350437540507/00118 5560385350437540507/00116 5560385350437540507/00078 5560385350437540507/00030 5560385350437540507/00071 5560385350437540507/00058 5560385350437540507/00121 5560385350437540507/00062 5560385350437540507/00013 5560385350437540507/00069 5560385350437540507/00022 5560385350437540507/00096 5560385350437540507/00026 5560385350437540507/00077 5560385350437540507/00093 5560385350437540507/00120 5560385350437540507/00103 5560385350437540507/00036 5560385350437540507/00117 5560385350437540507/00063 5560385350437540507/00110 5560385350437540507/00001 5560385350437540507/00045 5560385350437540507/00064 5560385350437540507/00049 5560385350437540507/00023 5560385350437540507/00114 5560385350437540507/00038 5560385350437540507/00088 5560385350437540507/00048 5560385350437540507/00018 5560385350437540507/00085 5560385350437540507/00012 5560385350437540507/00041 5560385350437540507/00065 5560385350437540507/00061 5560385350437540507/00021 5560385350437540507/00075 5560385350437540507/00104 5560385350437540507/00079 5560385350437540507/00014 5560385350437540507/00047 5560385350437540507/00039 5560385350437540507/00124 5560385350437540507/00020 5560385350437540507/00035 5560385350437540507/00051 5560385350437540507/00080 5560385350437540507/00091 5560385350437540507/00055 5560385350437540507/00016 5560385350437540507/00095 5560385350437540507/00111 5560385350437540507/00059 5560385350437540507/00019 5560385350437540507/00011 5560385350437540507/00119 5560385350437540507/00027 5560385350437540507/00067 5560385350437540507/00115 5560385350437540507/00081 5560385350437540507/00082 5560385350437540507/00002 5560385350437540507/00089 5560385350437540507/00092 5560385350437540507/00008 5560385350437540507/00040 5560385350437540507/00102 5560385350437540507/00068 5560385350437540507/00097 5560385350437540507/00005 5560385350437540507/00004 5560385350437540507/00028 6247431511929107066/00003 6247431511929107066/00009 6247431511929107066/00001 6247431511929107066/00002 6247431511929107066/00008 6234524705707888224/00015 6234524705707888224/00003 6234524705707888224/00006 6234524705707888224/00009 6234524705707888224/00024 6234524705707888224/00026 6234524705707888224/00001 6234524705707888224/00021 6234524705707888224/00014 6234524705707888224/00020 6234524705707888224/00017 6234524705707888224/00019 6234524705707888224/00011 6234524705707888224/00002 6234524705707888224/00007 6234524705707888224/00025 6234524705707888224/00028 6205564600224360734/00015 6205564600224360734/00003 6205564600224360734/00010 6205564600224360734/00001 6205564600224360734/00018 6205564600224360734/00012 6205564600224360734/00014 6205564600224360734/00017 6205564600224360734/00016 6205564600224360734/00011 6205564600224360734/00002 6205564600224360734/00008 6205564600224360734/00007 6205564600224360734/00005 5966187604458917310/00015 5966187604458917310/00006 5966187604458917310/00022 5966187604458917310/00026 5966187604458917310/00023 5966187604458917310/00018 5966187604458917310/00012 5966187604458917310/00017 5966187604458917310/00016 5966187604458917310/00011 5966187604458917310/00027 5966187604458917310/00002 5966187604458917310/00007 5966187604458917310/00025 5978506859154043276/00015 5978506859154043276/00003 5978506859154043276/00032 5978506859154043276/00009 5978506859154043276/00024 5978506859154043276/00031 5978506859154043276/00013 5978506859154043276/00022 5978506859154043276/00026 5978506859154043276/00044 5978506859154043276/00036 5978506859154043276/00001 5978506859154043276/00045 5978506859154043276/00023 5978506859154043276/00038 5978506859154043276/00018 5978506859154043276/00012 5978506859154043276/00041 5978506859154043276/00021 5978506859154043276/00014 5978506859154043276/00037 5978506859154043276/00039 5978506859154043276/00020 5978506859154043276/00035 5978506859154043276/00017 5978506859154043276/00019 5978506859154043276/00027 5978506859154043276/00034 5978506859154043276/00002 5978506859154043276/00040 5978506859154043276/00007 5978506859154043276/00025 5978506859154043276/00004 5978506859154043276/00028 6103145092097113577/00003 6103145092097113577/00024 6103145092097113577/00001 6103145092097113577/00018 6103145092097113577/00012 6103145092097113577/00014 6103145092097113577/00020 6103145092097113577/00019 6103145092097113577/00002 6103145092097113577/00008 5588349453005090772/00003 5588349453005090772/00001 5588349453005090772/00005 6131718650523849495/00006 6131718650523849495/00009 6131718650523849495/00010 6131718650523849495/00024 6131718650523849495/00022 6131718650523849495/00014 6131718650523849495/00020 6131718650523849495/00011 6131718650523849495/00002 6131718650523849495/00008 6131718650523849495/00007 6131718650523849495/00004 6385571833560469334/00009 6135359923797461274/00029 6135359923797461274/00015 6135359923797461274/00003 6135359923797461274/00006 6135359923797461274/00032 6135359923797461274/00009 6135359923797461274/00010 6135359923797461274/00031 6135359923797461274/00013 6135359923797461274/00044 6135359923797461274/00036 6135359923797461274/00045 6135359923797461274/00023 6135359923797461274/00042 6135359923797461274/00014 6135359923797461274/00037 6135359923797461274/00039 6135359923797461274/00035 6135359923797461274/00017 6135359923797461274/00016 6135359923797461274/00011 6135359923797461274/00027 6135359923797461274/00034 6135359923797461274/00002 6135359923797461274/00040 6135359923797461274/00043 6135359923797461274/00005 6135359923797461274/00028 6090945666990186697/00029 6090945666990186697/00015 6090945666990186697/00006 6090945666990186697/00046 6090945666990186697/00056 6090945666990186697/00032 6090945666990186697/00009 6090945666990186697/00010 6090945666990186697/00058 6090945666990186697/00031 6090945666990186697/00022 6090945666990186697/00038 6090945666990186697/00048 6090945666990186697/00012 6090945666990186697/00041 6090945666990186697/00035 6090945666990186697/00017 6090945666990186697/00016 6090945666990186697/00011 6090945666990186697/00007 6090945666990186697/00005 5905899148524968757/00060 5905899148524968757/00029 5905899148524968757/00009 5905899148524968757/00073 5905899148524968757/00033 5905899148524968757/00024 5905899148524968757/00053 5905899148524968757/00058 5905899148524968757/00086 5905899148524968757/00013 5905899148524968757/00069 5905899148524968757/00022 5905899148524968757/00026 5905899148524968757/00044 5905899148524968757/00063 5905899148524968757/00001 5905899148524968757/00066 5905899148524968757/00064 5905899148524968757/00072 5905899148524968757/00023 5905899148524968757/00088 5905899148524968757/00048 5905899148524968757/00085 5905899148524968757/00012 5905899148524968757/00065 5905899148524968757/00061 5905899148524968757/00020 5905899148524968757/00035 5905899148524968757/00017 5905899148524968757/00080 5905899148524968757/00019 5905899148524968757/00002 5905899148524968757/00089 5905899148524968757/00092 5905899148524968757/00007 5905899148524968757/00068 5905899148524968757/00025 5905899148524968757/00004 5905899148524968757/00028 6133514805847040672/00060 6133514805847040672/00003 6133514805847040672/00107 6133514805847040672/00113 6133514805847040672/00109 6133514805847040672/00070 6133514805847040672/00073 6133514805847040672/00057 6133514805847040672/00053 6133514805847040672/00030 6133514805847040672/00071 6133514805847040672/00058 6133514805847040672/00062 6133514805847040672/00031 6133514805847040672/00069 6133514805847040672/00022 6133514805847040672/00096 6133514805847040672/00094 6133514805847040672/00044 6133514805847040672/00103 6133514805847040672/00050 6133514805847040672/00036 6133514805847040672/00110 6133514805847040672/00001 6133514805847040672/00066 6133514805847040672/00064 6133514805847040672/00049 6133514805847040672/00114 6133514805847040672/00038 6133514805847040672/00018 6133514805847040672/00042 6133514805847040672/00012 6133514805847040672/00041 6133514805847040672/00065 6133514805847040672/00061 6133514805847040672/00083 6133514805847040672/00075 6133514805847040672/00079 6133514805847040672/00101 6133514805847040672/00047 6133514805847040672/00039 6133514805847040672/00020 6133514805847040672/00035 6133514805847040672/00051 6133514805847040672/00076 6133514805847040672/00052 6133514805847040672/00055 6133514805847040672/00016 6133514805847040672/00111 6133514805847040672/00059 6133514805847040672/00084 6133514805847040672/00027 6133514805847040672/00067 6133514805847040672/00115 6133514805847040672/00082 6133514805847040672/00002 6133514805847040672/00008 6133514805847040672/00087 6133514805847040672/00040 6133514805847040672/00068 6133514805847040672/00005 6133514805847040672/00074 6133514805847040672/00004 6133514805847040672/00028 6263121456958139059/00002 6263121456958139059/00004 6364760140030989000/00021 6364760140030989000/00017 6111985423282443027/00003 6111985423282443027/00006 6111985423282443027/00009 6111985423282443027/00010 6111985423282443027/00007 6111985423282443027/00005 6111985423282443027/00004 6040802782802129908/00003 6040802782802129908/00006 6040802782802129908/00004 6330311066473698535/00022 6330311066473698535/00018 6330311066473698535/00011 6330311066473698535/00025 6216302877457891313/00015 6216302877457891313/00003 6216302877457891313/00006 6216302877457891313/00010 6216302877457891313/00033 6216302877457891313/00024 6216302877457891313/00030 6216302877457891313/00031 6216302877457891313/00013 6216302877457891313/00022 6216302877457891313/00044 6216302877457891313/00001 6216302877457891313/00045 6216302877457891313/00023 6216302877457891313/00018 6216302877457891313/00042 6216302877457891313/00012 6216302877457891313/00041 6216302877457891313/00037 6216302877457891313/00039 6216302877457891313/00035 6216302877457891313/00017 6216302877457891313/00027 6216302877457891313/00002 6216302877457891313/00008 6216302877457891313/00007 6216302877457891313/00025 6216302877457891313/00005 6216302877457891313/00028 5983937845299877829/00006 5983937845299877829/00008 5983937845299877829/00007 5983937845299877829/00005 6025588290652796635/00006 6025588290652796635/00010 6025588290652796635/00001 6025588290652796635/00002 6025588290652796635/00008 6025588290652796635/00007 6231921955526512196/00003 6231921955526512196/00006 6231921955526512196/00009 6231921955526512196/00024 6231921955526512196/00022 6231921955526512196/00001 6231921955526512196/00017 6231921955526512196/00016 6231921955526512196/00019 6231921955526512196/00011 6231921955526512196/00002 5918715760433008383/00003 5918715760433008383/00006 5918715760433008383/00032 5918715760433008383/00010 5918715760433008383/00033 5918715760433008383/00026 5918715760433008383/00001 5918715760433008383/00018 5918715760433008383/00012 5918715760433008383/00002 5918715760433008383/00008 5918715760433008383/00007 5918715760433008383/00025 5918715760433008383/00005 5918715760433008383/00004 5918715760433008383/00028 5909083007781500287/00015 5909083007781500287/00003 5909083007781500287/00006 5909083007781500287/00009 5909083007781500287/00013 5909083007781500287/00021 5909083007781500287/00014 5909083007781500287/00020 5909083007781500287/00016 5909083007781500287/00019 5909083007781500287/00002 5909083007781500287/00008 5909083007781500287/00007 5909083007781500287/00005 5938777552672646049/00060 5938777552672646049/00015 5938777552672646049/00003 5938777552672646049/00046 5938777552672646049/00032 5938777552672646049/00070 5938777552672646049/00090 5938777552672646049/00010 5938777552672646049/00033 5938777552672646049/00024 5938777552672646049/00069 5938777552672646049/00044 5938777552672646049/00077 5938777552672646049/00036 5938777552672646049/00001 5938777552672646049/00045 5938777552672646049/00066 5938777552672646049/00049 5938777552672646049/00038 5938777552672646049/00088 5938777552672646049/00048 5938777552672646049/00012 5938777552672646049/00041 5938777552672646049/00065 5938777552672646049/00083 5938777552672646049/00021 5938777552672646049/00079 5938777552672646049/00014 5938777552672646049/00047 5938777552672646049/00039 5938777552672646049/00020 5938777552672646049/00035 5938777552672646049/00017 5938777552672646049/00080 5938777552672646049/00091 5938777552672646049/00055 5938777552672646049/00016 5938777552672646049/00019 5938777552672646049/00084 5938777552672646049/00027 5938777552672646049/00081 5938777552672646049/00002 5938777552672646049/00089 5938777552672646049/00008 5938777552672646049/00087 5938777552672646049/00040 5938777552672646049/00007 5938777552672646049/00043 5938777552672646049/00005 5938777552672646049/00028 6104289271384702264/00029 6104289271384702264/00015 6104289271384702264/00003 6104289271384702264/00009 6104289271384702264/00010 6104289271384702264/00024 6104289271384702264/00030 6104289271384702264/00031 6104289271384702264/00013 6104289271384702264/00026 6104289271384702264/00001 6104289271384702264/00023 6104289271384702264/00018 6104289271384702264/00012 6104289271384702264/00021 6104289271384702264/00014 6104289271384702264/00020 6104289271384702264/00019 6104289271384702264/00011 6104289271384702264/00002 6104289271384702264/00008 6104289271384702264/00007 6104289271384702264/00025 6104289271384702264/00005 6104289271384702264/00004 6104289271384702264/00028 6200740492957487906/00003 6200740492957487906/00001 6200740492957487906/00002 6200740492957487906/00004 6077934493063050698/00003 6077934493063050698/00006 6077934493063050698/00007 5669628702604766803/00015 5669628702604766803/00009 5669628702604766803/00013 5669628702604766803/00012 5669628702604766803/00016 5669628702604766803/00002 5669628702604766803/00008 5669628702604766803/00007 5669628702604766803/00005 6122004722990561959/00001 6122004722990561959/00011 6122004722990561959/00002 6122004722990561959/00005 6290871670154253572/00003 6290871670154253572/00006 6290871670154253572/00009 6290871670154253572/00010 6290871670154253572/00011 6290871670154253572/00002 6290871670154253572/00008 6290871670154253572/00005 6290871670154253572/00004 5579161229468750443/00015 5579161229468750443/00003 5579161229468750443/00006 5579161229468750443/00010 5579161229468750443/00022 5579161229468750443/00001 5579161229468750443/00023 5579161229468750443/00018 5579161229468750443/00021 5579161229468750443/00002 5579161229468750443/00008 5579161229468750443/00007 5579161229468750443/00004 5544944084014976732/00010 5544944084014976732/00013 5544944084014976732/00022 5544944084014976732/00020 5544944084014976732/00017 5544944084014976732/00016 5544944084014976732/00008 5544944084014976732/00025 5722693882540311125/00003 5722693882540311125/00010 5722693882540311125/00013 5722693882540311125/00001 5722693882540311125/00005 6351424266576959115/00015 6351424266576959115/00013 6351424266576959115/00014 6224505405999732327/00003 6224505405999732327/00001 6224505405999732327/00007 6224505405999732327/00004 6100829675227828912/00003 6100829675227828912/00010 6100829675227828912/00024 6100829675227828912/00013 6100829675227828912/00001 6100829675227828912/00023 6100829675227828912/00018 6100829675227828912/00012 6100829675227828912/00020 6100829675227828912/00019 6100829675227828912/00005 6100829675227828912/00004 6091711030292100450/00010 6091711030292100450/00011 6091711030292100450/00007 6091711030292100450/00005 6091711030292100450/00004 6321358636511442057/00015 6321358636511442057/00003 6321358636511442057/00006 6321358636511442057/00010 6321358636511442057/00017 6321358636511442057/00002 6321358636511442057/00008 6321358636511442057/00005 6321358636511442057/00004 5930946109305043539/00015 5930946109305043539/00003 5930946109305043539/00006 5930946109305043539/00013 5930946109305043539/00001 5930946109305043539/00018 5930946109305043539/00020 5930946109305043539/00017 5930946109305043539/00016 5930946109305043539/00002 5930946109305043539/00004 6219229038676657335/00015 6219229038676657335/00006 6219229038676657335/00009 6219229038676657335/00001 6219229038676657335/00012 6219229038676657335/00002 6219229038676657335/00008 6219229038676657335/00007 6219229038676657335/00004 5934591248049229611/00003 5934591248049229611/00006 5934591248049229611/00009 5934591248049229611/00001 5934591248049229611/00012 5934591248049229611/00011 5934591248049229611/00002 5934591248049229611/00008 5934591248049229611/00005 5934591248049229611/00004 5669999787779141269/00015 5669999787779141269/00006 5669999787779141269/00009 5669999787779141269/00010 5669999787779141269/00001 5669999787779141269/00014 5669999787779141269/00002 5669999787779141269/00008 5669999787779141269/00007 5669999787779141269/00004 5664893501160921145/00003 5664893501160921145/00006 5664893501160921145/00009 5664893501160921145/00010 5664893501160921145/00004 6361799189577120616/00001 6361799189577120616/00005 5940224527154601906/00022 5940224527154601906/00018 5940224527154601906/00021 5940224527154601906/00019 5940224527154601906/00011 5940224527154601906/00004 5958847075853384595/00015 5958847075853384595/00006 5958847075853384595/00009 5958847075853384595/00010 5958847075853384595/00001 5958847075853384595/00012 5958847075853384595/00014 5958847075853384595/00017 5958847075853384595/00016 5958847075853384595/00011 5958847075853384595/00007 5958847075853384595/00005 5958847075853384595/00004 5982082419428003448/00015 5982082419428003448/00009 5982082419428003448/00010 5982082419428003448/00013 5982082419428003448/00014 5982082419428003448/00020 5982082419428003448/00016 5982082419428003448/00019 5982082419428003448/00011 5982082419428003448/00008 5982082419428003448/00007 5978522321166780453/00015 5978522321166780453/00046 5978522321166780453/00032 5978522321166780453/00009 5978522321166780453/00010 5978522321166780453/00033 5978522321166780453/00030 5978522321166780453/00031 5978522321166780453/00026 5978522321166780453/00044 5978522321166780453/00050 5978522321166780453/00036 5978522321166780453/00001 5978522321166780453/00045 5978522321166780453/00023 5978522321166780453/00038 5978522321166780453/00048 5978522321166780453/00018 5978522321166780453/00042 5978522321166780453/00012 5978522321166780453/00041 5978522321166780453/00021 5978522321166780453/00014 5978522321166780453/00037 5978522321166780453/00047 5978522321166780453/00039 5978522321166780453/00020 5978522321166780453/00051 5978522321166780453/00016 5978522321166780453/00034 5978522321166780453/00002 5978522321166780453/00008 5978522321166780453/00040 5978522321166780453/00007 5978522321166780453/00025 5978522321166780453/00043 5978522321166780453/00005 5978522321166780453/00004 6363581171508296879/00006 6363581171508296879/00005 6215518186932912012/00003 6215518186932912012/00001 6215518186932912012/00002 6215518186932912012/00007 5708405814836719402/00003 5708405814836719402/00006 5708405814836719402/00009 5708405814836719402/00010 5708405814836719402/00001 5708405814836719402/00012 5708405814836719402/00008 5708405814836719402/00007 5708405814836719402/00005 5708405814836719402/00004 6122746893339311718/00009 6122746893339311718/00013 6122746893339311718/00001 6122746893339311718/00018 6122746893339311718/00014 6122746893339311718/00017 6122746893339311718/00016 6122746893339311718/00008 6122746893339311718/00007 6122746893339311718/00005 6122746893339311718/00004 6136102094146210863/00029 6136102094146210863/00006 6136102094146210863/00032 6136102094146210863/00009 6136102094146210863/00010 6136102094146210863/00033 6136102094146210863/00024 6136102094146210863/00030 6136102094146210863/00031 6136102094146210863/00013 6136102094146210863/00022 6136102094146210863/00026 6136102094146210863/00036 6136102094146210863/00001 6136102094146210863/00023 6136102094146210863/00038 6136102094146210863/00018 6136102094146210863/00012 6136102094146210863/00021 6136102094146210863/00016 6136102094146210863/00011 6136102094146210863/00027 6136102094146210863/00034 6136102094146210863/00002 6136102094146210863/00008 6136102094146210863/00007 6136102094146210863/00025 6136102094146210863/00005 6136102094146210863/00004 6136102094146210863/00028 6101151797774971597/00009 6101151797774971597/00010 6101151797774971597/00018 6101151797774971597/00012 6101151797774971597/00017 6101151797774971597/00016 6101151797774971597/00011 6101151797774971597/00008 6101151797774971597/00007 6152824119816481046/00003 6152824119816481046/00006 6152824119816481046/00009 6152824119816481046/00011 6152824119816481046/00004 5553479043025594273/00029 5553479043025594273/00006 5553479043025594273/00009 5553479043025594273/00010 5553479043025594273/00022 5553479043025594273/00026 5553479043025594273/00001 5553479043025594273/00018 5553479043025594273/00012 5553479043025594273/00021 5553479043025594273/00014 5553479043025594273/00017 5553479043025594273/00016 5553479043025594273/00019 5553479043025594273/00008 5553479043025594273/00025 5553479043025594273/00028 6218857953502283780/00003 6084250671968526618/00009 6084250671968526618/00008 6084250671968526618/00007 5990315871734379422/00009 5990315871734379422/00011 5990315871734379422/00002 5990315871734379422/00008 5990315871734379422/00007 6389933372849561261/00020 6389933372849561261/00016 6389933372849561261/00027 6389933372849561261/00002 6389933372849561261/00028 6033026744512715769/00009 6033026744512715769/00013 6033026744512715769/00020 6033026744512715769/00017 6033026744512715769/00016 6033026744512715769/00011 6033026744512715769/00002 6033026744512715769/00008 6033026744512715769/00005 6033026744512715769/00004 6225143208643254989/00018 6225143208643254989/00017 6225143208643254989/00019 6225143208643254989/00011 6225143208643254989/00004 6081556438983741451/00001 6081556438983741451/00002 6081556438983741451/00007 6081556438983741451/00005 6388772443189516866/00002 5687406001739660306/00015 5687406001739660306/00098 5687406001739660306/00046 5687406001739660306/00090 5687406001739660306/00033 5687406001739660306/00053 5687406001739660306/00078 5687406001739660306/00071 5687406001739660306/00086 5687406001739660306/00096 5687406001739660306/00026 5687406001739660306/00077 5687406001739660306/00050 5687406001739660306/00001 5687406001739660306/00064 5687406001739660306/00023 5687406001739660306/00038 5687406001739660306/00018 5687406001739660306/00085 5687406001739660306/00042 5687406001739660306/00012 5687406001739660306/00065 5687406001739660306/00083 5687406001739660306/00101 5687406001739660306/00047 5687406001739660306/00035 5687406001739660306/00017 5687406001739660306/00076 5687406001739660306/00080 5687406001739660306/00091 5687406001739660306/00055 5687406001739660306/00027 5687406001739660306/00034 5687406001739660306/00081 5687406001739660306/00082 5687406001739660306/00089 5687406001739660306/00087 5687406001739660306/00007 5687406001739660306/00068 5687406001739660306/00043 5687406001739660306/00074 5687406001739660306/00004 5854822108950805868/00003 5854822108950805868/00002 6106419145666853249/00006 6106419145666853249/00009 6106419145666853249/00001 6106419145666853249/00018 6106419145666853249/00014 6106419145666853249/00020 6106419145666853249/00019 6106419145666853249/00008 6106419145666853249/00004 6114571423091304569/00013 6114571423091304569/00001 6114571423091304569/00014 6114571423091304569/00011 6114571423091304569/00002 6114571423091304569/00008 6114571423091304569/00005 6150964828473972325/00003 6150964828473972325/00006 6150964828473972325/00032 6150964828473972325/00009 6150964828473972325/00010 6150964828473972325/00033 6150964828473972325/00030 6150964828473972325/00026 6150964828473972325/00044 6150964828473972325/00050 6150964828473972325/00036 6150964828473972325/00001 6150964828473972325/00049 6150964828473972325/00038 6150964828473972325/00048 6150964828473972325/00042 6150964828473972325/00047 6150964828473972325/00039 6150964828473972325/00011 6150964828473972325/00027 6150964828473972325/00034 6150964828473972325/00002 6150964828473972325/00025 6150964828473972325/00043 6150964828473972325/00004 6150964828473972325/00028 6223399881417808465/00009 6223399881417808465/00011 6101633693105582812/00015 6101633693105582812/00003 6101633693105582812/00006 6101633693105582812/00009 6101633693105582812/00013 6101633693105582812/00014 6101633693105582812/00020 6101633693105582812/00017 6101633693105582812/00016 6101633693105582812/00019 6101633693105582812/00002 6101633693105582812/00005 6094930967143440745/00060 6094930967143440745/00015 6094930967143440745/00006 6094930967143440745/00056 6094930967143440745/00032 6094930967143440745/00009 6094930967143440745/00033 6094930967143440745/00030 6094930967143440745/00031 6094930967143440745/00036 6094930967143440745/00001 6094930967143440745/00049 6094930967143440745/00038 6094930967143440745/00042 6094930967143440745/00041 6094930967143440745/00061 6094930967143440745/00014 6094930967143440745/00037 6094930967143440745/00047 6094930967143440745/00039 6094930967143440745/00035 6094930967143440745/00017 6094930967143440745/00016 6094930967143440745/00059 6094930967143440745/00007 6094930967143440745/00005 6094930967143440745/00004 6094930967143440745/00028 6256751161464706016/00010 6256751161464706016/00033 6256751161464706016/00024 6256751161464706016/00022 6256751161464706016/00023 6256751161464706016/00018 6256751161464706016/00012 6256751161464706016/00021 6256751161464706016/00014 6256751161464706016/00017 6256751161464706016/00019 6256751161464706016/00011 6256751161464706016/00007 6256751161464706016/00004 6256751161464706016/00028 6075715712957872261/00006 6075715712957872261/00032 6075715712957872261/00057 6075715712957872261/00053 6075715712957872261/00058 6075715712957872261/00031 6075715712957872261/00026 6075715712957872261/00048 6075715712957872261/00012 6075715712957872261/00041 6075715712957872261/00061 6075715712957872261/00039 6075715712957872261/00020 6075715712957872261/00052 6075715712957872261/00016 6075715712957872261/00059 6075715712957872261/00011 6075715712957872261/00008 6075715712957872261/00040 6075715712957872261/00028 6085363927491651922/00013 6085363927491651922/00011 6085363927491651922/00004 6368096041129860047/00002 5688979248260157802/00009 5688979248260157802/00013 5688979248260157802/00001 5688979248260157802/00018 5688979248260157802/00012 5688979248260157802/00017 5688979248260157802/00019 5688979248260157802/00011 5688979248260157802/00008 5688979248260157802/00005 6234888059941128636/00003 6234888059941128636/00006 6234888059941128636/00007 6155839186858209294/00013 6155839186858209294/00001 6155839186858209294/00011 6155839186858209294/00002 6155839186858209294/00008 6155839186858209294/00007 6155839186858209294/00004 5954015237645313159/00015 5954015237645313159/00003 5954015237645313159/00006 5954015237645313159/00010 5954015237645313159/00014 5954015237645313159/00019 5954015237645313159/00002 5954015237645313159/00008 5954015237645313159/00007 5954015237645313159/00005 5954015237645313159/00004 6363654615448994597/00015 6363654615448994597/00046 6363654615448994597/00013 6363654615448994597/00012 6120203413706557705/00009 6120203413706557705/00012 6120203413706557705/00014 6120203413706557705/00011 6122051108637296475/00015 6122051108637296475/00032 6122051108637296475/00009 6122051108637296475/00031 6122051108637296475/00001 6122051108637296475/00021 6122051108637296475/00007 5983004978403184340/00013 5983004978403184340/00021 5983004978403184340/00020 5983004978403184340/00016 5983004978403184340/00002 5983004978403184340/00005 5983004978403184340/00004 5940930619778130184/00003 5940930619778130184/00001 5940930619778130184/00002 5858163164010366528/00001 5858163164010366528/00002 6099836249292200550/00006 6099836249292200550/00009 6099836249292200550/00001 6099836249292200550/00002 6099836249292200550/00007 6099836249292200550/00005 6099836249292200550/00004 5864494804798072768/00001 6382931717163617970/00017 6382931717163617970/00008 6382931717163617970/00025 5890142202006204807/00029 5890142202006204807/00003 5890142202006204807/00009 5890142202006204807/00030 5890142202006204807/00013 5890142202006204807/00022 5890142202006204807/00026 5890142202006204807/00018 5890142202006204807/00012 5890142202006204807/00021 5890142202006204807/00020 5890142202006204807/00017 5890142202006204807/00008 5890142202006204807/00007 5890142202006204807/00005 5890142202006204807/00004 5890142202006204807/00028 5892689547109465164/00015 5892689547109465164/00003 5892689547109465164/00006 5892689547109465164/00046 5892689547109465164/00009 5892689547109465164/00010 5892689547109465164/00024 5892689547109465164/00030 5892689547109465164/00031 5892689547109465164/00013 5892689547109465164/00022 5892689547109465164/00026 5892689547109465164/00050 5892689547109465164/00036 5892689547109465164/00001 5892689547109465164/00045 5892689547109465164/00049 5892689547109465164/00038 5892689547109465164/00042 5892689547109465164/00012 5892689547109465164/00041 5892689547109465164/00021 5892689547109465164/00037 5892689547109465164/00047 5892689547109465164/00055 5892689547109465164/00016 5892689547109465164/00011 5892689547109465164/00002 5892689547109465164/00040 5892689547109465164/00043 5892689547109465164/00005 5892689547109465164/00004 5892689547109465164/00028 6175120154043398820/00015 6175120154043398820/00003 6175120154043398820/00024 6175120154043398820/00013 6175120154043398820/00022 6175120154043398820/00026 6175120154043398820/00001 6175120154043398820/00023 6175120154043398820/00021 6175120154043398820/00017 6175120154043398820/00016 6175120154043398820/00011 6175120154043398820/00027 6175120154043398820/00005 6175120154043398820/00004 5986906526694877663/00003 5986906526694877663/00006 5986906526694877663/00009 5986906526694877663/00010 5986906526694877663/00013 5986906526694877663/00022 5986906526694877663/00026 5986906526694877663/00018 5986906526694877663/00012 5986906526694877663/00021 5986906526694877663/00014 5986906526694877663/00017 5986906526694877663/00016 5986906526694877663/00008 5986906526694877663/00025 5986906526694877663/00005 6113500687744411751/00011 6113500687744411751/00002 6109847818059221741/00015 6109847818059221741/00006 6109847818059221741/00013 6109847818059221741/00001 6109847818059221741/00012 6109847818059221741/00014 6109847818059221741/00016 6109847818059221741/00011 6109847818059221741/00008 6312066045269810824/00015 6312066045269810824/00006 6312066045269810824/00010 6312066045269810824/00022 6312066045269810824/00026 6312066045269810824/00023 6312066045269810824/00012 6312066045269810824/00021 6312066045269810824/00017 6312066045269810824/00016 6312066045269810824/00027 6312066045269810824/00008 6312066045269810824/00007 6312066045269810824/00004 6312066045269810824/00028 5991426550277196456/00006 5991426550277196456/00010 5991426550277196456/00013 5991426550277196456/00001 5991426550277196456/00012 5991426550277196456/00017 5991426550277196456/00016 5991426550277196456/00019 5991426550277196456/00011 5991426550277196456/00002 5991426550277196456/00008 5991426550277196456/00005 5991426550277196456/00004 6327199362537275576/00017 6327199362537275576/00008 6327199362537275576/00007 6327199362537275576/00005 6046763338415520567/00003 6046763338415520567/00002 5562736845032101655/00015 5562736845032101655/00003 5562736845032101655/00006 5562736845032101655/00009 5562736845032101655/00010 5562736845032101655/00013 5562736845032101655/00026 5562736845032101655/00001 5562736845032101655/00016 5562736845032101655/00011 5562736845032101655/00002 5562736845032101655/00007 5562736845032101655/00025 5562736845032101655/00005 5562736845032101655/00028 6014826820595920814/00029 6014826820595920814/00031 6014826820595920814/00013 6014826820595920814/00023 6014826820595920814/00018 6014826820595920814/00012 6014826820595920814/00021 6014826820595920814/00014 6014826820595920814/00020 6014826820595920814/00017 6014826820595920814/00016 6014826820595920814/00019 6014826820595920814/00008 6014826820595920814/00007 6014826820595920814/00025 6195962771338138794/00003 6195962771338138794/00006 6195962771338138794/00005 6169577069251241865/00015 6169577069251241865/00003 6169577069251241865/00010 6169577069251241865/00024 6169577069251241865/00030 6169577069251241865/00031 6169577069251241865/00013 6169577069251241865/00001 6169577069251241865/00021 6169577069251241865/00014 6169577069251241865/00020 6169577069251241865/00017 6169577069251241865/00016 6169577069251241865/00011 6169577069251241865/00002 6169577069251241865/00007 6169577069251241865/00005 6169577069251241865/00004 5545159261876508010/00003 5545159261876508010/00006 5545159261876508010/00009 5545159261876508010/00010 5545159261876508010/00024 5545159261876508010/00001 5545159261876508010/00018 5545159261876508010/00014 5545159261876508010/00020 5545159261876508010/00017 5545159261876508010/00011 5545159261876508010/00002 5545159261876508010/00007 5545159261876508010/00025 5545159261876508010/00004 5545159261876508010/00028 6080555282106983088/00003 6080555282106983088/00006 6080555282106983088/00010 6080555282106983088/00013 6080555282106983088/00012 6080555282106983088/00014 6080555282106983088/00011 6080555282106983088/00002 6080555282106983088/00004 6109171360710104473/00006 6109171360710104473/00001 6109171360710104473/00002 6109171360710104473/00007 5952886520239986137/00014 5952886520239986137/00016 5952886520239986137/00002 6120574498880932112/00003 6120574498880932112/00008 6120574498880932112/00007 6120574498880932112/00005 6148819492309618991/00006 6148819492309618991/00001 6148819492309618991/00002 6148819492309618991/00007 6148819492309618991/00004 6250431117088572702/00001 6250431117088572702/00005 6382247528873432347/00020 6382247528873432347/00016 5960632923254997837/00029 5960632923254997837/00015 5960632923254997837/00003 5960632923254997837/00010 5960632923254997837/00024 5960632923254997837/00013 5960632923254997837/00022 5960632923254997837/00026 5960632923254997837/00036 5960632923254997837/00001 5960632923254997837/00042 5960632923254997837/00012 5960632923254997837/00014 5960632923254997837/00020 5960632923254997837/00011 5960632923254997837/00027 5960632923254997837/00007 5960632923254997837/00005 5960632923254997837/00004 5960632923254997837/00028 6094521227263459924/00006 6094521227263459924/00013 6094521227263459924/00012 6094521227263459924/00014 6094521227263459924/00017 6094521227263459924/00019 6094521227263459924/00002 6126859754021905744/00009 6126859754021905744/00013 6126859754021905744/00014 6126859754021905744/00019 6126859754021905744/00002 6126859754021905744/00007 6126859754021905744/00005 6126859754021905744/00004 5587247793893666663/00015 5587247793893666663/00003 5587247793893666663/00006 5587247793893666663/00009 5587247793893666663/00010 5587247793893666663/00013 5587247793893666663/00001 5587247793893666663/00018 5587247793893666663/00012 5587247793893666663/00014 5587247793893666663/00016 5587247793893666663/00011 5587247793893666663/00002 5587247793893666663/00007 5587247793893666663/00004 5956552274827061293/00011 5956552274827061293/00007 5855596491554276610/00006 5855596491554276610/00013 5855596491554276610/00001 5855596491554276610/00012 5855596491554276610/00017 5855596491554276610/00019 5855596491554276610/00011 5855596491554276610/00002 5855596491554276610/00007 5855596491554276610/00005 5855596491554276610/00004 6012615771431938965/00029 6012615771431938965/00015 6012615771431938965/00003 6012615771431938965/00006 6012615771431938965/00032 6012615771431938965/00009 6012615771431938965/00010 6012615771431938965/00033 6012615771431938965/00031 6012615771431938965/00013 6012615771431938965/00044 6012615771431938965/00038 6012615771431938965/00018 6012615771431938965/00042 6012615771431938965/00041 6012615771431938965/00021 6012615771431938965/00014 6012615771431938965/00039 6012615771431938965/00020 6012615771431938965/00035 6012615771431938965/00017 6012615771431938965/00016 6012615771431938965/00019 6012615771431938965/00011 6012615771431938965/00027 6012615771431938965/00034 6012615771431938965/00002 6012615771431938965/00008 6012615771431938965/00040 6012615771431938965/00007 6012615771431938965/00025 6012615771431938965/00043 6012615771431938965/00028 6092058922512598240/00015 6092058922512598240/00006 6092058922512598240/00009 6092058922512598240/00013 6092058922512598240/00001 6092058922512598240/00023 6092058922512598240/00018 6092058922512598240/00012 6092058922512598240/00020 6092058922512598240/00016 6092058922512598240/00019 6092058922512598240/00011 6092058922512598240/00002 6092058922512598240/00008 6092058922512598240/00005 6092058922512598240/00004 6222655134088685357/00022 6222655134088685357/00023 6222655134088685357/00018 6222655134088685357/00019 6222655134088685357/00007 6093472396249715241/00029 6093472396249715241/00015 6093472396249715241/00003 6093472396249715241/00006 6093472396249715241/00032 6093472396249715241/00009 6093472396249715241/00033 6093472396249715241/00024 6093472396249715241/00030 6093472396249715241/00031 6093472396249715241/00013 6093472396249715241/00022 6093472396249715241/00026 6093472396249715241/00044 6093472396249715241/00036 6093472396249715241/00001 6093472396249715241/00045 6093472396249715241/00023 6093472396249715241/00038 6093472396249715241/00042 6093472396249715241/00012 6093472396249715241/00021 6093472396249715241/00014 6093472396249715241/00037 6093472396249715241/00047 6093472396249715241/00039 6093472396249715241/00020 6093472396249715241/00035 6093472396249715241/00017 6093472396249715241/00016 6093472396249715241/00019 6093472396249715241/00011 6093472396249715241/00027 6093472396249715241/00034 6093472396249715241/00002 6093472396249715241/00040 6093472396249715241/00007 6093472396249715241/00025 6093472396249715241/00043 6093472396249715241/00004 5958066250929387863/00015 5958066250929387863/00003 5958066250929387863/00046 5958066250929387863/00033 5958066250929387863/00013 5958066250929387863/00022 5958066250929387863/00026 5958066250929387863/00044 5958066250929387863/00036 5958066250929387863/00001 5958066250929387863/00045 5958066250929387863/00018 5958066250929387863/00042 5958066250929387863/00012 5958066250929387863/00041 5958066250929387863/00014 5958066250929387863/00047 5958066250929387863/00035 5958066250929387863/00016 5958066250929387863/00019 5958066250929387863/00011 5958066250929387863/00027 5958066250929387863/00008 5958066250929387863/00040 5958066250929387863/00007 5958066250929387863/00043 5958066250929387863/00005 5958066250929387863/00028 6072205865683641285/00060 6072205865683641285/00003 6072205865683641285/00032 6072205865683641285/00070 6072205865683641285/00073 6072205865683641285/00062 6072205865683641285/00031 6072205865683641285/00026 6072205865683641285/00044 6072205865683641285/00036 6072205865683641285/00063 6072205865683641285/00001 6072205865683641285/00045 6072205865683641285/00064 6072205865683641285/00049 6072205865683641285/00038 6072205865683641285/00048 6072205865683641285/00042 6072205865683641285/00065 6072205865683641285/00021 6072205865683641285/00014 6072205865683641285/00037 6072205865683641285/00039 6072205865683641285/00020 6072205865683641285/00017 6072205865683641285/00052 6072205865683641285/00019 6072205865683641285/00011 6072205865683641285/00027 6072205865683641285/00034 6072205865683641285/00005 6072205865683641285/00028 6124691225034213782/00015 6124691225034213782/00010 6124691225034213782/00030 6124691225034213782/00031 6124691225034213782/00026 6124691225034213782/00018 6124691225034213782/00020 6262622811255072126/00003 6262622811255072126/00006 6262622811255072126/00008 6262622811255072126/00005 6196658556039368152/00015 6196658556039368152/00003 6196658556039368152/00006 6196658556039368152/00046 6196658556039368152/00032 6196658556039368152/00009 6196658556039368152/00010 6196658556039368152/00033 6196658556039368152/00057 6196658556039368152/00053 6196658556039368152/00030 6196658556039368152/00031 6196658556039368152/00013 6196658556039368152/00022 6196658556039368152/00026 6196658556039368152/00044 6196658556039368152/00050 6196658556039368152/00036 6196658556039368152/00001 6196658556039368152/00045 6196658556039368152/00049 6196658556039368152/00038 6196658556039368152/00048 6196658556039368152/00018 6196658556039368152/00042 6196658556039368152/00041 6196658556039368152/00021 6196658556039368152/00014 6196658556039368152/00037 6196658556039368152/00039 6196658556039368152/00051 6196658556039368152/00017 6196658556039368152/00052 6196658556039368152/00019 6196658556039368152/00011 6196658556039368152/00027 6196658556039368152/00034 6196658556039368152/00002 6196658556039368152/00008 6196658556039368152/00007 6196658556039368152/00054 6196658556039368152/00005 6196658556039368152/00004 6196658556039368152/00028 6125665323616953812/00015 6125665323616953812/00032 6125665323616953812/00033 6125665323616953812/00013 6125665323616953812/00036 6125665323616953812/00023 6125665323616953812/00014 6125665323616953812/00035 6125665323616953812/00019 6125665323616953812/00011 6125665323616953812/00034 6125665323616953812/00002 6125665323616953812/00008 5569064620349304030/00015 5569064620349304030/00006 5569064620349304030/00009 5569064620349304030/00010 5569064620349304030/00001 5569064620349304030/00012 5569064620349304030/00014 5569064620349304030/00011 5569064620349304030/00007 5972554034481780493/00003 5972554034481780493/00001 5972554034481780493/00002 5927927176792685406/00002 5927927176792685406/00005 5927927176792685406/00004 5960199990551560915/00009 5960199990551560915/00024 5960199990551560915/00011 5960199990551560915/00005 5960199990551560915/00004 5961823488190159446/00011 5961823488190159446/00007 5961823488190159446/00005 6141011241765483892/00006 6141011241765483892/00010 6141011241765483892/00001 6141011241765483892/00011 6141011241765483892/00002 6369607440121317877/00006 5558044163764488872/00001 6209665864495381245/00003 6209665864495381245/00006 6209665864495381245/00009 6209665864495381245/00008 6209665864495381245/00007 5537522380527482610/00009 5537522380527482610/00013 5537522380527482610/00023 5537522380527482610/00012 5537522380527482610/00021 5537522380527482610/00014 5537522380527482610/00011 5537522380527482610/00002 5537522380527482610/00008 5537522380527482610/00005 5972943158518864203/00005 5972943158518864203/00004 5678905831964135158/00003 5678905831964135158/00009 5678905831964135158/00023 5678905831964135158/00018 5678905831964135158/00012 5678905831964135158/00021 5678905831964135158/00020 5678905831964135158/00017 5678905831964135158/00016 5678905831964135158/00019 5678905831964135158/00011 5678905831964135158/00002 5678905831964135158/00008 5678905831964135158/00005 5678905831964135158/00004 5678905831964135158/00028 6061970099623735305/00003 6061970099623735305/00006 6061970099623735305/00009 6061970099623735305/00010 6061970099623735305/00013 6061970099623735305/00001 6061970099623735305/00012 6061970099623735305/00014 6061970099623735305/00008 6061970099623735305/00007 6061970099623735305/00005 6061970099623735305/00004 5994076974595497466/00013 5994076974595497466/00012 5994076974595497466/00014 5994076974595497466/00011 5994076974595497466/00002 6057517077531257665/00029 6057517077531257665/00015 6057517077531257665/00003 6057517077531257665/00006 6057517077531257665/00032 6057517077531257665/00010 6057517077531257665/00033 6057517077531257665/00036 6057517077531257665/00001 6057517077531257665/00038 6057517077531257665/00018 6057517077531257665/00012 6057517077531257665/00039 6057517077531257665/00017 6057517077531257665/00016 6057517077531257665/00019 6057517077531257665/00011 6057517077531257665/00027 6057517077531257665/00034 6057517077531257665/00008 6057517077531257665/00040 6057517077531257665/00005 6057517077531257665/00004 6255224300590975746/00010 6255224300590975746/00013 6255224300590975746/00018 6255224300590975746/00012 6255224300590975746/00021 6255224300590975746/00017 6255224300590975746/00011 6255224300590975746/00002 6255224300590975746/00008 6255224300590975746/00007 6284226926250605751/00006 6284226926250605751/00001 6284226926250605751/00005 6191404093049529535/00003 6191404093049529535/00006 6191404093049529535/00010 6191404093049529535/00005 6226557970870496062/00015 6226557970870496062/00003 6226557970870496062/00006 6226557970870496062/00009 6226557970870496062/00001 6226557970870496062/00016 6226557970870496062/00019 6226557970870496062/00008 6226557970870496062/00007 6226557970870496062/00004 6357714675678689620/00029 6357714675678689620/00010 6357714675678689620/00030 6357714675678689620/00002 6357714675678689620/00025 5957285425744490519/00015 5957285425744490519/00032 5957285425744490519/00010 5957285425744490519/00033 5957285425744490519/00024 5957285425744490519/00018 5957285425744490519/00014 5957285425744490519/00039 5957285425744490519/00020 5957285425744490519/00017 5957285425744490519/00019 5957285425744490519/00008 5957285425744490519/00025 5957285425744490519/00004 5994061512843711714/00029 5994061512843711714/00015 5994061512843711714/00006 5994061512843711714/00046 5994061512843711714/00032 5994061512843711714/00070 5994061512843711714/00073 5994061512843711714/00010 5994061512843711714/00057 5994061512843711714/00024 5994061512843711714/00053 5994061512843711714/00078 5994061512843711714/00030 5994061512843711714/00071 5994061512843711714/00058 5994061512843711714/00062 5994061512843711714/00031 5994061512843711714/00013 5994061512843711714/00069 5994061512843711714/00022 5994061512843711714/00044 5994061512843711714/00077 5994061512843711714/00063 5994061512843711714/00045 5994061512843711714/00064 5994061512843711714/00049 5994061512843711714/00038 5994061512843711714/00018 5994061512843711714/00042 5994061512843711714/00012 5994061512843711714/00065 5994061512843711714/00061 5994061512843711714/00021 5994061512843711714/00075 5994061512843711714/00079 5994061512843711714/00014 5994061512843711714/00037 5994061512843711714/00047 5994061512843711714/00039 5994061512843711714/00051 5994061512843711714/00017 5994061512843711714/00076 5994061512843711714/00080 5994061512843711714/00052 5994061512843711714/00016 5994061512843711714/00011 5994061512843711714/00027 5994061512843711714/00034 5994061512843711714/00081 5994061512843711714/00008 5994061512843711714/00040 5994061512843711714/00043 5994061512843711714/00005 5994061512843711714/00074 5994061512843711714/00004 5994061512843711714/00028 6246801440226783821/00003 6246801440226783821/00006 6246801440226783821/00013 6246801440226783821/00001 6246801440226783821/00012 6246801440226783821/00002 6246801440226783821/00007 6142866667637358697/00012 6142866667637358697/00008 5910922971771108903/00060 5910922971771108903/00029 5910922971771108903/00003 5910922971771108903/00006 5910922971771108903/00046 5910922971771108903/00056 5910922971771108903/00032 5910922971771108903/00073 5910922971771108903/00010 5910922971771108903/00033 5910922971771108903/00057 5910922971771108903/00024 5910922971771108903/00053 5910922971771108903/00078 5910922971771108903/00071 5910922971771108903/00058 5910922971771108903/00062 5910922971771108903/00013 5910922971771108903/00069 5910922971771108903/00022 5910922971771108903/00026 5910922971771108903/00044 5910922971771108903/00077 5910922971771108903/00050 5910922971771108903/00063 5910922971771108903/00001 5910922971771108903/00045 5910922971771108903/00066 5910922971771108903/00064 5910922971771108903/00072 5910922971771108903/00038 5910922971771108903/00048 5910922971771108903/00012 5910922971771108903/00041 5910922971771108903/00065 5910922971771108903/00061 5910922971771108903/00083 5910922971771108903/00021 5910922971771108903/00075 5910922971771108903/00079 5910922971771108903/00037 5910922971771108903/00047 5910922971771108903/00039 5910922971771108903/00020 5910922971771108903/00051 5910922971771108903/00017 5910922971771108903/00080 5910922971771108903/00052 5910922971771108903/00055 5910922971771108903/00016 5910922971771108903/00059 5910922971771108903/00019 5910922971771108903/00011 5910922971771108903/00067 5910922971771108903/00034 5910922971771108903/00081 5910922971771108903/00082 5910922971771108903/00002 5910922971771108903/00040 5910922971771108903/00068 5910922971771108903/00054 5910922971771108903/00043 5910922971771108903/00074 5910922971771108903/00004 5910922971771108903/00028 6203732367175947858/00015 6203732367175947858/00003 6203732367175947858/00006 6203732367175947858/00009 6203732367175947858/00024 6203732367175947858/00030 6203732367175947858/00031 6203732367175947858/00013 6203732367175947858/00026 6203732367175947858/00036 6203732367175947858/00038 6203732367175947858/00012 6203732367175947858/00014 6203732367175947858/00037 6203732367175947858/00039 6203732367175947858/00020 6203732367175947858/00017 6203732367175947858/00019 6203732367175947858/00011 6203732367175947858/00034 6203732367175947858/00002 6203732367175947858/00008 6203732367175947858/00005 6203732367175947858/00028 5703768538647221780/00032 5703768538647221780/00030 5703768538647221780/00013 5703768538647221780/00022 5703768538647221780/00026 5703768538647221780/00001 5703768538647221780/00018 5703768538647221780/00014 5703768538647221780/00007 5703768538647221780/00025 6257821896811598896/00029 6257821896811598896/00015 6257821896811598896/00026 6257821896811598896/00021 6257821896811598896/00014 6257821896811598896/00017 6257821896811598896/00016 6257821896811598896/00011 6257821896811598896/00027 6257079726462850041/00006 6257079726462850041/00005 6217744697979160468/00006 6217744697979160468/00002 6012229224375298945/00015 6012229224375298945/00003 6012229224375298945/00006 6012229224375298945/00010 6012229224375298945/00022 6012229224375298945/00023 6012229224375298945/00018 6012229224375298945/00012 6012229224375298945/00021 6012229224375298945/00002 6012229224375298945/00005 6012229224375298945/00004 5912801590466443013/00015 5912801590466443013/00003 5912801590466443013/00009 5912801590466443013/00001 5912801590466443013/00014 5912801590466443013/00011 5912801590466443013/00002 5912801590466443013/00008 5912801590466443013/00004 6287976432700017757/00003 6287976432700017757/00006 6287976432700017757/00001 6287976432700017757/00004 5980738524161112283/00001 5980738524161112283/00002 5980738524161112283/00008 5980738524161112283/00007 5980738524161112283/00004 6102820392569469963/00015 6102820392569469963/00003 6102820392569469963/00006 6102820392569469963/00009 6102820392569469963/00010 6102820392569469963/00022 6102820392569469963/00001 6102820392569469963/00023 6102820392569469963/00018 6102820392569469963/00012 6102820392569469963/00021 6102820392569469963/00014 6102820392569469963/00020 6102820392569469963/00016 6102820392569469963/00019 6102820392569469963/00011 6102820392569469963/00002 6102820392569469963/00007 6102820392569469963/00005 6102820392569469963/00004 5995132248060186287/00029 5995132248060186287/00015 5995132248060186287/00003 5995132248060186287/00032 5995132248060186287/00010 5995132248060186287/00033 5995132248060186287/00024 5995132248060186287/00053 5995132248060186287/00030 5995132248060186287/00031 5995132248060186287/00013 5995132248060186287/00022 5995132248060186287/00026 5995132248060186287/00044 5995132248060186287/00050 5995132248060186287/00036 5995132248060186287/00001 5995132248060186287/00023 5995132248060186287/00041 5995132248060186287/00021 5995132248060186287/00014 5995132248060186287/00037 5995132248060186287/00039 5995132248060186287/00020 5995132248060186287/00035 5995132248060186287/00051 5995132248060186287/00016 5995132248060186287/00019 5995132248060186287/00027 5995132248060186287/00002 5995132248060186287/00008 5995132248060186287/00040 5995132248060186287/00007 5995132248060186287/00025 5995132248060186287/00054 5995132248060186287/00043 5995132248060186287/00005 5995132248060186287/00004 5995441485705498308/00015 5995441485705498308/00006 5995441485705498308/00012 5995441485705498308/00021 5995441485705498308/00017 5995441485705498308/00016 5995441485705498308/00002 5995441485705498308/00004 6235238529272487589/00015 6235238529272487589/00003 6235238529272487589/00013 6235238529272487589/00001 6235238529272487589/00012 6235238529272487589/00021 6235238529272487589/00017 6235238529272487589/00016 6235238529272487589/00002 6235238529272487589/00008 6235238529272487589/00007 6235238529272487589/00005 6235238529272487589/00004 6227644168099658253/00015 6227644168099658253/00006 6227644168099658253/00010 6227644168099658253/00013 6227644168099658253/00001 6227644168099658253/00018 6227644168099658253/00012 6227644168099658253/00014 6227644168099658253/00016 6227644168099658253/00011 6227644168099658253/00002 6227644168099658253/00008 6227644168099658253/00005 5977506990767534790/00015 5977506990767534790/00006 5977506990767534790/00009 5977506990767534790/00024 5977506990767534790/00013 5977506990767534790/00022 5977506990767534790/00001 5977506990767534790/00023 5977506990767534790/00018 5977506990767534790/00012 5977506990767534790/00014 5977506990767534790/00020 5977506990767534790/00017 5977506990767534790/00011 5977506990767534790/00002 5977506990767534790/00025 5977506990767534790/00005 5977506990767534790/00004 5983336120381705957/00002 6086421777936656800/00032 6086421777936656800/00010 6086421777936656800/00044 6086421777936656800/00001 6086421777936656800/00018 6086421777936656800/00042 6086421777936656800/00041 6086421777936656800/00019 6086421777936656800/00011 6086421777936656800/00008 6086421777936656800/00040 6086421777936656800/00007 6086421777936656800/00004 5954703291406133250/00003 5954703291406133250/00006 5954703291406133250/00024 5954703291406133250/00030 5954703291406133250/00013 5954703291406133250/00026 5954703291406133250/00018 5954703291406133250/00021 5954703291406133250/00011 5954703291406133250/00007 5954703291406133250/00005 5954703291406133250/00004 5536745420943636139/00147 5536745420943636139/00149 5536745420943636139/00060 5536745420943636139/00015 5536745420943636139/00098 5536745420943636139/00107 5536745420943636139/00056 5536745420943636139/00163 5536745420943636139/00113 5536745420943636139/00109 5536745420943636139/00122 5536745420943636139/00070 5536745420943636139/00159 5536745420943636139/00090 5536745420943636139/00152 5536745420943636139/00123 5536745420943636139/00057 5536745420943636139/00141 5536745420943636139/00053 5536745420943636139/00118 5536745420943636139/00071 5536745420943636139/00167 5536745420943636139/00165 5536745420943636139/00148 5536745420943636139/00026 5536745420943636139/00158 5536745420943636139/00093 5536745420943636139/00166 5536745420943636139/00103 5536745420943636139/00050 5536745420943636139/00105 5536745420943636139/00117 5536745420943636139/00063 5536745420943636139/00110 5536745420943636139/00001 5536745420943636139/00066 5536745420943636139/00064 5536745420943636139/00136 5536745420943636139/00038 5536745420943636139/00088 5536745420943636139/00108 5536745420943636139/00145 5536745420943636139/00018 5536745420943636139/00042 5536745420943636139/00012 5536745420943636139/00041 5536745420943636139/00126 5536745420943636139/00065 5536745420943636139/00129 5536745420943636139/00075 5536745420943636139/00104 5536745420943636139/00151 5536745420943636139/00160 5536745420943636139/00037 5536745420943636139/00127 5536745420943636139/00020 5536745420943636139/00035 5536745420943636139/00051 5536745420943636139/00017 5536745420943636139/00091 5536745420943636139/00095 5536745420943636139/00170 5536745420943636139/00111 5536745420943636139/00146 5536745420943636139/00119 5536745420943636139/00027 5536745420943636139/00153 5536745420943636139/00034 5536745420943636139/00100 5536745420943636139/00106 5536745420943636139/00131 5536745420943636139/00040 5536745420943636139/00007 5536745420943636139/00102 5536745420943636139/00156 5536745420943636139/00139 5536745420943636139/00054 5536745420943636139/00043 6151853886704967582/00003 6170914522067217718/00060 6170914522067217718/00029 6170914522067217718/00006 6170914522067217718/00046 6170914522067217718/00056 6170914522067217718/00070 6170914522067217718/00009 6170914522067217718/00073 6170914522067217718/00057 6170914522067217718/00053 6170914522067217718/00030 6170914522067217718/00071 6170914522067217718/00062 6170914522067217718/00031 6170914522067217718/00069 6170914522067217718/00022 6170914522067217718/00044 6170914522067217718/00050 6170914522067217718/00001 6170914522067217718/00049 6170914522067217718/00072 6170914522067217718/00023 6170914522067217718/00038 6170914522067217718/00048 6170914522067217718/00041 6170914522067217718/00061 6170914522067217718/00021 6170914522067217718/00047 6170914522067217718/00020 6170914522067217718/00035 6170914522067217718/00051 6170914522067217718/00017 6170914522067217718/00052 6170914522067217718/00059 6170914522067217718/00019 6170914522067217718/00011 6170914522067217718/00067 6170914522067217718/00002 6170914522067217718/00008 6170914522067217718/00007 6170914522067217718/00025 6170914522067217718/00043 6170914522067217718/00005 6170914522067217718/00004 5982233172780027186/00001 6121328265641447573/00003 6121328265641447573/00006 6121328265641447573/00009 6121328265641447573/00010 6121328265641447573/00024 6121328265641447573/00013 6121328265641447573/00022 6121328265641447573/00026 6121328265641447573/00023 6121328265641447573/00018 6121328265641447573/00020 6121328265641447573/00019 6121328265641447573/00002 6121328265641447573/00008 6121328265641447573/00007 6121328265641447573/00025 6121328265641447573/00005 6074602457435442480/00003 6074602457435442480/00008 6074602457435442480/00007 6074602457435442480/00004 6360612490113299870/00013 6360612490113299870/00017 5961266860427951998/00003 5961266860427951998/00006 5961266860427951998/00009 5961266860427951998/00010 5961266860427951998/00011 5961266860427951998/00008 5961266860427951998/00007 5961266860427951998/00004 5552454693325501610/00003 5552454693325501610/00006 5552454693325501610/00009 5552454693325501610/00013 5552454693325501610/00012 5552454693325501610/00005 5552454693325501610/00004 6351431997518095202/00003 6351431997518095202/00009 6351431997518095202/00017 6351431997518095202/00019 6351431997518095202/00008 5995070400531123880/00009 5995070400531123880/00010 5995070400531123880/00013 5995070400531123880/00023 5995070400531123880/00012 5995070400531123880/00021 5995070400531123880/00014 5995070400531123880/00020 5995070400531123880/00016 5995070400531123880/00011 5995070400531123880/00002 5995070400531123880/00007 5999627790328914815/00001 5874904517033375817/00006 5874904517033375817/00032 5874904517033375817/00010 5874904517033375817/00033 5874904517033375817/00024 5874904517033375817/00030 5874904517033375817/00031 5874904517033375817/00022 5874904517033375817/00023 5874904517033375817/00018 5874904517033375817/00012 5874904517033375817/00016 5874904517033375817/00019 5874904517033375817/00011 5874904517033375817/00027 5874904517033375817/00034 5874904517033375817/00008 5874904517033375817/00007 5874904517033375817/00025 5874904517033375817/00004 5874904517033375817/00028 6277941671109631239/00002 6277941671109631239/00004 5953868349763854392/00006 5953868349763854392/00009 5953868349763854392/00010 5953868349763854392/00033 5953868349763854392/00013 5953868349763854392/00026 5953868349763854392/00023 5953868349763854392/00021 5953868349763854392/00016 5953868349763854392/00019 5953868349763854392/00004 6118019422836534756/00001 6118019422836534756/00002 6118019422836534756/00007 6118019422836534756/00005 6107281145603067202/00015 6107281145603067202/00032 6107281145603067202/00009 6107281145603067202/00024 6107281145603067202/00030 6107281145603067202/00013 6107281145603067202/00022 6107281145603067202/00044 6107281145603067202/00045 6107281145603067202/00038 6107281145603067202/00018 6107281145603067202/00042 6107281145603067202/00012 6107281145603067202/00041 6107281145603067202/00014 6107281145603067202/00020 6107281145603067202/00035 6107281145603067202/00016 6107281145603067202/00011 6107281145603067202/00027 6107281145603067202/00034 6107281145603067202/00002 6107281145603067202/00008 6107281145603067202/00040 6107281145603067202/00025 6107281145603067202/00043 6107281145603067202/00028 6217563020992948710/00003 6217563020992948710/00006 6217563020992948710/00010 6217563020992948710/00013 6217563020992948710/00018 6217563020992948710/00012 6217563020992948710/00021 6217563020992948710/00020 6217563020992948710/00016 6217563020992948710/00019 6217563020992948710/00002 6217563020992948710/00007 6217563020992948710/00005 6217563020992948710/00004 6234801731098479034/00003 6234801731098479034/00006 6234801731098479034/00009 6234801731098479034/00010 6234801731098479034/00001 6234801731098479034/00011 6234801731098479034/00002 6234801731098479034/00008 6234801731098479034/00007 6234801731098479034/00005 6234801731098479034/00004 5963675048721235039/00029 5963675048721235039/00015 5963675048721235039/00006 5963675048721235039/00032 5963675048721235039/00033 5963675048721235039/00031 5963675048721235039/00013 5963675048721235039/00026 5963675048721235039/00001 5963675048721235039/00018 5963675048721235039/00012 5963675048721235039/00041 5963675048721235039/00021 5963675048721235039/00020 5963675048721235039/00035 5963675048721235039/00017 5963675048721235039/00016 5963675048721235039/00019 5963675048721235039/00027 5963675048721235039/00034 5963675048721235039/00008 5963675048721235039/00040 5963675048721235039/00007 5963675048721235039/00025 5963675048721235039/00005 5963675048721235039/00028 5874556624682457380/00015 5874556624682457380/00006 5874556624682457380/00032 5874556624682457380/00010 5874556624682457380/00033 5874556624682457380/00024 5874556624682457380/00030 5874556624682457380/00031 5874556624682457380/00013 5874556624682457380/00022 5874556624682457380/00026 5874556624682457380/00044 5874556624682457380/00050 5874556624682457380/00036 5874556624682457380/00038 5874556624682457380/00048 5874556624682457380/00018 5874556624682457380/00042 5874556624682457380/00021 5874556624682457380/00014 5874556624682457380/00037 5874556624682457380/00039 5874556624682457380/00020 5874556624682457380/00017 5874556624682457380/00019 5874556624682457380/00011 5874556624682457380/00034 5874556624682457380/00002 5874556624682457380/00008 5874556624682457380/00040 5874556624682457380/00025 5874556624682457380/00043 5874556624682457380/00005 5874556624682457380/00004 5874556624682457380/00028 6235549055407986943/00003 6332062124509813446/00015 6332062124509813446/00063 6332062124509813446/00018 6332062124509813446/00016 6332062124509813446/00059 6100934042933064381/00003 6100934042933064381/00006 6100934042933064381/00001 6100934042933064381/00002 6100934042933064381/00007 6100934042933064381/00005 6362913733590438579/00147 6362913733590438579/00125 6362913733590438579/00107 6362913733590438579/00010 6362913733590438579/00057 6362913733590438579/00078 6362913733590438579/00142 6362913733590438579/00221 6362913733590438579/00044 6362913733590438579/00204 6362913733590438579/00172 6362913733590438579/00158 6362913733590438579/00099 6362913733590438579/00105 6362913733590438579/00110 6362913733590438579/00001 6362913733590438579/00193 6362913733590438579/00048 6362913733590438579/00134 6362913733590438579/00145 6362913733590438579/00213 6362913733590438579/00065 6362913733590438579/00199 6362913733590438579/00196 6362913733590438579/00224 6362913733590438579/00051 6362913733590438579/00174 6362913733590438579/00185 6362913733590438579/00055 6362913733590438579/00207 6362913733590438579/00138 6362913733590438579/00146 6362913733590438579/00153 6362913733590438579/00082 6362913733590438579/00002 6362913733590438579/00092 6362913733590438579/00132 6362913733590438579/00156 5651905520057836608/00004 5928611365082940826/00003 5928611365082940826/00021 5928611365082940826/00011 5928611365082940826/00002 5928611365082940826/00005 5672033025297070783/00015 5672033025297070783/00003 5672033025297070783/00006 5672033025297070783/00013 5672033025297070783/00001 5672033025297070783/00018 5672033025297070783/00012 5672033025297070783/00020 5672033025297070783/00017 5672033025297070783/00016 5672033025297070783/00008 5988835396507516711/00003 5988835396507516711/00009 5988835396507516711/00013 5988835396507516711/00012 5988835396507516711/00011 5988835396507516711/00005 5988835396507516711/00004 6225885378992005357/00029 6225885378992005357/00003 6225885378992005357/00006 6225885378992005357/00032 6225885378992005357/00009 6225885378992005357/00010 6225885378992005357/00024 6225885378992005357/00030 6225885378992005357/00031 6225885378992005357/00026 6225885378992005357/00036 6225885378992005357/00001 6225885378992005357/00023 6225885378992005357/00038 6225885378992005357/00012 6225885378992005357/00037 6225885378992005357/00035 6225885378992005357/00016 6225885378992005357/00019 6225885378992005357/00011 6225885378992005357/00034 6225885378992005357/00008 6225885378992005357/00040 6225885378992005357/00025 6225885378992005357/00004 6075344627783497858/00053 6075344627783497858/00071 6075344627783497858/00058 6075344627783497858/00031 6075344627783497858/00026 6075344627783497858/00044 6075344627783497858/00050 6075344627783497858/00063 6075344627783497858/00045 6075344627783497858/00038 6075344627783497858/00048 6075344627783497858/00042 6075344627783497858/00041 6075344627783497858/00065 6075344627783497858/00061 6075344627783497858/00079 6075344627783497858/00014 6075344627783497858/00047 6075344627783497858/00039 6075344627783497858/00035 6075344627783497858/00051 6075344627783497858/00017 6075344627783497858/00080 6075344627783497858/00011 6075344627783497858/00027 6075344627783497858/00034 6075344627783497858/00082 6075344627783497858/00002 6075344627783497858/00040 6075344627783497858/00068 6075344627783497858/00054 6075344627783497858/00043 6075344627783497858/00005 6075344627783497858/00074 6075344627783497858/00004 5563498342733682518/00006 5563498342733682518/00009 5563498342733682518/00008 5563498342733682518/00005 6252997789544727266/00015 6252997789544727266/00009 6252997789544727266/00010 6252997789544727266/00013 6252997789544727266/00001 6252997789544727266/00012 6252997789544727266/00014 6252997789544727266/00017 6252997789544727266/00016 6252997789544727266/00011 6252997789544727266/00008 6252997789544727266/00007 6252997789544727266/00004 6015277792162728013/00006 6015277792162728013/00022 6015277792162728013/00021 6015277792162728013/00020 6015277792162728013/00017 6015277792162728013/00002 6015277792162728013/00008 6015277792162728013/00025 6015277792162728013/00028 5556181006951512202/00015 5556181006951512202/00003 5556181006951512202/00009 5556181006951512202/00010 5556181006951512202/00001 5556181006951512202/00014 5556181006951512202/00016 5556181006951512202/00019 5556181006951512202/00002 5556181006951512202/00005 5556181006951512202/00004 6246778247403385418/00006 6246778247403385418/00009 6246778247403385418/00010 6246778247403385418/00013 6246778247403385418/00001 6246778247403385418/00012 6246778247403385418/00020 6246778247403385418/00019 6246778247403385418/00011 6246778247403385418/00002 6246778247403385418/00008 6246778247403385418/00004 6091339945117726163/00008 6091339945117726163/00007 5958073981740748393/00003 5958073981740748393/00006 5958073981740748393/00010 5958073981740748393/00013 5958073981740748393/00001 5958073981740748393/00012 5958073981740748393/00019 5958073981740748393/00002 6356878445546153116/00001 6356878445546153116/00012 6356878445546153116/00011 6356878445546153116/00008 6356878445546153116/00004 6017737519932497348/00015 6017737519932497348/00003 6017737519932497348/00009 6017737519932497348/00001 6017737519932497348/00014 6017737519932497348/00002 6017737519932497348/00008 6375923619026758902/00015 6375923619026758902/00013 6375923619026758902/00014 6375923619026758902/00020 5981467809607879951/00015 5981467809607879951/00006 5981467809607879951/00024 5981467809607879951/00013 5981467809607879951/00022 5981467809607879951/00001 5981467809607879951/00023 5981467809607879951/00018 5981467809607879951/00021 5981467809607879951/00014 5981467809607879951/00020 5981467809607879951/00017 5981467809607879951/00019 5981467809607879951/00002 5981467809607879951/00005 6010760345560793772/00005 5940459032368966147/00003 5940459032368966147/00010 5940459032368966147/00001 5940459032368966147/00011 5940459032368966147/00002 5940459032368966147/00007 5940459032368966147/00004 6365935243083171934/00003 6240106445205709929/00006 6240106445205709929/00002 6240106445205709929/00004 6194416583110881324/00003 6194416583110881324/00006 6194416583110881324/00009 6194416583110881324/00022 6194416583110881324/00001 6194416583110881324/00023 6194416583110881324/00021 6194416583110881324/00016 6194416583110881324/00011 6194416583110881324/00025 6194416583110881324/00005 6194416583110881324/00004 6297810189821008710/00058 6261629385319510182/00015 6261629385319510182/00006 6261629385319510182/00032 6261629385319510182/00009 6261629385319510182/00010 6261629385319510182/00024 6261629385319510182/00030 6261629385319510182/00031 6261629385319510182/00013 6261629385319510182/00001 6261629385319510182/00018 6261629385319510182/00012 6261629385319510182/00021 6261629385319510182/00014 6261629385319510182/00020 6261629385319510182/00017 6261629385319510182/00016 6261629385319510182/00019 6261629385319510182/00011 6261629385319510182/00027 6261629385319510182/00034 6261629385319510182/00008 6261629385319510182/00005 6359201593356497677/00023 6177354396030778154/00003 6177354396030778154/00006 6177354396030778154/00009 6177354396030778154/00001 6177354396030778154/00012 6177354396030778154/00002 6177354396030778154/00008 6177354396030778154/00007 6177354396030778154/00004 5943191920059414159/00013 5943191920059414159/00011 5943191920059414159/00008 5943191920059414159/00004 5990342930028348344/00015 5990342930028348344/00006 5990342930028348344/00009 5990342930028348344/00010 5990342930028348344/00013 5990342930028348344/00001 5990342930028348344/00012 5990342930028348344/00014 5990342930028348344/00016 5990342930028348344/00008 5990342930028348344/00007 5990342930028348344/00005 6106919079860014395/00015 6106919079860014395/00003 6106919079860014395/00006 6106919079860014395/00013 6106919079860014395/00022 6106919079860014395/00026 6106919079860014395/00001 6106919079860014395/00018 6106919079860014395/00014 6106919079860014395/00020 6106919079860014395/00019 6106919079860014395/00011 6106919079860014395/00027 6106919079860014395/00002 6106919079860014395/00008 6106919079860014395/00007 6106919079860014395/00025 6106919079860014395/00005 6106919079860014395/00028 5985797136642257527/00015 5985797136642257527/00006 5985797136642257527/00009 5985797136642257527/00010 5985797136642257527/00024 5985797136642257527/00013 5985797136642257527/00022 5985797136642257527/00001 5985797136642257527/00018 5985797136642257527/00012 5985797136642257527/00021 5985797136642257527/00014 5985797136642257527/00020 5985797136642257527/00016 5985797136642257527/00019 5985797136642257527/00011 5985797136642257527/00002 5985797136642257527/00008 5985797136642257527/00005 5997335566282974340/00002 5997335566282974340/00004 6034123249663384057/00009 6034123249663384057/00001 6034123249663384057/00002 6034123249663384057/00005 6034123249663384057/00004 5966945236689931761/00015 5966945236689931761/00003 5966945236689931761/00002 5966945236689931761/00008 5966945236689931761/00004 6087080196423072052/00003 6087080196423072052/00001 5951721725109310806/00015 5951721725109310806/00006 5951721725109310806/00013 5951721725109310806/00012 5951721725109310806/00017 5951721725109310806/00011 5951721725109310806/00007 6352893145392128503/00013 6352893145392128503/00036 6352893145392128503/00014 6352893145392128503/00020 6352893145392128503/00017 6352893145392128503/00008 6121263841131942672/00001 5561271831687433454/00001 5561271831687433454/00012 5561271831687433454/00021 5561271831687433454/00014 5561271831687433454/00017 5561271831687433454/00011 5561271831687433454/00008 6095343284003850449/00013 6095343284003850449/00011 6095343284003850449/00008 6002155808079344078/00015 6002155808079344078/00009 6002155808079344078/00021 6002155808079344078/00017 6002155808079344078/00016 6002155808079344078/00019 6002155808079344078/00002 6002155808079344078/00008 6002155808079344078/00007 6002155808079344078/00025 6145464263857983428/00015 6145464263857983428/00003 6145464263857983428/00006 6145464263857983428/00009 6145464263857983428/00010 6145464263857983428/00018 6145464263857983428/00012 6145464263857983428/00014 6145464263857983428/00017 6145464263857983428/00011 6145464263857983428/00008 6145464263857983428/00007 6245690761684036436/00006 6348038114360790454/00012 6348038114360790454/00004 5996659108933854325/00029 5996659108933854325/00015 5996659108933854325/00006 5996659108933854325/00032 5996659108933854325/00009 5996659108933854325/00010 5996659108933854325/00033 5996659108933854325/00024 5996659108933854325/00031 5996659108933854325/00013 5996659108933854325/00023 5996659108933854325/00014 5996659108933854325/00035 5996659108933854325/00017 5996659108933854325/00019 5996659108933854325/00011 5996659108933854325/00027 5996659108933854325/00002 5996659108933854325/00008 5996659108933854325/00007 5996659108933854325/00025 5996659108933854325/00005 5990226965911420180/00005 6223755504709850674/00012 6223755504709850674/00002 6223755504709850674/00004 6127238570137412973/00007 6127238570137412973/00005 5578446117413966372/00029 5578446117413966372/00015 5578446117413966372/00006 5578446117413966372/00056 5578446117413966372/00009 5578446117413966372/00033 5578446117413966372/00057 5578446117413966372/00026 5578446117413966372/00036 5578446117413966372/00001 5578446117413966372/00045 5578446117413966372/00023 5578446117413966372/00048 5578446117413966372/00042 5578446117413966372/00012 5578446117413966372/00021 5578446117413966372/00014 5578446117413966372/00037 5578446117413966372/00039 5578446117413966372/00020 5578446117413966372/00035 5578446117413966372/00051 5578446117413966372/00017 5578446117413966372/00019 5578446117413966372/00008 5578446117413966372/00040 5578446117413966372/00007 5966353819693979079/00006 5966353819693979079/00002 5966353819693979079/00005 5904784604511654871/00032 5904784604511654871/00010 5904784604511654871/00053 5904784604511654871/00030 5904784604511654871/00062 5904784604511654871/00031 5904784604511654871/00044 5904784604511654871/00050 5904784604511654871/00049 5904784604511654871/00038 5904784604511654871/00048 5904784604511654871/00042 5904784604511654871/00021 5904784604511654871/00037 5904784604511654871/00047 5904784604511654871/00039 5904784604511654871/00020 5904784604511654871/00051 5904784604511654871/00055 5904784604511654871/00019 5904784604511654871/00011 5904784604511654871/00027 5904784604511654871/00043 5904784604511654871/00004 6370366360842521130/00006 6370366360842521130/00001 6092777900038660906/00002 6092777900038660906/00005 6129426426478062520/00001 6129426426478062520/00002 5536760882825901738/00003 5536760882825901738/00009 5536760882825901738/00030 5536760882825901738/00031 5536760882825901738/00013 5536760882825901738/00026 5536760882825901738/00023 5536760882825901738/00018 5536760882825901738/00014 5536760882825901738/00017 5536760882825901738/00016 5536760882825901738/00027 5536760882825901738/00002 5536760882825901738/00008 5536760882825901738/00004 5536760882825901738/00028 5981846625853885048/00015 5981846625853885048/00006 5981846625853885048/00010 5981846625853885048/00024 5981846625853885048/00013 5981846625853885048/00022 5981846625853885048/00026 5981846625853885048/00012 5981846625853885048/00021 5981846625853885048/00014 5981846625853885048/00017 5981846625853885048/00016 5981846625853885048/00019 5981846625853885048/00011 5981846625853885048/00002 5981846625853885048/00025 5981846625853885048/00005 5981846625853885048/00004 5589300358764428968/00003 5589300358764428968/00033 5589300358764428968/00031 5589300358764428968/00001 5589300358764428968/00012 5589300358764428968/00014 5589300358764428968/00016 5589300358764428968/00011 5589300358764428968/00028 6090961129002218944/00003 6090961129002218944/00006 6090961129002218944/00013 6090961129002218944/00001 6090961129002218944/00014 6090961129002218944/00011 6090961129002218944/00007 6090961129002218944/00005 6090961129002218944/00004 5950607181095930986/00009 5950607181095930986/00002 5950607181095930986/00007 5917834433143869120/00060 5917834433143869120/00015 5917834433143869120/00003 5917834433143869120/00006 5917834433143869120/00056 5917834433143869120/00032 5917834433143869120/00090 5917834433143869120/00010 5917834433143869120/00033 5917834433143869120/00053 5917834433143869120/00078 5917834433143869120/00030 5917834433143869120/00058 5917834433143869120/00062 5917834433143869120/00031 5917834433143869120/00086 5917834433143869120/00069 5917834433143869120/00022 5917834433143869120/00094 5917834433143869120/00026 5917834433143869120/00077 5917834433143869120/00050 5917834433143869120/00105 5917834433143869120/00036 5917834433143869120/00063 5917834433143869120/00001 5917834433143869120/00045 5917834433143869120/00049 5917834433143869120/00072 5917834433143869120/00023 5917834433143869120/00038 5917834433143869120/00088 5917834433143869120/00018 5917834433143869120/00041 5917834433143869120/00065 5917834433143869120/00061 5917834433143869120/00083 5917834433143869120/00021 5917834433143869120/00075 5917834433143869120/00014 5917834433143869120/00037 5917834433143869120/00020 5917834433143869120/00035 5917834433143869120/00051 5917834433143869120/00017 5917834433143869120/00076 5917834433143869120/00052 5917834433143869120/00091 5917834433143869120/00055 5917834433143869120/00016 5917834433143869120/00059 5917834433143869120/00084 5917834433143869120/00034 5917834433143869120/00100 5917834433143869120/00002 5917834433143869120/00089 5917834433143869120/00040 5917834433143869120/00007 5917834433143869120/00068 5917834433143869120/00043 5917834433143869120/00005 5917834433143869120/00004 5917834433143869120/00028 6116809530549314510/00003 6116809530549314510/00006 6116809530549314510/00009 6116809530549314510/00014 6116809530549314510/00020 6116809530549314510/00017 6116809530549314510/00016 6116809530549314510/00011 6116809530549314510/00002 6116809530549314510/00007 5548276119643215549/00010 5548276119643215549/00013 5548276119643215549/00022 5548276119643215549/00001 5548276119643215549/00023 5548276119643215549/00018 5548276119643215549/00021 5548276119643215549/00020 5548276119643215549/00016 5548276119643215549/00019 5548276119643215549/00007 6212646142302074647/00003 6212646142302074647/00004 6093102599565591018/00029 6093102599565591018/00003 6093102599565591018/00006 6093102599565591018/00009 6093102599565591018/00030 6093102599565591018/00013 6093102599565591018/00022 6093102599565591018/00001 6093102599565591018/00023 6093102599565591018/00042 6093102599565591018/00012 6093102599565591018/00014 6093102599565591018/00037 6093102599565591018/00020 6093102599565591018/00017 6093102599565591018/00016 6093102599565591018/00019 6093102599565591018/00027 6093102599565591018/00034 6093102599565591018/00002 6093102599565591018/00008 6093102599565591018/00007 6093102599565591018/00005 6093102599565591018/00004 5576857409011173607/00009 5576857409011173607/00001 5576857409011173607/00014 5576857409011173607/00011 5576857409011173607/00008 5576857409011173607/00007 5576857409011173607/00005 6050037391985269130/00003 6050037391985269130/00009 6050037391985269130/00001 6050037391985269130/00011 6050037391985269130/00002 6050037391985269130/00007 6050037391985269130/00005 6050037391985269130/00004 5965132330994996167/00003 5965132330994996167/00009 5965132330994996167/00024 5965132330994996167/00013 5965132330994996167/00001 5965132330994996167/00023 5965132330994996167/00012 5965132330994996167/00021 5965132330994996167/00017 5965132330994996167/00016 5965132330994996167/00011 5965132330994996167/00002 5965132330994996167/00008 5965132330994996167/00007 5965132330994996167/00004 5682987768882257681/00006 5682987768882257681/00009 5682987768882257681/00010 5682987768882257681/00024 5682987768882257681/00022 5682987768882257681/00001 5682987768882257681/00023 5682987768882257681/00018 5682987768882257681/00012 5682987768882257681/00014 5682987768882257681/00020 5682987768882257681/00017 5682987768882257681/00016 5682987768882257681/00019 5682987768882257681/00011 5682987768882257681/00002 5682987768882257681/00008 5682987768882257681/00007 5682987768882257681/00004 6093060079389360614/00003 6093060079389360614/00006 6093060079389360614/00009 6093060079389360614/00013 6093060079389360614/00012 6093060079389360614/00002 6093060079389360614/00008 6093060079389360614/00005 6093060079389360614/00004 6392525815109495392/00010 6392525815109495392/00001 6392525815109495392/00011 6392525815109495392/00008 6392525815109495392/00004 6075303396097453912/00006 6075303396097453912/00022 6075303396097453912/00026 6075303396097453912/00036 6075303396097453912/00023 6075303396097453912/00012 6075303396097453912/00021 6075303396097453912/00020 6075303396097453912/00019 6075303396097453912/00008 6075303396097453912/00007 6075303396097453912/00025 6075303396097453912/00005 6075303396097453912/00004 6075303396097453912/00028 6102433845512824797/00003 6102433845512824797/00001 6102433845512824797/00002 6102433845512824797/00008 6102433845512824797/00004 6150941635650641046/00015 6150941635650641046/00006 6150941635650641046/00009 6150941635650641046/00013 6150941635650641046/00026 6150941635650641046/00023 6150941635650641046/00021 6150941635650641046/00014 6150941635650641046/00020 6150941635650641046/00019 6150941635650641046/00011 6150941635650641046/00027 6150941635650641046/00008 6150941635650641046/00005 5981838894912752247/00003 5981838894912752247/00006 5981838894912752247/00001 5981838894912752247/00012 5981838894912752247/00011 5981838894912752247/00002 5981838894912752247/00007 5981838894912752247/00005 5981838894912752247/00004 6086469452073642405/00006 6086469452073642405/00013 6086469452073642405/00014 6086469452073642405/00016 6086469452073642405/00007 6086469452073642405/00005 6213705281237269841/00029 6213705281237269841/00015 6213705281237269841/00003 6213705281237269841/00056 6213705281237269841/00032 6213705281237269841/00010 6213705281237269841/00033 6213705281237269841/00057 6213705281237269841/00024 6213705281237269841/00053 6213705281237269841/00030 6213705281237269841/00058 6213705281237269841/00031 6213705281237269841/00013 6213705281237269841/00022 6213705281237269841/00026 6213705281237269841/00050 6213705281237269841/00036 6213705281237269841/00049 6213705281237269841/00023 6213705281237269841/00042 6213705281237269841/00041 6213705281237269841/00020 6213705281237269841/00017 6213705281237269841/00019 6213705281237269841/00034 6213705281237269841/00008 6213705281237269841/00040 6213705281237269841/00054 6213705281237269841/00005 6213705281237269841/00028 6190350108075027208/00015 6190350108075027208/00006 6190350108075027208/00009 6190350108075027208/00001 6190350108075027208/00016 6190350108075027208/00011 6190350108075027208/00002 6190350108075027208/00008 6126569843729427748/00015 6126569843729427748/00006 6126569843729427748/00032 6126569843729427748/00009 6126569843729427748/00033 6126569843729427748/00030 6126569843729427748/00013 6126569843729427748/00022 6126569843729427748/00001 6126569843729427748/00023 6126569843729427748/00018 6126569843729427748/00012 6126569843729427748/00021 6126569843729427748/00020 6126569843729427748/00035 6126569843729427748/00016 6126569843729427748/00019 6126569843729427748/00027 6126569843729427748/00034 6126569843729427748/00002 6126569843729427748/00025 6126569843729427748/00028 6122835799162338927/00009 6122835799162338927/00001 6122835799162338927/00008 6122835799162338927/00007 6101320589989761756/00003 6101320589989761756/00006 6101320589989761756/00001 6101320589989761756/00002 6355459817848285433/00007 6355459817848285433/00004 5942099280379371875/00015 5942099280379371875/00003 5942099280379371875/00032 5942099280379371875/00009 5942099280379371875/00024 5942099280379371875/00022 5942099280379371875/00026 5942099280379371875/00018 5942099280379371875/00012 5942099280379371875/00014 5942099280379371875/00020 5942099280379371875/00017 5942099280379371875/00019 5942099280379371875/00008 5942099280379371875/00007 5942099280379371875/00025 5942099280379371875/00028 6250060031914198295/00003 6250060031914198295/00010 6250060031914198295/00002 6250060031914198295/00005 6250060031914198295/00004 6109128840533871287/00003 6340500446756333781/00058 6340500446756333781/00031 6340500446756333781/00059 6340500446756333781/00034 6340500446756333781/00007 5987331728457182076/00001 5987331728457182076/00002 5987331728457182076/00007 5987331728457182076/00005 5925750916863797138/00003 5925750916863797138/00006 5925750916863797138/00010 5925750916863797138/00012 5925750916863797138/00017 5925750916863797138/00016 5925750916863797138/00019 5925750916863797138/00002 5925750916863797138/00008 5925750916863797138/00007 5925750916863797138/00005 5925750916863797138/00004 6325440573560032726/00029 6325440573560032726/00015 6325440573560032726/00003 6325440573560032726/00006 6325440573560032726/00032 6325440573560032726/00009 6325440573560032726/00030 6325440573560032726/00031 6325440573560032726/00022 6325440573560032726/00026 6325440573560032726/00036 6325440573560032726/00001 6325440573560032726/00038 6325440573560032726/00018 6325440573560032726/00012 6325440573560032726/00021 6325440573560032726/00035 6325440573560032726/00016 6325440573560032726/00011 6325440573560032726/00027 6325440573560032726/00034 6325440573560032726/00002 6325440573560032726/00008 6325440573560032726/00007 6325440573560032726/00025 6325440573560032726/00005 6325440573560032726/00028 5961444672074006409/00029 5961444672074006409/00015 5961444672074006409/00003 5961444672074006409/00010 5961444672074006409/00024 5961444672074006409/00030 5961444672074006409/00031 5961444672074006409/00022 5961444672074006409/00018 5961444672074006409/00012 5961444672074006409/00021 5961444672074006409/00014 5961444672074006409/00020 5961444672074006409/00016 5961444672074006409/00011 5961444672074006409/00002 5961444672074006409/00005 5961444672074006409/00004 5961444672074006409/00028 6075947641191920974/00029 6075947641191920974/00003 6075947641191920974/00032 6075947641191920974/00010 6075947641191920974/00031 6075947641191920974/00021 6075947641191920974/00020 6075947641191920974/00017 6075947641191920974/00011 6075947641191920974/00008 6075947641191920974/00025 6075947641191920974/00004 6075947641191920974/00028 5872840355750911237/00001 5872840355750911237/00002 5903485806401346188/00015 5903485806401346188/00003 5903485806401346188/00009 5903485806401346188/00010 5903485806401346188/00001 5903485806401346188/00018 5903485806401346188/00012 5903485806401346188/00014 5903485806401346188/00020 5903485806401346188/00016 5903485806401346188/00011 5903485806401346188/00002 5903485806401346188/00005 5903485806401346188/00004 5673474845818339316/00032 5673474845818339316/00022 5673474845818339316/00001 5673474845818339316/00012 5673474845818339316/00041 5673474845818339316/00039 5673474845818339316/00002 6374802632562566873/00024 6374802632562566873/00011 6338130913429528164/00003 6338130913429528164/00046 6338130913429528164/00037 6338130913429528164/00002 6338130913429528164/00028 6236024508287676819/00006 6236024508287676819/00009 6236024508287676819/00008 6236024508287676819/00007 6236024508287676819/00004 6218486868327909343/00001 6218486868327909343/00002 6218486868327909343/00008 5875669880205518864/00015 5875669880205518864/00003 5875669880205518864/00006 5875669880205518864/00009 5875669880205518864/00010 5875669880205518864/00024 5875669880205518864/00022 5875669880205518864/00026 5875669880205518864/00023 5875669880205518864/00018 5875669880205518864/00012 5875669880205518864/00017 5875669880205518864/00016 5875669880205518864/00019 5875669880205518864/00027 5875669880205518864/00002 5875669880205518864/00008 5875669880205518864/00007 5875669880205518864/00025 6129774318829038546/00015 6129774318829038546/00003 6129774318829038546/00009 6129774318829038546/00010 6129774318829038546/00013 6129774318829038546/00014 6129774318829038546/00011 6129774318829038546/00007 6261660309214448793/00029 6261660309214448793/00015 6261660309214448793/00003 6261660309214448793/00006 6261660309214448793/00032 6261660309214448793/00009 6261660309214448793/00033 6261660309214448793/00024 6261660309214448793/00030 6261660309214448793/00031 6261660309214448793/00022 6261660309214448793/00026 6261660309214448793/00044 6261660309214448793/00036 6261660309214448793/00001 6261660309214448793/00023 6261660309214448793/00038 6261660309214448793/00018 6261660309214448793/00012 6261660309214448793/00041 6261660309214448793/00021 6261660309214448793/00014 6261660309214448793/00037 6261660309214448793/00039 6261660309214448793/00020 6261660309214448793/00017 6261660309214448793/00019 6261660309214448793/00027 6261660309214448793/00034 6261660309214448793/00008 6261660309214448793/00040 6261660309214448793/00007 6261660309214448793/00025 6261660309214448793/00043 6261660309214448793/00005 6261660309214448793/00028 6078587757588772345/00009 6078587757588772345/00010 6078587757588772345/00012 6078587757588772345/00008 6130280695473174793/00029 6130280695473174793/00015 6130280695473174793/00003 6130280695473174793/00006 6130280695473174793/00032 6130280695473174793/00009 6130280695473174793/00010 6130280695473174793/00033 6130280695473174793/00024 6130280695473174793/00031 6130280695473174793/00013 6130280695473174793/00022 6130280695473174793/00026 6130280695473174793/00044 6130280695473174793/00036 6130280695473174793/00001 6130280695473174793/00023 6130280695473174793/00038 6130280695473174793/00018 6130280695473174793/00042 6130280695473174793/00012 6130280695473174793/00041 6130280695473174793/00021 6130280695473174793/00014 6130280695473174793/00037 6130280695473174793/00039 6130280695473174793/00020 6130280695473174793/00017 6130280695473174793/00016 6130280695473174793/00019 6130280695473174793/00011 6130280695473174793/00027 6130280695473174793/00034 6130280695473174793/00025 6130280695473174793/00043 6130280695473174793/00004 6130280695473174793/00028 5996295754700612804/00003 5996295754700612804/00009 5996295754700612804/00013 5996295754700612804/00001 5996295754700612804/00023 5996295754700612804/00019 5996295754700612804/00011 5996295754700612804/00025 5996295754700612804/00004 5648603119703937798/00029 5648603119703937798/00003 5648603119703937798/00046 5648603119703937798/00009 5648603119703937798/00033 5648603119703937798/00024 5648603119703937798/00030 5648603119703937798/00022 5648603119703937798/00026 5648603119703937798/00001 5648603119703937798/00023 5648603119703937798/00038 5648603119703937798/00012 5648603119703937798/00021 5648603119703937798/00014 5648603119703937798/00037 5648603119703937798/00039 5648603119703937798/00035 5648603119703937798/00017 5648603119703937798/00007 5648603119703937798/00025 5648603119703937798/00004 5648603119703937798/00028 5574048500399587364/00147 5574048500399587364/00125 5574048500399587364/00029 5574048500399587364/00015 5574048500399587364/00003 5574048500399587364/00006 5574048500399587364/00098 5574048500399587364/00056 5574048500399587364/00128 5574048500399587364/00070 5574048500399587364/00159 5574048500399587364/00090 5574048500399587364/00073 5574048500399587364/00010 5574048500399587364/00057 5574048500399587364/00053 5574048500399587364/00118 5574048500399587364/00030 5574048500399587364/00071 5574048500399587364/00058 5574048500399587364/00121 5574048500399587364/00086 5574048500399587364/00013 5574048500399587364/00069 5574048500399587364/00148 5574048500399587364/00022 5574048500399587364/00096 5574048500399587364/00094 5574048500399587364/00026 5574048500399587364/00077 5574048500399587364/00093 5574048500399587364/00105 5574048500399587364/00036 5574048500399587364/00117 5574048500399587364/00001 5574048500399587364/00049 5574048500399587364/00157 5574048500399587364/00072 5574048500399587364/00154 5574048500399587364/00023 5574048500399587364/00038 5574048500399587364/00085 5574048500399587364/00042 5574048500399587364/00135 5574048500399587364/00012 5574048500399587364/00065 5574048500399587364/00083 5574048500399587364/00021 5574048500399587364/00075 5574048500399587364/00104 5574048500399587364/00151 5574048500399587364/00079 5574048500399587364/00160 5574048500399587364/00014 5574048500399587364/00037 5574048500399587364/00101 5574048500399587364/00020 5574048500399587364/00076 5574048500399587364/00080 5574048500399587364/00052 5574048500399587364/00091 5574048500399587364/00016 5574048500399587364/00095 5574048500399587364/00011 5574048500399587364/00119 5574048500399587364/00084 5574048500399587364/00067 5574048500399587364/00081 5574048500399587364/00082 5574048500399587364/00100 5574048500399587364/00008 5574048500399587364/00087 5574048500399587364/00040 5574048500399587364/00007 5574048500399587364/00102 5574048500399587364/00068 5574048500399587364/00097 5574048500399587364/00139 5574048500399587364/00054 5574048500399587364/00004 5574048500399587364/00155 5557928199647521411/00003 5557928199647521411/00006 5557928199647521411/00001 5557928199647521411/00007 5557928199647521411/00005 6129836166358100953/00029 6129836166358100953/00015 6129836166358100953/00006 6129836166358100953/00010 6129836166358100953/00030 6129836166358100953/00031 6129836166358100953/00026 6129836166358100953/00018 6129836166358100953/00012 6129836166358100953/00014 6129836166358100953/00016 6129836166358100953/00027 6129836166358100953/00002 6129836166358100953/00008 6129836166358100953/00025 6129836166358100953/00005 6129836166358100953/00004 6129836166358100953/00028 5958035327034370185/00001 5958035327034370185/00002 5958035327034370185/00008 5958035327034370185/00004 6085267290727491911/00009 6085267290727491911/00002 6085267290727491911/00008 6085267290727491911/00005 6085267290727491911/00004 6190640018367506718/00029 6190640018367506718/00006 6190640018367506718/00046 6190640018367506718/00032 6190640018367506718/00009 6190640018367506718/00033 6190640018367506718/00053 6190640018367506718/00030 6190640018367506718/00031 6190640018367506718/00013 6190640018367506718/00022 6190640018367506718/00044 6190640018367506718/00050 6190640018367506718/00001 6190640018367506718/00049 6190640018367506718/00038 6190640018367506718/00021 6190640018367506718/00035 6190640018367506718/00051 6190640018367506718/00017 6190640018367506718/00052 6190640018367506718/00011 6190640018367506718/00034 6190640018367506718/00002 6190640018367506718/00008 6190640018367506718/00040 6190640018367506718/00007 6190640018367506718/00025 6092759861175370842/00015 6092759861175370842/00006 6092759861175370842/00009 6092759861175370842/00010 6092759861175370842/00022 6092759861175370842/00026 6092759861175370842/00001 6092759861175370842/00023 6092759861175370842/00018 6092759861175370842/00012 6092759861175370842/00021 6092759861175370842/00020 6092759861175370842/00017 6092759861175370842/00016 6092759861175370842/00011 6092759861175370842/00007 6092759861175370842/00025 6146554326557708291/00003 6146554326557708291/00006 6146554326557708291/00009 6146554326557708291/00012 6146554326557708291/00014 6146554326557708291/00011 6146554326557708291/00002 6146554326557708291/00008 6146554326557708291/00007 6146554326557708291/00005 6146554326557708291/00004 5930575024130669109/00003 5930575024130669109/00006 5930575024130669109/00009 5930575024130669109/00022 5930575024130669109/00020 5930575024130669109/00008 5930575024130669109/00007 5930575024130669109/00004 6369912812296002056/00009 6369912812296002056/00024 6369912812296002056/00022 6369912812296002056/00001 6369912812296002056/00023 6369912812296002056/00016 6369912812296002056/00019 6369912812296002056/00025 5708233157151421822/00015 5708233157151421822/00032 5708233157151421822/00010 5708233157151421822/00031 5708233157151421822/00013 5708233157151421822/00022 5708233157151421822/00038 5708233157151421822/00021 5708233157151421822/00039 5708233157151421822/00020 5708233157151421822/00035 5708233157151421822/00027 5708233157151421822/00007 5708233157151421822/00025 5992843889484875170/00006 5992843889484875170/00001 5992843889484875170/00002 5670498433482206956/00029 5670498433482206956/00006 5670498433482206956/00032 5670498433482206956/00009 5670498433482206956/00033 5670498433482206956/00024 5670498433482206956/00031 5670498433482206956/00022 5670498433482206956/00026 5670498433482206956/00045 5670498433482206956/00038 5670498433482206956/00042 5670498433482206956/00012 5670498433482206956/00041 5670498433482206956/00039 5670498433482206956/00020 5670498433482206956/00016 5670498433482206956/00019 5670498433482206956/00034 5670498433482206956/00043 5670498433482206956/00004 5670498433482206956/00028 5960663847019594549/00029 5960663847019594549/00015 5960663847019594549/00003 5960663847019594549/00006 5960663847019594549/00032 5960663847019594549/00033 5960663847019594549/00030 5960663847019594549/00013 5960663847019594549/00001 5960663847019594549/00021 5960663847019594549/00016 5960663847019594549/00011 5960663847019594549/00027 5960663847019594549/00002 5960663847019594549/00008 5960663847019594549/00025 5960663847019594549/00004 6227497280218130257/00003 5931993651828606487/00003 5931993651828606487/00009 5931993651828606487/00001 5931993651828606487/00008 5931993651828606487/00004 5648519367841666955/00003 5648519367841666955/00010 5648519367841666955/00001 5648519367841666955/00011 5648519367841666955/00002 5648519367841666955/00008 5648519367841666955/00005 5648519367841666955/00004 6210670886842642107/00029 6210670886842642107/00006 6210670886842642107/00024 6210670886842642107/00013 6210670886842642107/00001 6210670886842642107/00023 6210670886842642107/00021 6210670886842642107/00014 6210670886842642107/00027 6210670886842642107/00025 6210670886842642107/00028 6207497335638040766/00003 6207497335638040766/00009 6207497335638040766/00001 6207497335638040766/00008 6207497335638040766/00005 6102774006922673160/00029 6102774006922673160/00006 6102774006922673160/00046 6102774006922673160/00032 6102774006922673160/00009 6102774006922673160/00010 6102774006922673160/00033 6102774006922673160/00024 6102774006922673160/00030 6102774006922673160/00031 6102774006922673160/00022 6102774006922673160/00026 6102774006922673160/00044 6102774006922673160/00045 6102774006922673160/00049 6102774006922673160/00023 6102774006922673160/00038 6102774006922673160/00018 6102774006922673160/00042 6102774006922673160/00041 6102774006922673160/00021 6102774006922673160/00047 6102774006922673160/00020 6102774006922673160/00035 6102774006922673160/00017 6102774006922673160/00055 6102774006922673160/00027 6102774006922673160/00034 6102774006922673160/00008 6102774006922673160/00040 6102774006922673160/00007 6102774006922673160/00025 6102774006922673160/00054 6102774006922673160/00043 6102774006922673160/00004 6102774006922673160/00028 5552363210522097784/00006 5552363210522097784/00013 5552363210522097784/00012 5552363210522097784/00014 5552363210522097784/00017 5552363210522097784/00011 5552363210522097784/00002 5552363210522097784/00008 5552363210522097784/00007 5552363210522097784/00005 6091247173693716519/00015 6091247173693716519/00003 6091247173693716519/00032 6091247173693716519/00010 6091247173693716519/00022 6091247173693716519/00026 6091247173693716519/00023 6091247173693716519/00012 6091247173693716519/00021 6091247173693716519/00014 6091247173693716519/00039 6091247173693716519/00035 6091247173693716519/00017 6091247173693716519/00016 6091247173693716519/00019 6091247173693716519/00034 6091247173693716519/00002 6091247173693716519/00040 6091247173693716519/00007 6091247173693716519/00025 6091247173693716519/00004 5946520090217085579/00003 5946520090217085579/00004 5975990437816016415/00003 5975990437816016415/00001 5975990437816016415/00008 5975990437816016415/00007 5975990437816016415/00004 6354617145264744350/00007 5957695165755013599/00029 5957695165755013599/00006 5957695165755013599/00010 5957695165755013599/00024 5957695165755013599/00030 5957695165755013599/00031 5957695165755013599/00013 5957695165755013599/00022 5957695165755013599/00023 5957695165755013599/00018 5957695165755013599/00012 5957695165755013599/00021 5957695165755013599/00014 5957695165755013599/00017 5957695165755013599/00019 5957695165755013599/00011 5957695165755013599/00002 5957695165755013599/00008 5957695165755013599/00007 5957695165755013599/00004 6357006006074844331/00015 6357006006074844331/00003 6357006006074844331/00013 6357006006074844331/00011 6357006006074844331/00008 5719354115970936595/00015 5719354115970936595/00021 5719354115970936595/00020 5719354115970936595/00017 5719354115970936595/00016 5719354115970936595/00019 5719354115970936595/00011 5719354115970936595/00008 5719354115970936595/00007 5719354115970936595/00004 6180330808366909853/00003 6180330808366909853/00006 6180330808366909853/00009 6180330808366909853/00001 6180330808366909853/00002 6180330808366909853/00008 6217470249568944212/00015 6217470249568944212/00009 6217470249568944212/00024 6217470249568944212/00022 6217470249568944212/00026 6217470249568944212/00023 6217470249568944212/00018 6217470249568944212/00012 6217470249568944212/00020 6217470249568944212/00017 6217470249568944212/00019 6217470249568944212/00011 6217470249568944212/00002 6217470249568944212/00007 6217470249568944212/00025 6217470249568944212/00005 6217470249568944212/00004 6249286937800981129/00009 6249286937800981129/00002 6249286937800981129/00007 6249286937800981129/00004 6228231719625812047/00009 6228231719625812047/00013 6228231719625812047/00011 6228231719625812047/00002 6228231719625812047/00008 6228231719625812047/00007 6111391429305343319/00003 6111391429305343319/00006 6111391429305343319/00013 6111391429305343319/00012 6111391429305343319/00002 6111391429305343319/00008 6111391429305343319/00007 6111391429305343319/00005 6111391429305343319/00004 6215154832699670346/00006 6215154832699670346/00013 6215154832699670346/00001 6215154832699670346/00018 6215154832699670346/00014 6215154832699670346/00016 6215154832699670346/00011 6215154832699670346/00002 6215154832699670346/00008 6215154832699670346/00005 6215154832699670346/00004 5995511064175627737/00003 5995511064175627737/00006 5995511064175627737/00013 5995511064175627737/00001 5995511064175627737/00012 5995511064175627737/00021 5995511064175627737/00014 5995511064175627737/00020 5995511064175627737/00016 5995511064175627737/00019 5995511064175627737/00011 5995511064175627737/00002 5995511064175627737/00008 5995511064175627737/00007 6078680528882996121/00015 6078680528882996121/00003 6078680528882996121/00006 6078680528882996121/00009 6078680528882996121/00013 6078680528882996121/00012 6078680528882996121/00014 6078680528882996121/00016 6078680528882996121/00011 6078680528882996121/00008 6078680528882996121/00005 6078680528882996121/00004 5909423169191338830/00015 5909423169191338830/00003 5909423169191338830/00006 5909423169191338830/00009 5909423169191338830/00001 5909423169191338830/00018 5909423169191338830/00012 5909423169191338830/00021 5909423169191338830/00014 5909423169191338830/00017 5909423169191338830/00016 5909423169191338830/00011 5909423169191338830/00002 5909423169191338830/00008 5861185961993233701/00006 5861185961993233701/00009 5861185961993233701/00001 5861185961993233701/00002 5861185961993233701/00008 5861185961993233701/00007 5861185961993233701/00005 5861185961993233701/00004 6107250221838629315/00001 6217841334743318559/00004 6093844769914339876/00029 6093844769914339876/00015 6093844769914339876/00006 6093844769914339876/00032 6093844769914339876/00009 6093844769914339876/00030 6093844769914339876/00031 6093844769914339876/00026 6093844769914339876/00036 6093844769914339876/00001 6093844769914339876/00045 6093844769914339876/00023 6093844769914339876/00012 6093844769914339876/00037 6093844769914339876/00039 6093844769914339876/00035 6093844769914339876/00011 6093844769914339876/00027 6093844769914339876/00002 6093844769914339876/00008 6093844769914339876/00040 6093844769914339876/00025 6093844769914339876/00005 6093844769914339876/00028 6213334196062895440/00006 6213334196062895440/00032 6213334196062895440/00009 6213334196062895440/00010 6213334196062895440/00033 6213334196062895440/00024 6213334196062895440/00026 6213334196062895440/00036 6213334196062895440/00023 6213334196062895440/00041 6213334196062895440/00047 6213334196062895440/00039 6213334196062895440/00035 6213334196062895440/00016 6213334196062895440/00027 6213334196062895440/00034 6213334196062895440/00002 6213334196062895440/00005 6213334196062895440/00004 6219205845853258932/00003 6219205845853258932/00006 6219205845853258932/00001 6219205845853258932/00008 6219205845853258932/00007 6219205845853258932/00004 6243461673657349594/00003 6243461673657349594/00006 6243461673657349594/00032 6243461673657349594/00010 6243461673657349594/00033 6243461673657349594/00024 6243461673657349594/00030 6243461673657349594/00031 6243461673657349594/00022 6243461673657349594/00044 6243461673657349594/00036 6243461673657349594/00001 6243461673657349594/00045 6243461673657349594/00038 6243461673657349594/00018 6243461673657349594/00042 6243461673657349594/00012 6243461673657349594/00021 6243461673657349594/00037 6243461673657349594/00020 6243461673657349594/00035 6243461673657349594/00016 6243461673657349594/00019 6243461673657349594/00011 6243461673657349594/00027 6243461673657349594/00034 6243461673657349594/00008 6243461673657349594/00007 6243461673657349594/00025 6243461673657349594/00043 6243461673657349594/00005 5994390077711374584/00015 5994390077711374584/00006 5994390077711374584/00013 5994390077711374584/00001 5994390077711374584/00012 5994390077711374584/00021 5994390077711374584/00020 5994390077711374584/00011 5994390077711374584/00002 5994390077711374584/00007 5994390077711374584/00004 6380021017957616097/00030 6380021017957616097/00018 6380021017957616097/00021 6114637136090931855/00010 6114637136090931855/00013 6114637136090931855/00002 6114637136090931855/00008 6114637136090931855/00025 5992472804310500721/00006 5992472804310500721/00024 5992472804310500721/00031 5992472804310500721/00013 5992472804310500721/00022 5992472804310500721/00026 5992472804310500721/00023 5992472804310500721/00021 5992472804310500721/00014 5992472804310500721/00017 5992472804310500721/00016 5992472804310500721/00019 5992472804310500721/00034 5992472804310500721/00008 5992472804310500721/00007 5992472804310500721/00004 5992472804310500721/00028 6237508848985087174/00006 6237508848985087174/00010 6237508848985087174/00001 6237508848985087174/00002 5962890358066484044/00029 5962890358066484044/00015 5962890358066484044/00006 5962890358066484044/00010 5962890358066484044/00031 5962890358066484044/00013 5962890358066484044/00022 5962890358066484044/00036 5962890358066484044/00038 5962890358066484044/00018 5962890358066484044/00021 5962890358066484044/00014 5962890358066484044/00037 5962890358066484044/00020 5962890358066484044/00019 5962890358066484044/00011 5962890358066484044/00034 5962890358066484044/00008 5962890358066484044/00007 5962890358066484044/00025 5962890358066484044/00005 5962890358066484044/00004 5962890358066484044/00028 6341381774045411442/00010 6260516129796319205/00003 6260516129796319205/00006 6260516129796319205/00001 6260516129796319205/00002 6260516129796319205/00005 6383596578101103163/00010 5957272540842602518/00003 5957272540842602518/00010 5957272540842602518/00001 5957272540842602518/00011 5957272540842602518/00005 6053071786379959277/00015 6053071786379959277/00018 6053071786379959277/00021 6053071786379959277/00019 6053071786379959277/00005 6053071786379959277/00004 6215220545699233179/00029 6215220545699233179/00022 6215220545699233179/00026 6215220545699233179/00023 6215220545699233179/00018 6215220545699233179/00012 6215220545699233179/00017 6215220545699233179/00011 6215220545699233179/00027 6215220545699233179/00008 6215220545699233179/00025 6076318726366295382/00013 6076318726366295382/00008 6076318726366295382/00005 6076318726366295382/00004 6101966123574350601/00010 6101966123574350601/00016 6101966123574350601/00011 6101966123574350601/00008 6101966123574350601/00007 6101966123574350601/00005 5956187632103630886/00029 5956187632103630886/00009 5956187632103630886/00010 5956187632103630886/00024 5956187632103630886/00031 5956187632103630886/00013 5956187632103630886/00044 5956187632103630886/00036 5956187632103630886/00045 5956187632103630886/00023 5956187632103630886/00038 5956187632103630886/00018 5956187632103630886/00042 5956187632103630886/00041 5956187632103630886/00021 5956187632103630886/00014 5956187632103630886/00039 5956187632103630886/00017 5956187632103630886/00019 5956187632103630886/00034 5956187632103630886/00040 5956187632103630886/00007 5956187632103630886/00043 5956187632103630886/00005 5956187632103630886/00004 5973918545591787964/00001 5973918545591787964/00012 5973918545591787964/00016 5973918545591787964/00002 5973918545591787964/00008 5973918545591787964/00007 5973918545591787964/00005 6035503222655655892/00015 6035503222655655892/00001 6035503222655655892/00012 6035503222655655892/00014 6035503222655655892/00020 6035503222655655892/00017 6035503222655655892/00016 6035503222655655892/00002 6206987093392863519/00029 6206987093392863519/00003 6206987093392863519/00046 6206987093392863519/00032 6206987093392863519/00009 6206987093392863519/00010 6206987093392863519/00024 6206987093392863519/00030 6206987093392863519/00031 6206987093392863519/00022 6206987093392863519/00026 6206987093392863519/00036 6206987093392863519/00023 6206987093392863519/00038 6206987093392863519/00018 6206987093392863519/00042 6206987093392863519/00012 6206987093392863519/00021 6206987093392863519/00014 6206987093392863519/00037 6206987093392863519/00047 6206987093392863519/00039 6206987093392863519/00020 6206987093392863519/00017 6206987093392863519/00019 6206987093392863519/00027 6206987093392863519/00034 6206987093392863519/00002 6206987093392863519/00008 6206987093392863519/00040 6206987093392863519/00007 6206987093392863519/00025 6206987093392863519/00043 6206987093392863519/00004 6206987093392863519/00028 6064181148787778016/00003 6064181148787778016/00006 6064181148787778016/00001 6064181148787778016/00002 6064181148787778016/00004 6166790064972802582/00009 6166790064972802582/00024 6166790064972802582/00031 6166790064972802582/00013 6166790064972802582/00021 6166790064972802582/00039 6166790064972802582/00020 6166790064972802582/00017 6166790064972802582/00019 6166790064972802582/00011 6166790064972802582/00002 6166790064972802582/00008 6166790064972802582/00040 6166790064972802582/00005 6166790064972802582/00004 6231215862903048395/00003 6231215862903048395/00002 6231215862903048395/00005 6231215862903048395/00004 6355861826787125225/00006 6355861826787125225/00010 6355861826787125225/00037 6355861826787125225/00019 6355861826787125225/00011 6233510664059729149/00015 6233510664059729149/00006 6233510664059729149/00046 6233510664059729149/00032 6233510664059729149/00009 6233510664059729149/00010 6233510664059729149/00024 6233510664059729149/00030 6233510664059729149/00031 6233510664059729149/00013 6233510664059729149/00026 6233510664059729149/00044 6233510664059729149/00050 6233510664059729149/00036 6233510664059729149/00001 6233510664059729149/00045 6233510664059729149/00049 6233510664059729149/00023 6233510664059729149/00048 6233510664059729149/00042 6233510664059729149/00012 6233510664059729149/00014 6233510664059729149/00037 6233510664059729149/00047 6233510664059729149/00039 6233510664059729149/00051 6233510664059729149/00016 6233510664059729149/00019 6233510664059729149/00011 6233510664059729149/00027 6233510664059729149/00034 6233510664059729149/00002 6233510664059729149/00008 6233510664059729149/00040 6233510664059729149/00007 6233510664059729149/00025 6233510664059729149/00005 6233510664059729149/00004 5710882292979596560/00003 5710882292979596560/00009 5710882292979596560/00010 5710882292979596560/00012 5710882292979596560/00014 5710882292979596560/00020 5710882292979596560/00017 5710882292979596560/00016 5710882292979596560/00011 5710882292979596560/00002 5710882292979596560/00008 6104563719794978991/00003 6104563719794978991/00006 6104563719794978991/00009 6104563719794978991/00002 6104563719794978991/00008 6104563719794978991/00007 6104563719794978991/00005 6104563719794978991/00004 5572033301744301809/00022 5572033301744301809/00023 5572033301744301809/00018 5572033301744301809/00020 5572033301744301809/00017 5572033301744301809/00027 5572033301744301809/00002 5572033301744301809/00007 5572033301744301809/00005 5572033301744301809/00004 5572033301744301809/00028 5938688646849552195/00001 5938688646849552195/00005 5938688646849552195/00004 6079114750075991593/00015 6079114750075991593/00003 6079114750075991593/00010 6079114750075991593/00022 6079114750075991593/00023 6079114750075991593/00018 6079114750075991593/00012 6079114750075991593/00027 6079114750075991593/00007 6079114750075991593/00005 5993276822188248377/00009 5993276822188248377/00018 5993276822188248377/00016 5993276822188248377/00002 5993276822188248377/00008 5993276822188248377/00007 5586269829840367371/00003 5586269829840367371/00006 5586269829840367371/00001 5586269829840367371/00002 5586269829840367371/00004 6291710477397648280/00015 6291710477397648280/00009 6291710477397648280/00010 6291710477397648280/00012 6291710477397648280/00021 6291710477397648280/00014 6291710477397648280/00011 6291710477397648280/00002 6291710477397648280/00007 6291710477397648280/00005 6291710477397648280/00004 6253487415816471300/00006 6253487415816471300/00002 6253487415816471300/00008 6121007431584428336/00008 6121007431584428336/00007 5886431350262395791/00003 5886431350262395791/00001 5886431350262395791/00014 5886431350262395791/00017 5886431350262395791/00016 5886431350262395791/00011 5886431350262395791/00008 6248521574628835159/00015 6248521574628835159/00003 6248521574628835159/00032 6248521574628835159/00010 6248521574628835159/00033 6248521574628835159/00024 6248521574628835159/00030 6248521574628835159/00031 6248521574628835159/00026 6248521574628835159/00036 6248521574628835159/00001 6248521574628835159/00023 6248521574628835159/00018 6248521574628835159/00012 6248521574628835159/00014 6248521574628835159/00039 6248521574628835159/00020 6248521574628835159/00011 6248521574628835159/00034 6248521574628835159/00040 6248521574628835159/00007 6248521574628835159/00005 6244091745359735456/00003 6244091745359735456/00008 6219325675440817346/00015 6219325675440817346/00003 6219325675440817346/00006 6219325675440817346/00022 6219325675440817346/00026 6219325675440817346/00021 6219325675440817346/00016 6219325675440817346/00002 6219325675440817346/00008 6219325675440817346/00005 6260508398855249166/00009 6260508398855249166/00018 6260508398855249166/00017 6260508398855249166/00002 6260508398855249166/00007 6388076658487498938/00021 6388076658487498938/00016 5858972335848936520/00006 5858972335848936520/00007 5858972335848936520/00005 6164389607751066205/00029 6164389607751066205/00003 6164389607751066205/00009 6164389607751066205/00013 6164389607751066205/00022 6164389607751066205/00026 6164389607751066205/00023 6164389607751066205/00018 6164389607751066205/00012 6164389607751066205/00021 6164389607751066205/00014 6164389607751066205/00019 6164389607751066205/00011 6164389607751066205/00025 6164389607751066205/00005 6164389607751066205/00004 6110984266405682503/00029 6110984266405682503/00015 6110984266405682503/00003 6110984266405682503/00032 6110984266405682503/00009 6110984266405682503/00010 6110984266405682503/00033 6110984266405682503/00024 6110984266405682503/00030 6110984266405682503/00022 6110984266405682503/00026 6110984266405682503/00036 6110984266405682503/00001 6110984266405682503/00023 6110984266405682503/00018 6110984266405682503/00021 6110984266405682503/00035 6110984266405682503/00016 6110984266405682503/00019 6110984266405682503/00011 6110984266405682503/00034 6110984266405682503/00002 6110984266405682503/00025 6110984266405682503/00005 6110984266405682503/00004 6110984266405682503/00028 6225108419408161933/00060 6225108419408161933/00029 6225108419408161933/00015 6225108419408161933/00046 6225108419408161933/00009 6225108419408161933/00073 6225108419408161933/00010 6225108419408161933/00024 6225108419408161933/00078 6225108419408161933/00030 6225108419408161933/00031 6225108419408161933/00069 6225108419408161933/00022 6225108419408161933/00077 6225108419408161933/00050 6225108419408161933/00001 6225108419408161933/00045 6225108419408161933/00066 6225108419408161933/00064 6225108419408161933/00023 6225108419408161933/00018 6225108419408161933/00065 6225108419408161933/00061 6225108419408161933/00083 6225108419408161933/00021 6225108419408161933/00075 6225108419408161933/00079 6225108419408161933/00014 6225108419408161933/00037 6225108419408161933/00039 6225108419408161933/00020 6225108419408161933/00035 6225108419408161933/00051 6225108419408161933/00080 6225108419408161933/00019 6225108419408161933/00011 6225108419408161933/00084 6225108419408161933/00027 6225108419408161933/00034 6225108419408161933/00081 6225108419408161933/00082 6225108419408161933/00002 6225108419408161933/00040 6225108419408161933/00004 6225108419408161933/00028 5614883331463051232/00003 5614883331463051232/00006 5614883331463051232/00001 5614883331463051232/00002 5614883331463051232/00008 5614883331463051232/00007 5614883331463051232/00005 5976887226986785353/00029 5976887226986785353/00009 5976887226986785353/00033 5976887226986785353/00030 5976887226986785353/00031 5976887226986785353/00001 5976887226986785353/00023 5976887226986785353/00021 5976887226986785353/00017 5976887226986785353/00016 5976887226986785353/00005 5976887226986785353/00028 6325819389545137915/00003 6325819389545137915/00010 6325819389545137915/00013 6325819389545137915/00001 6325819389545137915/00012 6325819389545137915/00011 6325819389545137915/00002 6325819389545137915/00008 6325819389545137915/00005 6325819389545137915/00004 6103427271448456065/00015 6103427271448456065/00003 6103427271448456065/00009 6103427271448456065/00001 6103427271448456065/00023 6103427271448456065/00012 6103427271448456065/00020 6103427271448456065/00017 6103427271448456065/00016 6103427271448456065/00019 6103427271448456065/00011 6103427271448456065/00027 6103427271448456065/00002 6103427271448456065/00008 6103427271448456065/00025 5880711742314295123/00003 5880711742314295123/00009 5880711742314295123/00001 5880711742314295123/00002 5880711742314295123/00007 5880711742314295123/00005 5720096286319685551/00003 5720096286319685551/00006 5720096286319685551/00010 5720096286319685551/00001 5720096286319685551/00008 5671225141948690289/00002 5941406072657735357/00003 5941406072657735357/00006 5941406072657735357/00001 5941406072657735357/00008 6116840454313782633/00015 6116840454313782633/00024 6116840454313782633/00022 6116840454313782633/00026 6116840454313782633/00021 6116840454313782633/00016 6116840454313782633/00002 6116840454313782633/00004 5977022518457245933/00003 5977022518457245933/00009 5977022518457245933/00001 5977022518457245933/00011 5977022518457245933/00008 5977022518457245933/00007 5977022518457245933/00005 6348463316123031920/00014 6348463316123031920/00020 6348463316123031920/00027 6348463316123031920/00004 5992252472488865584/00003 5992252472488865584/00010 5992252472488865584/00002 5992252472488865584/00005 5992252472488865584/00004 6212479927067722337/00015 6212479927067722337/00006 6212479927067722337/00032 6212479927067722337/00010 6212479927067722337/00013 6212479927067722337/00022 6212479927067722337/00036 6212479927067722337/00001 6212479927067722337/00023 6212479927067722337/00038 6212479927067722337/00018 6212479927067722337/00014 6212479927067722337/00037 6212479927067722337/00027 6212479927067722337/00008 6212479927067722337/00040 6212479927067722337/00025 5965487954286464111/00015 5965487954286464111/00003 5965487954286464111/00009 5965487954286464111/00024 5965487954286464111/00030 5965487954286464111/00031 5965487954286464111/00013 5965487954286464111/00022 5965487954286464111/00026 5965487954286464111/00001 5965487954286464111/00018 5965487954286464111/00012 5965487954286464111/00021 5965487954286464111/00017 5965487954286464111/00019 5965487954286464111/00027 5965487954286464111/00002 5965487954286464111/00008 5965487954286464111/00007 5965487954286464111/00025 5965487954286464111/00005 5965487954286464111/00004 5965487954286464111/00028 6154733662276218812/00009 6154733662276218812/00010 6154733662276218812/00001 6154733662276218812/00012 6154733662276218812/00007 5991417530845810560/00029 5991417530845810560/00010 5991417530845810560/00033 5991417530845810560/00031 5991417530845810560/00022 5991417530845810560/00026 5991417530845810560/00044 5991417530845810560/00036 5991417530845810560/00001 5991417530845810560/00023 5991417530845810560/00038 5991417530845810560/00042 5991417530845810560/00012 5991417530845810560/00041 5991417530845810560/00021 5991417530845810560/00020 5991417530845810560/00035 5991417530845810560/00017 5991417530845810560/00016 5991417530845810560/00027 5991417530845810560/00002 5991417530845810560/00008 5991417530845810560/00007 5991417530845810560/00025 5991417530845810560/00043 5991417530845810560/00004 5867892553425938566/00001 6077095685950143250/00003 6077095685950143250/00009 6077095685950143250/00001 6077095685950143250/00011 6077095685950143250/00002 6077095685950143250/00008 6077095685950143250/00005 6113508418685544552/00015 6113508418685544552/00006 6113508418685544552/00009 6113508418685544552/00001 6113508418685544552/00045 6113508418685544552/00018 6113508418685544552/00012 6113508418685544552/00014 6113508418685544552/00047 6113508418685544552/00039 6113508418685544552/00035 6113508418685544552/00017 6113508418685544552/00016 6113508418685544552/00011 6113508418685544552/00025 6113508418685544552/00028 5950675471075937393/00060 5950675471075937393/00015 5950675471075937393/00006 5950675471075937393/00046 5950675471075937393/00056 5950675471075937393/00070 5950675471075937393/00033 5950675471075937393/00057 5950675471075937393/00024 5950675471075937393/00053 5950675471075937393/00071 5950675471075937393/00058 5950675471075937393/00062 5950675471075937393/00013 5950675471075937393/00069 5950675471075937393/00026 5950675471075937393/00044 5950675471075937393/00063 5950675471075937393/00001 5950675471075937393/00045 5950675471075937393/00066 5950675471075937393/00064 5950675471075937393/00072 5950675471075937393/00023 5950675471075937393/00018 5950675471075937393/00012 5950675471075937393/00041 5950675471075937393/00065 5950675471075937393/00061 5950675471075937393/00021 5950675471075937393/00014 5950675471075937393/00037 5950675471075937393/00047 5950675471075937393/00039 5950675471075937393/00020 5950675471075937393/00035 5950675471075937393/00051 5950675471075937393/00017 5950675471075937393/00052 5950675471075937393/00016 5950675471075937393/00019 5950675471075937393/00011 5950675471075937393/00067 5950675471075937393/00034 5950675471075937393/00008 5950675471075937393/00040 5950675471075937393/00007 5950675471075937393/00068 5950675471075937393/00025 5950675471075937393/00054 5950675471075937393/00043 5950675471075937393/00028 6117976902660304352/00029 6117976902660304352/00003 6117976902660304352/00006 6117976902660304352/00009 6117976902660304352/00031 6117976902660304352/00022 6117976902660304352/00036 6117976902660304352/00001 6117976902660304352/00023 6117976902660304352/00018 6117976902660304352/00042 6117976902660304352/00041 6117976902660304352/00021 6117976902660304352/00014 6117976902660304352/00037 6117976902660304352/00020 6117976902660304352/00016 6117976902660304352/00019 6117976902660304352/00011 6117976902660304352/00002 6117976902660304352/00008 6117976902660304352/00040 6117976902660304352/00007 6117976902660304352/00025 6117976902660304352/00028 6367373198133943465/00171 6367373198133943465/00098 6367373198133943465/00046 6367373198133943465/00128 6367373198133943465/00163 6367373198133943465/00113 6367373198133943465/00090 6367373198133943465/00073 6367373198133943465/00141 6367373198133943465/00058 6367373198133943465/00086 6367373198133943465/00022 6367373198133943465/00158 6367373198133943465/00103 6367373198133943465/00134 6367373198133943465/00042 6367373198133943465/00065 6367373198133943465/00144 6367373198133943465/00014 6367373198133943465/00127 6367373198133943465/00076 6367373198133943465/00138 6367373198133943465/00143 6367373198133943465/00025 6367373198133943465/00139 6367373198133943465/00054 5952499973183284729/00003 5952499973183284729/00009 5952499973183284729/00012 5952499973183284729/00004 6365413404556770633/00013 6365413404556770633/00036 6365413404556770633/00023 6288316594109859855/00003 6288316594109859855/00006 6288316594109859855/00001 6288316594109859855/00007 6382974237339848372/00005 6211072895781547738/00009 6211072895781547738/00008 6211072895781547738/00007 6211072895781547738/00005 6075175835568765126/00003 6075175835568765126/00010 6075175835568765126/00001 6075175835568765126/00014 6075175835568765126/00011 6075175835568765126/00002 6075175835568765126/00008 6075175835568765126/00007 6075175835568765126/00005 5960671577960662320/00001 5960671577960662320/00016 5960671577960662320/00011 5941382879834333210/00015 5941382879834333210/00003 5941382879834333210/00009 5941382879834333210/00010 5941382879834333210/00013 5941382879834333210/00012 5941382879834333210/00016 5941382879834333210/00002 5941382879834333210/00008 5941382879834333210/00005 6248946776391075076/00010 6248946776391075076/00001 6248946776391075076/00021 6248946776391075076/00014 6248946776391075076/00016 6248946776391075076/00005 6248946776391075076/00004 6098232079007206085/00029 6098232079007206085/00015 6098232079007206085/00009 6098232079007206085/00010 6098232079007206085/00033 6098232079007206085/00024 6098232079007206085/00031 6098232079007206085/00013 6098232079007206085/00022 6098232079007206085/00001 6098232079007206085/00023 6098232079007206085/00018 6098232079007206085/00012 6098232079007206085/00021 6098232079007206085/00014 6098232079007206085/00020 6098232079007206085/00035 6098232079007206085/00017 6098232079007206085/00016 6098232079007206085/00019 6098232079007206085/00027 6098232079007206085/00034 6098232079007206085/00002 6098232079007206085/00007 6098232079007206085/00025 6098232079007206085/00005 6098232079007206085/00004 6098232079007206085/00028 5997772364457686187/00003 5997772364457686187/00009 5997772364457686187/00010 5997772364457686187/00001 5997772364457686187/00011 5997772364457686187/00008 5997772364457686187/00005 5924980399730896575/00015 5924980399730896575/00003 5924980399730896575/00009 5924980399730896575/00010 5924980399730896575/00013 5924980399730896575/00001 5924980399730896575/00012 5924980399730896575/00014 5924980399730896575/00016 5924980399730896575/00011 5924980399730896575/00002 5924980399730896575/00007 5924980399730896575/00005 6096117666607385140/00012 6096117666607385140/00008 6096117666607385140/00007 6008765762747891394/00003 6008765762747891394/00032 6008765762747891394/00033 6008765762747891394/00030 6008765762747891394/00013 6008765762747891394/00026 6008765762747891394/00001 6008765762747891394/00023 6008765762747891394/00018 6008765762747891394/00012 6008765762747891394/00014 6008765762747891394/00020 6008765762747891394/00017 6008765762747891394/00016 6008765762747891394/00019 6008765762747891394/00027 6008765762747891394/00034 6008765762747891394/00002 6008765762747891394/00025 6008765762747891394/00005 6008765762747891394/00004 6008765762747891394/00028 5707479390390968494/00003 5707479390390968494/00010 5707479390390968494/00002 5707479390390968494/00007 5707479390390968494/00004 5992534651839564555/00029 5992534651839564555/00003 5992534651839564555/00046 5992534651839564555/00056 5992534651839564555/00070 5992534651839564555/00073 5992534651839564555/00033 5992534651839564555/00024 5992534651839564555/00030 5992534651839564555/00071 5992534651839564555/00058 5992534651839564555/00031 5992534651839564555/00013 5992534651839564555/00050 5992534651839564555/00063 5992534651839564555/00045 5992534651839564555/00066 5992534651839564555/00064 5992534651839564555/00049 5992534651839564555/00072 5992534651839564555/00038 5992534651839564555/00048 5992534651839564555/00018 5992534651839564555/00042 5992534651839564555/00012 5992534651839564555/00065 5992534651839564555/00037 5992534651839564555/00047 5992534651839564555/00039 5992534651839564555/00035 5992534651839564555/00051 5992534651839564555/00076 5992534651839564555/00052 5992534651839564555/00019 5992534651839564555/00027 5992534651839564555/00067 5992534651839564555/00034 5992534651839564555/00002 5992534651839564555/00068 5992534651839564555/00005 5992534651839564555/00004 5992534651839564555/00028 6130539682001185804/00001 5994092436477762192/00015 5994092436477762192/00003 5994092436477762192/00010 5994092436477762192/00024 5994092436477762192/00013 5994092436477762192/00022 5994092436477762192/00026 5994092436477762192/00023 5994092436477762192/00018 5994092436477762192/00012 5994092436477762192/00021 5994092436477762192/00014 5994092436477762192/00020 5994092436477762192/00016 5994092436477762192/00019 5994092436477762192/00007 5994092436477762192/00025 5994092436477762192/00028 6078643162666824975/00013 6078643162666824975/00026 6078643162666824975/00001 6078643162666824975/00018 6078643162666824975/00012 6078643162666824975/00021 6078643162666824975/00016 6078643162666824975/00019 6078643162666824975/00011 6078643162666824975/00002 6078643162666824975/00008 6078643162666824975/00007 6078643162666824975/00005 6210767523606736010/00003 6210767523606736010/00006 6210767523606736010/00022 6210767523606736010/00018 6210767523606736010/00012 6210767523606736010/00020 6210767523606736010/00016 6210767523606736010/00011 6210767523606736010/00002 6210767523606736010/00008 6210767523606736010/00005 6379537834006412580/00010 6379537834006412580/00020 6379537834006412580/00017 6379537834006412580/00008 5678163661615386220/00006 5678163661615386220/00002 5678163661615386220/00007 5678163661615386220/00004 5859678428472397901/00003 5859678428472397901/00006 5859678428472397901/00001 5859678428472397901/00005 5859678428472397901/00004 6110234365115795850/00003 6110234365115795850/00002 5976963247907858483/00009 5976963247907858483/00010 5976963247907858483/00030 5976963247907858483/00013 5976963247907858483/00023 5976963247907858483/00017 6388726057542659435/00015 6388726057542659435/00028 6143585645162771102/00015 6143585645162771102/00009 6143585645162771102/00013 6143585645162771102/00012 6143585645162771102/00016 6143585645162771102/00011 6143585645162771102/00002 6143585645162771102/00008 6143585645162771102/00007 6143585645162771102/00005 6143585645162771102/00004 6202286681314532268/00029 6202286681314532268/00015 6202286681314532268/00003 6202286681314532268/00010 6202286681314532268/00031 6202286681314532268/00026 6202286681314532268/00001 6202286681314532268/00023 6202286681314532268/00038 6202286681314532268/00020 6202286681314532268/00035 6202286681314532268/00017 6202286681314532268/00011 6202286681314532268/00007 6202286681314532268/00025 6202286681314532268/00004 6202286681314532268/00028 6263801779777760388/00006 6263801779777760388/00010 6263801779777760388/00024 6263801779777760388/00013 6263801779777760388/00023 6263801779777760388/00018 6263801779777760388/00012 6263801779777760388/00014 6263801779777760388/00016 6263801779777760388/00011 6263801779777760388/00025 6263801779777760388/00005 6341404966868871455/00015 6341404966868871455/00014 6341404966868871455/00002 6341404966868871455/00005 5955816546929256478/00060 5955816546929256478/00029 5955816546929256478/00003 5955816546929256478/00006 5955816546929256478/00046 5955816546929256478/00056 5955816546929256478/00032 5955816546929256478/00033 5955816546929256478/00057 5955816546929256478/00053 5955816546929256478/00030 5955816546929256478/00058 5955816546929256478/00013 5955816546929256478/00022 5955816546929256478/00050 5955816546929256478/00063 5955816546929256478/00045 5955816546929256478/00064 5955816546929256478/00049 5955816546929256478/00038 5955816546929256478/00042 5955816546929256478/00012 5955816546929256478/00065 5955816546929256478/00061 5955816546929256478/00014 5955816546929256478/00037 5955816546929256478/00035 5955816546929256478/00051 5955816546929256478/00017 5955816546929256478/00052 5955816546929256478/00016 5955816546929256478/00059 5955816546929256478/00019 5955816546929256478/00011 5955816546929256478/00034 5955816546929256478/00008 5955816546929256478/00040 5955816546929256478/00007 5955816546929256478/00025 5955816546929256478/00043 5955816546929256478/00005 5955816546929256478/00004 5955816546929256478/00028 5970644492021985864/00005 6221084464548532055/00003 6221084464548532055/00005 6189994484913377476/00002 6310968251628953184/00010 6310968251628953184/00001 6310968251628953184/00018 6310968251628953184/00014 6310968251628953184/00011 6310968251628953184/00002 6131007403939720243/00003 6131007403939720243/00009 6131007403939720243/00013 6131007403939720243/00016 5651140156885689322/00003 5651140156885689322/00002 5651140156885689322/00007 5651140156885689322/00004 6129553987006688938/00003 6129553987006688938/00013 6129553987006688938/00022 6129553987006688938/00026 6129553987006688938/00021 6129553987006688938/00014 6129553987006688938/00020 6129553987006688938/00019 6129553987006688938/00011 6129553987006688938/00007 6129553987006688938/00025 6129553987006688938/00005 6129553987006688938/00004 5552346460149638970/00015 5552346460149638970/00003 5552346460149638970/00006 5552346460149638970/00010 5552346460149638970/00018 5552346460149638970/00014 5552346460149638970/00011 5552346460149638970/00005 6289058764458610407/00003 6289058764458610407/00006 6289058764458610407/00009 6289058764458610407/00010 6289058764458610407/00012 6289058764458610407/00014 6289058764458610407/00008 6289058764458610407/00007 6289058764458610407/00005 6235444687702626847/00029 6235444687702626847/00024 6235444687702626847/00022 6235444687702626847/00001 6235444687702626847/00023 6235444687702626847/00018 6235444687702626847/00012 6235444687702626847/00021 6235444687702626847/00014 6235444687702626847/00020 6235444687702626847/00017 6235444687702626847/00016 6235444687702626847/00011 6235444687702626847/00027 6235444687702626847/00002 6235444687702626847/00008 6235444687702626847/00007 6235444687702626847/00005 6235444687702626847/00004 6235444687702626847/00028 6043771464197193088/00029 6043771464197193088/00003 6043771464197193088/00006 6043771464197193088/00009 6043771464197193088/00024 6043771464197193088/00013 6043771464197193088/00036 6043771464197193088/00001 6043771464197193088/00018 6043771464197193088/00014 6043771464197193088/00017 6043771464197193088/00011 6043771464197193088/00025 6043771464197193088/00005 6043771464197193088/00028 6230813853964143265/00060 6230813853964143265/00003 6230813853964143265/00006 6230813853964143265/00046 6230813853964143265/00056 6230813853964143265/00032 6230813853964143265/00070 6230813853964143265/00009 6230813853964143265/00010 6230813853964143265/00033 6230813853964143265/00057 6230813853964143265/00024 6230813853964143265/00053 6230813853964143265/00078 6230813853964143265/00071 6230813853964143265/00058 6230813853964143265/00062 6230813853964143265/00031 6230813853964143265/00013 6230813853964143265/00069 6230813853964143265/00022 6230813853964143265/00036 6230813853964143265/00063 6230813853964143265/00045 6230813853964143265/00066 6230813853964143265/00064 6230813853964143265/00049 6230813853964143265/00072 6230813853964143265/00038 6230813853964143265/00018 6230813853964143265/00042 6230813853964143265/00041 6230813853964143265/00065 6230813853964143265/00061 6230813853964143265/00083 6230813853964143265/00021 6230813853964143265/00079 6230813853964143265/00014 6230813853964143265/00037 6230813853964143265/00039 6230813853964143265/00020 6230813853964143265/00035 6230813853964143265/00051 6230813853964143265/00017 6230813853964143265/00076 6230813853964143265/00080 6230813853964143265/00052 6230813853964143265/00055 6230813853964143265/00016 6230813853964143265/00059 6230813853964143265/00019 6230813853964143265/00011 6230813853964143265/00027 6230813853964143265/00081 6230813853964143265/00082 6230813853964143265/00002 6230813853964143265/00008 6230813853964143265/00007 6230813853964143265/00068 6230813853964143265/00025 6230813853964143265/00054 6230813853964143265/00043 6230813853964143265/00005 6230813853964143265/00004 6230813853964143265/00028 5749238068919773079/00171 5749238068919773079/00147 5749238068919773079/00149 5749238068919773079/00247 5749238068919773079/00060 5749238068919773079/00015 5749238068919773079/00003 5749238068919773079/00006 5749238068919773079/00186 5749238068919773079/00098 5749238068919773079/00248 5749238068919773079/00046 5749238068919773079/00190 5749238068919773079/00107 5749238068919773079/00128 5749238068919773079/00208 5749238068919773079/00109 5749238068919773079/00122 5749238068919773079/00229 5749238068919773079/00009 5749238068919773079/00090 5749238068919773079/00152 5749238068919773079/00073 5749238068919773079/00112 5749238068919773079/00010 5749238068919773079/00164 5749238068919773079/00033 5749238068919773079/00123 5749238068919773079/00057 5749238068919773079/00024 5749238068919773079/00053 5749238068919773079/00228 5749238068919773079/00118 5749238068919773079/00078 5749238068919773079/00030 5749238068919773079/00058 5749238068919773079/00062 5749238068919773079/00223 5749238068919773079/00086 5749238068919773079/00187 5749238068919773079/00013 5749238068919773079/00137 5749238068919773079/00222 5749238068919773079/00239 5749238068919773079/00148 5749238068919773079/00022 5749238068919773079/00094 5749238068919773079/00026 5749238068919773079/00044 5749238068919773079/00179 5749238068919773079/00130 5749238068919773079/00189 5749238068919773079/00161 5749238068919773079/00204 5749238068919773079/00172 5749238068919773079/00158 5749238068919773079/00227 5749238068919773079/00220 5749238068919773079/00077 5749238068919773079/00168 5749238068919773079/00249 5749238068919773079/00120 5749238068919773079/00166 5749238068919773079/00103 5749238068919773079/00050 5749238068919773079/00173 5749238068919773079/00105 5749238068919773079/00238 5749238068919773079/00117 5749238068919773079/00241 5749238068919773079/00178 5749238068919773079/00063 5749238068919773079/00001 5749238068919773079/00045 5749238068919773079/00066 5749238068919773079/00072 5749238068919773079/00154 5749238068919773079/00114 5749238068919773079/00193 5749238068919773079/00210 5749238068919773079/00191 5749238068919773079/00088 5749238068919773079/00048 5749238068919773079/00234 5749238068919773079/00134 5749238068919773079/00108 5749238068919773079/00145 5749238068919773079/00085 5749238068919773079/00245 5749238068919773079/00135 5749238068919773079/00213 5749238068919773079/00041 5749238068919773079/00162 5749238068919773079/00065 5749238068919773079/00061 5749238068919773079/00083 5749238068919773079/00021 5749238068919773079/00217 5749238068919773079/00075 5749238068919773079/00104 5749238068919773079/00176 5749238068919773079/00225 5749238068919773079/00037 5749238068919773079/00101 5749238068919773079/00124 5749238068919773079/00020 5749238068919773079/00035 5749238068919773079/00051 5749238068919773079/00174 5749238068919773079/00076 5749238068919773079/00052 5749238068919773079/00091 5749238068919773079/00242 5749238068919773079/00231 5749238068919773079/00185 5749238068919773079/00055 5749238068919773079/00016 5749238068919773079/00095 5749238068919773079/00138 5749238068919773079/00184 5749238068919773079/00181 5749238068919773079/00019 5749238068919773079/00084 5749238068919773079/00027 5749238068919773079/00153 5749238068919773079/00115 5749238068919773079/00034 5749238068919773079/00192 5749238068919773079/00081 5749238068919773079/00082 5749238068919773079/00100 5749238068919773079/00243 5749238068919773079/00002 5749238068919773079/00089 5749238068919773079/00092 5749238068919773079/00008 5749238068919773079/00183 5749238068919773079/00219 5749238068919773079/00212 5749238068919773079/00040 5749238068919773079/00102 5749238068919773079/00236 5749238068919773079/00068 5749238068919773079/00097 5749238068919773079/00025 5749238068919773079/00054 5749238068919773079/00232 5749238068919773079/00005 5749238068919773079/00074 5749238068919773079/00211 5749238068919773079/00155 5749238068919773079/00028 6362096830810797583/00018 6362096830810797583/00021 5985886042465284731/00015 5985886042465284731/00006 5985886042465284731/00032 5985886042465284731/00009 5985886042465284731/00031 5985886042465284731/00013 5985886042465284731/00044 5985886042465284731/00036 5985886042465284731/00045 5985886042465284731/00023 5985886042465284731/00038 5985886042465284731/00048 5985886042465284731/00018 5985886042465284731/00012 5985886042465284731/00014 5985886042465284731/00017 5985886042465284731/00016 5985886042465284731/00019 5985886042465284731/00027 5985886042465284731/00002 5985886042465284731/00008 5985886042465284731/00007 5985886042465284731/00005 5985886042465284731/00004 5985886042465284731/00028 6119890310590744822/00003 6119890310590744822/00006 6119890310590744822/00011 6119890310590744822/00002 6119890310590744822/00007 6119890310590744822/00005 6258676165806773355/00001 6258676165806773355/00002 6048924136462145896/00003 6048924136462145896/00006 6048924136462145896/00009 6048924136462145896/00024 6048924136462145896/00022 6048924136462145896/00026 6048924136462145896/00001 6048924136462145896/00014 6048924136462145896/00016 6048924136462145896/00027 6048924136462145896/00008 6048924136462145896/00025 6048924136462145896/00005 6201869210362941115/00003 6201869210362941115/00006 6201869210362941115/00009 6201869210362941115/00013 6201869210362941115/00001 6201869210362941115/00023 6201869210362941115/00019 6201869210362941115/00011 6201869210362941115/00002 6201869210362941115/00008 6201869210362941115/00007 6201869210362941115/00004 5992542382780630104/00003 5992542382780630104/00006 5992542382780630104/00013 5992542382780630104/00023 5992542382780630104/00012 5992542382780630104/00021 5992542382780630104/00014 5992542382780630104/00020 5992542382780630104/00008 5992542382780630104/00007 5992542382780630104/00004 6281621599088846732/00015 6281621599088846732/00009 6281621599088846732/00010 6281621599088846732/00001 6281621599088846732/00012 6281621599088846732/00014 6281621599088846732/00017 6281621599088846732/00016 6281621599088846732/00011 6281621599088846732/00002 6281621599088846732/00008 6281621599088846732/00007 6281621599088846732/00005 6207048940921860405/00008 6207048940921860405/00007 6263388174427219386/00003 6263388174427219386/00005 5980346823143649823/00006 5980346823143649823/00001 5980346823143649823/00004 6031912200500139700/00010 6031912200500139700/00001 6116089264533712111/00015 6116089264533712111/00046 6116089264533712111/00032 6116089264533712111/00057 6116089264533712111/00053 6116089264533712111/00026 6116089264533712111/00044 6116089264533712111/00064 6116089264533712111/00048 6116089264533712111/00018 6116089264533712111/00042 6116089264533712111/00021 6116089264533712111/00014 6116089264533712111/00039 6116089264533712111/00051 6116089264533712111/00052 6116089264533712111/00059 6116089264533712111/00067 6116089264533712111/00007 6116089264533712111/00028 6264172864952202317/00003 6264172864952202317/00006 6264172864952202317/00001 6264172864952202317/00002 6264172864952202317/00007 5895337394447420840/00003 5895337394447420840/00006 5895337394447420840/00033 5895337394447420840/00024 5895337394447420840/00030 5895337394447420840/00031 5895337394447420840/00013 5895337394447420840/00022 5895337394447420840/00026 5895337394447420840/00018 5895337394447420840/00021 5895337394447420840/00019 5895337394447420840/00011 5895337394447420840/00027 5895337394447420840/00034 5895337394447420840/00002 5895337394447420840/00007 5895337394447420840/00025 5895337394447420840/00005 5895337394447420840/00004 6370728426585516325/00006 6370728426585516325/00013 6370728426585516325/00018 6370728426585516325/00012 6370728426585516325/00014 6370728426585516325/00008 5961911105522995978/00008 5961911105522995978/00004 6367002112959568594/00006 6367002112959568594/00014 6367002112959568594/00011 5542026942227535168/00006 5542026942227535168/00012 5542026942227535168/00016 5542026942227535168/00011 5930961571187312885/00003 5930961571187312885/00001 5930961571187312885/00004 6229321782325471165/00003 6229321782325471165/00009 6229321782325471165/00024 6229321782325471165/00013 6229321782325471165/00022 6229321782325471165/00023 6229321782325471165/00018 6229321782325471165/00016 6229321782325471165/00019 6229321782325471165/00025 6229321782325471165/00005 6331559613336179781/00029 6331559613336179781/00036 6331559613336179781/00038 6331559613336179781/00021 6331559613336179781/00039 6331559613336179781/00020 6331559613336179781/00019 6331559613336179781/00027 6328111613590949805/00029 6328111613590949805/00015 6328111613590949805/00003 6328111613590949805/00006 6328111613590949805/00009 6328111613590949805/00010 6328111613590949805/00024 6328111613590949805/00030 6328111613590949805/00013 6328111613590949805/00026 6328111613590949805/00023 6328111613590949805/00018 6328111613590949805/00012 6328111613590949805/00021 6328111613590949805/00017 6328111613590949805/00016 6328111613590949805/00019 6328111613590949805/00027 6328111613590949805/00025 6328111613590949805/00004 5964745783937713207/00015 5964745783937713207/00003 5964745783937713207/00009 5964745783937713207/00010 5964745783937713207/00022 5964745783937713207/00023 5964745783937713207/00018 5964745783937713207/00021 5964745783937713207/00014 5964745783937713207/00020 5964745783937713207/00017 5964745783937713207/00019 5964745783937713207/00002 5964745783937713207/00008 5964745783937713207/00005 5964745783937713207/00004 5860409002409447586/00029 5860409002409447586/00015 5860409002409447586/00003 5860409002409447586/00006 5860409002409447586/00032 5860409002409447586/00010 5860409002409447586/00033 5860409002409447586/00030 5860409002409447586/00013 5860409002409447586/00022 5860409002409447586/00001 5860409002409447586/00023 5860409002409447586/00038 5860409002409447586/00018 5860409002409447586/00012 5860409002409447586/00014 5860409002409447586/00037 5860409002409447586/00039 5860409002409447586/00020 5860409002409447586/00017 5860409002409447586/00011 5860409002409447586/00027 5860409002409447586/00005 6244516947121973130/00029 6244516947121973130/00003 6244516947121973130/00006 6244516947121973130/00010 6244516947121973130/00022 6244516947121973130/00001 6244516947121973130/00018 6244516947121973130/00017 6244516947121973130/00016 6244516947121973130/00027 6244516947121973130/00005 6244516947121973130/00004 6086908827228023244/00029 6086908827228023244/00046 6086908827228023244/00030 6086908827228023244/00022 6086908827228023244/00026 6086908827228023244/00036 6086908827228023244/00045 6086908827228023244/00018 6086908827228023244/00042 6086908827228023244/00012 6086908827228023244/00041 6086908827228023244/00014 6086908827228023244/00037 6086908827228023244/00020 6086908827228023244/00035 6086908827228023244/00004 6115421826615911139/00001 6115421826615911139/00002 6115421826615911139/00007 6123214615277846463/00003 6123214615277846463/00002 5866763836020613973/00009 5866763836020613973/00010 5866763836020613973/00057 5866763836020613973/00030 5866763836020613973/00058 5866763836020613973/00062 5866763836020613973/00026 5866763836020613973/00044 5866763836020613973/00050 5866763836020613973/00063 5866763836020613973/00001 5866763836020613973/00045 5866763836020613973/00064 5866763836020613973/00049 5866763836020613973/00048 5866763836020613973/00018 5866763836020613973/00042 5866763836020613973/00061 5866763836020613973/00021 5866763836020613973/00037 5866763836020613973/00047 5866763836020613973/00059 5866763836020613973/00019 5866763836020613973/00011 5866763836020613973/00002 5866763836020613973/00040 5866763836020613973/00007 5866763836020613973/00043 5866763836020613973/00004 5866763836020613973/00028 6127971721054840225/00015 6127971721054840225/00006 6127971721054840225/00010 6127971721054840225/00024 6127971721054840225/00018 6127971721054840225/00014 6127971721054840225/00017 6127971721054840225/00016 6127971721054840225/00019 6127971721054840225/00007 5969094438324916868/00015 5969094438324916868/00009 5969094438324916868/00018 5969094438324916868/00012 5969094438324916868/00019 5969094438324916868/00011 5935333418397978471/00009 5935333418397978471/00013 5935333418397978471/00001 5935333418397978471/00012 5935333418397978471/00011 5935333418397978471/00008 5935333418397978471/00007 5935333418397978471/00004 5989855880737045450/00003 5989855880737045450/00009 5989855880737045450/00010 5989855880737045450/00012 5989855880737045450/00007 5989855880737045450/00005 5989855880737045450/00004 6175437122629845193/00015 6175437122629845193/00003 6175437122629845193/00006 6175437122629845193/00009 6175437122629845193/00010 6175437122629845193/00013 6175437122629845193/00001 6175437122629845193/00023 6175437122629845193/00018 6175437122629845193/00012 6175437122629845193/00014 6175437122629845193/00017 6175437122629845193/00016 6175437122629845193/00019 6175437122629845193/00002 6175437122629845193/00008 6175437122629845193/00007 6175437122629845193/00025 6175437122629845193/00004 6103547101036014479/00003 6103547101036014479/00004 6098359639535901792/00015 6098359639535901792/00003 6098359639535901792/00013 6098359639535901792/00001 6098359639535901792/00012 6098359639535901792/00014 6098359639535901792/00017 6098359639535901792/00004 6106515782430919984/00060 6106515782430919984/00015 6106515782430919984/00003 6106515782430919984/00046 6106515782430919984/00056 6106515782430919984/00010 6106515782430919984/00033 6106515782430919984/00024 6106515782430919984/00053 6106515782430919984/00030 6106515782430919984/00071 6106515782430919984/00058 6106515782430919984/00013 6106515782430919984/00050 6106515782430919984/00036 6106515782430919984/00063 6106515782430919984/00018 6106515782430919984/00041 6106515782430919984/00065 6106515782430919984/00061 6106515782430919984/00075 6106515782430919984/00014 6106515782430919984/00037 6106515782430919984/00047 6106515782430919984/00020 6106515782430919984/00035 6106515782430919984/00017 6106515782430919984/00076 6106515782430919984/00080 6106515782430919984/00052 6106515782430919984/00055 6106515782430919984/00016 6106515782430919984/00059 6106515782430919984/00019 6106515782430919984/00011 6106515782430919984/00027 6106515782430919984/00034 6106515782430919984/00081 6106515782430919984/00068 6106515782430919984/00025 6106515782430919984/00054 6106515782430919984/00043 6106515782430919984/00074 6106515782430919984/00028 6111355351580119780/00003 6111355351580119780/00006 6111355351580119780/00009 6111355351580119780/00001 6111355351580119780/00007 6111355351580119780/00005 5558036432823356505/00015 5558036432823356505/00003 5558036432823356505/00006 5558036432823356505/00009 5558036432823356505/00013 5558036432823356505/00012 5558036432823356505/00017 5558036432823356505/00016 5558036432823356505/00011 5558036432823356505/00002 5558036432823356505/00005 5932956153999576296/00006 5932956153999576296/00009 5932956153999576296/00010 5932956153999576296/00001 5932956153999576296/00011 5932956153999576296/00002 5932956153999576296/00008 5932956153999576296/00007 6390672966217932513/00056 6390672966217932513/00050 6390672966217932513/00052 6390672966217932513/00055 6390672966217932513/00002 5992905737013873939/00009 5992905737013873939/00010 5992905737013873939/00013 5992905737013873939/00012 5992905737013873939/00007 5992905737013873939/00004 6120180220883154109/00015 6120180220883154109/00032 6120180220883154109/00009 6120180220883154109/00010 6120180220883154109/00030 6120180220883154109/00022 6120180220883154109/00036 6120180220883154109/00018 6120180220883154109/00042 6120180220883154109/00041 6120180220883154109/00037 6120180220883154109/00039 6120180220883154109/00017 6120180220883154109/00016 6120180220883154109/00019 6120180220883154109/00027 6120180220883154109/00034 6120180220883154109/00004 6120180220883154109/00028 6118409835363804230/00006 6118409835363804230/00001 5960308223727479402/00003 5960308223727479402/00006 5960308223727479402/00009 5960308223727479402/00010 5960308223727479402/00014 5960308223727479402/00002 5960308223727479402/00008 5960308223727479402/00007 5960308223727479402/00005 5960308223727479402/00004 5712423327245401117/00003 5712423327245401117/00002 5712423327245401117/00008 5712423327245401117/00007 6288030549418434745/00029 6288030549418434745/00015 6288030549418434745/00003 6288030549418434745/00006 6288030549418434745/00046 6288030549418434745/00009 6288030549418434745/00033 6288030549418434745/00024 6288030549418434745/00030 6288030549418434745/00031 6288030549418434745/00013 6288030549418434745/00022 6288030549418434745/00026 6288030549418434745/00044 6288030549418434745/00050 6288030549418434745/00036 6288030549418434745/00001 6288030549418434745/00049 6288030549418434745/00023 6288030549418434745/00038 6288030549418434745/00048 6288030549418434745/00018 6288030549418434745/00042 6288030549418434745/00012 6288030549418434745/00041 6288030549418434745/00021 6288030549418434745/00014 6288030549418434745/00037 6288030549418434745/00039 6288030549418434745/00020 6288030549418434745/00051 6288030549418434745/00017 6288030549418434745/00052 6288030549418434745/00016 6288030549418434745/00019 6288030549418434745/00027 6288030549418434745/00002 6288030549418434745/00008 6288030549418434745/00040 6288030549418434745/00007 6288030549418434745/00025 6288030549418434745/00054 6288030549418434745/00043 6288030549418434745/00005 6288030549418434745/00028 6337160680186960682/00060 6337160680186960682/00078 6337160680186960682/00038 6337160680186960682/00051 6337160680186960682/00054 6218560312268604819/00015 6218560312268604819/00006 6218560312268604819/00010 6218560312268604819/00026 6218560312268604819/00012 6218560312268604819/00020 6218560312268604819/00002 6218560312268604819/00008 6218560312268604819/00005 6218560312268604819/00004 6261598461554910275/00015 6261598461554910275/00003 6261598461554910275/00009 6261598461554910275/00010 6261598461554910275/00014 6225982015756099482/00015 6225982015756099482/00003 6225982015756099482/00006 6225982015756099482/00013 6225982015756099482/00001 6225982015756099482/00023 6225982015756099482/00018 6225982015756099482/00021 6225982015756099482/00020 6225982015756099482/00016 6225982015756099482/00019 6225982015756099482/00025 6225982015756099482/00005 6225982015756099482/00004 5557795485158079913/00002 5557795485158079913/00004 5903672637478720406/00003 5903672637478720406/00006 5903672637478720406/00046 5903672637478720406/00009 5903672637478720406/00010 5903672637478720406/00057 5903672637478720406/00031 5903672637478720406/00044 5903672637478720406/00050 5903672637478720406/00036 5903672637478720406/00045 5903672637478720406/00023 5903672637478720406/00048 5903672637478720406/00018 5903672637478720406/00042 5903672637478720406/00012 5903672637478720406/00014 5903672637478720406/00037 5903672637478720406/00047 5903672637478720406/00039 5903672637478720406/00020 5903672637478720406/00052 5903672637478720406/00016 5903672637478720406/00019 5903672637478720406/00011 5903672637478720406/00027 5903672637478720406/00034 5903672637478720406/00002 5903672637478720406/00008 5903672637478720406/00043 5903672637478720406/00005 5903672637478720406/00004 6100169968251172848/00029 6100169968251172848/00003 6100169968251172848/00006 6100169968251172848/00009 6100169968251172848/00010 6100169968251172848/00033 6100169968251172848/00022 6100169968251172848/00026 6100169968251172848/00001 6100169968251172848/00023 6100169968251172848/00018 6100169968251172848/00014 6100169968251172848/00017 6100169968251172848/00019 6100169968251172848/00011 6100169968251172848/00027 6100169968251172848/00034 6100169968251172848/00002 6100169968251172848/00025 6100169968251172848/00004 5929832853781920242/00003 5929832853781920242/00006 5929832853781920242/00013 5929832853781920242/00001 5929832853781920242/00002 5929832853781920242/00008 5929832853781920242/00005 5929832853781920242/00004 6132264970363900193/00029 6132264970363900193/00003 6132264970363900193/00098 6132264970363900193/00032 6132264970363900193/00070 6132264970363900193/00009 6132264970363900193/00090 6132264970363900193/00073 6132264970363900193/00033 6132264970363900193/00057 6132264970363900193/00053 6132264970363900193/00078 6132264970363900193/00030 6132264970363900193/00071 6132264970363900193/00058 6132264970363900193/00031 6132264970363900193/00022 6132264970363900193/00096 6132264970363900193/00094 6132264970363900193/00044 6132264970363900193/00093 6132264970363900193/00050 6132264970363900193/00036 6132264970363900193/00045 6132264970363900193/00066 6132264970363900193/00064 6132264970363900193/00049 6132264970363900193/00023 6132264970363900193/00038 6132264970363900193/00088 6132264970363900193/00048 6132264970363900193/00018 6132264970363900193/00042 6132264970363900193/00065 6132264970363900193/00061 6132264970363900193/00021 6132264970363900193/00075 6132264970363900193/00079 6132264970363900193/00037 6132264970363900193/00047 6132264970363900193/00039 6132264970363900193/00051 6132264970363900193/00076 6132264970363900193/00080 6132264970363900193/00055 6132264970363900193/00016 6132264970363900193/00095 6132264970363900193/00059 6132264970363900193/00011 6132264970363900193/00084 6132264970363900193/00027 6132264970363900193/00034 6132264970363900193/00082 6132264970363900193/00002 6132264970363900193/00092 6132264970363900193/00008 6132264970363900193/00040 6132264970363900193/00068 6132264970363900193/00054 6132264970363900193/00043 6132264970363900193/00005 6132264970363900193/00074 6132264970363900193/00004 5940574996485955539/00003 5940574996485955539/00009 5940574996485955539/00018 5940574996485955539/00012 5940574996485955539/00017 5940574996485955539/00011 5940574996485955539/00002 5940574996485955539/00008 5940574996485955539/00005 6360327733781577947/00015 6360327733781577947/00020 6360327733781577947/00016 5582872081212496848/00010 5582872081212496848/00013 5582872081212496848/00001 5582872081212496848/00012 5582872081212496848/00011 5582872081212496848/00008 6128342806229214651/00003 6128342806229214651/00006 6128342806229214651/00010 6128342806229214651/00018 6128342806229214651/00012 6128342806229214651/00017 6128342806229214651/00019 6128342806229214651/00005 6128342806229214651/00004 6382880177556067401/00003 6382880177556067401/00006 6382880177556067401/00009 6382880177556067401/00014 6382880177556067401/00020 6167203670323469717/00029 6167203670323469717/00015 6167203670323469717/00046 6167203670323469717/00032 6167203670323469717/00090 6167203670323469717/00010 6167203670323469717/00024 6167203670323469717/00053 6167203670323469717/00078 6167203670323469717/00030 6167203670323469717/00062 6167203670323469717/00013 6167203670323469717/00022 6167203670323469717/00026 6167203670323469717/00044 6167203670323469717/00050 6167203670323469717/00036 6167203670323469717/00063 6167203670323469717/00001 6167203670323469717/00045 6167203670323469717/00049 6167203670323469717/00072 6167203670323469717/00038 6167203670323469717/00048 6167203670323469717/00018 6167203670323469717/00085 6167203670323469717/00042 6167203670323469717/00012 6167203670323469717/00065 6167203670323469717/00075 6167203670323469717/00079 6167203670323469717/00014 6167203670323469717/00037 6167203670323469717/00047 6167203670323469717/00039 6167203670323469717/00020 6167203670323469717/00051 6167203670323469717/00017 6167203670323469717/00080 6167203670323469717/00091 6167203670323469717/00055 6167203670323469717/00016 6167203670323469717/00019 6167203670323469717/00067 6167203670323469717/00002 6167203670323469717/00092 6167203670323469717/00008 6167203670323469717/00040 6167203670323469717/00043 6167203670323469717/00074 6167203670323469717/00004 6252626704370352837/00003 6252626704370352837/00001 6252626704370352837/00005 6252626704370352837/00004 5868603800010156216/00003 5868603800010156216/00009 5868603800010156216/00010 5868603800010156216/00013 5868603800010156216/00012 5868603800010156216/00014 5868603800010156216/00016 5868603800010156216/00002 5868603800010156216/00008 5868603800010156216/00007 5868603800010156216/00005 5868603800010156216/00004 5952755094240730687/00006 5952755094240730687/00010 5952755094240730687/00001 5952755094240730687/00012 5952755094240730687/00011 5952755094240730687/00008 5952755094240730687/00004 5568151080805445931/00006 5568151080805445931/00010 5568151080805445931/00024 5568151080805445931/00013 5568151080805445931/00022 5568151080805445931/00001 5568151080805445931/00018 5568151080805445931/00012 5568151080805445931/00020 5568151080805445931/00017 5568151080805445931/00019 5568151080805445931/00011 5568151080805445931/00002 5568151080805445931/00008 5568151080805445931/00004 6178846467669476288/00060 6178846467669476288/00029 6178846467669476288/00015 6178846467669476288/00003 6178846467669476288/00006 6178846467669476288/00046 6178846467669476288/00058 6178846467669476288/00031 6178846467669476288/00026 6178846467669476288/00044 6178846467669476288/00050 6178846467669476288/00001 6178846467669476288/00045 6178846467669476288/00049 6178846467669476288/00023 6178846467669476288/00038 6178846467669476288/00018 6178846467669476288/00014 6178846467669476288/00037 6178846467669476288/00047 6178846467669476288/00020 6178846467669476288/00035 6178846467669476288/00051 6178846467669476288/00017 6178846467669476288/00052 6178846467669476288/00016 6178846467669476288/00059 6178846467669476288/00011 6178846467669476288/00027 6178846467669476288/00002 6178846467669476288/00008 6178846467669476288/00007 6178846467669476288/00025 6178846467669476288/00005 6178846467669476288/00028 6090462483168737256/00003 6090462483168737256/00006 6090462483168737256/00007 6090462483168737256/00004 5882349413344264184/00003 5882349413344264184/00018 5882349413344264184/00012 5882349413344264184/00016 5882349413344264184/00002 5882349413344264184/00008 5882349413344264184/00004 5885318094739272555/00060 5885318094739272555/00029 5885318094739272555/00015 5885318094739272555/00003 5885318094739272555/00006 5885318094739272555/00046 5885318094739272555/00032 5885318094739272555/00070 5885318094739272555/00010 5885318094739272555/00033 5885318094739272555/00057 5885318094739272555/00053 5885318094739272555/00030 5885318094739272555/00071 5885318094739272555/00058 5885318094739272555/00062 5885318094739272555/00013 5885318094739272555/00026 5885318094739272555/00044 5885318094739272555/00077 5885318094739272555/00050 5885318094739272555/00036 5885318094739272555/00063 5885318094739272555/00001 5885318094739272555/00064 5885318094739272555/00049 5885318094739272555/00072 5885318094739272555/00023 5885318094739272555/00048 5885318094739272555/00018 5885318094739272555/00042 5885318094739272555/00012 5885318094739272555/00041 5885318094739272555/00065 5885318094739272555/00021 5885318094739272555/00014 5885318094739272555/00037 5885318094739272555/00035 5885318094739272555/00051 5885318094739272555/00017 5885318094739272555/00076 5885318094739272555/00055 5885318094739272555/00016 5885318094739272555/00059 5885318094739272555/00011 5885318094739272555/00027 5885318094739272555/00067 5885318094739272555/00034 5885318094739272555/00081 5885318094739272555/00002 5885318094739272555/00040 5885318094739272555/00007 5885318094739272555/00054 5885318094739272555/00043 5885318094739272555/00074 5885318094739272555/00028 6262363824727123310/00003 6262363824727123310/00006 6262363824727123310/00009 6262363824727123310/00018 6262363824727123310/00016 6262363824727123310/00011 6262363824727123310/00008 6262363824727123310/00007 5554241829217367363/00003 5554241829217367363/00031 5554241829217367363/00022 5554241829217367363/00012 5554241829217367363/00017 5554241829217367363/00025 5554241829217367363/00004 6115814816123558622/00003 6115814816123558622/00002 6115814816123558622/00007 6115814816123558622/00005 5958133252288789199/00015 5958133252288789199/00022 5958133252288789199/00001 5958133252288789199/00023 5958133252288789199/00002 5958133252288789199/00008 5958133252288789199/00007 5968858644750778253/00006 5968858644750778253/00010 5968858644750778253/00002 5968858644750778253/00007 5968858644750778253/00004 6219678721752549410/00010 6219678721752549410/00013 6219678721752549410/00022 6219678721752549410/00011 6219678721752549410/00027 6219678721752549410/00028 6145398550858351282/00024 6145398550858351282/00001 6145398550858351282/00012 6145398550858351282/00020 6145398550858351282/00017 6145398550858351282/00011 6145398550858351282/00008 6145398550858351282/00007 6145398550858351282/00004 6046044361020639569/00147 6046044361020639569/00125 6046044361020639569/00060 6046044361020639569/00029 6046044361020639569/00015 6046044361020639569/00003 6046044361020639569/00006 6046044361020639569/00098 6046044361020639569/00046 6046044361020639569/00107 6046044361020639569/00128 6046044361020639569/00109 6046044361020639569/00070 6046044361020639569/00009 6046044361020639569/00090 6046044361020639569/00073 6046044361020639569/00112 6046044361020639569/00033 6046044361020639569/00123 6046044361020639569/00057 6046044361020639569/00024 6046044361020639569/00053 6046044361020639569/00078 6046044361020639569/00071 6046044361020639569/00121 6046044361020639569/00086 6046044361020639569/00013 6046044361020639569/00148 6046044361020639569/00096 6046044361020639569/00044 6046044361020639569/00099 6046044361020639569/00077 6046044361020639569/00103 6046044361020639569/00105 6046044361020639569/00036 6046044361020639569/00117 6046044361020639569/00063 6046044361020639569/00045 6046044361020639569/00066 6046044361020639569/00049 6046044361020639569/00023 6046044361020639569/00114 6046044361020639569/00088 6046044361020639569/00048 6046044361020639569/00018 6046044361020639569/00085 6046044361020639569/00042 6046044361020639569/00012 6046044361020639569/00041 6046044361020639569/00065 6046044361020639569/00144 6046044361020639569/00061 6046044361020639569/00075 6046044361020639569/00104 6046044361020639569/00079 6046044361020639569/00047 6046044361020639569/00039 6046044361020639569/00124 6046044361020639569/00035 6046044361020639569/00017 6046044361020639569/00076 6046044361020639569/00091 6046044361020639569/00095 6046044361020639569/00146 6046044361020639569/00011 6046044361020639569/00119 6046044361020639569/00084 6046044361020639569/00027 6046044361020639569/00115 6046044361020639569/00034 6046044361020639569/00081 6046044361020639569/00082 6046044361020639569/00002 6046044361020639569/00089 6046044361020639569/00092 6046044361020639569/00008 6046044361020639569/00087 6046044361020639569/00131 6046044361020639569/00040 6046044361020639569/00007 6046044361020639569/00143 6046044361020639569/00132 6046044361020639569/00097 6046044361020639569/00043 5987034087353994730/00009 5987034087353994730/00001 5987034087353994730/00012 5987034087353994730/00011 5987034087353994730/00008 5987034087353994730/00007 5987034087353994730/00005 5948390977971223362/00013 5948390977971223362/00005 5948390977971223362/00004 5688990844671857003/00003 5688990844671857003/00006 5688990844671857003/00046 5688990844671857003/00009 5688990844671857003/00010 5688990844671857003/00033 5688990844671857003/00030 5688990844671857003/00031 5688990844671857003/00026 5688990844671857003/00044 5688990844671857003/00036 5688990844671857003/00038 5688990844671857003/00042 5688990844671857003/00012 5688990844671857003/00041 5688990844671857003/00014 5688990844671857003/00037 5688990844671857003/00051 5688990844671857003/00052 5688990844671857003/00019 5688990844671857003/00034 5688990844671857003/00008 5688990844671857003/00040 5688990844671857003/00025 5688990844671857003/00005 5688990844671857003/00004 5688990844671857003/00028 6255201107767577343/00010 6255201107767577343/00001 6255201107767577343/00016 6081653075747837089/00003 6081653075747837089/00006 6081653075747837089/00002 6081653075747837089/00008 6081653075747837089/00007 6081653075747837089/00005 6081653075747837089/00004 6247802597103481495/00006 6247802597103481495/00002 6247802597103481495/00008 6220161905703758451/00015 6220161905703758451/00003 6220161905703758451/00006 6220161905703758451/00010 6220161905703758451/00026 6220161905703758451/00018 6220161905703758451/00012 6220161905703758451/00014 6220161905703758451/00020 6220161905703758451/00011 6220161905703758451/00027 6220161905703758451/00002 6220161905703758451/00007 6220161905703758451/00025 6220161905703758451/00004 6078328771191220906/00015 6078328771191220906/00006 6078328771191220906/00032 6078328771191220906/00009 6078328771191220906/00010 6078328771191220906/00033 6078328771191220906/00024 6078328771191220906/00030 6078328771191220906/00031 6078328771191220906/00013 6078328771191220906/00022 6078328771191220906/00026 6078328771191220906/00036 6078328771191220906/00038 6078328771191220906/00042 6078328771191220906/00012 6078328771191220906/00041 6078328771191220906/00021 6078328771191220906/00014 6078328771191220906/00037 6078328771191220906/00039 6078328771191220906/00020 6078328771191220906/00035 6078328771191220906/00017 6078328771191220906/00019 6078328771191220906/00011 6078328771191220906/00027 6078328771191220906/00034 6078328771191220906/00002 6078328771191220906/00008 6078328771191220906/00040 6078328771191220906/00043 6078328771191220906/00005 6078328771191220906/00004 6078328771191220906/00028 6298351355700308615/00024 6298351355700308615/00022 6298351355700308615/00023 6298351355700308615/00035 6298351355700308615/00027 5981340249079254551/00015 5981340249079254551/00003 5981340249079254551/00006 5981340249079254551/00010 5981340249079254551/00013 5981340249079254551/00001 5981340249079254551/00012 5981340249079254551/00014 5981340249079254551/00002 5981340249079254551/00005 5981340249079254551/00004 6238227826510524975/00003 6238227826510524975/00006 6238227826510524975/00024 6238227826510524975/00031 6238227826510524975/00001 6238227826510524975/00023 6238227826510524975/00038 6238227826510524975/00018 6238227826510524975/00039 6238227826510524975/00020 6238227826510524975/00035 6238227826510524975/00011 6238227826510524975/00034 6238227826510524975/00002 6238227826510524975/00008 6238227826510524975/00007 6238227826510524975/00043 6234261853839799567/00015 6234261853839799567/00046 6234261853839799567/00032 6234261853839799567/00009 6234261853839799567/00010 6234261853839799567/00024 6234261853839799567/00031 6234261853839799567/00013 6234261853839799567/00036 6234261853839799567/00045 6234261853839799567/00023 6234261853839799567/00018 6234261853839799567/00012 6234261853839799567/00014 6234261853839799567/00039 6234261853839799567/00035 6234261853839799567/00017 6234261853839799567/00019 6234261853839799567/00011 6234261853839799567/00027 6234261853839799567/00002 6234261853839799567/00008 6234261853839799567/00007 6234261853839799567/00025 6234261853839799567/00043 6234261853839799567/00005 6234261853839799567/00004 6234261853839799567/00028 6121359189405910825/00003 6121359189405910825/00006 6121359189405910825/00009 6121359189405910825/00013 6121359189405910825/00001 6121359189405910825/00018 6121359189405910825/00012 6121359189405910825/00021 6121359189405910825/00014 6121359189405910825/00017 6121359189405910825/00019 6121359189405910825/00011 6121359189405910825/00007 6121359189405910825/00005 6209677460907075383/00015 6209677460907075383/00003 6209677460907075383/00006 6209677460907075383/00009 6209677460907075383/00010 6209677460907075383/00013 6209677460907075383/00022 6209677460907075383/00023 6209677460907075383/00018 6209677460907075383/00012 6209677460907075383/00021 6209677460907075383/00014 6209677460907075383/00020 6209677460907075383/00016 6209677460907075383/00019 6209677460907075383/00011 6209677460907075383/00002 6107688308502821353/00015 6107688308502821353/00003 6107688308502821353/00006 6107688308502821353/00033 6107688308502821353/00031 6107688308502821353/00001 6107688308502821353/00037 6107688308502821353/00019 6107688308502821353/00011 6107688308502821353/00034 6107688308502821353/00008 6107688308502821353/00007 6107688308502821353/00028 5940831406033529350/00003 5940831406033529350/00009 5940831406033529350/00013 5940831406033529350/00001 5940831406033529350/00023 5940831406033529350/00012 5940831406033529350/00021 5940831406033529350/00014 5940831406033529350/00020 5940831406033529350/00017 5940831406033529350/00016 5940831406033529350/00002 6092051191571527782/00006 6092051191571527782/00009 6092051191571527782/00008 6092051191571527782/00007 6092051191571527782/00005 6092051191571527782/00004 5963269174181283169/00015 5963269174181283169/00003 5963269174181283169/00006 5963269174181283169/00010 5963269174181283169/00030 5963269174181283169/00026 5963269174181283169/00014 5963269174181283169/00011 5963269174181283169/00034 5963269174181283169/00002 5963269174181283169/00005 6245317099529221618/00060 6245317099529221618/00015 6245317099529221618/00003 6245317099529221618/00006 6245317099529221618/00046 6245317099529221618/00056 6245317099529221618/00009 6245317099529221618/00057 6245317099529221618/00024 6245317099529221618/00053 6245317099529221618/00058 6245317099529221618/00013 6245317099529221618/00044 6245317099529221618/00050 6245317099529221618/00036 6245317099529221618/00045 6245317099529221618/00023 6245317099529221618/00038 6245317099529221618/00018 6245317099529221618/00041 6245317099529221618/00061 6245317099529221618/00021 6245317099529221618/00075 6245317099529221618/00037 6245317099529221618/00047 6245317099529221618/00039 6245317099529221618/00076 6245317099529221618/00052 6245317099529221618/00016 6245317099529221618/00059 6245317099529221618/00019 6245317099529221618/00027 6245317099529221618/00081 6245317099529221618/00002 6245317099529221618/00008 6245317099529221618/00040 6245317099529221618/00007 6245317099529221618/00054 6245317099529221618/00043 6245317099529221618/00005 6245317099529221618/00004 6245317099529221618/00028 6074932310923079479/00029 6074932310923079479/00015 6074932310923079479/00003 6074932310923079479/00006 6074932310923079479/00009 6074932310923079479/00033 6074932310923079479/00031 6074932310923079479/00022 6074932310923079479/00026 6074932310923079479/00001 6074932310923079479/00021 6074932310923079479/00037 6074932310923079479/00020 6074932310923079479/00019 6074932310923079479/00002 6074932310923079479/00008 6074932310923079479/00007 6074932310923079479/00025 6074932310923079479/00004 6074932310923079479/00028 5994018992537001343/00003 5994018992537001343/00006 5994018992537001343/00022 5994018992537001343/00050 5994018992537001343/00001 5994018992537001343/00045 5994018992537001343/00038 5994018992537001343/00041 5994018992537001343/00021 5994018992537001343/00014 5994018992537001343/00037 5994018992537001343/00039 5994018992537001343/00035 5994018992537001343/00034 5994018992537001343/00002 5994018992537001343/00040 5994018992537001343/00007 5994018992537001343/00043 5994018992537001343/00004 5946222448983474134/00029 5946222448983474134/00015 5946222448983474134/00006 5946222448983474134/00046 5946222448983474134/00032 5946222448983474134/00009 5946222448983474134/00010 5946222448983474134/00033 5946222448983474134/00024 5946222448983474134/00030 5946222448983474134/00031 5946222448983474134/00022 5946222448983474134/00026 5946222448983474134/00036 5946222448983474134/00045 5946222448983474134/00049 5946222448983474134/00023 5946222448983474134/00038 5946222448983474134/00048 5946222448983474134/00018 5946222448983474134/00042 5946222448983474134/00012 5946222448983474134/00041 5946222448983474134/00021 5946222448983474134/00014 5946222448983474134/00037 5946222448983474134/00047 5946222448983474134/00020 5946222448983474134/00035 5946222448983474134/00017 5946222448983474134/00016 5946222448983474134/00019 5946222448983474134/00011 5946222448983474134/00027 5946222448983474134/00034 5946222448983474134/00008 5946222448983474134/00007 5946222448983474134/00025 5946222448983474134/00043 5946222448983474134/00005 5946222448983474134/00004 6331733559511729306/00031 6331733559511729306/00026 6331733559511729306/00011 6331733559511729306/00025 6148432945383466029/00003 6148432945383466029/00007 6148432945383466029/00005 6148432945383466029/00004 5902403474642752693/00015 5902403474642752693/00006 5902403474642752693/00009 5902403474642752693/00024 5902403474642752693/00022 5902403474642752693/00026 5902403474642752693/00018 5902403474642752693/00021 5902403474642752693/00014 5902403474642752693/00020 5902403474642752693/00017 5902403474642752693/00016 5902403474642752693/00019 5902403474642752693/00027 5902403474642752693/00007 5902403474642752693/00025 5902403474642752693/00005 5902403474642752693/00028 6013663313955433286/00029 6013663313955433286/00015 6013663313955433286/00003 6013663313955433286/00032 6013663313955433286/00009 6013663313955433286/00030 6013663313955433286/00031 6013663313955433286/00022 6013663313955433286/00026 6013663313955433286/00044 6013663313955433286/00023 6013663313955433286/00042 6013663313955433286/00012 6013663313955433286/00041 6013663313955433286/00014 6013663313955433286/00017 6013663313955433286/00016 6013663313955433286/00019 6013663313955433286/00011 6013663313955433286/00027 6013663313955433286/00034 6013663313955433286/00040 6013663313955433286/00025 6013663313955433286/00028 5943980476054958846/00003 5943980476054958846/00006 5943980476054958846/00002 5943980476054958846/00005 5990598051085794817/00007 5990598051085794817/00005 5545686254363725605/00003 5545686254363725605/00010 5545686254363725605/00013 5545686254363725605/00022 5545686254363725605/00018 5545686254363725605/00021 5545686254363725605/00020 5545686254363725605/00019 5545686254363725605/00007 5545686254363725605/00005 5545686254363725605/00004 6063817794555214833/00029 6063817794555214833/00015 6063817794555214833/00003 6063817794555214833/00006 6063817794555214833/00009 6063817794555214833/00033 6063817794555214833/00024 6063817794555214833/00030 6063817794555214833/00031 6063817794555214833/00026 6063817794555214833/00001 6063817794555214833/00023 6063817794555214833/00018 6063817794555214833/00021 6063817794555214833/00020 6063817794555214833/00017 6063817794555214833/00016 6063817794555214833/00019 6063817794555214833/00027 6063817794555214833/00034 6063817794555214833/00002 6063817794555214833/00008 6063817794555214833/00025 6063817794555214833/00005 6063817794555214833/00004 6063817794555214833/00028 5585156574317243081/00001 6130075825533155878/00006 6130075825533155878/00046 6130075825533155878/00024 6130075825533155878/00031 6130075825533155878/00013 6130075825533155878/00022 6130075825533155878/00044 6130075825533155878/00023 6130075825533155878/00038 6130075825533155878/00012 6130075825533155878/00041 6130075825533155878/00021 6130075825533155878/00014 6130075825533155878/00047 6130075825533155878/00039 6130075825533155878/00017 6130075825533155878/00011 6130075825533155878/00027 6130075825533155878/00008 6130075825533155878/00025 6130075825533155878/00005 6130075825533155878/00004 5946578072275579813/00001 5946578072275579813/00002 5946578072275579813/00004 6353561871800180662/00024 6353561871800180662/00014 6353561871800180662/00019 6353561871800180662/00005 6130207251532475381/00029 6130207251532475381/00015 6130207251532475381/00010 6130207251532475381/00024 6130207251532475381/00026 6130207251532475381/00036 6130207251532475381/00001 6130207251532475381/00023 6130207251532475381/00018 6130207251532475381/00012 6130207251532475381/00014 6130207251532475381/00035 6130207251532475381/00017 6130207251532475381/00016 6130207251532475381/00019 6130207251532475381/00011 6130207251532475381/00027 6130207251532475381/00005 6130207251532475381/00028 5875685342087781766/00013 5875685342087781766/00001 5875685342087781766/00012 5875685342087781766/00014 5875685342087781766/00017 5875685342087781766/00016 5875685342087781766/00011 5875685342087781766/00002 5875685342087781766/00008 5875685342087781766/00007 5875685342087781766/00005 6257910802634626105/00003 6257910802634626105/00006 6257910802634626105/00013 6257910802634626105/00012 6257910802634626105/00014 6257910802634626105/00011 6257910802634626105/00002 6257910802634626105/00005 6257910802634626105/00004 6213299406827796321/00003 6213299406827796321/00001 6213299406827796321/00002 6213299406827796321/00007 6213299406827796321/00004 6130887574352161829/00006 6130887574352161829/00011 6130887574352161829/00002 6130887574352161829/00008 6130887574352161829/00004 6314619832824012968/00015 6314619832824012968/00010 6314619832824012968/00012 6314619832824012968/00011 6314619832824012968/00002 6314619832824012968/00007 6314619832824012968/00004 6093520070386762253/00015 6093520070386762253/00003 6093520070386762253/00012 6093520070386762253/00021 6093520070386762253/00020 6093520070386762253/00017 6093520070386762253/00016 6093520070386762253/00019 6093520070386762253/00011 5992163566665190152/00060 5992163566665190152/00029 5992163566665190152/00015 5992163566665190152/00003 5992163566665190152/00098 5992163566665190152/00046 5992163566665190152/00056 5992163566665190152/00070 5992163566665190152/00009 5992163566665190152/00090 5992163566665190152/00073 5992163566665190152/00010 5992163566665190152/00033 5992163566665190152/00057 5992163566665190152/00024 5992163566665190152/00053 5992163566665190152/00078 5992163566665190152/00030 5992163566665190152/00071 5992163566665190152/00062 5992163566665190152/00031 5992163566665190152/00013 5992163566665190152/00069 5992163566665190152/00022 5992163566665190152/00096 5992163566665190152/00094 5992163566665190152/00026 5992163566665190152/00077 5992163566665190152/00093 5992163566665190152/00050 5992163566665190152/00036 5992163566665190152/00063 5992163566665190152/00001 5992163566665190152/00045 5992163566665190152/00049 5992163566665190152/00072 5992163566665190152/00023 5992163566665190152/00038 5992163566665190152/00048 5992163566665190152/00085 5992163566665190152/00042 5992163566665190152/00012 5992163566665190152/00041 5992163566665190152/00065 5992163566665190152/00021 5992163566665190152/00075 5992163566665190152/00079 5992163566665190152/00014 5992163566665190152/00039 5992163566665190152/00051 5992163566665190152/00017 5992163566665190152/00076 5992163566665190152/00080 5992163566665190152/00052 5992163566665190152/00091 5992163566665190152/00055 5992163566665190152/00016 5992163566665190152/00095 5992163566665190152/00059 5992163566665190152/00019 5992163566665190152/00011 5992163566665190152/00084 5992163566665190152/00027 5992163566665190152/00034 5992163566665190152/00081 5992163566665190152/00002 5992163566665190152/00092 5992163566665190152/00087 5992163566665190152/00040 5992163566665190152/00068 5992163566665190152/00097 5992163566665190152/00025 5992163566665190152/00043 5992163566665190152/00074 5992163566665190152/00004 6256805278052633386/00003 6256805278052633386/00006 6256805278052633386/00009 6256805278052633386/00010 6256805278052633386/00007 6336739343895160063/00006 6336739343895160063/00046 6336739343895160063/00056 6336739343895160063/00053 6336739343895160063/00042 6336739343895160063/00021 6336739343895160063/00052 6336739343895160063/00016 6336739343895160063/00027 6336739343895160063/00040 6201111578131862332/00003 6201111578131862332/00002 6201111578131862332/00005 6201111578131862332/00004 6281629330029981652/00009 6281629330029981652/00018 6281629330029981652/00014 6281629330029981652/00002 6281629330029981652/00008 6281629330029981652/00007 6281629330029981652/00005 6281629330029981652/00004 6119824597591045287/00029 6119824597591045287/00015 6119824597591045287/00010 6119824597591045287/00024 6119824597591045287/00030 6119824597591045287/00031 6119824597591045287/00001 6119824597591045287/00002 5994397808652504446/00015 5994397808652504446/00003 5994397808652504446/00006 5994397808652504446/00010 5994397808652504446/00012 5994397808652504446/00014 5994397808652504446/00017 5994397808652504446/00011 5994397808652504446/00002 5994397808652504446/00008 5994397808652504446/00004 5856709747077402165/00015 5856709747077402165/00009 5856709747077402165/00017 5856709747077402165/00016 5856709747077402165/00008 5856709747077402165/00004 6106473262254688466/00010 6106473262254688466/00013 6106473262254688466/00016 6106473262254688466/00008 6106473262254688466/00007 6106473262254688466/00005 5587618879068041101/00003 5587618879068041101/00010 5587618879068041101/00024 5587618879068041101/00022 5587618879068041101/00023 5587618879068041101/00014 5587618879068041101/00020 5587618879068041101/00019 5587618879068041101/00002 5587618879068041101/00008 6323817075791736335/00029 6323817075791736335/00015 6323817075791736335/00046 6323817075791736335/00056 6323817075791736335/00032 6323817075791736335/00073 6323817075791736335/00010 6323817075791736335/00033 6323817075791736335/00057 6323817075791736335/00024 6323817075791736335/00053 6323817075791736335/00030 6323817075791736335/00013 6323817075791736335/00026 6323817075791736335/00050 6323817075791736335/00063 6323817075791736335/00066 6323817075791736335/00064 6323817075791736335/00049 6323817075791736335/00072 6323817075791736335/00038 6323817075791736335/00085 6323817075791736335/00042 6323817075791736335/00041 6323817075791736335/00065 6323817075791736335/00075 6323817075791736335/00101 6323817075791736335/00020 6323817075791736335/00051 6323817075791736335/00055 6323817075791736335/00067 6323817075791736335/00034 6323817075791736335/00002 6323817075791736335/00106 6323817075791736335/00054 6323817075791736335/00074 6323817075791736335/00028 6338807370648247218/00022 6338807370648247218/00020 5962843972419044287/00060 5962843972419044287/00029 5962843972419044287/00056 5962843972419044287/00032 5962843972419044287/00009 5962843972419044287/00033 5962843972419044287/00057 5962843972419044287/00053 5962843972419044287/00058 5962843972419044287/00031 5962843972419044287/00069 5962843972419044287/00022 5962843972419044287/00063 5962843972419044287/00001 5962843972419044287/00049 5962843972419044287/00023 5962843972419044287/00018 5962843972419044287/00041 5962843972419044287/00061 5962843972419044287/00021 5962843972419044287/00014 5962843972419044287/00017 5962843972419044287/00019 5962843972419044287/00011 5962843972419044287/00067 5962843972419044287/00034 5962843972419044287/00002 5962843972419044287/00008 5962843972419044287/00007 5962843972419044287/00054 5962843972419044287/00005 5962843972419044287/00004 5972140429131177767/00015 5972140429131177767/00003 5972140429131177767/00009 5972140429131177767/00030 5972140429131177767/00022 5972140429131177767/00023 5972140429131177767/00018 5972140429131177767/00014 5972140429131177767/00016 5972140429131177767/00011 5972140429131177767/00002 5972140429131177767/00008 6350666634345878987/00013 6114710580031693461/00003 6114710580031693461/00009 6114710580031693461/00013 6114710580031693461/00018 6114710580031693461/00012 6114710580031693461/00011 6114710580031693461/00002 6114710580031693461/00008 6114710580031693461/00005 6114710580031693461/00004 6121680023462922047/00032 6121680023462922047/00009 6121680023462922047/00031 6121680023462922047/00022 6121680023462922047/00036 6121680023462922047/00023 6121680023462922047/00038 6121680023462922047/00021 6121680023462922047/00014 6121680023462922047/00039 6121680023462922047/00035 6121680023462922047/00011 6121680023462922047/00043 6121680023462922047/00004 6326414672012357313/00060 6326414672012357313/00015 6326414672012357313/00006 6326414672012357313/00046 6326414672012357313/00056 6326414672012357313/00073 6326414672012357313/00024 6326414672012357313/00053 6326414672012357313/00030 6326414672012357313/00058 6326414672012357313/00062 6326414672012357313/00031 6326414672012357313/00086 6326414672012357313/00013 6326414672012357313/00069 6326414672012357313/00022 6326414672012357313/00044 6326414672012357313/00001 6326414672012357313/00066 6326414672012357313/00064 6326414672012357313/00049 6326414672012357313/00072 6326414672012357313/00023 6326414672012357313/00018 6326414672012357313/00085 6326414672012357313/00042 6326414672012357313/00041 6326414672012357313/00061 6326414672012357313/00083 6326414672012357313/00021 6326414672012357313/00075 6326414672012357313/00014 6326414672012357313/00037 6326414672012357313/00047 6326414672012357313/00035 6326414672012357313/00051 6326414672012357313/00017 6326414672012357313/00080 6326414672012357313/00052 6326414672012357313/00016 6326414672012357313/00019 6326414672012357313/00011 6326414672012357313/00002 6326414672012357313/00089 6326414672012357313/00087 6326414672012357313/00040 6326414672012357313/00025 6326414672012357313/00043 6326414672012357313/00005 6326414672012357313/00074 6326414672012357313/00004 6326414672012357313/00028 6277184038878681069/00029 6277184038878681069/00015 6277184038878681069/00032 6277184038878681069/00009 6277184038878681069/00010 6277184038878681069/00033 6277184038878681069/00024 6277184038878681069/00022 6277184038878681069/00018 6277184038878681069/00012 6277184038878681069/00014 6277184038878681069/00020 6277184038878681069/00035 6277184038878681069/00017 6277184038878681069/00016 6277184038878681069/00034 6277184038878681069/00008 6277184038878681069/00007 6277184038878681069/00005 6264598066714502597/00002 6053071786379896398/00001 6127571000606186220/00015 6127571000606186220/00010 6127571000606186220/00001 6127571000606186220/00018 6127571000606186220/00016 6127571000606186220/00002 6127571000606186220/00008 5970667684845379863/00015 5970667684845379863/00024 5970667684845379863/00022 5970667684845379863/00038 5970667684845379863/00014 5970667684845379863/00025 5970667684845379863/00004 6208904366793732392/00003 6208904366793732392/00006 6208904366793732392/00002 6208904366793732392/00007 6113550938861837500/00029 6113550938861837500/00015 6113550938861837500/00003 6113550938861837500/00006 6113550938861837500/00032 6113550938861837500/00009 6113550938861837500/00024 6113550938861837500/00030 6113550938861837500/00013 6113550938861837500/00022 6113550938861837500/00001 6113550938861837500/00023 6113550938861837500/00012 6113550938861837500/00021 6113550938861837500/00037 6113550938861837500/00039 6113550938861837500/00020 6113550938861837500/00035 6113550938861837500/00016 6113550938861837500/00011 6113550938861837500/00034 6113550938861837500/00002 6113550938861837500/00040 6113550938861837500/00007 6113550938861837500/00025 6113550938861837500/00004 6113550938861837500/00028 5547327790864258654/00024 5547327790864258654/00023 5547327790864258654/00018 5547327790864258654/00012 5547327790864258654/00014 5547327790864258654/00020 5547327790864258654/00017 5547327790864258654/00016 5547327790864258654/00002 5547327790864258654/00007 5547327790864258654/00025 5547327790864258654/00004 6235653423113215127/00015 6235653423113215127/00006 6235653423113215127/00009 6235653423113215127/00010 6235653423113215127/00013 6235653423113215127/00001 6235653423113215127/00018 6235653423113215127/00014 6235653423113215127/00020 6235653423113215127/00017 6235653423113215127/00016 6235653423113215127/00002 6235653423113215127/00008 5980407382182590007/00015 5980407382182590007/00001 5980407382182590007/00035 5980407382182590007/00011 5980407382182590007/00034 5980407382182590007/00008 5980407382182590007/00007 5980407382182590007/00004 5980407382182590007/00028 6197014179331504236/00003 6197014179331504236/00001 6197014179331504236/00002 5921197392536575591/00001 6116863647137181036/00015 6116863647137181036/00003 6116863647137181036/00010 6116863647137181036/00033 6116863647137181036/00031 6116863647137181036/00013 6116863647137181036/00001 6116863647137181036/00018 6116863647137181036/00021 6116863647137181036/00014 6116863647137181036/00017 6116863647137181036/00016 6116863647137181036/00019 6116863647137181036/00011 6116863647137181036/00007 6116863647137181036/00004 5950237384411813178/00015 5950237384411813178/00006 5950237384411813178/00046 5950237384411813178/00032 5950237384411813178/00033 5950237384411813178/00024 5950237384411813178/00053 5950237384411813178/00026 5950237384411813178/00050 5950237384411813178/00045 5950237384411813178/00049 5950237384411813178/00023 5950237384411813178/00048 5950237384411813178/00012 5950237384411813178/00021 5950237384411813178/00047 5950237384411813178/00039 5950237384411813178/00020 5950237384411813178/00035 5950237384411813178/00051 5950237384411813178/00052 5950237384411813178/00027 5950237384411813178/00007 5950237384411813178/00043 5950237384411813178/00005 5950237384411813178/00028 6135379251150230043/00029 6135379251150230043/00003 6135379251150230043/00010 6135379251150230043/00030 6135379251150230043/00013 6135379251150230043/00022 6135379251150230043/00012 6135379251150230043/00016 6135379251150230043/00019 6135379251150230043/00002 6135379251150230043/00007 6355115790967873574/00029 6355115790967873574/00006 6355115790967873574/00022 6355115790967873574/00012 6355115790967873574/00021 6355115790967873574/00020 6355115790967873574/00035 6355115790967873574/00016 6310195157515669986/00015 6310195157515669986/00006 6310195157515669986/00009 6310195157515669986/00010 6310195157515669986/00001 6310195157515669986/00012 6310195157515669986/00014 6310195157515669986/00017 6310195157515669986/00016 6310195157515669986/00011 6310195157515669986/00002 6310195157515669986/00008 6310195157515669986/00005 6310195157515669986/00004 6118746131303088633/00029 6118746131303088633/00015 6118746131303088633/00003 6118746131303088633/00006 6118746131303088633/00032 6118746131303088633/00024 6118746131303088633/00030 6118746131303088633/00031 6118746131303088633/00013 6118746131303088633/00022 6118746131303088633/00023 6118746131303088633/00014 6118746131303088633/00020 6118746131303088633/00017 6118746131303088633/00016 6118746131303088633/00027 6118746131303088633/00005 6118746131303088633/00004 6118746131303088633/00028 6165296704843982454/00003 6165296704843982454/00006 6165296704843982454/00010 6165296704843982454/00013 6165296704843982454/00012 6165296704843982454/00016 6165296704843982454/00011 6165296704843982454/00005 6165296704843982454/00004 5584650197673043148/00006 5584650197673043148/00009 5584650197673043148/00013 5584650197673043148/00001 5584650197673043148/00014 5584650197673043148/00020 5584650197673043148/00016 5584650197673043148/00002 5584650197673043148/00008 5584650197673043148/00007 5584650197673043148/00004 6120677578096099890/00015 6120677578096099890/00009 6120677578096099890/00017 6120677578096099890/00019 6120677578096099890/00002 6120677578096099890/00007 5956181189652686885/00001 5956181189652686885/00018 5956181189652686885/00020 5956181189652686885/00011 5956181189652686885/00002 5956181189652686885/00005 5558295419351329373/00029 5558295419351329373/00015 5558295419351329373/00003 5558295419351329373/00006 5558295419351329373/00032 5558295419351329373/00010 5558295419351329373/00033 5558295419351329373/00031 5558295419351329373/00013 5558295419351329373/00022 5558295419351329373/00036 5558295419351329373/00012 5558295419351329373/00041 5558295419351329373/00039 5558295419351329373/00020 5558295419351329373/00016 5558295419351329373/00011 5558295419351329373/00040 5558295419351329373/00007 5558295419351329373/00025 5558295419351329373/00004 5558295419351329373/00028 6012921143606684466/00003 6012921143606684466/00009 6012921143606684466/00010 6012921143606684466/00024 6012921143606684466/00013 6012921143606684466/00026 6012921143606684466/00001 6012921143606684466/00023 6012921143606684466/00012 6012921143606684466/00021 6012921143606684466/00017 6012921143606684466/00016 6012921143606684466/00019 6012921143606684466/00011 6012921143606684466/00027 6012921143606684466/00005 6012921143606684466/00004 6012921143606684466/00028 6155483563696581043/00015 6155483563696581043/00003 6155483563696581043/00006 6155483563696581043/00032 6155483563696581043/00009 6155483563696581043/00010 6155483563696581043/00033 6155483563696581043/00024 6155483563696581043/00030 6155483563696581043/00031 6155483563696581043/00022 6155483563696581043/00026 6155483563696581043/00036 6155483563696581043/00023 6155483563696581043/00038 6155483563696581043/00012 6155483563696581043/00021 6155483563696581043/00014 6155483563696581043/00037 6155483563696581043/00020 6155483563696581043/00035 6155483563696581043/00017 6155483563696581043/00016 6155483563696581043/00019 6155483563696581043/00011 6155483563696581043/00027 6155483563696581043/00034 6155483563696581043/00002 6155483563696581043/00007 6155483563696581043/00025 6155483563696581043/00005 6155483563696581043/00004 6155483563696581043/00028 6239615530443840070/00015 6239615530443840070/00010 6239615530443840070/00013 6239615530443840070/00018 6239615530443840070/00012 6239615530443840070/00021 6239615530443840070/00017 6239615530443840070/00016 6239615530443840070/00011 6239615530443840070/00002 6239615530443840070/00004 5553502235848996084/00032 5553502235848996084/00009 5553502235848996084/00010 5553502235848996084/00030 5553502235848996084/00001 5553502235848996084/00021 5553502235848996084/00020 5553502235848996084/00017 5553502235848996084/00002 5553502235848996084/00025 5553502235848996084/00028 5985121967783322712/00012 5985121967783322712/00016 5985121967783322712/00011 6246059269877971111/00029 6246059269877971111/00015 6246059269877971111/00003 6246059269877971111/00006 6246059269877971111/00046 6246059269877971111/00032 6246059269877971111/00010 6246059269877971111/00033 6246059269877971111/00024 6246059269877971111/00030 6246059269877971111/00031 6246059269877971111/00013 6246059269877971111/00022 6246059269877971111/00036 6246059269877971111/00001 6246059269877971111/00045 6246059269877971111/00049 6246059269877971111/00018 6246059269877971111/00042 6246059269877971111/00012 6246059269877971111/00041 6246059269877971111/00021 6246059269877971111/00014 6246059269877971111/00037 6246059269877971111/00047 6246059269877971111/00020 6246059269877971111/00035 6246059269877971111/00017 6246059269877971111/00016 6246059269877971111/00011 6246059269877971111/00027 6246059269877971111/00034 6246059269877971111/00002 6246059269877971111/00008 6246059269877971111/00040 6246059269877971111/00007 6246059269877971111/00043 6246059269877971111/00005 6246059269877971111/00028 6093156716153520625/00006 6093156716153520625/00001 6093156716153520625/00002 6093156716153520625/00008 6093156716153520625/00007 5559165150228745304/00009 5559165150228745304/00010 5559165150228745304/00024 5559165150228745304/00022 5559165150228745304/00021 5559165150228745304/00017 5559165150228745304/00002 5559165150228745304/00007 5975878339168952942/00015 5975878339168952942/00003 5975878339168952942/00032 5975878339168952942/00010 5975878339168952942/00033 5975878339168952942/00024 5975878339168952942/00030 5975878339168952942/00013 5975878339168952942/00026 5975878339168952942/00001 5975878339168952942/00023 5975878339168952942/00018 5975878339168952942/00012 5975878339168952942/00021 5975878339168952942/00014 5975878339168952942/00020 5975878339168952942/00016 5975878339168952942/00027 5975878339168952942/00034 5975878339168952942/00002 5975878339168952942/00008 5975878339168952942/00040 5975878339168952942/00007 5975878339168952942/00025 5975878339168952942/00005 5975878339168952942/00004 5975878339168952942/00028 6230102607379926511/00003 6230102607379926511/00009 6230102607379926511/00031 6230102607379926511/00013 6230102607379926511/00036 6230102607379926511/00001 6230102607379926511/00018 6230102607379926511/00021 6230102607379926511/00037 6230102607379926511/00034 6230102607379926511/00040 6230102607379926511/00025 6230102607379926511/00028 5865264033440784832/00015 5865264033440784832/00003 5865264033440784832/00009 5865264033440784832/00012 5865264033440784832/00014 5865264033440784832/00017 5865264033440784832/00016 5865264033440784832/00002 5865264033440784832/00008 5865264033440784832/00007 6352533656629519062/00006 6352533656629519062/00013 6352533656629519062/00002 6227756266746149237/00015 6227756266746149237/00006 6227756266746149237/00009 6227756266746149237/00010 6227756266746149237/00013 6227756266746149237/00001 6227756266746149237/00012 6227756266746149237/00014 6227756266746149237/00011 6227756266746149237/00002 6227756266746149237/00008 6227756266746149237/00007 6227756266746149237/00005 6227756266746149237/00004 6179217552843850716/00015 6179217552843850716/00006 6179217552843850716/00046 6179217552843850716/00032 6179217552843850716/00009 6179217552843850716/00010 6179217552843850716/00033 6179217552843850716/00024 6179217552843850716/00031 6179217552843850716/00013 6179217552843850716/00022 6179217552843850716/00026 6179217552843850716/00036 6179217552843850716/00045 6179217552843850716/00038 6179217552843850716/00018 6179217552843850716/00012 6179217552843850716/00021 6179217552843850716/00014 6179217552843850716/00037 6179217552843850716/00035 6179217552843850716/00016 6179217552843850716/00011 6179217552843850716/00034 6179217552843850716/00002 6179217552843850716/00008 6179217552843850716/00040 6179217552843850716/00007 6179217552843850716/00025 6179217552843850716/00043 6179217552843850716/00005 6179217552843850716/00004 6179217552843850716/00028 6110574526525641240/00060 6110574526525641240/00003 6110574526525641240/00032 6110574526525641240/00010 6110574526525641240/00033 6110574526525641240/00030 6110574526525641240/00058 6110574526525641240/00013 6110574526525641240/00022 6110574526525641240/00026 6110574526525641240/00050 6110574526525641240/00036 6110574526525641240/00049 6110574526525641240/00023 6110574526525641240/00048 6110574526525641240/00042 6110574526525641240/00021 6110574526525641240/00014 6110574526525641240/00037 6110574526525641240/00047 6110574526525641240/00051 6110574526525641240/00019 6110574526525641240/00011 6110574526525641240/00027 6376310166083398929/00004 6155097016509458322/00013 6155097016509458322/00022 6155097016509458322/00001 6155097016509458322/00021 6155097016509458322/00020 6155097016509458322/00017 6155097016509458322/00016 6155097016509458322/00004 6091989344042465374/00015 6091989344042465374/00003 6091989344042465374/00032 6091989344042465374/00010 6091989344042465374/00024 6091989344042465374/00030 6091989344042465374/00022 6091989344042465374/00026 6091989344042465374/00001 6091989344042465374/00023 6091989344042465374/00012 6091989344042465374/00021 6091989344042465374/00020 6091989344042465374/00017 6091989344042465374/00016 6091989344042465374/00011 6091989344042465374/00027 6091989344042465374/00002 6091989344042465374/00004 6096001702490393156/00029 6096001702490393156/00015 6096001702490393156/00003 6096001702490393156/00006 6096001702490393156/00010 6096001702490393156/00030 6096001702490393156/00022 6096001702490393156/00023 6096001702490393156/00012 6096001702490393156/00021 6096001702490393156/00020 6096001702490393156/00016 6096001702490393156/00027 6096001702490393156/00002 6096001702490393156/00008 6096001702490393156/00007 6096001702490393156/00028 6212661604184277617/00009 6212661604184277617/00033 6212661604184277617/00024 6212661604184277617/00058 6212661604184277617/00031 6212661604184277617/00026 6212661604184277617/00001 6212661604184277617/00023 6212661604184277617/00048 6212661604184277617/00042 6212661604184277617/00021 6212661604184277617/00037 6212661604184277617/00020 6212661604184277617/00051 6212661604184277617/00017 6212661604184277617/00052 6212661604184277617/00055 6212661604184277617/00016 6212661604184277617/00011 6212661604184277617/00027 6212661604184277617/00034 6212661604184277617/00002 6212661604184277617/00007 6212661604184277617/00025 5967239012453042526/00006 5967239012453042526/00009 5967239012453042526/00001 5967239012453042526/00002 5967239012453042526/00008 5967239012453042526/00005 5967239012453042526/00004 5991730633961751803/00015 5991730633961751803/00003 5991730633961751803/00006 5991730633961751803/00009 5991730633961751803/00001 5991730633961751803/00014 5991730633961751803/00020 5991730633961751803/00017 5991730633961751803/00002 5991730633961751803/00008 5991730633961751803/00005 5991730633961751803/00004 6112356508456817455/00006 6112356508456817455/00010 6112356508456817455/00002 6112356508456817455/00008 6112356508456817455/00004 6368857538831442335/00028 6010621188619735021/00006 6010621188619735021/00046 6010621188619735021/00010 6010621188619735021/00031 6010621188619735021/00013 6010621188619735021/00036 6010621188619735021/00023 6010621188619735021/00039 6010621188619735021/00035 6010621188619735021/00051 6010621188619735021/00017 6010621188619735021/00027 6010621188619735021/00040 6010621188619735021/00005 6010621188619735021/00004 6052634988205892377/00015 6052634988205892377/00006 6052634988205892377/00013 6052634988205892377/00014 6052634988205892377/00017 6052634988205892377/00011 6052634988205892377/00005 6052634988205892377/00004 5932364737002980940/00015 5932364737002980940/00003 5932364737002980940/00014 5932364737002980940/00016 5932364737002980940/00002 5932364737002980940/00004 6129444465340616492/00060 6129444465340616492/00029 6129444465340616492/00015 6129444465340616492/00003 6129444465340616492/00006 6129444465340616492/00098 6129444465340616492/00107 6129444465340616492/00056 6129444465340616492/00032 6129444465340616492/00070 6129444465340616492/00112 6129444465340616492/00057 6129444465340616492/00053 6129444465340616492/00078 6129444465340616492/00062 6129444465340616492/00031 6129444465340616492/00096 6129444465340616492/00094 6129444465340616492/00099 6129444465340616492/00103 6129444465340616492/00001 6129444465340616492/00066 6129444465340616492/00064 6129444465340616492/00049 6129444465340616492/00038 6129444465340616492/00088 6129444465340616492/00048 6129444465340616492/00108 6129444465340616492/00021 6129444465340616492/00079 6129444465340616492/00037 6129444465340616492/00101 6129444465340616492/00047 6129444465340616492/00039 6129444465340616492/00035 6129444465340616492/00091 6129444465340616492/00055 6129444465340616492/00016 6129444465340616492/00111 6129444465340616492/00011 6129444465340616492/00084 6129444465340616492/00027 6129444465340616492/00034 6129444465340616492/00082 6129444465340616492/00100 6129444465340616492/00002 6129444465340616492/00092 6129444465340616492/00008 6129444465340616492/00040 6129444465340616492/00102 6129444465340616492/00025 6129444465340616492/00054 6129444465340616492/00043 6129444465340616492/00005 6129444465340616492/00004 6094641056851018338/00010 6094641056851018338/00012 6094641056851018338/00008 6094641056851018338/00007 6094641056851018338/00004 6249658022975355556/00015 6249658022975355556/00003 6249658022975355556/00006 6249658022975355556/00009 6249658022975355556/00013 6249658022975355556/00001 6249658022975355556/00018 6249658022975355556/00012 6249658022975355556/00014 6249658022975355556/00016 6249658022975355556/00019 6249658022975355556/00002 6249658022975355556/00008 6249658022975355556/00005 6161420926356159419/00032 6161420926356159419/00033 6161420926356159419/00024 6161420926356159419/00030 6161420926356159419/00031 6161420926356159419/00022 6161420926356159419/00017 6161420926356159419/00016 6161420926356159419/00019 6161420926356159419/00002 6161420926356159419/00008 6161420926356159419/00005 6161420926356159419/00004 6053006073380266781/00029 6053006073380266781/00015 6053006073380266781/00003 6053006073380266781/00006 6053006073380266781/00009 6053006073380266781/00010 6053006073380266781/00033 6053006073380266781/00013 6053006073380266781/00026 6053006073380266781/00001 6053006073380266781/00012 6053006073380266781/00014 6053006073380266781/00020 6053006073380266781/00017 6053006073380266781/00016 6053006073380266781/00011 6053006073380266781/00034 6053006073380266781/00008 6053006073380266781/00007 6053006073380266781/00025 6053006073380266781/00028 6349793037997935601/00029 6349793037997935601/00098 6349793037997935601/00128 6349793037997935601/00163 6349793037997935601/00118 6349793037997935601/00062 6349793037997935601/00076 6349793037997935601/00138 6349793037997935601/00067 6349793037997935601/00008 6349793037997935601/00183 6349793037997935601/00025 6264961420947746164/00015 6264961420947746164/00003 6264961420947746164/00009 6264961420947746164/00010 6264961420947746164/00013 6264961420947746164/00012 6264961420947746164/00014 6264961420947746164/00016 6264961420947746164/00011 6264961420947746164/00005 6085719550784412225/00029 6085719550784412225/00003 6085719550784412225/00006 6085719550784412225/00046 6085719550784412225/00033 6085719550784412225/00013 6085719550784412225/00022 6085719550784412225/00044 6085719550784412225/00050 6085719550784412225/00036 6085719550784412225/00045 6085719550784412225/00023 6085719550784412225/00038 6085719550784412225/00012 6085719550784412225/00037 6085719550784412225/00035 6085719550784412225/00051 6085719550784412225/00052 6085719550784412225/00011 6085719550784412225/00027 6085719550784412225/00034 6085719550784412225/00002 6085719550784412225/00008 6085719550784412225/00040 6085719550784412225/00025 6085719550784412225/00043 6085719550784412225/00005 6085719550784412225/00004 5860385809585986822/00006 5860385809585986822/00007 5860385809585986822/00005 6126522169592506504/00003 6126522169592506504/00001 6126522169592506504/00012 6126522169592506504/00002 6126522169592506504/00008 6126522169592506504/00007 6126522169592506504/00005 6126522169592506504/00004 6041544953150876623/00003 6041544953150876623/00009 6041544953150876623/00012 6041544953150876623/00008 6041544953150876623/00007 6041544953150876623/00004 6198529443793599667/00001 6198529443793599667/00004 6095754312374143512/00006 6095754312374143512/00002 6095754312374143512/00004 6056392225596436427/00015 6056392225596436427/00006 6056392225596436427/00033 6056392225596436427/00030 6056392225596436427/00031 6056392225596436427/00013 6056392225596436427/00036 6056392225596436427/00045 6056392225596436427/00038 6056392225596436427/00042 6056392225596436427/00041 6056392225596436427/00021 6056392225596436427/00014 6056392225596436427/00037 6056392225596436427/00020 6056392225596436427/00035 6056392225596436427/00051 6056392225596436427/00017 6056392225596436427/00016 6056392225596436427/00027 6056392225596436427/00034 6056392225596436427/00040 6056392225596436427/00007 6056392225596436427/00004 6056392225596436427/00028 5688769224359384398/00006 5688769224359384398/00002 5688769224359384398/00007 5688769224359384398/00005 6166616118797379105/00003 6166616118797379105/00012 6166616118797379105/00017 6166616118797379105/00016 5568322450000555157/00006 5568322450000555157/00033 5568322450000555157/00013 5568322450000555157/00026 5568322450000555157/00001 5568322450000555157/00023 5568322450000555157/00018 5568322450000555157/00021 5568322450000555157/00014 5568322450000555157/00020 5568322450000555157/00035 5568322450000555157/00017 5568322450000555157/00016 5568322450000555157/00019 5568322450000555157/00008 5568322450000555157/00007 5568322450000555157/00025 5568322450000555157/00005 5568322450000555157/00004 6344709944203120665/00030 6344709944203120665/00011 5688608163085783366/00003 5688608163085783366/00002 5688608163085783366/00004 5882720498518649145/00029 5882720498518649145/00015 5882720498518649145/00003 5882720498518649145/00006 5882720498518649145/00046 5882720498518649145/00032 5882720498518649145/00009 5882720498518649145/00033 5882720498518649145/00013 5882720498518649145/00022 5882720498518649145/00044 5882720498518649145/00050 5882720498518649145/00045 5882720498518649145/00049 5882720498518649145/00023 5882720498518649145/00038 5882720498518649145/00048 5882720498518649145/00042 5882720498518649145/00014 5882720498518649145/00037 5882720498518649145/00047 5882720498518649145/00020 5882720498518649145/00035 5882720498518649145/00051 5882720498518649145/00017 5882720498518649145/00016 5882720498518649145/00034 5882720498518649145/00002 5882720498518649145/00008 5882720498518649145/00007 5882720498518649145/00025 5882720498518649145/00043 5882720498518649145/00005 5882720498518649145/00028 6082329533097025668/00015 6082329533097025668/00003 6082329533097025668/00006 6082329533097025668/00033 6082329533097025668/00024 6082329533097025668/00031 6082329533097025668/00022 6082329533097025668/00026 6082329533097025668/00001 6082329533097025668/00023 6082329533097025668/00018 6082329533097025668/00014 6082329533097025668/00037 6082329533097025668/00020 6082329533097025668/00035 6082329533097025668/00017 6082329533097025668/00016 6082329533097025668/00019 6082329533097025668/00027 6082329533097025668/00034 6082329533097025668/00002 6082329533097025668/00008 6082329533097025668/00025 6082329533097025668/00005 6082329533097025668/00028 6201791900951616599/00003 6201791900951616599/00013 6201791900951616599/00001 6201791900951616599/00018 6201791900951616599/00017 6201791900951616599/00019 6201791900951616599/00007 6211443980955922166/00029 6211443980955922166/00006 6211443980955922166/00030 6211443980955922166/00026 6211443980955922166/00001 6211443980955922166/00023 6211443980955922166/00012 6211443980955922166/00020 6211443980955922166/00017 6211443980955922166/00019 6211443980955922166/00002 6211443980955922166/00007 6211443980955922166/00004 6211443980955922166/00028 5984000981319066696/00003 5984000981319066696/00032 5984000981319066696/00024 5984000981319066696/00031 5984000981319066696/00013 5984000981319066696/00022 5984000981319066696/00001 5984000981319066696/00012 5984000981319066696/00017 5984000981319066696/00019 5984000981319066696/00008 5984000981319066696/00043 5984000981319066696/00028 6224830105527315223/00029 6224830105527315223/00015 6224830105527315223/00006 6224830105527315223/00032 6224830105527315223/00009 6224830105527315223/00010 6224830105527315223/00033 6224830105527315223/00024 6224830105527315223/00031 6224830105527315223/00022 6224830105527315223/00026 6224830105527315223/00001 6224830105527315223/00023 6224830105527315223/00018 6224830105527315223/00012 6224830105527315223/00021 6224830105527315223/00014 6224830105527315223/00039 6224830105527315223/00017 6224830105527315223/00016 6224830105527315223/00019 6224830105527315223/00027 6224830105527315223/00034 6224830105527315223/00008 6224830105527315223/00040 6224830105527315223/00025 6224830105527315223/00005 6224830105527315223/00028 5553606603554285494/00003 5553606603554285494/00001 5553606603554285494/00002 5691658019362673386/00001 5691658019362673386/00002 6011363358968483893/00060 6011363358968483893/00015 6011363358968483893/00056 6011363358968483893/00009 6011363358968483893/00010 6011363358968483893/00033 6011363358968483893/00030 6011363358968483893/00058 6011363358968483893/00031 6011363358968483893/00013 6011363358968483893/00063 6011363358968483893/00049 6011363358968483893/00023 6011363358968483893/00018 6011363358968483893/00061 6011363358968483893/00037 6011363358968483893/00035 6011363358968483893/00017 6011363358968483893/00016 6011363358968483893/00059 6011363358968483893/00019 6011363358968483893/00034 6011363358968483893/00008 6011363358968483893/00040 6011363358968483893/00007 6011363358968483893/00025 6011363358968483893/00054 6011363358968483893/00005 6011363358968483893/00004 5932801535176918239/00003 5932801535176918239/00006 5932801535176918239/00009 5932801535176918239/00013 5932801535176918239/00001 5932801535176918239/00018 5932801535176918239/00021 6201134770955325074/00015 6201134770955325074/00003 6201134770955325074/00006 6201134770955325074/00010 6201134770955325074/00024 6201134770955325074/00013 6201134770955325074/00022 6201134770955325074/00026 6201134770955325074/00001 6201134770955325074/00023 6201134770955325074/00021 6201134770955325074/00014 6201134770955325074/00020 6201134770955325074/00017 6201134770955325074/00016 6201134770955325074/00019 6201134770955325074/00027 6201134770955325074/00002 6201134770955325074/00008 6201134770955325074/00007 6201134770955325074/00025 6201134770955325074/00005 6201134770955325074/00004 5956968457158041355/00001 5956968457158041355/00002 5956968457158041355/00004 6100454724582886171/00003 6100454724582886171/00013 6100454724582886171/00001 6100454724582886171/00023 6100454724582886171/00018 6100454724582886171/00012 6100454724582886171/00021 6100454724582886171/00020 6100454724582886171/00017 6100454724582886171/00027 6100454724582886171/00008 6100454724582886171/00025 5947351166388834437/00032 5947351166388834437/00033 5947351166388834437/00024 5947351166388834437/00031 5947351166388834437/00013 5947351166388834437/00022 5947351166388834437/00026 5947351166388834437/00036 5947351166388834437/00001 5947351166388834437/00023 5947351166388834437/00042 5947351166388834437/00041 5947351166388834437/00014 5947351166388834437/00020 5947351166388834437/00035 5947351166388834437/00034 5947351166388834437/00002 5947351166388834437/00007 5947351166388834437/00025 5947351166388834437/00028 6112402894103551375/00006 6112402894103551375/00009 6112402894103551375/00018 6112402894103551375/00017 6112402894103551375/00005 6112402894103551375/00004 6112402894103551375/00028 5986224915385004746/00003 5986224915385004746/00001 5986224915385004746/00002 6169368333840590009/00029 6169368333840590009/00003 6169368333840590009/00070 6169368333840590009/00009 6169368333840590009/00010 6169368333840590009/00033 6169368333840590009/00030 6169368333840590009/00058 6169368333840590009/00086 6169368333840590009/00069 6169368333840590009/00022 6169368333840590009/00096 6169368333840590009/00094 6169368333840590009/00026 6169368333840590009/00044 6169368333840590009/00103 6169368333840590009/00063 6169368333840590009/00001 6169368333840590009/00045 6169368333840590009/00072 6169368333840590009/00023 6169368333840590009/00038 6169368333840590009/00048 6169368333840590009/00018 6169368333840590009/00085 6169368333840590009/00012 6169368333840590009/00065 6169368333840590009/00083 6169368333840590009/00021 6169368333840590009/00075 6169368333840590009/00104 6169368333840590009/00079 6169368333840590009/00035 6169368333840590009/00091 6169368333840590009/00016 6169368333840590009/00059 6169368333840590009/00027 6169368333840590009/00034 6169368333840590009/00082 6169368333840590009/00002 6169368333840590009/00008 6169368333840590009/00007 6169368333840590009/00068 6169368333840590009/00097 6169368333840590009/00043 6169368333840590009/00005 6169368333840590009/00028 5977629397335534239/00060 5977629397335534239/00029 5977629397335534239/00015 5977629397335534239/00003 5977629397335534239/00006 5977629397335534239/00032 5977629397335534239/00009 5977629397335534239/00010 5977629397335534239/00033 5977629397335534239/00053 5977629397335534239/00030 5977629397335534239/00058 5977629397335534239/00031 5977629397335534239/00013 5977629397335534239/00026 5977629397335534239/00044 5977629397335534239/00050 5977629397335534239/00036 5977629397335534239/00063 5977629397335534239/00001 5977629397335534239/00045 5977629397335534239/00049 5977629397335534239/00038 5977629397335534239/00018 5977629397335534239/00042 5977629397335534239/00041 5977629397335534239/00061 5977629397335534239/00014 5977629397335534239/00035 5977629397335534239/00016 5977629397335534239/00059 5977629397335534239/00011 5977629397335534239/00027 5977629397335534239/00034 5977629397335534239/00002 5977629397335534239/00008 5977629397335534239/00040 5977629397335534239/00043 6343608285091658983/00003 6343608285091658983/00001 5856396643961519586/00029 5856396643961519586/00015 5856396643961519586/00003 5856396643961519586/00006 5856396643961519586/00032 5856396643961519586/00009 5856396643961519586/00033 5856396643961519586/00030 5856396643961519586/00013 5856396643961519586/00022 5856396643961519586/00023 5856396643961519586/00035 5856396643961519586/00011 5856396643961519586/00002 5856396643961519586/00008 5716189584067241093/00029 5716189584067241093/00046 5716189584067241093/00009 5716189584067241093/00010 5716189584067241093/00033 5716189584067241093/00031 5716189584067241093/00013 5716189584067241093/00022 5716189584067241093/00044 5716189584067241093/00001 5716189584067241093/00045 5716189584067241093/00023 5716189584067241093/00012 5716189584067241093/00039 5716189584067241093/00020 5716189584067241093/00035 5716189584067241093/00017 5716189584067241093/00016 5716189584067241093/00011 5716189584067241093/00027 5716189584067241093/00002 5716189584067241093/00040 5716189584067241093/00025 5716189584067241093/00005 6237145494751910162/00016 6237145494751910162/00002 6237145494751910162/00008 6237145494751910162/00007 6082087296941532008/00013 6082087296941532008/00001 6082087296941532008/00021 6082087296941532008/00016 6082087296941532008/00002 6087203891481197747/00029 6087203891481197747/00006 6087203891481197747/00009 6087203891481197747/00024 6087203891481197747/00030 6087203891481197747/00031 6087203891481197747/00026 6087203891481197747/00036 6087203891481197747/00063 6087203891481197747/00001 6087203891481197747/00045 6087203891481197747/00064 6087203891481197747/00023 6087203891481197747/00061 6087203891481197747/00014 6087203891481197747/00047 6087203891481197747/00039 6087203891481197747/00020 6087203891481197747/00055 6087203891481197747/00059 6087203891481197747/00019 6087203891481197747/00027 6087203891481197747/00002 6087203891481197747/00008 6087203891481197747/00040 6087203891481197747/00043 6087203891481197747/00004 6087203891481197747/00028 5990246293264252182/00006 5990246293264252182/00009 5990246293264252182/00010 5990246293264252182/00001 5990246293264252182/00012 5990246293264252182/00011 5990246293264252182/00002 5990246293264252182/00008 5990246293264252182/00007 5990246293264252182/00005 6130214982473543382/00006 6130214982473543382/00009 6130214982473543382/00010 6130214982473543382/00013 6130214982473543382/00012 6130214982473543382/00011 6130214982473543382/00008 6130214982473543382/00007 6107636768895203627/00003 6107636768895203627/00001 6107636768895203627/00002 6107636768895203627/00005 6107636768895203627/00004 6244559467298207196/00056 6244559467298207196/00070 6244559467298207196/00009 6244559467298207196/00090 6244559467298207196/00033 6244559467298207196/00057 6244559467298207196/00024 6244559467298207196/00053 6244559467298207196/00058 6244559467298207196/00031 6244559467298207196/00069 6244559467298207196/00022 6244559467298207196/00094 6244559467298207196/00044 6244559467298207196/00099 6244559467298207196/00001 6244559467298207196/00064 6244559467298207196/00049 6244559467298207196/00023 6244559467298207196/00048 6244559467298207196/00042 6244559467298207196/00012 6244559467298207196/00041 6244559467298207196/00065 6244559467298207196/00079 6244559467298207196/00014 6244559467298207196/00039 6244559467298207196/00051 6244559467298207196/00017 6244559467298207196/00052 6244559467298207196/00095 6244559467298207196/00067 6244559467298207196/00034 6244559467298207196/00081 6244559467298207196/00002 6244559467298207196/00040 6244559467298207196/00025 6244559467298207196/00004 5922040065120050850/00003 5922040065120050850/00009 5922040065120050850/00013 5922040065120050850/00001 5922040065120050850/00018 5922040065120050850/00012 5922040065120050850/00017 5922040065120050850/00016 5922040065120050850/00002 5922040065120050850/00008 5922040065120050850/00007 5922040065120050850/00004 5865236975146824474/00006 5865236975146824474/00009 5865236975146824474/00010 5865236975146824474/00001 5865236975146824474/00011 5865236975146824474/00002 5865236975146824474/00008 5865236975146824474/00007 6119445781475538064/00006 6119445781475538064/00009 6119445781475538064/00012 6119445781475538064/00007 5964405622527804567/00029 5964405622527804567/00003 5964405622527804567/00006 5964405622527804567/00032 5964405622527804567/00010 5964405622527804567/00024 5964405622527804567/00030 5964405622527804567/00013 5964405622527804567/00022 5964405622527804567/00026 5964405622527804567/00001 5964405622527804567/00023 5964405622527804567/00014 5964405622527804567/00020 5964405622527804567/00016 5964405622527804567/00019 5964405622527804567/00002 5964405622527804567/00008 5964405622527804567/00025 5964405622527804567/00004 6386314003909220420/00006 5679613213077789161/00060 5679613213077789161/00006 5679613213077789161/00098 5679613213077789161/00122 5679613213077789161/00070 5679613213077789161/00009 5679613213077789161/00112 5679613213077789161/00010 5679613213077789161/00053 5679613213077789161/00118 5679613213077789161/00078 5679613213077789161/00058 5679613213077789161/00121 5679613213077789161/00086 5679613213077789161/00013 5679613213077789161/00069 5679613213077789161/00022 5679613213077789161/00096 5679613213077789161/00044 5679613213077789161/00099 5679613213077789161/00103 5679613213077789161/00050 5679613213077789161/00105 5679613213077789161/00117 5679613213077789161/00072 5679613213077789161/00114 5679613213077789161/00048 5679613213077789161/00108 5679613213077789161/00018 5679613213077789161/00012 5679613213077789161/00041 5679613213077789161/00083 5679613213077789161/00075 5679613213077789161/00104 5679613213077789161/00079 5679613213077789161/00014 5679613213077789161/00037 5679613213077789161/00047 5679613213077789161/00020 5679613213077789161/00051 5679613213077789161/00017 5679613213077789161/00091 5679613213077789161/00095 5679613213077789161/00111 5679613213077789161/00059 5679613213077789161/00019 5679613213077789161/00011 5679613213077789161/00034 5679613213077789161/00100 5679613213077789161/00106 5679613213077789161/00089 5679613213077789161/00092 5679613213077789161/00008 5679613213077789161/00007 5679613213077789161/00097 5679613213077789161/00025 5679613213077789161/00054 5679613213077789161/00043 5679613213077789161/00074 5679613213077789161/00028 6157331258496839785/00009 6157331258496839785/00010 6157331258496839785/00011 6157331258496839785/00008 6157331258496839785/00005 6210006025905155150/00001 6210006025905155150/00012 6210006025905155150/00014 6210006025905155150/00016 6210006025905155150/00019 6210006025905155150/00008 6210006025905155150/00004 5951306831268451355/00003 5951306831268451355/00001 5951306831268451355/00002 5951306831268451355/00005 5951306831268451355/00004 6253094426308821125/00003 6253094426308821125/00009 6253094426308821125/00001 6253094426308821125/00004 5862681899102430561/00029 5862681899102430561/00003 5862681899102430561/00032 5862681899102430561/00009 5862681899102430561/00010 5862681899102430561/00024 5862681899102430561/00031 5862681899102430561/00022 5862681899102430561/00026 5862681899102430561/00018 5862681899102430561/00012 5862681899102430561/00021 5862681899102430561/00020 5862681899102430561/00019 5862681899102430561/00027 5862681899102430561/00002 5862681899102430561/00008 5862681899102430561/00025 5862681899102430561/00005 5862681899102430561/00004 5862681899102430561/00028 6166275957517972567/00003 6166275957517972567/00006 6166275957517972567/00009 6166275957517972567/00012 6166275957517972567/00008 6166275957517972567/00007 6166275957517972567/00005 6166275957517972567/00004 5964266465587476040/00015 5964266465587476040/00003 5964266465587476040/00046 5964266465587476040/00032 5964266465587476040/00033 5964266465587476040/00031 5964266465587476040/00044 5964266465587476040/00050 5964266465587476040/00001 5964266465587476040/00049 5964266465587476040/00038 5964266465587476040/00012 5964266465587476040/00037 5964266465587476040/00039 5964266465587476040/00020 5964266465587476040/00035 5964266465587476040/00051 5964266465587476040/00017 5964266465587476040/00016 5964266465587476040/00011 5964266465587476040/00008 5964266465587476040/00007 5964266465587476040/00005 5964266465587476040/00004 6236275763874492834/00003 6236275763874492834/00009 6236275763874492834/00018 6236275763874492834/00021 6236275763874492834/00020 6236275763874492834/00017 6236275763874492834/00008 6236275763874492834/00007 6236275763874492834/00005 6379908919180786981/00003 6379908919180786981/00001 6379908919180786981/00007 6102020240162219860/00006 6102020240162219860/00032 6102020240162219860/00033 6102020240162219860/00031 6102020240162219860/00022 6102020240162219860/00001 6102020240162219860/00023 6102020240162219860/00018 6102020240162219860/00037 6102020240162219860/00039 6102020240162219860/00017 6102020240162219860/00025 6102020240162219860/00005 6102020240162219860/00004 6284992289422754937/00005 6284992289422754937/00004 5541956075267145599/00029 5541956075267145599/00032 5541956075267145599/00009 5541956075267145599/00010 5541956075267145599/00033 5541956075267145599/00024 5541956075267145599/00031 5541956075267145599/00026 5541956075267145599/00036 5541956075267145599/00023 5541956075267145599/00038 5541956075267145599/00014 5541956075267145599/00037 5541956075267145599/00039 5541956075267145599/00020 5541956075267145599/00035 5541956075267145599/00016 5541956075267145599/00019 5541956075267145599/00011 5541956075267145599/00027 5541956075267145599/00034 5541956075267145599/00008 5541956075267145599/00025 5541956075267145599/00004 5541956075267145599/00028 5949801874727932929/00003 5949801874727932929/00009 5949801874727932929/00011 5949801874727932929/00008 5941630269950585142/00015 5941630269950585142/00006 5941630269950585142/00024 5941630269950585142/00022 5941630269950585142/00018 5941630269950585142/00012 5941630269950585142/00014 5941630269950585142/00020 5941630269950585142/00016 5941630269950585142/00019 5941630269950585142/00011 5941630269950585142/00027 5941630269950585142/00008 5941630269950585142/00007 5941630269950585142/00005 5941630269950585142/00004 5941630269950585142/00028 6197787273575241375/00015 6197787273575241375/00003 6197787273575241375/00032 6197787273575241375/00033 6197787273575241375/00031 6197787273575241375/00013 6197787273575241375/00038 6197787273575241375/00012 6197787273575241375/00014 6197787273575241375/00037 6197787273575241375/00039 6197787273575241375/00020 6197787273575241375/00017 6197787273575241375/00016 6197787273575241375/00002 6197787273575241375/00008 6171621903180804569/00003 6171621903180804569/00010 6171621903180804569/00011 6171621903180804569/00002 6171621903180804569/00005 6322100806860254619/00006 6322100806860254619/00009 6322100806860254619/00008 5948375516088957760/00007 5948375516088957760/00005 6176248871448853539/00029 6176248871448853539/00009 6176248871448853539/00013 6176248871448853539/00022 6176248871448853539/00001 6176248871448853539/00023 6176248871448853539/00012 6176248871448853539/00014 6176248871448853539/00016 6176248871448853539/00011 6176248871448853539/00028 5855213809968201100/00015 5855213809968201100/00003 5855213809968201100/00032 5855213809968201100/00009 5855213809968201100/00010 5855213809968201100/00033 5855213809968201100/00031 5855213809968201100/00013 5855213809968201100/00001 5855213809968201100/00023 5855213809968201100/00018 5855213809968201100/00012 5855213809968201100/00014 5855213809968201100/00011 5855213809968201100/00034 5855213809968201100/00002 5855213809968201100/00008 5855213809968201100/00007 5855213809968201100/00025 5855213809968201100/00004 6238950669506360558/00015 6238950669506360558/00032 6238950669506360558/00010 6238950669506360558/00033 6238950669506360558/00031 6238950669506360558/00013 6238950669506360558/00022 6238950669506360558/00023 6238950669506360558/00041 6238950669506360558/00021 6238950669506360558/00014 6238950669506360558/00037 6238950669506360558/00020 6238950669506360558/00017 6238950669506360558/00016 6238950669506360558/00008 6238950669506360558/00005 6238950669506360558/00004 6238950669506360558/00028 5956210824927743309/00003 5956210824927743309/00002 5861089325229069888/00008 5861089325229069888/00005 5861089325229069888/00004 5857463513837848076/00015 5857463513837848076/00009 5857463513837848076/00030 5857463513837848076/00013 5857463513837848076/00022 5857463513837848076/00036 5857463513837848076/00001 5857463513837848076/00023 5857463513837848076/00038 5857463513837848076/00042 5857463513837848076/00014 5857463513837848076/00037 5857463513837848076/00016 5857463513837848076/00027 5857463513837848076/00034 5857463513837848076/00008 5857463513837848076/00007 5857463513837848076/00025 5857463513837848076/00005 5857463513837848076/00028 6077451309242250656/00029 6077451309242250656/00024 6077451309242250656/00022 6077451309242250656/00001 6077451309242250656/00012 6077451309242250656/00014 6077451309242250656/00020 6077451309242250656/00011 6077451309242250656/00027 6077451309242250656/00002 6077451309242250656/00008 6077451309242250656/00007 6077451309242250656/00025 5715272179052811591/00015 5715272179052811591/00006 5715272179052811591/00009 5715272179052811591/00010 5715272179052811591/00013 5715272179052811591/00012 5715272179052811591/00017 5715272179052811591/00002 5715272179052811591/00008 6033388810255768574/00029 6033388810255768574/00015 6033388810255768574/00003 6033388810255768574/00006 6033388810255768574/00032 6033388810255768574/00009 6033388810255768574/00033 6033388810255768574/00024 6033388810255768574/00030 6033388810255768574/00031 6033388810255768574/00001 6033388810255768574/00014 6033388810255768574/00019 6033388810255768574/00034 6033388810255768574/00002 6033388810255768574/00025 6033388810255768574/00004 6213388312650760862/00056 6213388312650760862/00032 6213388312650760862/00010 6213388312650760862/00024 6213388312650760862/00053 6213388312650760862/00071 6213388312650760862/00058 6213388312650760862/00062 6213388312650760862/00031 6213388312650760862/00013 6213388312650760862/00001 6213388312650760862/00045 6213388312650760862/00038 6213388312650760862/00042 6213388312650760862/00012 6213388312650760862/00041 6213388312650760862/00021 6213388312650760862/00037 6213388312650760862/00035 6213388312650760862/00043 6213388312650760862/00004 6213388312650760862/00028 6334149478615670679/00015 6334149478615670679/00008 6334149478615670679/00025 6334149478615670679/00004 5727686782021918545/00147 5727686782021918545/00125 5727686782021918545/00060 5727686782021918545/00029 5727686782021918545/00015 5727686782021918545/00003 5727686782021918545/00046 5727686782021918545/00107 5727686782021918545/00056 5727686782021918545/00032 5727686782021918545/00128 5727686782021918545/00113 5727686782021918545/00109 5727686782021918545/00122 5727686782021918545/00070 5727686782021918545/00009 5727686782021918545/00090 5727686782021918545/00073 5727686782021918545/00112 5727686782021918545/00010 5727686782021918545/00033 5727686782021918545/00057 5727686782021918545/00024 5727686782021918545/00141 5727686782021918545/00053 5727686782021918545/00118 5727686782021918545/00116 5727686782021918545/00078 5727686782021918545/00030 5727686782021918545/00071 5727686782021918545/00058 5727686782021918545/00121 5727686782021918545/00142 5727686782021918545/00031 5727686782021918545/00086 5727686782021918545/00013 5727686782021918545/00137 5727686782021918545/00150 5727686782021918545/00069 5727686782021918545/00148 5727686782021918545/00022 5727686782021918545/00096 5727686782021918545/00094 5727686782021918545/00026 5727686782021918545/00044 5727686782021918545/00130 5727686782021918545/00099 5727686782021918545/00077 5727686782021918545/00093 5727686782021918545/00120 5727686782021918545/00103 5727686782021918545/00050 5727686782021918545/00105 5727686782021918545/00036 5727686782021918545/00117 5727686782021918545/00063 5727686782021918545/00110 5727686782021918545/00045 5727686782021918545/00066 5727686782021918545/00064 5727686782021918545/00049 5727686782021918545/00023 5727686782021918545/00114 5727686782021918545/00038 5727686782021918545/00088 5727686782021918545/00048 5727686782021918545/00145 5727686782021918545/00018 5727686782021918545/00042 5727686782021918545/00135 5727686782021918545/00012 5727686782021918545/00041 5727686782021918545/00126 5727686782021918545/00065 5727686782021918545/00129 5727686782021918545/00144 5727686782021918545/00061 5727686782021918545/00083 5727686782021918545/00021 5727686782021918545/00075 5727686782021918545/00151 5727686782021918545/00079 5727686782021918545/00014 5727686782021918545/00037 5727686782021918545/00127 5727686782021918545/00101 5727686782021918545/00039 5727686782021918545/00124 5727686782021918545/00020 5727686782021918545/00035 5727686782021918545/00017 5727686782021918545/00076 5727686782021918545/00080 5727686782021918545/00052 5727686782021918545/00091 5727686782021918545/00055 5727686782021918545/00095 5727686782021918545/00138 5727686782021918545/00111 5727686782021918545/00059 5727686782021918545/00146 5727686782021918545/00019 5727686782021918545/00011 5727686782021918545/00119 5727686782021918545/00084 5727686782021918545/00027 5727686782021918545/00067 5727686782021918545/00115 5727686782021918545/00034 5727686782021918545/00081 5727686782021918545/00002 5727686782021918545/00133 5727686782021918545/00106 5727686782021918545/00089 5727686782021918545/00092 5727686782021918545/00008 5727686782021918545/00087 5727686782021918545/00007 5727686782021918545/00102 5727686782021918545/00068 5727686782021918545/00097 5727686782021918545/00139 5727686782021918545/00054 5727686782021918545/00043 5727686782021918545/00005 6113217219902935917/00001 6113217219902935917/00002 6387330622668248413/00008 6366267673551948044/00009 6366267673551948044/00001 6366267673551948044/00008 6358474884890078775/00013 6358474884890078775/00004 5995561315292994248/00003 5995561315292994248/00006 5995561315292994248/00009 5995561315292994248/00010 5995561315292994248/00024 5995561315292994248/00001 5995561315292994248/00023 5995561315292994248/00016 5995561315292994248/00011 5995561315292994248/00002 5995561315292994248/00008 5995561315292994248/00007 5995561315292994248/00005 6019898317979116340/00060 6019898317979116340/00029 6019898317979116340/00015 6019898317979116340/00003 6019898317979116340/00107 6019898317979116340/00056 6019898317979116340/00032 6019898317979116340/00010 6019898317979116340/00033 6019898317979116340/00053 6019898317979116340/00071 6019898317979116340/00031 6019898317979116340/00013 6019898317979116340/00094 6019898317979116340/00093 6019898317979116340/00036 6019898317979116340/00049 6019898317979116340/00072 6019898317979116340/00023 6019898317979116340/00038 6019898317979116340/00018 6019898317979116340/00085 6019898317979116340/00042 6019898317979116340/00041 6019898317979116340/00021 6019898317979116340/00079 6019898317979116340/00037 6019898317979116340/00101 6019898317979116340/00039 6019898317979116340/00035 6019898317979116340/00017 6019898317979116340/00052 6019898317979116340/00055 6019898317979116340/00016 6019898317979116340/00095 6019898317979116340/00059 6019898317979116340/00019 6019898317979116340/00084 6019898317979116340/00027 6019898317979116340/00034 6019898317979116340/00081 6019898317979116340/00082 6019898317979116340/00106 6019898317979116340/00008 6019898317979116340/00040 6019898317979116340/00068 6019898317979116340/00043 6019898317979116340/00005 6019898317979116340/00004 5658894290841894014/00003 5658894290841894014/00009 5658894290841894014/00010 5658894290841894014/00013 5658894290841894014/00001 5658894290841894014/00014 5658894290841894014/00011 5658894290841894014/00002 5658894290841894014/00008 5658894290841894014/00005 5983607991811548308/00015 5983607991811548308/00006 5983607991811548308/00009 5983607991811548308/00010 5983607991811548308/00033 5983607991811548308/00024 5983607991811548308/00030 5983607991811548308/00026 5983607991811548308/00044 5983607991811548308/00036 5983607991811548308/00001 5983607991811548308/00023 5983607991811548308/00038 5983607991811548308/00018 5983607991811548308/00042 5983607991811548308/00041 5983607991811548308/00014 5983607991811548308/00037 5983607991811548308/00020 5983607991811548308/00035 5983607991811548308/00027 5983607991811548308/00034 5983607991811548308/00002 5983607991811548308/00008 5983607991811548308/00007 5983607991811548308/00043 5983607991811548308/00005 5983607991811548308/00004 6124656435799052753/00032 6124656435799052753/00033 6124656435799052753/00024 6124656435799052753/00013 6124656435799052753/00022 6124656435799052753/00023 6124656435799052753/00038 6124656435799052753/00021 6124656435799052753/00037 6124656435799052753/00039 6124656435799052753/00020 6124656435799052753/00035 6124656435799052753/00027 6124656435799052753/00002 6124656435799052753/00040 6124656435799052753/00007 6124656435799052753/00025 6124656435799052753/00028 6259789421329834604/00029 6259789421329834604/00015 6259789421329834604/00003 6259789421329834604/00006 6259789421329834604/00009 6259789421329834604/00010 6259789421329834604/00024 6259789421329834604/00013 6259789421329834604/00022 6259789421329834604/00026 6259789421329834604/00001 6259789421329834604/00023 6259789421329834604/00021 6259789421329834604/00014 6259789421329834604/00020 6259789421329834604/00011 6259789421329834604/00002 6259789421329834604/00008 6259789421329834604/00007 6259789421329834604/00005 6259789421329834604/00004 6125077772090853910/00008 6125077772090853910/00005 6225591603228894396/00010 6225591603228894396/00013 6225591603228894396/00018 6225591603228894396/00012 6225591603228894396/00014 6225591603228894396/00008 6225591603228894396/00007 5922797697351067887/00015 5922797697351067887/00006 5922797697351067887/00009 5922797697351067887/00010 5922797697351067887/00013 5922797697351067887/00022 5922797697351067887/00001 5922797697351067887/00014 5922797697351067887/00017 5922797697351067887/00011 6243357305952122096/00015 6243357305952122096/00010 6243357305952122096/00013 6243357305952122096/00012 6243357305952122096/00014 6243357305952122096/00017 6243357305952122096/00016 6243357305952122096/00011 6243357305952122096/00008 6243357305952122096/00028 6311651151429016127/00015 6311651151429016127/00003 6311651151429016127/00001 6311651151429016127/00018 6311651151429016127/00014 6311651151429016127/00019 6311651151429016127/00004 6138347932545227453/00015 6138347932545227453/00006 6138347932545227453/00024 6138347932545227453/00030 6138347932545227453/00031 6138347932545227453/00022 6138347932545227453/00026 6138347932545227453/00023 6138347932545227453/00018 6138347932545227453/00011 6138347932545227453/00008 6138347932545227453/00025 5717869775273436112/00015 5717869775273436112/00003 5717869775273436112/00006 5717869775273436112/00009 5717869775273436112/00010 5717869775273436112/00013 5717869775273436112/00026 5717869775273436112/00001 5717869775273436112/00023 5717869775273436112/00012 5717869775273436112/00014 5717869775273436112/00017 5717869775273436112/00016 5717869775273436112/00011 5717869775273436112/00005 5648542560665067697/00009 5648542560665067697/00010 5648542560665067697/00012 5648542560665067697/00011 5648542560665067697/00007 6373318291865072119/00024 6373318291865072119/00030 6373318291865072119/00019 6373318291865072119/00043 6244203844006161067/00001 6020485869505858469/00024 6020485869505858469/00016 6020485869505858469/00019 6020485869505858469/00011 5716756519750312689/00010 5716756519750312689/00024 5716756519750312689/00022 5716756519750312689/00023 5716756519750312689/00018 5716756519750312689/00012 5716756519750312689/00020 5716756519750312689/00017 5716756519750312689/00019 5716756519750312689/00004 5939488799256800858/00029 5939488799256800858/00015 5939488799256800858/00003 5939488799256800858/00006 5939488799256800858/00032 5939488799256800858/00113 5939488799256800858/00109 5939488799256800858/00070 5939488799256800858/00009 5939488799256800858/00073 5939488799256800858/00112 5939488799256800858/00010 5939488799256800858/00057 5939488799256800858/00024 5939488799256800858/00053 5939488799256800858/00030 5939488799256800858/00071 5939488799256800858/00058 5939488799256800858/00062 5939488799256800858/00031 5939488799256800858/00086 5939488799256800858/00013 5939488799256800858/00069 5939488799256800858/00096 5939488799256800858/00026 5939488799256800858/00044 5939488799256800858/00099 5939488799256800858/00077 5939488799256800858/00103 5939488799256800858/00050 5939488799256800858/00036 5939488799256800858/00063 5939488799256800858/00110 5939488799256800858/00001 5939488799256800858/00045 5939488799256800858/00064 5939488799256800858/00049 5939488799256800858/00114 5939488799256800858/00038 5939488799256800858/00088 5939488799256800858/00048 5939488799256800858/00108 5939488799256800858/00085 5939488799256800858/00012 5939488799256800858/00041 5939488799256800858/00065 5939488799256800858/00021 5939488799256800858/00104 5939488799256800858/00079 5939488799256800858/00014 5939488799256800858/00037 5939488799256800858/00101 5939488799256800858/00047 5939488799256800858/00039 5939488799256800858/00035 5939488799256800858/00076 5939488799256800858/00080 5939488799256800858/00091 5939488799256800858/00055 5939488799256800858/00095 5939488799256800858/00111 5939488799256800858/00059 5939488799256800858/00019 5939488799256800858/00011 5939488799256800858/00084 5939488799256800858/00027 5939488799256800858/00067 5939488799256800858/00034 5939488799256800858/00081 5939488799256800858/00082 5939488799256800858/00100 5939488799256800858/00002 5939488799256800858/00106 5939488799256800858/00092 5939488799256800858/00008 5939488799256800858/00087 5939488799256800858/00040 5939488799256800858/00007 5939488799256800858/00102 5939488799256800858/00097 5939488799256800858/00025 5939488799256800858/00043 5939488799256800858/00005 5939488799256800858/00074 5939488799256800858/00004 5939488799256800858/00028 6237137763810712766/00029 6237137763810712766/00015 6237137763810712766/00003 6237137763810712766/00006 6237137763810712766/00009 6237137763810712766/00010 6237137763810712766/00024 6237137763810712766/00013 6237137763810712766/00026 6237137763810712766/00001 6237137763810712766/00023 6237137763810712766/00018 6237137763810712766/00012 6237137763810712766/00014 6237137763810712766/00020 6237137763810712766/00017 6237137763810712766/00016 6237137763810712766/00019 6237137763810712766/00027 6237137763810712766/00008 6237137763810712766/00007 6237137763810712766/00005 6237137763810712766/00004 6237137763810712766/00028 5541225501330096046/00015 5541225501330096046/00009 5541225501330096046/00010 5541225501330096046/00013 5541225501330096046/00001 5541225501330096046/00018 5541225501330096046/00021 5541225501330096046/00014 5541225501330096046/00020 5541225501330096046/00027 5541225501330096046/00002 5541225501330096046/00007 5541225501330096046/00005 5541225501330096046/00004 6077571138829809070/00003 6077571138829809070/00006 6077571138829809070/00009 6077571138829809070/00012 6077571138829809070/00011 6077571138829809070/00002 6237153225692978367/00003 6237153225692978367/00009 6237153225692978367/00010 6237153225692978367/00018 6237153225692978367/00016 6237153225692978367/00002 6237153225692978367/00007 6237153225692978367/00005 6210396438432361582/00015 6210396438432361582/00003 6210396438432361582/00032 6210396438432361582/00022 6210396438432361582/00036 6210396438432361582/00018 6210396438432361582/00016 6210396438432361582/00002 6210396438432361582/00005 6348834401427892766/00029 6348834401427892766/00015 6348834401427892766/00009 6348834401427892766/00045 6348834401427892766/00048 6348834401427892766/00043 6080371028009984445/00003 6080371028009984445/00006 6080371028009984445/00009 6080371028009984445/00010 6080371028009984445/00013 6080371028009984445/00026 6080371028009984445/00021 6080371028009984445/00014 6080371028009984445/00017 6080371028009984445/00016 6080371028009984445/00019 6080371028009984445/00011 6080371028009984445/00002 6080371028009984445/00008 6080371028009984445/00007 6080371028009984445/00004 6296851553120475228/00015 6296851553120475228/00006 6296851553120475228/00009 6296851553120475228/00013 6296851553120475228/00022 6296851553120475228/00001 6296851553120475228/00023 6296851553120475228/00014 6296851553120475228/00017 6296851553120475228/00016 6296851553120475228/00011 6296851553120475228/00008 6296851553120475228/00007 6296851553120475228/00025 6296851553120475228/00004 5586640915014741808/00001 5948313668559961312/00015 5948313668559961312/00003 5948313668559961312/00009 5948313668559961312/00013 5948313668559961312/00001 5948313668559961312/00012 5948313668559961312/00014 5948313668559961312/00020 5948313668559961312/00016 5948313668559961312/00002 5948313668559961312/00007 5948313668559961312/00005 6211200456310891895/00012 6211200456310891895/00011 6211200456310891895/00002 6211200456310891895/00008 6211200456310891895/00007 6211200456310891895/00005 6211200456310891895/00004 6113879503859917352/00003 6113879503859917352/00009 6113879503859917352/00011 6113879503859917352/00002 5942020682477860562/00003 5942020682477860562/00001 5942020682477860562/00002 5942020682477860562/00004 5547350983687657340/00015 5547350983687657340/00003 5547350983687657340/00006 5547350983687657340/00009 5547350983687657340/00010 5547350983687657340/00022 5547350983687657340/00023 5547350983687657340/00020 5547350983687657340/00017 5547350983687657340/00016 5547350983687657340/00011 5547350983687657340/00008 5547350983687657340/00007 5547350983687657340/00005 6382866004163990600/00003 6083121954563791212/00015 6083121954563791212/00003 6083121954563791212/00032 6083121954563791212/00009 6083121954563791212/00033 6083121954563791212/00024 6083121954563791212/00022 6083121954563791212/00026 6083121954563791212/00036 6083121954563791212/00001 6083121954563791212/00023 6083121954563791212/00018 6083121954563791212/00021 6083121954563791212/00014 6083121954563791212/00035 6083121954563791212/00017 6083121954563791212/00016 6083121954563791212/00002 6083121954563791212/00008 6083121954563791212/00007 6083121954563791212/00025 6083121954563791212/00004 6210435093268505324/00015 6210435093268505324/00003 6210435093268505324/00006 6210435093268505324/00010 6210435093268505324/00013 6210435093268505324/00018 6210435093268505324/00014 6210435093268505324/00020 6210435093268505324/00011 6210435093268505324/00027 6210435093268505324/00008 6210435093268505324/00007 6210435093268505324/00025 6210435093268505324/00005 6211119281428278436/00010 6211119281428278436/00013 6211119281428278436/00001 6211119281428278436/00018 6211119281428278436/00021 6211119281428278436/00014 6211119281428278436/00007 6218568043210451955/00029 6218568043210451955/00003 6218568043210451955/00006 6218568043210451955/00010 6218568043210451955/00030 6218568043210451955/00031 6218568043210451955/00026 6218568043210451955/00001 6218568043210451955/00012 6218568043210451955/00014 6218568043210451955/00035 6218568043210451955/00019 6218568043210451955/00034 6218568043210451955/00008 6218568043210451955/00007 6218568043210451955/00005 6218568043210451955/00004 6129101726950487528/00003 6129101726950487528/00001 6129101726950487528/00002 6129101726950487528/00004 6029145812064046477/00015 6029145812064046477/00003 6029145812064046477/00009 6029145812064046477/00010 6029145812064046477/00024 6029145812064046477/00013 6029145812064046477/00026 6029145812064046477/00001 6029145812064046477/00023 6029145812064046477/00018 6029145812064046477/00012 6029145812064046477/00014 6029145812064046477/00020 6029145812064046477/00017 6029145812064046477/00019 6029145812064046477/00011 6029145812064046477/00027 6029145812064046477/00002 6029145812064046477/00008 6029145812064046477/00007 6029145812064046477/00005 6029145812064046477/00004 5860259537547484495/00006 5860259537547484495/00002 5860259537547484495/00008 5860259537547484495/00005 5860259537547484495/00004 6126867484963105251/00015 6126867484963105251/00010 6126867484963105251/00024 6126867484963105251/00022 6126867484963105251/00023 6126867484963105251/00018 6126867484963105251/00042 6126867484963105251/00021 6126867484963105251/00014 6126867484963105251/00037 6126867484963105251/00020 6126867484963105251/00016 6126867484963105251/00019 6126867484963105251/00007 6126867484963105251/00025 6126867484963105251/00005 5990744938967249854/00003 5990744938967249854/00010 5990744938967249854/00013 5990744938967249854/00022 5990744938967249854/00001 5990744938967249854/00023 5990744938967249854/00021 5990744938967249854/00020 5990744938967249854/00017 5990744938967249854/00016 5990744938967249854/00019 5990744938967249854/00002 5990744938967249854/00008 5990744938967249854/00005 6198513981911240143/00001 6116898436372341719/00006 6116898436372341719/00009 6116898436372341719/00010 6116898436372341719/00018 6116898436372341719/00017 6116898436372341719/00019 6116898436372341719/00008 5537885734760724252/00015 5537885734760724252/00046 5537885734760724252/00032 5537885734760724252/00030 5537885734760724252/00058 5537885734760724252/00026 5537885734760724252/00044 5537885734760724252/00045 5537885734760724252/00023 5537885734760724252/00018 5537885734760724252/00042 5537885734760724252/00041 5537885734760724252/00037 5537885734760724252/00047 5537885734760724252/00035 5537885734760724252/00017 5537885734760724252/00052 5537885734760724252/00055 5537885734760724252/00016 5537885734760724252/00059 5537885734760724252/00007 6096883029779532396/00001 5962894223536342747/00029 5962894223536342747/00010 5962894223536342747/00024 5962894223536342747/00030 5962894223536342747/00031 5962894223536342747/00013 5962894223536342747/00026 5962894223536342747/00050 5962894223536342747/00036 5962894223536342747/00045 5962894223536342747/00049 5962894223536342747/00018 5962894223536342747/00021 5962894223536342747/00014 5962894223536342747/00052 5962894223536342747/00055 5962894223536342747/00019 5861213020287198503/00029 5861213020287198503/00056 5861213020287198503/00009 5861213020287198503/00010 5861213020287198503/00033 5861213020287198503/00030 5861213020287198503/00022 5861213020287198503/00026 5861213020287198503/00045 5861213020287198503/00023 5861213020287198503/00018 5861213020287198503/00012 5861213020287198503/00014 5861213020287198503/00039 5861213020287198503/00035 5861213020287198503/00051 5861213020287198503/00055 5861213020287198503/00019 5861213020287198503/00011 5861213020287198503/00034 5861213020287198503/00007 5861213020287198503/00004 5861213020287198503/00028 6076658887776075000/00001 6113937485918475094/00002 6021521815616940492/00016 5870088140707656833/00015 5870088140707656833/00003 5870088140707656833/00006 5870088140707656833/00010 5870088140707656833/00013 5870088140707656833/00001 5870088140707656833/00012 5870088140707656833/00014 5870088140707656833/00002 5870088140707656833/00007 5870088140707656833/00005 5870088140707656833/00004 6313936933024013236/00006 6313936933024013236/00009 6313936933024013236/00014 6313936933024013236/00011 6313936933024013236/00002 6313936933024013236/00008 6313936933024013236/00004 6118792516949821655/00029 6118792516949821655/00015 6118792516949821655/00046 6118792516949821655/00009 6118792516949821655/00010 6118792516949821655/00033 6118792516949821655/00031 6118792516949821655/00013 6118792516949821655/00022 6118792516949821655/00044 6118792516949821655/00036 6118792516949821655/00001 6118792516949821655/00023 6118792516949821655/00018 6118792516949821655/00041 6118792516949821655/00021 6118792516949821655/00014 6118792516949821655/00037 6118792516949821655/00047 6118792516949821655/00039 6118792516949821655/00020 6118792516949821655/00017 6118792516949821655/00019 6118792516949821655/00034 6118792516949821655/00040 6118792516949821655/00043 6118792516949821655/00005 6118792516949821655/00028 6328656644940810739/00006 6328656644940810739/00011 5580197175580545740/00015 5580197175580545740/00009 5580197175580545740/00001 5580197175580545740/00012 5580197175580545740/00017 5580197175580545740/00016 5580197175580545740/00002 5580197175580545740/00005 6024103949955297835/00001 6024103949955297835/00008 6024103949955297835/00007 6308312673349834578/00010 6308312673349834578/00013 6308312673349834578/00008 6308312673349834578/00004 6152244299232174466/00006 6152244299232174466/00009 6152244299232174466/00010 6152244299232174466/00002 6152244299232174466/00005 6113566400744038883/00015 6113566400744038883/00010 6113566400744038883/00024 6113566400744038883/00013 6113566400744038883/00022 6113566400744038883/00026 6113566400744038883/00001 6113566400744038883/00023 6113566400744038883/00018 6113566400744038883/00012 6113566400744038883/00021 6113566400744038883/00014 6113566400744038883/00020 6113566400744038883/00035 6113566400744038883/00016 6113566400744038883/00019 6113566400744038883/00027 6113566400744038883/00034 6113566400744038883/00008 6113566400744038883/00007 6113566400744038883/00025 6113566400744038883/00005 6113566400744038883/00004 6098390563301074464/00001 6098390563301074464/00007 6098390563301074464/00004 6227763997687282039/00003 6227763997687282039/00006 6227763997687282039/00009 6227763997687282039/00010 6227763997687282039/00001 6227763997687282039/00002 6227763997687282039/00008 6227763997687282039/00005 6227763997687282039/00004 6172027777590340984/00003 6172027777590340984/00006 6172027777590340984/00053 6172027777590340984/00078 6172027777590340984/00071 6172027777590340984/00062 6172027777590340984/00031 6172027777590340984/00022 6172027777590340984/00026 6172027777590340984/00077 6172027777590340984/00036 6172027777590340984/00063 6172027777590340984/00045 6172027777590340984/00064 6172027777590340984/00049 6172027777590340984/00018 6172027777590340984/00085 6172027777590340984/00012 6172027777590340984/00065 6172027777590340984/00061 6172027777590340984/00075 6172027777590340984/00037 6172027777590340984/00047 6172027777590340984/00020 6172027777590340984/00051 6172027777590340984/00017 6172027777590340984/00076 6172027777590340984/00080 6172027777590340984/00055 6172027777590340984/00059 6172027777590340984/00067 6172027777590340984/00081 6172027777590340984/00068 6172027777590340984/00025 6172027777590340984/00054 6172027777590340984/00005 5944370888582233867/00015 5944370888582233867/00003 5944370888582233867/00006 5944370888582233867/00009 5944370888582233867/00010 5944370888582233867/00024 5944370888582233867/00013 5944370888582233867/00022 5944370888582233867/00026 5944370888582233867/00001 5944370888582233867/00023 5944370888582233867/00018 5944370888582233867/00012 5944370888582233867/00014 5944370888582233867/00020 5944370888582233867/00016 5944370888582233867/00019 5944370888582233867/00011 5944370888582233867/00002 5944370888582233867/00008 5944370888582233867/00007 5944370888582233867/00005 5535423430009926848/00003 5535423430009926848/00001 5535423430009926848/00002 6374083655167624227/00107 6374083655167624227/00010 6374083655167624227/00057 6374083655167624227/00053 6374083655167624227/00058 6374083655167624227/00022 6374083655167624227/00105 6374083655167624227/00045 6374083655167624227/00018 6374083655167624227/00085 6374083655167624227/00083 6374083655167624227/00079 6374083655167624227/00037 6374083655167624227/00059 6374083655167624227/00119 6374083655167624227/00102 6260396300208823554/00015 6260396300208823554/00003 6260396300208823554/00009 6260396300208823554/00018 6260396300208823554/00012 6260396300208823554/00020 6260396300208823554/00019 6260396300208823554/00011 6260396300208823554/00008 6260396300208823554/00007 6260396300208823554/00004 5963524295238727185/00003 5963524295238727185/00024 5963524295238727185/00013 5963524295238727185/00022 5963524295238727185/00018 5963524295238727185/00021 5963524295238727185/00014 5963524295238727185/00020 5963524295238727185/00017 5963524295238727185/00002 5963524295238727185/00004 6250118013972757193/00003 6250118013972757193/00009 6250118013972757193/00013 6250118013972757193/00001 6250118013972757193/00018 6250118013972757193/00012 6250118013972757193/00016 6250118013972757193/00011 6250118013972757193/00008 6109515387590448496/00029 6109515387590448496/00006 6109515387590448496/00032 6109515387590448496/00024 6109515387590448496/00030 6109515387590448496/00013 6109515387590448496/00022 6109515387590448496/00026 6109515387590448496/00001 6109515387590448496/00018 6109515387590448496/00014 6109515387590448496/00017 6109515387590448496/00016 6109515387590448496/00011 6109515387590448496/00002 6109515387590448496/00007 6109515387590448496/00025 6109515387590448496/00005 6109515387590448496/00028 5934316799638952671/00015 5934316799638952671/00003 5934316799638952671/00006 5934316799638952671/00010 5934316799638952671/00012 5934316799638952671/00007 5934316799638952671/00004 6245650818488121500/00046 6245650818488121500/00032 6245650818488121500/00009 6245650818488121500/00033 6245650818488121500/00053 6245650818488121500/00030 6245650818488121500/00031 6245650818488121500/00026 6245650818488121500/00045 6245650818488121500/00049 6245650818488121500/00038 6245650818488121500/00048 6245650818488121500/00042 6245650818488121500/00012 6245650818488121500/00037 6245650818488121500/00039 6245650818488121500/00020 6245650818488121500/00051 6245650818488121500/00052 6245650818488121500/00055 6245650818488121500/00059 6245650818488121500/00011 6245650818488121500/00034 6245650818488121500/00002 6245650818488121500/00040 6245650818488121500/00025 6245650818488121500/00054 6245650818488121500/00043 6277199500760886105/00010 6277199500760886105/00001 6277199500760886105/00021 6277199500760886105/00020 6277199500760886105/00019 6277199500760886105/00004 6211525155837816576/00006 6211525155837816576/00009 6211525155837816576/00010 6211525155837816576/00013 6211525155837816576/00011 6211525155837816576/00008 6211525155837816576/00007 5972190680379015338/00009 5972190680379015338/00010 5972190680379015338/00013 5972190680379015338/00001 5972190680379015338/00018 5972190680379015338/00012 5972190680379015338/00014 5972190680379015338/00002 5972190680379015338/00008 6110605450290172441/00003 6110605450290172441/00011 6110605450290172441/00008 6112112983811071350/00003 6112112983811071350/00006 6112112983811071350/00010 6112112983811071350/00024 6112112983811071350/00013 6112112983811071350/00022 6112112983811071350/00012 6112112983811071350/00021 6112112983811071350/00014 6112112983811071350/00020 6112112983811071350/00017 6112112983811071350/00016 6112112983811071350/00011 6112112983811071350/00008 6112112983811071350/00007 6112112983811071350/00005 6224908703428893377/00001 6224908703428893377/00008 6390767026001714921/00009 6108019450481342968/00002 6108019450481342968/00004 6226650742164152616/00009 6226650742164152616/00010 6226650742164152616/00001 6226650742164152616/00012 6226650742164152616/00014 6226650742164152616/00011 6226650742164152616/00008 6226650742164152616/00005 6261985008611552006/00007 6051208629566888474/00015 6051208629566888474/00003 6051208629566888474/00006 6051208629566888474/00009 6051208629566888474/00010 6051208629566888474/00024 6051208629566888474/00013 6051208629566888474/00022 6051208629566888474/00026 6051208629566888474/00023 6051208629566888474/00018 6051208629566888474/00012 6051208629566888474/00020 6051208629566888474/00017 6051208629566888474/00016 6051208629566888474/00027 6051208629566888474/00008 6051208629566888474/00025 6051208629566888474/00004 6051208629566888474/00028 6102337208748725029/00001 6102337208748725029/00002 6102337208748725029/00004 6092399083922442349/00009 6092399083922442349/00010 6092399083922442349/00053 6092399083922442349/00062 6092399083922442349/00031 6092399083922442349/00022 6092399083922442349/00026 6092399083922442349/00050 6092399083922442349/00066 6092399083922442349/00049 6092399083922442349/00023 6092399083922442349/00048 6092399083922442349/00018 6092399083922442349/00012 6092399083922442349/00041 6092399083922442349/00065 6092399083922442349/00014 6092399083922442349/00047 6092399083922442349/00039 6092399083922442349/00020 6092399083922442349/00051 6092399083922442349/00052 6092399083922442349/00055 6092399083922442349/00016 6092399083922442349/00059 6092399083922442349/00019 6092399083922442349/00011 6092399083922442349/00027 6092399083922442349/00034 6092399083922442349/00002 6092399083922442349/00008 6092399083922442349/00068 6092399083922442349/00025 6092399083922442349/00054 6092399083922442349/00043 5983961038123213894/00029 5983961038123213894/00006 5983961038123213894/00009 5983961038123213894/00010 5983961038123213894/00033 5983961038123213894/00030 5983961038123213894/00031 5983961038123213894/00013 5983961038123213894/00022 5983961038123213894/00036 5983961038123213894/00001 5983961038123213894/00012 5983961038123213894/00041 5983961038123213894/00021 5983961038123213894/00014 5983961038123213894/00039 5983961038123213894/00020 5983961038123213894/00035 5983961038123213894/00016 5983961038123213894/00019 5983961038123213894/00011 5983961038123213894/00027 5983961038123213894/00034 5983961038123213894/00002 5983961038123213894/00008 5983961038123213894/00040 5983961038123213894/00007 5983961038123213894/00005 6293171625141262226/00001 6293171625141262226/00002 6373326022806137973/00015 6373326022806137973/00014 6373326022806137973/00005 6308177381880006979/00006 6308177381880006979/00010 6308177381880006979/00024 6308177381880006979/00013 6308177381880006979/00022 6308177381880006979/00026 6308177381880006979/00001 6308177381880006979/00012 6308177381880006979/00017 6308177381880006979/00011 6308177381880006979/00027 6308177381880006979/00002 6308177381880006979/00008 6308177381880006979/00007 6308177381880006979/00005 6308177381880006979/00004 6308177381880006979/00028 6209615613378016053/00029 6209615613378016053/00015 6209615613378016053/00006 6209615613378016053/00032 6209615613378016053/00009 6209615613378016053/00010 6209615613378016053/00033 6209615613378016053/00024 6209615613378016053/00030 6209615613378016053/00031 6209615613378016053/00013 6209615613378016053/00022 6209615613378016053/00026 6209615613378016053/00044 6209615613378016053/00036 6209615613378016053/00001 6209615613378016053/00045 6209615613378016053/00023 6209615613378016053/00038 6209615613378016053/00018 6209615613378016053/00042 6209615613378016053/00012 6209615613378016053/00041 6209615613378016053/00014 6209615613378016053/00037 6209615613378016053/00039 6209615613378016053/00020 6209615613378016053/00011 6209615613378016053/00002 6209615613378016053/00008 6209615613378016053/00040 6209615613378016053/00007 6209615613378016053/00025 6209615613378016053/00043 6209615613378016053/00028 5945344987164963843/00006 5945344987164963843/00007 5945344987164963843/00005 5945344987164963843/00004 6117180615723688939/00003 6117180615723688939/00006 6117180615723688939/00008 6117180615723688939/00004 5622574329399999106/00003 5622574329399999106/00006 5622574329399999106/00046 5622574329399999106/00032 5622574329399999106/00009 5622574329399999106/00033 5622574329399999106/00024 5622574329399999106/00030 5622574329399999106/00013 5622574329399999106/00050 5622574329399999106/00001 5622574329399999106/00045 5622574329399999106/00023 5622574329399999106/00038 5622574329399999106/00048 5622574329399999106/00042 5622574329399999106/00012 5622574329399999106/00041 5622574329399999106/00014 5622574329399999106/00037 5622574329399999106/00039 5622574329399999106/00020 5622574329399999106/00017 5622574329399999106/00052 5622574329399999106/00019 5622574329399999106/00011 5622574329399999106/00027 5622574329399999106/00034 5622574329399999106/00008 5622574329399999106/00007 5622574329399999106/00043 6218834760678885377/00006 6218834760678885377/00010 6218834760678885377/00001 6218834760678885377/00014 6218834760678885377/00002 6218834760678885377/00004 5965109138170892429/00015 5965109138170892429/00003 5965109138170892429/00013 5965109138170892429/00022 5965109138170892429/00001 5965109138170892429/00017 5965109138170892429/00008 6100392877053765365/00029 6100392877053765365/00015 6100392877053765365/00003 6100392877053765365/00006 6100392877053765365/00032 6100392877053765365/00010 6100392877053765365/00024 6100392877053765365/00022 6100392877053765365/00026 6100392877053765365/00001 6100392877053765365/00023 6100392877053765365/00018 6100392877053765365/00037 6100392877053765365/00035 6100392877053765365/00016 6100392877053765365/00019 6100392877053765365/00027 6100392877053765365/00002 6100392877053765365/00008 6100392877053765365/00025 6100392877053765365/00005 6100392877053765365/00004 6100392877053765365/00028 6128470366757969403/00003 6128470366757969403/00006 6128470366757969403/00010 6128470366757969403/00026 6128470366757969403/00012 6128470366757969403/00014 6128470366757969403/00011 6128470366757969403/00027 6128470366757969403/00005 5991827270725846044/00015 5991827270725846044/00003 5991827270725846044/00006 5991827270725846044/00009 5991827270725846044/00010 5991827270725846044/00013 5991827270725846044/00018 5991827270725846044/00012 5991827270725846044/00014 5991827270725846044/00017 5991827270725846044/00016 5991827270725846044/00011 5991827270725846044/00002 5991827270725846044/00008 5991827270725846044/00007 5991827270725846044/00005 5991827270725846044/00004 5867772723838360253/00010 5867772723838360253/00024 5867772723838360253/00001 5867772723838360253/00012 5867772723838360253/00011 5867772723838360253/00008 5867772723838360253/00005 5867772723838360253/00004 6329151425173313518/00060 6329151425173313518/00029 6329151425173313518/00015 6329151425173313518/00003 6329151425173313518/00006 6329151425173313518/00098 6329151425173313518/00046 6329151425173313518/00107 6329151425173313518/00056 6329151425173313518/00113 6329151425173313518/00090 6329151425173313518/00073 6329151425173313518/00112 6329151425173313518/00010 6329151425173313518/00033 6329151425173313518/00057 6329151425173313518/00024 6329151425173313518/00118 6329151425173313518/00116 6329151425173313518/00078 6329151425173313518/00030 6329151425173313518/00071 6329151425173313518/00058 6329151425173313518/00062 6329151425173313518/00031 6329151425173313518/00086 6329151425173313518/00013 6329151425173313518/00096 6329151425173313518/00026 6329151425173313518/00044 6329151425173313518/00099 6329151425173313518/00077 6329151425173313518/00093 6329151425173313518/00120 6329151425173313518/00103 6329151425173313518/00105 6329151425173313518/00036 6329151425173313518/00117 6329151425173313518/00001 6329151425173313518/00066 6329151425173313518/00064 6329151425173313518/00049 6329151425173313518/00072 6329151425173313518/00023 6329151425173313518/00114 6329151425173313518/00088 6329151425173313518/00108 6329151425173313518/00018 6329151425173313518/00085 6329151425173313518/00042 6329151425173313518/00041 6329151425173313518/00061 6329151425173313518/00075 6329151425173313518/00104 6329151425173313518/00079 6329151425173313518/00037 6329151425173313518/00101 6329151425173313518/00047 6329151425173313518/00039 6329151425173313518/00035 6329151425173313518/00051 6329151425173313518/00017 6329151425173313518/00076 6329151425173313518/00080 6329151425173313518/00055 6329151425173313518/00016 6329151425173313518/00095 6329151425173313518/00111 6329151425173313518/00011 6329151425173313518/00119 6329151425173313518/00067 6329151425173313518/00115 6329151425173313518/00034 6329151425173313518/00081 6329151425173313518/00082 6329151425173313518/00100 6329151425173313518/00002 6329151425173313518/00092 6329151425173313518/00087 6329151425173313518/00040 6329151425173313518/00007 6329151425173313518/00102 6329151425173313518/00068 6329151425173313518/00025 6329151425173313518/00054 6329151425173313518/00043 6329151425173313518/00005 6329151425173313518/00074 6329151425173313518/00004 5956848627570549190/00010 5956848627570549190/00013 5956848627570549190/00001 5956848627570549190/00018 5956848627570549190/00012 5956848627570549190/00016 5956848627570549190/00019 5956848627570549190/00011 5956848627570549190/00002 5956848627570549190/00007 5956848627570549190/00005 5956848627570549190/00004 6213929478530053577/00003 6213929478530053577/00001 6213929478530053577/00012 6213929478530053577/00011 6213929478530053577/00008 6213929478530053577/00005 6213929478530053577/00004 6217818141919855967/00015 6217818141919855967/00006 6217818141919855967/00009 6217818141919855967/00010 6217818141919855967/00013 6217818141919855967/00020 6217818141919855967/00017 6217818141919855967/00016 6217818141919855967/00011 6217818141919855967/00002 6217818141919855967/00007 6217818141919855967/00004 5981073531610834466/00002 5981073531610834466/00005 5989113710388295736/00001 5989113710388295736/00004 6078193479590999514/00003 6078193479590999514/00001 6078193479590999514/00007 6078193479590999514/00004 6102391325336591067/00006 6102391325336591067/00022 6102391325336591067/00026 6102391325336591067/00038 6102391325336591067/00042 6102391325336591067/00012 6102391325336591067/00041 6102391325336591067/00014 6102391325336591067/00037 6102391325336591067/00035 6102391325336591067/00019 6102391325336591067/00027 6102391325336591067/00034 6102391325336591067/00002 6102391325336591067/00008 6102391325336591067/00025 6102391325336591067/00004 6220415738140479895/00003 6220415738140479895/00009 6220415738140479895/00010 6220415738140479895/00001 6220415738140479895/00020 6220415738140479895/00017 6220415738140479895/00016 6220415738140479895/00019 6220415738140479895/00002 6220415738140479895/00008 5881607242995511197/00015 5881607242995511197/00003 5881607242995511197/00009 5881607242995511197/00001 5881607242995511197/00018 5881607242995511197/00016 5881607242995511197/00002 5881607242995511197/00005 5881607242995511197/00004 5958414143149877417/00015 5958414143149877417/00003 5958414143149877417/00006 5958414143149877417/00009 5958414143149877417/00010 5958414143149877417/00013 5958414143149877417/00026 5958414143149877417/00001 5958414143149877417/00023 5958414143149877417/00012 5958414143149877417/00021 5958414143149877417/00014 5958414143149877417/00019 5958414143149877417/00011 5958414143149877417/00002 5958414143149877417/00008 5958414143149877417/00007 5958414143149877417/00005 5958414143149877417/00028 6247114543342596463/00015 6247114543342596463/00006 6247114543342596463/00033 6247114543342596463/00024 6247114543342596463/00013 6247114543342596463/00026 6247114543342596463/00036 6247114543342596463/00001 6247114543342596463/00018 6247114543342596463/00012 6247114543342596463/00021 6247114543342596463/00017 6247114543342596463/00016 6247114543342596463/00002 6247114543342596463/00008 6247114543342596463/00004 6247114543342596463/00028 5973624769828675668/00015 5973624769828675668/00024 5973624769828675668/00022 5973624769828675668/00001 5973624769828675668/00012 5973624769828675668/00021 6253094426308887277/00006 6253094426308887277/00009 6253094426308887277/00010 6253094426308887277/00001 6253094426308887277/00011 6253094426308887277/00007 6253094426308887277/00004 5962496080068068271/00003 5962496080068068271/00022 5962496080068068271/00001 5962496080068068271/00018 5962496080068068271/00014 5962496080068068271/00017 5962496080068068271/00016 5962496080068068271/00019 5962496080068068271/00011 5962496080068068271/00008 5962496080068068271/00007 5962496080068068271/00004 6081637613866292820/00015 6081637613866292820/00003 6081637613866292820/00010 6081637613866292820/00022 6081637613866292820/00026 6081637613866292820/00001 6081637613866292820/00018 6081637613866292820/00021 6081637613866292820/00014 6081637613866292820/00016 6081637613866292820/00019 6081637613866292820/00011 6081637613866292820/00007 6081637613866292820/00005 6176264333461552454/00003 6176264333461552454/00006 6176264333461552454/00010 6176264333461552454/00033 6176264333461552454/00024 6176264333461552454/00030 6176264333461552454/00031 6176264333461552454/00013 6176264333461552454/00026 6176264333461552454/00036 6176264333461552454/00001 6176264333461552454/00038 6176264333461552454/00018 6176264333461552454/00012 6176264333461552454/00041 6176264333461552454/00021 6176264333461552454/00037 6176264333461552454/00020 6176264333461552454/00035 6176264333461552454/00017 6176264333461552454/00016 6176264333461552454/00027 6176264333461552454/00002 6176264333461552454/00040 6176264333461552454/00005 6176264333461552454/00004 6176264333461552454/00028 6106144697256638830/00003 6106144697256638830/00001 6365904319318706417/00012 6153612675811962227/00015 6153612675811962227/00003 6153612675811962227/00009 6153612675811962227/00013 6153612675811962227/00012 6153612675811962227/00014 6153612675811962227/00016 6153612675811962227/00002 6153612675811962227/00007 6246689341580358209/00003 6246689341580358209/00001 6246689341580358209/00002 6246689341580358209/00005 6246689341580358209/00004 5586876708719292225/00006 5586876708719292225/00012 5586876708719292225/00011 5586876708719292225/00007 5586876708719292225/00005 6385216210398859008/00009 6385216210398859008/00007 6385216210398859008/00005 6259750766624171995/00060 6259750766624171995/00015 6259750766624171995/00006 6259750766624171995/00009 6259750766624171995/00024 6259750766624171995/00030 6259750766624171995/00062 6259750766624171995/00026 6259750766624171995/00036 6259750766624171995/00045 6259750766624171995/00018 6259750766624171995/00012 6259750766624171995/00021 6259750766624171995/00014 6259750766624171995/00020 6259750766624171995/00035 6259750766624171995/00017 6259750766624171995/00052 6259750766624171995/00008 6259750766624171995/00040 6259750766624171995/00025 6259750766624171995/00043 5989484795562670639/00003 5989484795562670639/00009 5989484795562670639/00010 5989484795562670639/00018 5989484795562670639/00012 5989484795562670639/00014 5989484795562670639/00020 5989484795562670639/00017 5989484795562670639/00016 5989484795562670639/00019 5989484795562670639/00002 5989484795562670639/00007 6328512334039666732/00003 6328512334039666732/00010 6328512334039666732/00013 6328512334039666732/00012 6328512334039666732/00008 6328512334039666732/00007 6328512334039666732/00005 6229619423559149748/00003 6229619423559149748/00001 6229619423559149748/00002 6229619423559149748/00004 5542338756853221069/00029 5542338756853221069/00003 5542338756853221069/00056 5542338756853221069/00032 5542338756853221069/00010 5542338756853221069/00033 5542338756853221069/00057 5542338756853221069/00030 5542338756853221069/00062 5542338756853221069/00031 5542338756853221069/00022 5542338756853221069/00050 5542338756853221069/00036 5542338756853221069/00045 5542338756853221069/00066 5542338756853221069/00048 5542338756853221069/00018 5542338756853221069/00042 5542338756853221069/00065 5542338756853221069/00061 5542338756853221069/00021 5542338756853221069/00014 5542338756853221069/00039 5542338756853221069/00020 5542338756853221069/00035 5542338756853221069/00017 5542338756853221069/00059 5542338756853221069/00011 5542338756853221069/00027 5542338756853221069/00067 5542338756853221069/00034 5542338756853221069/00025 5542338756853221069/00028 5656729627324708242/00003 5656729627324708242/00013 5656729627324708242/00001 5656729627324708242/00005 6213032689489126420/00029 6213032689489126420/00015 6213032689489126420/00006 6213032689489126420/00046 6213032689489126420/00009 6213032689489126420/00033 6213032689489126420/00053 6213032689489126420/00030 6213032689489126420/00031 6213032689489126420/00013 6213032689489126420/00026 6213032689489126420/00044 6213032689489126420/00050 6213032689489126420/00036 6213032689489126420/00045 6213032689489126420/00049 6213032689489126420/00023 6213032689489126420/00038 6213032689489126420/00048 6213032689489126420/00018 6213032689489126420/00042 6213032689489126420/00012 6213032689489126420/00021 6213032689489126420/00037 6213032689489126420/00039 6213032689489126420/00020 6213032689489126420/00035 6213032689489126420/00051 6213032689489126420/00017 6213032689489126420/00052 6213032689489126420/00055 6213032689489126420/00016 6213032689489126420/00019 6213032689489126420/00011 6213032689489126420/00002 6213032689489126420/00008 6213032689489126420/00040 6213032689489126420/00007 6213032689489126420/00054 6213032689489126420/00043 6213032689489126420/00004 6213032689489126420/00028 5557652462747118201/00046 5557652462747118201/00032 5557652462747118201/00010 5557652462747118201/00024 5557652462747118201/00030 5557652462747118201/00013 5557652462747118201/00050 5557652462747118201/00001 5557652462747118201/00049 5557652462747118201/00048 5557652462747118201/00041 5557652462747118201/00047 5557652462747118201/00020 5557652462747118201/00017 5557652462747118201/00016 5557652462747118201/00002 5557652462747118201/00008 5557652462747118201/00040 5557652462747118201/00007 5557652462747118201/00005 5869717055533282402/00009 5869717055533282402/00022 5869717055533282402/00026 5869717055533282402/00001 5869717055533282402/00023 5869717055533282402/00012 5869717055533282402/00017 5869717055533282402/00019 5869717055533282402/00011 5869717055533282402/00025 5869717055533282402/00005 6076836699422127254/00018 6076836699422127254/00021 6076836699422127254/00008 6076836699422127254/00005 6194462968757681956/00006 6194462968757681956/00009 6194462968757681956/00010 6194462968757681956/00013 6194462968757681956/00012 6194462968757681956/00011 6194462968757681956/00002 6194462968757681956/00008 6194462968757681956/00005 6114242858093159007/00015 6114242858093159007/00009 6114242858093159007/00013 6114242858093159007/00007 6114242858093159007/00005 6235637961230949526/00029 6235637961230949526/00015 6235637961230949526/00009 6235637961230949526/00024 6235637961230949526/00031 6235637961230949526/00022 6235637961230949526/00001 6235637961230949526/00038 6235637961230949526/00039 6235637961230949526/00035 6235637961230949526/00017 6235637961230949526/00011 6235637961230949526/00034 6235637961230949526/00002 6235637961230949526/00008 6235637961230949526/00007 6235637961230949526/00025 6235637961230949526/00005 6235637961230949526/00004 6235637961230949526/00028 6114942508265678975/00003 6114942508265678975/00006 6114942508265678975/00010 6114942508265678975/00001 6114942508265678975/00012 6114942508265678975/00002 6114942508265678975/00008 6114942508265678975/00007 6114942508265678975/00005 6114942508265678975/00004 5990752669908388053/00015 5990752669908388053/00003 5990752669908388053/00006 5990752669908388053/00046 5990752669908388053/00056 5990752669908388053/00024 5990752669908388053/00053 5990752669908388053/00062 5990752669908388053/00036 5990752669908388053/00001 5990752669908388053/00045 5990752669908388053/00023 5990752669908388053/00038 5990752669908388053/00018 5990752669908388053/00042 5990752669908388053/00061 5990752669908388053/00021 5990752669908388053/00014 5990752669908388053/00037 5990752669908388053/00047 5990752669908388053/00039 5990752669908388053/00051 5990752669908388053/00017 5990752669908388053/00011 5990752669908388053/00027 5990752669908388053/00034 5990752669908388053/00002 5990752669908388053/00008 5990752669908388053/00040 5990752669908388053/00007 5990752669908388053/00054 5990752669908388053/00043 5990752669908388053/00005 5990752669908388053/00004 5545111587739522458/00032 5545111587739522458/00009 5545111587739522458/00030 5545111587739522458/00013 5545111587739522458/00001 5545111587739522458/00012 5545111587739522458/00017 5545111587739522458/00028 6218204688976562114/00015 6218204688976562114/00001 6218204688976562114/00016 6218204688976562114/00008 6218204688976562114/00007 5540618622451171190/00001 6046013437125640989/00029 6046013437125640989/00006 6046013437125640989/00032 6046013437125640989/00010 6046013437125640989/00033 6046013437125640989/00024 6046013437125640989/00030 6046013437125640989/00031 6046013437125640989/00026 6046013437125640989/00036 6046013437125640989/00001 6046013437125640989/00023 6046013437125640989/00038 6046013437125640989/00018 6046013437125640989/00041 6046013437125640989/00021 6046013437125640989/00014 6046013437125640989/00037 6046013437125640989/00020 6046013437125640989/00035 6046013437125640989/00016 6046013437125640989/00027 6046013437125640989/00034 6046013437125640989/00002 6046013437125640989/00040 6046013437125640989/00007 6046013437125640989/00025 6046013437125640989/00005 6046013437125640989/00004 6046013437125640989/00028 6355544858200683461/00002 5695426853164919705/00015 5695426853164919705/00006 5695426853164919705/00009 5695426853164919705/00013 5695426853164919705/00001 5695426853164919705/00021 5695426853164919705/00017 5695426853164919705/00016 5695426853164919705/00008 5695426853164919705/00007 5695426853164919705/00005 5947648807622474500/00009 5947648807622474500/00010 5947648807622474500/00030 5947648807622474500/00022 5947648807622474500/00026 5947648807622474500/00012 5947648807622474500/00014 5947648807622474500/00016 5947648807622474500/00019 5947648807622474500/00008 6218900473678514184/00029 6218900473678514184/00015 6218900473678514184/00046 6218900473678514184/00032 6218900473678514184/00009 6218900473678514184/00010 6218900473678514184/00033 6218900473678514184/00030 6218900473678514184/00031 6218900473678514184/00013 6218900473678514184/00022 6218900473678514184/00026 6218900473678514184/00001 6218900473678514184/00023 6218900473678514184/00038 6218900473678514184/00018 6218900473678514184/00042 6218900473678514184/00021 6218900473678514184/00037 6218900473678514184/00047 6218900473678514184/00035 6218900473678514184/00017 6218900473678514184/00016 6218900473678514184/00027 6218900473678514184/00034 6218900473678514184/00008 6218900473678514184/00025 6218900473678514184/00004 5878112857603485380/00003 5878112857603485380/00006 5878112857603485380/00013 5878112857603485380/00018 5878112857603485380/00012 5878112857603485380/00017 5878112857603485380/00019 5878112857603485380/00002 5878112857603485380/00004 6036539168767386879/00003 6036539168767386879/00009 6036539168767386879/00010 6036539168767386879/00001 6036539168767386879/00011 6036539168767386879/00002 6036539168767386879/00008 6036539168767386879/00007 5991375010669641366/00006 5991375010669641366/00001 6195174215341899715/00003 6195174215341899715/00006 6195174215341899715/00010 6195174215341899715/00001 6195174215341899715/00004 5535415699068794046/00003 5535415699068794046/00006 5535415699068794046/00009 5535415699068794046/00013 5535415699068794046/00001 5535415699068794046/00014 5535415699068794046/00011 5535415699068794046/00002 5535415699068794046/00008 5535415699068794046/00007 5535415699068794046/00004 6221455549722906483/00003 6221455549722906483/00006 6221455549722906483/00009 6221455549722906483/00001 6221455549722906483/00008 6221455549722906483/00007 6221455549722906483/00005 6221455549722906483/00004 5981088993492372739/00015 5981088993492372739/00003 5981088993492372739/00006 5981088993492372739/00009 5981088993492372739/00010 5981088993492372739/00024 5981088993492372739/00022 5981088993492372739/00026 5981088993492372739/00021 5981088993492372739/00017 5981088993492372739/00011 5981088993492372739/00002 5981088993492372739/00008 5981088993492372739/00007 5981088993492372739/00025 5981088993492372739/00005 6113871772918784551/00006 6113871772918784551/00009 6113871772918784551/00021 6113871772918784551/00019 6113871772918784551/00011 6113871772918784551/00002 6113871772918784551/00007 5958823883029920584/00006 5958823883029920584/00009 5958823883029920584/00014 5958823883029920584/00017 5958823883029920584/00016 5958823883029920584/00002 5958823883029920584/00008 5958823883029920584/00007 6095331687592157754/00029 6095331687592157754/00003 6095331687592157754/00006 6095331687592157754/00030 6095331687592157754/00031 6095331687592157754/00022 6095331687592157754/00026 6095331687592157754/00036 6095331687592157754/00023 6095331687592157754/00018 6095331687592157754/00012 6095331687592157754/00041 6095331687592157754/00021 6095331687592157754/00014 6095331687592157754/00020 6095331687592157754/00035 6095331687592157754/00017 6095331687592157754/00016 6095331687592157754/00011 6095331687592157754/00008 6095331687592157754/00040 6095331687592157754/00007 6095331687592157754/00025 6095331687592157754/00043 6095331687592157754/00004 5952834980632437887/00029 5952834980632437887/00009 5952834980632437887/00010 5952834980632437887/00024 5952834980632437887/00026 5952834980632437887/00018 5952834980632437887/00020 5952834980632437887/00034 5952834980632437887/00002 6125321296736537027/00009 6125321296736537027/00002 6125321296736537027/00007 6125321296736537027/00004 5748866983745392546/00029 5748866983745392546/00015 5748866983745392546/00003 5748866983745392546/00032 5748866983745392546/00033 5748866983745392546/00030 5748866983745392546/00023 5748866983745392546/00042 5748866983745392546/00041 5748866983745392546/00037 5748866983745392546/00020 5748866983745392546/00035 5748866983745392546/00017 5748866983745392546/00019 5748866983745392546/00027 5748866983745392546/00002 5748866983745392546/00008 5748866983745392546/00025 5748866983745392546/00004 5748866983745392546/00028 6124698955975346584/00003 6124698955975346584/00009 6124698955975346584/00001 6124698955975346584/00012 6124698955975346584/00011 6124698955975346584/00008 6124698955975346584/00007 6124698955975346584/00005 5599056806474000697/00006 5599056806474000697/00010 5599056806474000697/00013 5599056806474000697/00012 5599056806474000697/00011 5599056806474000697/00008 5599056806474000697/00005 5599056806474000697/00004 5860409002409381178/00003 5860409002409381178/00006 5860409002409381178/00032 5860409002409381178/00010 5860409002409381178/00030 5860409002409381178/00013 5860409002409381178/00001 5860409002409381178/00038 5860409002409381178/00042 5860409002409381178/00012 5860409002409381178/00041 5860409002409381178/00014 5860409002409381178/00037 5860409002409381178/00039 5860409002409381178/00027 5860409002409381178/00034 5860409002409381178/00002 5860409002409381178/00008 5860409002409381178/00040 5860409002409381178/00007 5860409002409381178/00025 5860409002409381178/00005 5860409002409381178/00004 5860409002409381178/00028 5989202616211256126/00029 5989202616211256126/00003 5989202616211256126/00010 5989202616211256126/00024 5989202616211256126/00026 5989202616211256126/00023 5989202616211256126/00012 5989202616211256126/00021 5989202616211256126/00020 5989202616211256126/00017 5989202616211256126/00016 5989202616211256126/00019 5989202616211256126/00011 5989202616211256126/00008 5989202616211256126/00007 5989202616211256126/00028 5995874418408869367/00003 5995874418408869367/00009 5995874418408869367/00010 5995874418408869367/00002 5995874418408869367/00008 6199248421318950108/00001 5933389086703014392/00003 5995833186722827764/00015 5995833186722827764/00003 5995833186722827764/00006 5995833186722827764/00009 5995833186722827764/00013 5995833186722827764/00001 5995833186722827764/00012 5995833186722827764/00014 5995833186722827764/00016 5995833186722827764/00011 5995833186722827764/00002 5995833186722827764/00007 5995833186722827764/00005 5995833186722827764/00004 5957356292704936469/00004 6046686029004262808/00002 6046686029004262808/00008 6046686029004262808/00005 5935704503572352900/00007 5935704503572352900/00005 6039859607983924226/00060 6039859607983924226/00029 6039859607983924226/00015 6039859607983924226/00046 6039859607983924226/00009 6039859607983924226/00010 6039859607983924226/00033 6039859607983924226/00024 6039859607983924226/00053 6039859607983924226/00058 6039859607983924226/00031 6039859607983924226/00022 6039859607983924226/00026 6039859607983924226/00050 6039859607983924226/00036 6039859607983924226/00064 6039859607983924226/00023 6039859607983924226/00048 6039859607983924226/00018 6039859607983924226/00042 6039859607983924226/00041 6039859607983924226/00021 6039859607983924226/00037 6039859607983924226/00035 6039859607983924226/00017 6039859607983924226/00055 6039859607983924226/00016 6039859607983924226/00019 6039859607983924226/00034 6039859607983924226/00007 6039859607983924226/00025 6039859607983924226/00054 6039859607983924226/00004 6243555733441856608/00003 6243555733441856608/00010 6243555733441856608/00001 6243555733441856608/00002 6243555733441856608/00005 6243555733441856608/00004 5948746601263332188/00006 5948746601263332188/00010 5948746601263332188/00014 5948746601263332188/00016 5948746601263332188/00008 5948746601263332188/00007 5948746601263332188/00005 5948746601263332188/00004 6116484831021673785/00015 6116484831021673785/00009 6116484831021673785/00001 6116484831021673785/00023 6116484831021673785/00012 6116484831021673785/00027 6116484831021673785/00007 6116484831021673785/00004 5977671917511700697/00001 5905727779329922651/00015 5905727779329922651/00006 5905727779329922651/00046 5905727779329922651/00032 5905727779329922651/00009 5905727779329922651/00030 5905727779329922651/00031 5905727779329922651/00022 5905727779329922651/00044 5905727779329922651/00036 5905727779329922651/00001 5905727779329922651/00045 5905727779329922651/00023 5905727779329922651/00038 5905727779329922651/00048 5905727779329922651/00041 5905727779329922651/00039 5905727779329922651/00020 5905727779329922651/00017 5905727779329922651/00019 5905727779329922651/00034 5905727779329922651/00002 5905727779329922651/00008 5905727779329922651/00007 5905727779329922651/00025 5682321619454649689/00003 5682321619454649689/00006 5682321619454649689/00033 5682321619454649689/00024 5682321619454649689/00031 5682321619454649689/00022 5682321619454649689/00044 5682321619454649689/00001 5682321619454649689/00023 5682321619454649689/00038 5682321619454649689/00018 5682321619454649689/00042 5682321619454649689/00021 5682321619454649689/00020 5682321619454649689/00011 5682321619454649689/00027 5682321619454649689/00034 5682321619454649689/00002 5682321619454649689/00008 5682321619454649689/00040 5682321619454649689/00007 5682321619454649689/00025 5682321619454649689/00043 5682321619454649689/00005 6110918553406054350/00006 6110918553406054350/00046 6110918553406054350/00032 6110918553406054350/00009 6110918553406054350/00024 6110918553406054350/00030 6110918553406054350/00031 6110918553406054350/00013 6110918553406054350/00022 6110918553406054350/00026 6110918553406054350/00044 6110918553406054350/00050 6110918553406054350/00036 6110918553406054350/00001 6110918553406054350/00045 6110918553406054350/00023 6110918553406054350/00038 6110918553406054350/00018 6110918553406054350/00012 6110918553406054350/00041 6110918553406054350/00021 6110918553406054350/00014 6110918553406054350/00037 6110918553406054350/00047 6110918553406054350/00039 6110918553406054350/00020 6110918553406054350/00017 6110918553406054350/00016 6110918553406054350/00011 6110918553406054350/00034 6110918553406054350/00002 6110918553406054350/00007 6110918553406054350/00043 6110918553406054350/00005 6110918553406054350/00004 6133152740103983421/00006 6133152740103983421/00012 6133152740103983421/00014 6133152740103983421/00020 6133152740103983421/00017 6133152740103983421/00002 6133152740103983421/00007 6133152740103983421/00004 6242607404662236823/00003 6242607404662236823/00006 6242607404662236823/00010 6242607404662236823/00012 6242607404662236823/00014 6242607404662236823/00002 6242607404662236823/00008 6242607404662236823/00004 6099457433177401148/00015 6099457433177401148/00006 6099457433177401148/00013 6099457433177401148/00022 6099457433177401148/00001 6099457433177401148/00023 6099457433177401148/00012 6099457433177401148/00021 6099457433177401148/00014 6099457433177401148/00020 6099457433177401148/00016 6099457433177401148/00019 6099457433177401148/00008 6099457433177401148/00025 6099457433177401148/00004 6169213715018000242/00003 6169213715018000242/00032 6169213715018000242/00010 6169213715018000242/00022 6169213715018000242/00001 6169213715018000242/00016 6169213715018000242/00011 6169213715018000242/00027 6169213715018000242/00008 6169213715018000242/00007 6169213715018000242/00028 5957021285255859258/00003 5957021285255859258/00002 5957021285255859258/00005 6214799209407562761/00060 6214799209407562761/00029 6214799209407562761/00003 6214799209407562761/00006 6214799209407562761/00046 6214799209407562761/00032 6214799209407562761/00033 6214799209407562761/00024 6214799209407562761/00053 6214799209407562761/00030 6214799209407562761/00058 6214799209407562761/00031 6214799209407562761/00013 6214799209407562761/00044 6214799209407562761/00050 6214799209407562761/00045 6214799209407562761/00049 6214799209407562761/00023 6214799209407562761/00038 6214799209407562761/00018 6214799209407562761/00042 6214799209407562761/00061 6214799209407562761/00014 6214799209407562761/00037 6214799209407562761/00047 6214799209407562761/00039 6214799209407562761/00020 6214799209407562761/00035 6214799209407562761/00055 6214799209407562761/00016 6214799209407562761/00059 6214799209407562761/00019 6214799209407562761/00002 6214799209407562761/00008 6214799209407562761/00007 6214799209407562761/00025 6214799209407562761/00043 6214799209407562761/00004 6214799209407562761/00028 6363956122153173818/00006 6363956122153173818/00036 6363956122153173818/00014 6363956122153173818/00007 6080400663284386835/00003 6080400663284386835/00024 6080400663284386835/00030 6080400663284386835/00022 6080400663284386835/00026 6080400663284386835/00012 6080400663284386835/00021 6080400663284386835/00020 6080400663284386835/00017 6080400663284386835/00016 6080400663284386835/00027 6080400663284386835/00002 6080400663284386835/00005 5928348513084420306/00015 5928348513084420306/00006 5928348513084420306/00010 5928348513084420306/00018 5928348513084420306/00012 5928348513084420306/00014 5928348513084420306/00016 5928348513084420306/00002 5928348513084420306/00008 5928348513084420306/00005 5928348513084420306/00004 5573127229914595077/00006 5573127229914595077/00009 5573127229914595077/00001 5573127229914595077/00021 5573127229914595077/00014 5573127229914595077/00016 5573127229914595077/00008 5573127229914595077/00007 5573127229914595077/00005 5573127229914595077/00004 5968008241095755907/00022 5968008241095755907/00001 5968008241095755907/00018 5968008241095755907/00021 5968008241095755907/00014 5968008241095755907/00017 5968008241095755907/00019 5968008241095755907/00011 5968008241095755907/00004 5960292761845220619/00015 5960292761845220619/00006 5960292761845220619/00009 5960292761845220619/00022 5960292761845220619/00001 5960292761845220619/00023 5960292761845220619/00018 5960292761845220619/00012 5960292761845220619/00021 5960292761845220619/00014 5960292761845220619/00020 5960292761845220619/00017 5960292761845220619/00019 5960292761845220619/00011 5960292761845220619/00002 5960292761845220619/00008 5960292761845220619/00025 5960292761845220619/00005 5960292761845220619/00004 6103152823038244797/00029 6103152823038244797/00015 6103152823038244797/00003 6103152823038244797/00010 6103152823038244797/00033 6103152823038244797/00024 6103152823038244797/00013 6103152823038244797/00022 6103152823038244797/00026 6103152823038244797/00044 6103152823038244797/00001 6103152823038244797/00023 6103152823038244797/00038 6103152823038244797/00018 6103152823038244797/00042 6103152823038244797/00012 6103152823038244797/00021 6103152823038244797/00037 6103152823038244797/00039 6103152823038244797/00020 6103152823038244797/00035 6103152823038244797/00017 6103152823038244797/00016 6103152823038244797/00011 6103152823038244797/00027 6103152823038244797/00007 6103152823038244797/00043 6103152823038244797/00005 6103152823038244797/00004 6103152823038244797/00028 6080791075811593672/00009 6080791075811593672/00010 6080791075811593672/00001 6080791075811593672/00014 6080791075811593672/00017 6080791075811593672/00016 6080791075811593672/00011 6080791075811593672/00002 6080791075811593672/00004 6260887214970692261/00003 6260887214970692261/00001 6260887214970692261/00002 6260887214970692261/00007 6387755824430487717/00016 6371114973642156346/00024 6371114973642156346/00018 6371114973642156346/00014 6371114973642156346/00017 6371114973642156346/00019 6371114973642156346/00011 6120566767939794133/00032 6120566767939794133/00009 6120566767939794133/00010 6120566767939794133/00030 6120566767939794133/00022 6120566767939794133/00050 6120566767939794133/00036 6120566767939794133/00045 6120566767939794133/00041 6120566767939794133/00021 6120566767939794133/00037 6120566767939794133/00039 6120566767939794133/00035 6120566767939794133/00052 6120566767939794133/00027 6120566767939794133/00008 6120566767939794133/00040 6209692922789344072/00002 6083782950029991723/00003 6083782950029991723/00024 6083782950029991723/00022 6083782950029991723/00023 6083782950029991723/00018 6083782950029991723/00021 6083782950029991723/00014 6083782950029991723/00020 6083782950029991723/00016 6083782950029991723/00011 6083782950029991723/00002 6083782950029991723/00025 6122487906811367588/00015 6122487906811367588/00003 6122487906811367588/00010 6122487906811367588/00012 6122487906811367588/00002 6122487906811367588/00007 6122487906811367588/00005 6122487906811367588/00004 6150593743299597894/00006 6150593743299597894/00009 6150593743299597894/00022 6150593743299597894/00023 6150593743299597894/00018 6150593743299597894/00021 6150593743299597894/00017 6150593743299597894/00019 6150593743299597894/00002 6150593743299597894/00008 6150593743299597894/00004 5962121129423061987/00029 5962121129423061987/00006 5962121129423061987/00046 5962121129423061987/00032 5962121129423061987/00009 5962121129423061987/00010 5962121129423061987/00033 5962121129423061987/00031 5962121129423061987/00013 5962121129423061987/00044 5962121129423061987/00050 5962121129423061987/00063 5962121129423061987/00001 5962121129423061987/00066 5962121129423061987/00049 5962121129423061987/00018 5962121129423061987/00042 5962121129423061987/00012 5962121129423061987/00041 5962121129423061987/00065 5962121129423061987/00037 5962121129423061987/00039 5962121129423061987/00035 5962121129423061987/00051 5962121129423061987/00011 5962121129423061987/00027 5962121129423061987/00034 5962121129423061987/00008 5962121129423061987/00040 5962121129423061987/00007 5962121129423061987/00043 5962121129423061987/00005 6127949816721699347/00006 6127949816721699347/00009 6127949816721699347/00010 6127949816721699347/00001 6127949816721699347/00014 6127949816721699347/00008 6127949816721699347/00007 6127949816721699347/00005 5859657812629310721/00015 5859657812629310721/00003 5859657812629310721/00010 5859657812629310721/00005 6082333398567592069/00003 6082333398567592069/00006 6082333398567592069/00009 6082333398567592069/00010 6082333398567592069/00013 6082333398567592069/00001 6082333398567592069/00012 6082333398567592069/00002 6082333398567592069/00008 6082333398567592069/00007 6082333398567592069/00005 6082333398567592069/00004 5946149005042711171/00015 5946149005042711171/00003 5946149005042711171/00009 5946149005042711171/00013 5946149005042711171/00001 5946149005042711171/00014 5946149005042711171/00020 5946149005042711171/00017 5946149005042711171/00016 5946149005042711171/00011 5946149005042711171/00002 5946149005042711171/00008 5946149005042711171/00005 6327295999301499598/00003 6327295999301499598/00010 6327295999301499598/00001 6327295999301499598/00008 6327295999301499598/00007 6327295999301499598/00005 6327295999301499598/00004 6326461057659161695/00015 6326461057659161695/00009 6326461057659161695/00010 6326461057659161695/00013 6326461057659161695/00018 6326461057659161695/00016 6326461057659161695/00019 6326461057659161695/00011 6326461057659161695/00008 6326461057659161695/00005 6343979370266033402/00001 6235653423113302392/00029 6235653423113302392/00015 6235653423113302392/00003 6235653423113302392/00032 6235653423113302392/00009 6235653423113302392/00010 6235653423113302392/00033 6235653423113302392/00030 6235653423113302392/00026 6235653423113302392/00001 6235653423113302392/00023 6235653423113302392/00018 6235653423113302392/00021 6235653423113302392/00014 6235653423113302392/00017 6235653423113302392/00016 6235653423113302392/00011 6235653423113302392/00027 6235653423113302392/00002 6235653423113302392/00008 6235653423113302392/00025 6235653423113302392/00005 6235653423113302392/00028 5937575391326426866/00015 5937575391326426866/00012 5937575391326426866/00014 5937575391326426866/00017 6127207646372950530/00005 6127207646372950530/00004 5989565970444497758/00009 6040060612453378942/00029 6040060612453378942/00015 6040060612453378942/00003 6040060612453378942/00006 6040060612453378942/00009 6040060612453378942/00010 6040060612453378942/00033 6040060612453378942/00024 6040060612453378942/00053 6040060612453378942/00050 6040060612453378942/00001 6040060612453378942/00038 6040060612453378942/00042 6040060612453378942/00012 6040060612453378942/00041 6040060612453378942/00021 6040060612453378942/00014 6040060612453378942/00037 6040060612453378942/00039 6040060612453378942/00020 6040060612453378942/00035 6040060612453378942/00051 6040060612453378942/00017 6040060612453378942/00052 6040060612453378942/00027 6040060612453378942/00034 6040060612453378942/00002 6040060612453378942/00008 6040060612453378942/00040 6040060612453378942/00007 6040060612453378942/00025 6040060612453378942/00043 6040060612453378942/00005 6040060612453378942/00004 5667854451614786552/00006 5667854451614786552/00010 5667854451614786552/00012 5667854451614786552/00014 5667854451614786552/00008 6060864575041829667/00015 6060864575041829667/00006 6060864575041829667/00009 6060864575041829667/00010 6060864575041829667/00013 6060864575041829667/00022 6060864575041829667/00001 6060864575041829667/00023 6060864575041829667/00012 6060864575041829667/00014 6060864575041829667/00020 6060864575041829667/00017 6060864575041829667/00016 6060864575041829667/00002 6060864575041829667/00004 6240121907087979027/00029 6240121907087979027/00006 6240121907087979027/00032 6240121907087979027/00070 6240121907087979027/00009 6240121907087979027/00053 6240121907087979027/00030 6240121907087979027/00031 6240121907087979027/00069 6240121907087979027/00026 6240121907087979027/00036 6240121907087979027/00063 6240121907087979027/00066 6240121907087979027/00042 6240121907087979027/00061 6240121907087979027/00037 6240121907087979027/00047 6240121907087979027/00039 6240121907087979027/00020 6240121907087979027/00035 6240121907087979027/00076 6240121907087979027/00052 6240121907087979027/00016 6240121907087979027/00067 6240121907087979027/00040 6240121907087979027/00007 6240121907087979027/00025 6240121907087979027/00054 6240121907087979027/00074 6240121907087979027/00004 5857069235840075244/00003 5857069235840075244/00006 5857069235840075244/00010 5857069235840075244/00033 5857069235840075244/00024 5857069235840075244/00030 5857069235840075244/00031 5857069235840075244/00013 5857069235840075244/00022 5857069235840075244/00044 5857069235840075244/00036 5857069235840075244/00001 5857069235840075244/00023 5857069235840075244/00048 5857069235840075244/00012 5857069235840075244/00021 5857069235840075244/00014 5857069235840075244/00047 5857069235840075244/00039 5857069235840075244/00016 5857069235840075244/00011 5857069235840075244/00027 5857069235840075244/00034 5857069235840075244/00002 5857069235840075244/00040 5857069235840075244/00007 5857069235840075244/00025 5857069235840075244/00005 5857069235840075244/00004 5857069235840075244/00028 5545806083951284024/00003 5545806083951284024/00006 5545806083951284024/00001 5545806083951284024/00008 5545806083951284024/00007 6117640606721090576/00001 6117640606721090576/00002 6214130482999572395/00006 6214130482999572395/00001 6214130482999572395/00008 6214130482999572395/00007 6083871855853018932/00006 6127918892957162648/00015 6127918892957162648/00006 6127918892957162648/00009 6127918892957162648/00024 6127918892957162648/00013 6127918892957162648/00022 6127918892957162648/00001 6127918892957162648/00023 6127918892957162648/00018 6127918892957162648/00012 6127918892957162648/00021 6127918892957162648/00020 6127918892957162648/00017 6127918892957162648/00016 6127918892957162648/00011 6127918892957162648/00027 6127918892957162648/00002 6127918892957162648/00008 6136120133008790099/00006 6136120133008790099/00014 6136120133008790099/00020 6235645692172146947/00015 6235645692172146947/00006 6235645692172146947/00009 6235645692172146947/00010 6235645692172146947/00024 6235645692172146947/00013 6235645692172146947/00001 6235645692172146947/00023 6235645692172146947/00018 6235645692172146947/00020 6235645692172146947/00017 6235645692172146947/00016 6235645692172146947/00019 6235645692172146947/00011 6235645692172146947/00002 6235645692172146947/00008 6235645692172146947/00005 6364327207327548190/00036 6364327207327548190/00025 5857420993661617672/00002 6251239000567432131/00060 6251239000567432131/00029 6251239000567432131/00015 6251239000567432131/00006 6251239000567432131/00046 6251239000567432131/00056 6251239000567432131/00073 6251239000567432131/00010 6251239000567432131/00071 6251239000567432131/00062 6251239000567432131/00031 6251239000567432131/00022 6251239000567432131/00026 6251239000567432131/00044 6251239000567432131/00050 6251239000567432131/00063 6251239000567432131/00001 6251239000567432131/00045 6251239000567432131/00066 6251239000567432131/00064 6251239000567432131/00023 6251239000567432131/00038 6251239000567432131/00018 6251239000567432131/00042 6251239000567432131/00041 6251239000567432131/00065 6251239000567432131/00061 6251239000567432131/00021 6251239000567432131/00014 6251239000567432131/00047 6251239000567432131/00020 6251239000567432131/00051 6251239000567432131/00017 6251239000567432131/00055 6251239000567432131/00027 6251239000567432131/00067 6251239000567432131/00034 6251239000567432131/00008 6251239000567432131/00068 6251239000567432131/00043 6251239000567432131/00005 5962833664497533869/00015 5962833664497533869/00009 5962833664497533869/00010 5962833664497533869/00013 5962833664497533869/00008 5962833664497533869/00007 5962833664497533869/00004 5856347681334349385/00060 5856347681334349385/00003 5856347681334349385/00046 5856347681334349385/00058 5856347681334349385/00022 5856347681334349385/00050 5856347681334349385/00001 5856347681334349385/00045 5856347681334349385/00049 5856347681334349385/00038 5856347681334349385/00048 5856347681334349385/00018 5856347681334349385/00042 5856347681334349385/00047 5856347681334349385/00039 5856347681334349385/00020 5856347681334349385/00052 5856347681334349385/00019 5856347681334349385/00004 5867119459312658511/00003 5867119459312658511/00010 5867119459312658511/00001 5867119459312658511/00002 5867119459312658511/00008 5867119459312658511/00007 5867119459312658511/00005 6075336896842425515/00003 6075336896842425515/00026 6075336896842425515/00018 6075336896842425515/00014 6075336896842425515/00020 6075336896842425515/00017 6075336896842425515/00019 6075336896842425515/00027 6075336896842425515/00025 6075336896842425515/00028 6130176327767946740/00006 6130176327767946740/00010 6130176327767946740/00001 6130176327767946740/00018 6130176327767946740/00012 6130176327767946740/00014 6130176327767946740/00020 6130176327767946740/00016 6130176327767946740/00019 6130176327767946740/00011 6130176327767946740/00002 6130176327767946740/00005 5938754359849182093/00002 5938754359849182093/00005 5938754359849182093/00004 6074876905845023876/00015 6074876905845023876/00003 6074876905845023876/00009 6074876905845023876/00024 6074876905845023876/00013 6074876905845023876/00001 6074876905845023876/00018 6074876905845023876/00021 6074876905845023876/00020 6074876905845023876/00017 6074876905845023876/00011 6074876905845023876/00002 6074876905845023876/00008 6074876905845023876/00005 5559520773520854086/00015 5559520773520854086/00003 5559520773520854086/00013 5559520773520854086/00001 5559520773520854086/00014 5559520773520854086/00002 5559520773520854086/00008 5559520773520854086/00007 5559520773520854086/00005 5559520773520854086/00004 6114266050916557410/00015 6114266050916557410/00006 6114266050916557410/00001 6114266050916557410/00021 6114266050916557410/00011 6150199465301890904/00015 6150199465301890904/00003 6150199465301890904/00006 6150199465301890904/00032 6150199465301890904/00009 6150199465301890904/00010 6150199465301890904/00033 6150199465301890904/00024 6150199465301890904/00030 6150199465301890904/00013 6150199465301890904/00026 6150199465301890904/00044 6150199465301890904/00045 6150199465301890904/00023 6150199465301890904/00018 6150199465301890904/00042 6150199465301890904/00041 6150199465301890904/00014 6150199465301890904/00037 6150199465301890904/00035 6150199465301890904/00016 6150199465301890904/00011 6150199465301890904/00027 6150199465301890904/00034 6150199465301890904/00002 6150199465301890904/00008 6150199465301890904/00007 6150199465301890904/00004 5987428365221274460/00002 6187041265270187646/00046 6187041265270187646/00030 6187041265270187646/00026 6187041265270187646/00036 6187041265270187646/00018 6187041265270187646/00041 6187041265270187646/00014 6187041265270187646/00037 6187041265270187646/00035 6187041265270187646/00017 6187041265270187646/00019 6187041265270187646/00002 6187041265270187646/00008 6187041265270187646/00040 6187041265270187646/00005 6009542722331710755/00003 6009542722331710755/00006 6009542722331710755/00009 6009542722331710755/00010 6009542722331710755/00024 6009542722331710755/00022 6009542722331710755/00001 6009542722331710755/00023 6009542722331710755/00020 6009542722331710755/00016 6009542722331710755/00011 6009542722331710755/00002 6009542722331710755/00007 6009542722331710755/00025 6009542722331710755/00004 5996643647051648786/00029 5996643647051648786/00015 5996643647051648786/00006 5996643647051648786/00046 5996643647051648786/00009 5996643647051648786/00010 5996643647051648786/00024 5996643647051648786/00030 5996643647051648786/00031 5996643647051648786/00013 5996643647051648786/00026 5996643647051648786/00044 5996643647051648786/00036 5996643647051648786/00001 5996643647051648786/00045 5996643647051648786/00049 5996643647051648786/00023 5996643647051648786/00048 5996643647051648786/00018 5996643647051648786/00012 5996643647051648786/00021 5996643647051648786/00014 5996643647051648786/00037 5996643647051648786/00039 5996643647051648786/00020 5996643647051648786/00017 5996643647051648786/00016 5996643647051648786/00019 5996643647051648786/00027 5996643647051648786/00034 5996643647051648786/00002 5996643647051648786/00008 5996643647051648786/00040 5996643647051648786/00007 5996643647051648786/00025 5996643647051648786/00004 6127980740486228454/00029 6127980740486228454/00010 6127980740486228454/00024 6127980740486228454/00031 6127980740486228454/00022 6127980740486228454/00018 6127980740486228454/00021 6127980740486228454/00020 6127980740486228454/00035 6127980740486228454/00016 6127980740486228454/00019 6127980740486228454/00027 6127980740486228454/00034 6127980740486228454/00025 6127980740486228454/00028 6114258319975424609/00015 6114258319975424609/00006 6114258319975424609/00009 6114258319975424609/00033 6114258319975424609/00036 6114258319975424609/00014 6114258319975424609/00037 6114258319975424609/00035 6114258319975424609/00017 6114258319975424609/00034 6114258319975424609/00008 6114258319975424609/00007 6114258319975424609/00004 5721221138254514985/00015 5721221138254514985/00006 5721221138254514985/00009 5721221138254514985/00001 5721221138254514985/00012 5721221138254514985/00002 5721221138254514985/00007 5721221138254514985/00005 5969337962970535534/00060 5969337962970535534/00029 5969337962970535534/00015 5969337962970535534/00098 5969337962970535534/00032 5969337962970535534/00070 5969337962970535534/00090 5969337962970535534/00073 5969337962970535534/00010 5969337962970535534/00057 5969337962970535534/00024 5969337962970535534/00053 5969337962970535534/00078 5969337962970535534/00071 5969337962970535534/00058 5969337962970535534/00062 5969337962970535534/00031 5969337962970535534/00086 5969337962970535534/00013 5969337962970535534/00069 5969337962970535534/00096 5969337962970535534/00099 5969337962970535534/00077 5969337962970535534/00036 5969337962970535534/00063 5969337962970535534/00001 5969337962970535534/00064 5969337962970535534/00049 5969337962970535534/00072 5969337962970535534/00048 5969337962970535534/00042 5969337962970535534/00012 5969337962970535534/00041 5969337962970535534/00061 5969337962970535534/00021 5969337962970535534/00075 5969337962970535534/00047 5969337962970535534/00039 5969337962970535534/00020 5969337962970535534/00035 5969337962970535534/00051 5969337962970535534/00017 5969337962970535534/00076 5969337962970535534/00052 5969337962970535534/00055 5969337962970535534/00019 5969337962970535534/00027 5969337962970535534/00067 5969337962970535534/00034 5969337962970535534/00081 5969337962970535534/00100 5969337962970535534/00089 5969337962970535534/00008 5969337962970535534/00007 5969337962970535534/00025 5969337962970535534/00043 5969337962970535534/00005 5969337962970535534/00074 5969337962970535534/00004 6283492486842988448/00003 6283492486842988448/00006 6283492486842988448/00009 6283492486842988448/00013 6283492486842988448/00012 6283492486842988448/00014 6283492486842988448/00002 6283492486842988448/00008 6137648282372774883/00003 6137648282372774883/00005 5711561327309093749/00003 5711561327309093749/00006 5711561327309093749/00010 5711561327309093749/00013 5711561327309093749/00018 5711561327309093749/00020 5711561327309093749/00019 5711561327309093749/00011 5711561327309093749/00007 5711561327309093749/00005 6158807868253208156/00015 6158807868253208156/00003 6158807868253208156/00006 6158807868253208156/00032 6158807868253208156/00010 6158807868253208156/00033 6158807868253208156/00031 6158807868253208156/00013 6158807868253208156/00022 6158807868253208156/00026 6158807868253208156/00036 6158807868253208156/00001 6158807868253208156/00018 6158807868253208156/00012 6158807868253208156/00020 6158807868253208156/00035 6158807868253208156/00017 6158807868253208156/00019 6158807868253208156/00011 6158807868253208156/00027 6158807868253208156/00034 6158807868253208156/00002 6158807868253208156/00008 6158807868253208156/00007 6158807868253208156/00025 6158807868253208156/00004 6158807868253208156/00028 6389599653890730492/00015 6389599653890730492/00030 6389599653890730492/00036 6389599653890730492/00020 6389599653890730492/00051 6389599653890730492/00017 6389599653890730492/00034 5560893015571926219/00006 5560893015571926219/00046 5560893015571926219/00009 5560893015571926219/00024 5560893015571926219/00030 5560893015571926219/00022 5560893015571926219/00026 5560893015571926219/00044 5560893015571926219/00050 5560893015571926219/00045 5560893015571926219/00049 5560893015571926219/00023 5560893015571926219/00042 5560893015571926219/00041 5560893015571926219/00047 5560893015571926219/00039 5560893015571926219/00020 5560893015571926219/00017 5560893015571926219/00034 5560893015571926219/00002 5560893015571926219/00008 5560893015571926219/00054 5560893015571926219/00004 5560893015571926219/00028 6190953121483387036/00015 6190953121483387036/00006 6190953121483387036/00009 6190953121483387036/00010 6190953121483387036/00024 6190953121483387036/00001 6190953121483387036/00018 6190953121483387036/00014 6190953121483387036/00020 6190953121483387036/00007 6190953121483387036/00005 6190953121483387036/00004 6101699406105268926/00009 6101699406105268926/00001 6101699406105268926/00002 6101699406105268926/00008 6101699406105268926/00004 6349559821273762790/00010 6349559821273762790/00002 5548403680171906770/00006 5548403680171906770/00009 5548403680171906770/00010 5548403680171906770/00001 5548403680171906770/00011 5548403680171906770/00008 6116848185254915434/00009 6116848185254915434/00007 6116848185254915434/00005 5967750543057995893/00001 5967750543057995893/00004 5958492741051464403/00029 5958492741051464403/00003 5958492741051464403/00006 5958492741051464403/00098 5958492741051464403/00090 5958492741051464403/00010 5958492741051464403/00057 5958492741051464403/00024 5958492741051464403/00053 5958492741051464403/00071 5958492741051464403/00022 5958492741051464403/00096 5958492741051464403/00094 5958492741051464403/00026 5958492741051464403/00044 5958492741051464403/00099 5958492741051464403/00077 5958492741051464403/00093 5958492741051464403/00103 5958492741051464403/00050 5958492741051464403/00105 5958492741051464403/00045 5958492741051464403/00066 5958492741051464403/00064 5958492741051464403/00072 5958492741051464403/00038 5958492741051464403/00048 5958492741051464403/00108 5958492741051464403/00018 5958492741051464403/00085 5958492741051464403/00042 5958492741051464403/00012 5958492741051464403/00041 5958492741051464403/00065 5958492741051464403/00083 5958492741051464403/00075 5958492741051464403/00104 5958492741051464403/00014 5958492741051464403/00101 5958492741051464403/00039 5958492741051464403/00035 5958492741051464403/00080 5958492741051464403/00052 5958492741051464403/00091 5958492741051464403/00055 5958492741051464403/00095 5958492741051464403/00011 5958492741051464403/00027 5958492741051464403/00081 5958492741051464403/00100 5958492741051464403/00008 5958492741051464403/00040 5958492741051464403/00007 5958492741051464403/00102 5958492741051464403/00097 5958492741051464403/00054 5958492741051464403/00004 5958492741051464403/00028 6391420290527506887/00024 6391420290527506887/00036 6391420290527506887/00001 6391420290527506887/00023 5985422185997376899/00029 5985422185997376899/00006 5985422185997376899/00024 5985422185997376899/00030 5985422185997376899/00022 5985422185997376899/00001 5985422185997376899/00023 5985422185997376899/00014 5985422185997376899/00016 5985422185997376899/00027 5985422185997376899/00007 5985422185997376899/00025 5985422185997376899/00004 5985422185997376899/00028 6066059767483050452/00015 6066059767483050452/00003 6066059767483050452/00013 6066059767483050452/00001 6066059767483050452/00018 6066059767483050452/00012 6066059767483050452/00020 6066059767483050452/00017 6066059767483050452/00019 6066059767483050452/00002 6066059767483050452/00008 6066059767483050452/00007 6066059767483050452/00005 6133233914985904017/00005 6133233914985904017/00004 6233426912067055834/00003 6233426912067055834/00005 6287748369936597196/00125 6287748369936597196/00140 6287748369936597196/00098 6287748369936597196/00046 6287748369936597196/00107 6287748369936597196/00056 6287748369936597196/00128 6287748369936597196/00070 6287748369936597196/00009 6287748369936597196/00090 6287748369936597196/00112 6287748369936597196/00010 6287748369936597196/00033 6287748369936597196/00123 6287748369936597196/00024 6287748369936597196/00141 6287748369936597196/00053 6287748369936597196/00116 6287748369936597196/00078 6287748369936597196/00071 6287748369936597196/00121 6287748369936597196/00062 6287748369936597196/00031 6287748369936597196/00086 6287748369936597196/00013 6287748369936597196/00137 6287748369936597196/00022 6287748369936597196/00094 6287748369936597196/00026 6287748369936597196/00044 6287748369936597196/00130 6287748369936597196/00099 6287748369936597196/00077 6287748369936597196/00093 6287748369936597196/00120 6287748369936597196/00103 6287748369936597196/00050 6287748369936597196/00110 6287748369936597196/00001 6287748369936597196/00045 6287748369936597196/00066 6287748369936597196/00064 6287748369936597196/00136 6287748369936597196/00049 6287748369936597196/00038 6287748369936597196/00088 6287748369936597196/00048 6287748369936597196/00134 6287748369936597196/00108 6287748369936597196/00085 6287748369936597196/00135 6287748369936597196/00012 6287748369936597196/00065 6287748369936597196/00129 6287748369936597196/00075 6287748369936597196/00037 6287748369936597196/00127 6287748369936597196/00101 6287748369936597196/00047 6287748369936597196/00039 6287748369936597196/00124 6287748369936597196/00020 6287748369936597196/00035 6287748369936597196/00017 6287748369936597196/00076 6287748369936597196/00091 6287748369936597196/00138 6287748369936597196/00111 6287748369936597196/00059 6287748369936597196/00019 6287748369936597196/00011 6287748369936597196/00119 6287748369936597196/00067 6287748369936597196/00034 6287748369936597196/00082 6287748369936597196/00100 6287748369936597196/00133 6287748369936597196/00106 6287748369936597196/00089 6287748369936597196/00008 6287748369936597196/00087 6287748369936597196/00131 6287748369936597196/00040 6287748369936597196/00007 6287748369936597196/00102 6287748369936597196/00097 6287748369936597196/00025 6287748369936597196/00139 6287748369936597196/00043 6287748369936597196/00004 5906415833090741740/00003 5906415833090741740/00006 5906415833090741740/00009 5906415833090741740/00010 5906415833090741740/00031 5906415833090741740/00022 5906415833090741740/00026 5906415833090741740/00036 5906415833090741740/00023 5906415833090741740/00038 5906415833090741740/00021 5906415833090741740/00014 5906415833090741740/00037 5906415833090741740/00020 5906415833090741740/00017 5906415833090741740/00011 5906415833090741740/00027 5906415833090741740/00002 5906415833090741740/00008 5906415833090741740/00005 5906415833090741740/00004 5906415833090741740/00028 6076450152365488270/00032 6076450152365488270/00018 6076450152365488270/00021 6076450152365488270/00011 5973767792240336115/00003 5973767792240336115/00010 5973767792240336115/00001 5973767792240336115/00002 5973767792240336115/00005 5991069638494833527/00006 5991069638494833527/00009 5991069638494833527/00022 5991069638494833527/00001 5991069638494833527/00023 5991069638494833527/00018 5991069638494833527/00012 5991069638494833527/00021 5991069638494833527/00020 5991069638494833527/00017 5991069638494833527/00019 5991069638494833527/00011 5991069638494833527/00007 5991069638494833527/00025 5991069638494833527/00005 5991069638494833527/00004 6117582624662531516/00013 6117582624662531516/00007 5944208538818445234/00003 5944208538818445234/00002 5944208538818445234/00005 5944208538818445234/00004 5931354560694962822/00003 5931354560694962822/00006 5931354560694962822/00001 5931354560694962822/00002 5931354560694962822/00008 5931354560694962822/00007 5931354560694962822/00004 6328393792942295524/00003 6328393792942295524/00006 6328393792942295524/00010 6328393792942295524/00001 6328393792942295524/00002 6328393792942295524/00005 6328393792942295524/00004 6114985028441907894/00013 6114985028441907894/00020 6114985028441907894/00016 6114985028441907894/00005 5926864172386922578/00003 5926864172386922578/00009 5926864172386922578/00010 5926864172386922578/00013 5926864172386922578/00022 5926864172386922578/00026 5926864172386922578/00023 5926864172386922578/00018 5926864172386922578/00020 5926864172386922578/00017 5926864172386922578/00016 5926864172386922578/00002 5926864172386922578/00008 5926864172386922578/00025 5926864172386922578/00005 5882677978342407852/00002 5955801085047056676/00015 5955801085047056676/00031 5955801085047056676/00022 5955801085047056676/00001 5955801085047056676/00018 5955801085047056676/00017 5955801085047056676/00019 5955801085047056676/00025 5870474687764296863/00006 5870474687764296863/00009 5870474687764296863/00010 5870474687764296863/00001 5870474687764296863/00008 5870474687764296863/00007 5941730772185313950/00029 5941730772185313950/00046 5941730772185313950/00032 5941730772185313950/00009 5941730772185313950/00010 5941730772185313950/00013 5941730772185313950/00022 5941730772185313950/00036 5941730772185313950/00045 5941730772185313950/00038 5941730772185313950/00048 5941730772185313950/00018 5941730772185313950/00042 5941730772185313950/00014 5941730772185313950/00020 5941730772185313950/00017 5941730772185313950/00016 5941730772185313950/00019 5941730772185313950/00040 5983191809480500226/00060 5983191809480500226/00029 5983191809480500226/00003 5983191809480500226/00006 5983191809480500226/00046 5983191809480500226/00032 5983191809480500226/00070 5983191809480500226/00009 5983191809480500226/00073 5983191809480500226/00057 5983191809480500226/00024 5983191809480500226/00053 5983191809480500226/00071 5983191809480500226/00031 5983191809480500226/00013 5983191809480500226/00026 5983191809480500226/00044 5983191809480500226/00050 5983191809480500226/00036 5983191809480500226/00045 5983191809480500226/00066 5983191809480500226/00064 5983191809480500226/00072 5983191809480500226/00038 5983191809480500226/00048 5983191809480500226/00018 5983191809480500226/00042 5983191809480500226/00065 5983191809480500226/00061 5983191809480500226/00014 5983191809480500226/00039 5983191809480500226/00020 5983191809480500226/00035 5983191809480500226/00051 5983191809480500226/00017 5983191809480500226/00052 5983191809480500226/00019 5983191809480500226/00011 5983191809480500226/00002 5983191809480500226/00040 5983191809480500226/00054 5983191809480500226/00043 5983191809480500226/00005 5983191809480500226/00004 5983191809480500226/00028 6061193140039888879/00015 6061193140039888879/00003 6061193140039888879/00009 6061193140039888879/00010 6061193140039888879/00024 6061193140039888879/00022 6061193140039888879/00026 6061193140039888879/00018 6061193140039888879/00012 6061193140039888879/00021 6061193140039888879/00014 6061193140039888879/00020 6061193140039888879/00019 6061193140039888879/00011 6061193140039888879/00027 6061193140039888879/00008 6061193140039888879/00025 6061193140039888879/00005 6061193140039888879/00004 6058985956346559235/00029 6058985956346559235/00003 6058985956346559235/00032 6058985956346559235/00010 6058985956346559235/00033 6058985956346559235/00024 6058985956346559235/00030 6058985956346559235/00022 6058985956346559235/00026 6058985956346559235/00044 6058985956346559235/00001 6058985956346559235/00042 6058985956346559235/00012 6058985956346559235/00041 6058985956346559235/00021 6058985956346559235/00037 6058985956346559235/00035 6058985956346559235/00019 6058985956346559235/00027 6058985956346559235/00034 6058985956346559235/00002 6058985956346559235/00008 6058985956346559235/00007 6058985956346559235/00043 6058985956346559235/00005 6058985956346559235/00004 6058985956346559235/00028 5986284185933619960/00029 5986284185933619960/00003 5986284185933619960/00006 5986284185933619960/00032 5986284185933619960/00033 5986284185933619960/00024 5986284185933619960/00030 5986284185933619960/00031 5986284185933619960/00026 5986284185933619960/00001 5986284185933619960/00023 5986284185933619960/00018 5986284185933619960/00014 5986284185933619960/00017 5986284185933619960/00016 5986284185933619960/00019 5986284185933619960/00011 5986284185933619960/00027 5986284185933619960/00008 5986284185933619960/00007 5986284185933619960/00005 5986284185933619960/00004 6105363872202132841/00015 6105363872202132841/00006 6105363872202132841/00009 6105363872202132841/00010 6105363872202132841/00023 6105363872202132841/00018 6105363872202132841/00014 6105363872202132841/00027 6105363872202132841/00002 6105363872202132841/00008 6105363872202132841/00025 6323198600501050831/00029 6323198600501050831/00003 6323198600501050831/00006 6323198600501050831/00032 6323198600501050831/00033 6323198600501050831/00024 6323198600501050831/00030 6323198600501050831/00013 6323198600501050831/00022 6323198600501050831/00023 6323198600501050831/00018 6323198600501050831/00037 6323198600501050831/00020 6323198600501050831/00017 6323198600501050831/00016 6323198600501050831/00019 6323198600501050831/00027 6323198600501050831/00008 6323198600501050831/00007 6323198600501050831/00025 6211436250014789365/00003 6211436250014789365/00002 6211436250014789365/00005 6375480378401815497/00024 6375480378401815497/00001 6375480378401815497/00011 6375480378401815497/00004 6210299801668267679/00006 6210299801668267679/00010 6210299801668267679/00013 6210299801668267679/00017 6210299801668267679/00002 6210299801668267679/00007 6210299801668267679/00005 6210299801668267679/00004 5950236095921556554/00015 5950236095921556554/00003 5950236095921556554/00006 5950236095921556554/00009 5950236095921556554/00010 5950236095921556554/00001 5950236095921556554/00007 5950236095921556554/00004 5677123850033024902/00015 5677123850033024902/00003 5677123850033024902/00006 5677123850033024902/00013 5677123850033024902/00022 5677123850033024902/00001 5677123850033024902/00018 5677123850033024902/00021 5677123850033024902/00014 5677123850033024902/00020 5677123850033024902/00016 5677123850033024902/00019 5677123850033024902/00002 5677123850033024902/00008 5677123850033024902/00007 5677123850033024902/00005 5985526553702608998/00003 5985526553702608998/00006 5985526553702608998/00010 5985526553702608998/00024 5985526553702608998/00013 5985526553702608998/00022 5985526553702608998/00023 5985526553702608998/00018 5985526553702608998/00012 5985526553702608998/00020 5985526553702608998/00017 5985526553702608998/00016 5985526553702608998/00019 5985526553702608998/00025 5985526553702608998/00005 6079063210468441197/00015 6079063210468441197/00003 6079063210468441197/00006 6079063210468441197/00009 6079063210468441197/00010 6079063210468441197/00001 6079063210468441197/00014 6079063210468441197/00016 6079063210468441197/00011 6079063210468441197/00002 6079063210468441197/00005 5574708207376252821/00006 5574708207376252821/00013 5574708207376252821/00001 5574708207376252821/00014 5574708207376252821/00016 5574708207376252821/00011 5574708207376252821/00007 5952573417124109468/00015 5952573417124109468/00003 5952573417124109468/00006 5952573417124109468/00009 5952573417124109468/00013 5952573417124109468/00001 5952573417124109468/00018 5952573417124109468/00012 5952573417124109468/00021 5952573417124109468/00014 5952573417124109468/00020 5952573417124109468/00019 5952573417124109468/00011 5952573417124109468/00002 5952573417124109468/00008 5952573417124109468/00007 5952573417124109468/00005 5952573417124109468/00004 6236724158460105311/00029 6236724158460105311/00032 6236724158460105311/00009 6236724158460105311/00010 6236724158460105311/00024 6236724158460105311/00031 6236724158460105311/00013 6236724158460105311/00001 6236724158460105311/00023 6236724158460105311/00018 6236724158460105311/00012 6236724158460105311/00021 6236724158460105311/00020 6236724158460105311/00035 6236724158460105311/00019 6236724158460105311/00011 6236724158460105311/00034 6236724158460105311/00008 6236724158460105311/00007 6236724158460105311/00004 6311014637275749987/00060 6311014637275749987/00029 6311014637275749987/00003 6311014637275749987/00046 6311014637275749987/00056 6311014637275749987/00032 6311014637275749987/00033 6311014637275749987/00057 6311014637275749987/00053 6311014637275749987/00030 6311014637275749987/00058 6311014637275749987/00031 6311014637275749987/00013 6311014637275749987/00069 6311014637275749987/00026 6311014637275749987/00044 6311014637275749987/00050 6311014637275749987/00036 6311014637275749987/00063 6311014637275749987/00001 6311014637275749987/00066 6311014637275749987/00064 6311014637275749987/00049 6311014637275749987/00038 6311014637275749987/00048 6311014637275749987/00018 6311014637275749987/00042 6311014637275749987/00012 6311014637275749987/00041 6311014637275749987/00014 6311014637275749987/00037 6311014637275749987/00047 6311014637275749987/00039 6311014637275749987/00035 6311014637275749987/00051 6311014637275749987/00052 6311014637275749987/00055 6311014637275749987/00027 6311014637275749987/00034 6311014637275749987/00002 6311014637275749987/00040 6311014637275749987/00007 6311014637275749987/00068 6311014637275749987/00025 6311014637275749987/00054 6311014637275749987/00043 6311014637275749987/00028 5967316321864306186/00015 5967316321864306186/00003 5967316321864306186/00006 5967316321864306186/00032 5967316321864306186/00009 5967316321864306186/00030 5967316321864306186/00022 5967316321864306186/00026 5967316321864306186/00001 5967316321864306186/00023 5967316321864306186/00038 5967316321864306186/00016 5967316321864306186/00027 5967316321864306186/00002 5967316321864306186/00007 5967316321864306186/00028 5880080382121784795/00003 5880080382121784795/00008 5880080382121784795/00007 6211556079602347779/00001 5947571498211212414/00015 5947571498211212414/00006 5947571498211212414/00018 5947571498211212414/00012 5947571498211212414/00014 5947571498211212414/00017 5947571498211212414/00016 5947571498211212414/00019 5947571498211212414/00002 5947571498211212414/00008 5947571498211212414/00007 6372918859906543042/00019 6126538919964896547/00015 6126538919964896547/00003 6126538919964896547/00022 6126538919964896547/00021 6126538919964896547/00014 6126538919964896547/00017 6126538919964896547/00016 6126538919964896547/00019 6126538919964896547/00002 6126538919964896547/00025 6126538919964896547/00005 6314248747649637090/00015 6314248747649637090/00003 6314248747649637090/00009 6314248747649637090/00013 6314248747649637090/00018 6314248747649637090/00014 6314248747649637090/00017 6314248747649637090/00002 6314248747649637090/00004 6209247105183953758/00003 6209247105183953758/00006 6209247105183953758/00009 6209247105183953758/00010 6209247105183953758/00013 6209247105183953758/00014 6209247105183953758/00011 6209247105183953758/00002 6209247105183953758/00008 6209247105183953758/00007 6209247105183953758/00005 6209247105183953758/00004 6008549296526581801/00060 6008549296526581801/00029 6008549296526581801/00015 6008549296526581801/00003 6008549296526581801/00006 6008549296526581801/00046 6008549296526581801/00032 6008549296526581801/00009 6008549296526581801/00010 6008549296526581801/00033 6008549296526581801/00024 6008549296526581801/00030 6008549296526581801/00058 6008549296526581801/00062 6008549296526581801/00031 6008549296526581801/00013 6008549296526581801/00022 6008549296526581801/00026 6008549296526581801/00044 6008549296526581801/00045 6008549296526581801/00023 6008549296526581801/00012 6008549296526581801/00041 6008549296526581801/00061 6008549296526581801/00021 6008549296526581801/00014 6008549296526581801/00037 6008549296526581801/00020 6008549296526581801/00035 6008549296526581801/00051 6008549296526581801/00017 6008549296526581801/00055 6008549296526581801/00016 6008549296526581801/00059 6008549296526581801/00019 6008549296526581801/00011 6008549296526581801/00027 6008549296526581801/00034 6008549296526581801/00002 6008549296526581801/00008 6008549296526581801/00007 6008549296526581801/00054 6008549296526581801/00005 6008549296526581801/00004 6008549296526581801/00028 5987718275513758403/00003 5987718275513758403/00013 5987718275513758403/00026 5987718275513758403/00023 5987718275513758403/00019 5987718275513758403/00011 5987718275513758403/00025 5878623099718247676/00015 5878623099718247676/00003 5878623099718247676/00006 5878623099718247676/00009 5878623099718247676/00010 5878623099718247676/00022 5878623099718247676/00026 5878623099718247676/00018 5878623099718247676/00012 5878623099718247676/00021 5878623099718247676/00014 5878623099718247676/00020 5878623099718247676/00017 5878623099718247676/00016 5878623099718247676/00019 5878623099718247676/00002 5878623099718247676/00008 5878623099718247676/00025 5878623099718247676/00005 6081235604926665834/00003 6081235604926665834/00006 6081235604926665834/00024 6081235604926665834/00022 6081235604926665834/00001 6081235604926665834/00023 6081235604926665834/00018 6081235604926665834/00021 6081235604926665834/00014 6081235604926665834/00017 6081235604926665834/00016 6081235604926665834/00025 6081235604926665834/00005 6081235604926665834/00004 6094262240735511109/00015 6094262240735511109/00022 6094262240735511109/00001 6094262240735511109/00023 6094262240735511109/00021 6094262240735511109/00014 6094262240735511109/00020 6094262240735511109/00016 6094262240735511109/00019 6094262240735511109/00002 6094262240735511109/00005 5883308050044731145/00006 5883308050044731145/00001 5883308050044731145/00007 5883308050044731145/00005 6100199603525448364/00032 6100199603525448364/00024 6100199603525448364/00030 6100199603525448364/00022 6100199603525448364/00026 6100199603525448364/00023 6100199603525448364/00018 6100199603525448364/00042 6100199603525448364/00041 6100199603525448364/00002 6100199603525448364/00007 6101312859048628954/00015 6101312859048628954/00003 6101312859048628954/00006 6101312859048628954/00010 6101312859048628954/00001 6101312859048628954/00012 6101312859048628954/00016 6101312859048628954/00011 6101312859048628954/00002 6101312859048628954/00007 6101312859048628954/00005 6101312859048628954/00004 6227706015628786035/00060 6227706015628786035/00029 6227706015628786035/00015 6227706015628786035/00003 6227706015628786035/00046 6227706015628786035/00032 6227706015628786035/00009 6227706015628786035/00073 6227706015628786035/00010 6227706015628786035/00033 6227706015628786035/00057 6227706015628786035/00078 6227706015628786035/00058 6227706015628786035/00031 6227706015628786035/00069 6227706015628786035/00022 6227706015628786035/00044 6227706015628786035/00077 6227706015628786035/00050 6227706015628786035/00063 6227706015628786035/00045 6227706015628786035/00064 6227706015628786035/00072 6227706015628786035/00023 6227706015628786035/00048 6227706015628786035/00065 6227706015628786035/00075 6227706015628786035/00079 6227706015628786035/00047 6227706015628786035/00039 6227706015628786035/00017 6227706015628786035/00076 6227706015628786035/00052 6227706015628786035/00055 6227706015628786035/00016 6227706015628786035/00059 6227706015628786035/00019 6227706015628786035/00034 6227706015628786035/00008 6227706015628786035/00040 6227706015628786035/00007 6227706015628786035/00054 6227706015628786035/00005 6227706015628786035/00004 6227706015628786035/00028 5861584105461572914/00015 5861584105461572914/00006 5861584105461572914/00009 5861584105461572914/00010 5861584105461572914/00030 5861584105461572914/00031 5861584105461572914/00022 5861584105461572914/00026 5861584105461572914/00001 5861584105461572914/00023 5861584105461572914/00021 5861584105461572914/00014 5861584105461572914/00002 5861584105461572914/00008 5861584105461572914/00007 5861584105461572914/00025 5861584105461572914/00005 5861584105461572914/00004 5861584105461572914/00028 5982944419364244818/00001 5982944419364244818/00002 5941993624183829155/00003 5941993624183829155/00030 5941993624183829155/00031 5941993624183829155/00026 5941993624183829155/00019 5941993624183829155/00025 5611560315266125718/00006 5611560315266125718/00009 5611560315266125718/00013 5611560315266125718/00001 5611560315266125718/00014 5611560315266125718/00008 5611560315266125718/00007 5611560315266125718/00004 6122858991985742631/00001 6122858991985742631/00008 6122858991985742631/00007 6064923319266940862/00082 6215897003048419264/00015 6215897003048419264/00003 6215897003048419264/00006 6215897003048419264/00010 6215897003048419264/00001 6215897003048419264/00018 6215897003048419264/00014 6215897003048419264/00020 6215897003048419264/00017 6215897003048419264/00019 6215897003048419264/00007 6215897003048419264/00005 6215897003048419264/00004 5938317561675177809/00015 5938317561675177809/00003 5938317561675177809/00013 5938317561675177809/00001 5938317561675177809/00023 5938317561675177809/00014 5938317561675177809/00020 5938317561675177809/00017 5938317561675177809/00016 5938317561675177809/00002 5938317561675177809/00025 5938317561675177809/00004 5938317561675177809/00028 6156531106089592825/00029 6156531106089592825/00003 6156531106089592825/00032 6156531106089592825/00024 6156531106089592825/00030 6156531106089592825/00013 6156531106089592825/00026 6156531106089592825/00012 6156531106089592825/00021 6156531106089592825/00020 6156531106089592825/00016 6156531106089592825/00019 6156531106089592825/00011 6156531106089592825/00034 6156531106089592825/00002 6156531106089592825/00004 6156531106089592825/00028 6002967556898929495/00015 6002967556898929495/00010 6002967556898929495/00013 6002967556898929495/00023 6002967556898929495/00018 6002967556898929495/00021 6002967556898929495/00016 6002967556898929495/00019 6002967556898929495/00011 6002967556898929495/00002 6002967556898929495/00005 5870459225882031261/00002 5870459225882031261/00008 5870459225882031261/00007 5870459225882031261/00005 5870459225882031261/00004 6236411055344229545/00015 6236411055344229545/00006 6236411055344229545/00010 6236411055344229545/00013 6236411055344229545/00001 6236411055344229545/00017 6236411055344229545/00016 6236411055344229545/00002 6236411055344229545/00008 6236411055344229545/00007 6236411055344229545/00004 5856964868134789715/00015 5856964868134789715/00006 5856964868134789715/00056 5856964868134789715/00032 5856964868134789715/00058 5856964868134789715/00062 5856964868134789715/00031 5856964868134789715/00022 5856964868134789715/00026 5856964868134789715/00001 5856964868134789715/00064 5856964868134789715/00049 5856964868134789715/00038 5856964868134789715/00048 5856964868134789715/00065 5856964868134789715/00061 5856964868134789715/00021 5856964868134789715/00014 5856964868134789715/00047 5856964868134789715/00020 5856964868134789715/00052 5856964868134789715/00059 5856964868134789715/00011 5856964868134789715/00027 5856964868134789715/00067 5856964868134789715/00034 5856964868134789715/00008 5856964868134789715/00025 5856964868134789715/00054 5856964868134789715/00043 5856964868134789715/00005 5856964868134789715/00004 6050408477159643535/00015 6050408477159643535/00009 6050408477159643535/00013 6050408477159643535/00001 6050408477159643535/00021 6050408477159643535/00014 6050408477159643535/00020 6050408477159643535/00016 6050408477159643535/00019 6050408477159643535/00011 6050408477159643535/00002 6050408477159643535/00005 6220067845789506758/00003 6220067845789506758/00006 6220067845789506758/00013 6220067845789506758/00022 6220067845789506758/00018 6220067845789506758/00012 6220067845789506758/00021 6220067845789506758/00014 6220067845789506758/00020 6220067845789506758/00019 6220067845789506758/00011 6220067845789506758/00027 6220067845789506758/00007 6220067845789506758/00025 6220067845789506758/00028 6126462899043757342/00003 6126462899043757342/00006 6126462899043757342/00009 6126462899043757342/00010 6126462899043757342/00024 6126462899043757342/00001 6126462899043757342/00021 6126462899043757342/00016 6126462899043757342/00002 6126462899043757342/00008 6126462899043757342/00007 6126462899043757342/00005 6232684741718280603/00003 6232684741718280603/00006 6232684741718280603/00013 6232684741718280603/00022 6232684741718280603/00001 6232684741718280603/00018 6232684741718280603/00012 6232684741718280603/00021 6232684741718280603/00020 6232684741718280603/00017 6232684741718280603/00016 6232684741718280603/00011 6232684741718280603/00005 6232684741718280603/00004 6254153565244082862/00003 6254153565244082862/00006 6254153565244082862/00046 6254153565244082862/00032 6254153565244082862/00009 6254153565244082862/00010 6254153565244082862/00033 6254153565244082862/00024 6254153565244082862/00030 6254153565244082862/00031 6254153565244082862/00022 6254153565244082862/00026 6254153565244082862/00045 6254153565244082862/00049 6254153565244082862/00048 6254153565244082862/00012 6254153565244082862/00014 6254153565244082862/00047 6254153565244082862/00035 6254153565244082862/00017 6254153565244082862/00027 6254153565244082862/00034 6254153565244082862/00008 6254153565244082862/00007 6254153565244082862/00005 6127598058900091868/00171 6127598058900091868/00147 6127598058900091868/00149 6127598058900091868/00125 6127598058900091868/00029 6127598058900091868/00003 6127598058900091868/00140 6127598058900091868/00098 6127598058900091868/00046 6127598058900091868/00056 6127598058900091868/00169 6127598058900091868/00163 6127598058900091868/00113 6127598058900091868/00122 6127598058900091868/00159 6127598058900091868/00009 6127598058900091868/00112 6127598058900091868/00010 6127598058900091868/00123 6127598058900091868/00118 6127598058900091868/00116 6127598058900091868/00030 6127598058900091868/00177 6127598058900091868/00058 6127598058900091868/00062 6127598058900091868/00167 6127598058900091868/00031 6127598058900091868/00086 6127598058900091868/00137 6127598058900091868/00148 6127598058900091868/00026 6127598058900091868/00179 6127598058900091868/00161 6127598058900091868/00168 6127598058900091868/00120 6127598058900091868/00166 6127598058900091868/00117 6127598058900091868/00063 6127598058900091868/00110 6127598058900091868/00001 6127598058900091868/00045 6127598058900091868/00064 6127598058900091868/00136 6127598058900091868/00154 6127598058900091868/00023 6127598058900091868/00114 6127598058900091868/00134 6127598058900091868/00018 6127598058900091868/00012 6127598058900091868/00162 6127598058900091868/00126 6127598058900091868/00129 6127598058900091868/00144 6127598058900091868/00104 6127598058900091868/00176 6127598058900091868/00160 6127598058900091868/00127 6127598058900091868/00101 6127598058900091868/00039 6127598058900091868/00035 6127598058900091868/00051 6127598058900091868/00174 6127598058900091868/00076 6127598058900091868/00080 6127598058900091868/00055 6127598058900091868/00184 6127598058900091868/00059 6127598058900091868/00027 6127598058900091868/00153 6127598058900091868/00115 6127598058900091868/00182 6127598058900091868/00002 6127598058900091868/00133 6127598058900091868/00131 6127598058900091868/00183 6127598058900091868/00097 6127598058900091868/00025 6127598058900091868/00054 6127598058900091868/00004 5596613829076032803/00002 5957660376389496348/00009 5957660376389496348/00010 5957660376389496348/00013 5957660376389496348/00001 5957660376389496348/00012 5957660376389496348/00014 5957660376389496348/00002 5957660376389496348/00008 5957660376389496348/00007 5957660376389496348/00005 5957660376389496348/00004 5573888727616175935/00003 5573888727616175935/00009 5573888727616175935/00001 5573888727616175935/00012 5573888727616175935/00002 5573888727616175935/00008 5573888727616175935/00007 6000292651266335664/00003 6000292651266335664/00006 6000292651266335664/00033 6000292651266335664/00024 6000292651266335664/00031 6000292651266335664/00013 6000292651266335664/00022 6000292651266335664/00026 6000292651266335664/00036 6000292651266335664/00001 6000292651266335664/00045 6000292651266335664/00038 6000292651266335664/00018 6000292651266335664/00042 6000292651266335664/00012 6000292651266335664/00014 6000292651266335664/00020 6000292651266335664/00035 6000292651266335664/00017 6000292651266335664/00016 6000292651266335664/00011 6000292651266335664/00008 6000292651266335664/00040 6000292651266335664/00007 6000292651266335664/00043 6000292651266335664/00005 6000292651266335664/00004 5986976105165009593/00003 5986976105165009593/00009 5986976105165009593/00010 5986976105165009593/00013 5986976105165009593/00001 5986976105165009593/00018 5986976105165009593/00012 5986976105165009593/00014 5986976105165009593/00002 5986976105165009593/00008 5986976105165009593/00004 5554087210394707977/00029 5554087210394707977/00015 5554087210394707977/00003 5554087210394707977/00006 5554087210394707977/00032 5554087210394707977/00009 5554087210394707977/00010 5554087210394707977/00033 5554087210394707977/00024 5554087210394707977/00030 5554087210394707977/00031 5554087210394707977/00013 5554087210394707977/00022 5554087210394707977/00026 5554087210394707977/00036 5554087210394707977/00001 5554087210394707977/00023 5554087210394707977/00038 5554087210394707977/00018 5554087210394707977/00021 5554087210394707977/00014 5554087210394707977/00037 5554087210394707977/00039 5554087210394707977/00020 5554087210394707977/00035 5554087210394707977/00017 5554087210394707977/00016 5554087210394707977/00019 5554087210394707977/00011 5554087210394707977/00027 5554087210394707977/00034 5554087210394707977/00008 5554087210394707977/00040 5554087210394707977/00007 5554087210394707977/00025 5554087210394707977/00005 5554087210394707977/00004 5554087210394707977/00028 6243549290990912607/00010 6243549290990912607/00013 6243549290990912607/00023 6243549290990912607/00012 6243549290990912607/00021 6243549290990912607/00017 6243549290990912607/00019 6243549290990912607/00011 6243549290990912607/00027 6243549290990912607/00002 6243549290990912607/00007 5970949864196790450/00003 5970949864196790450/00010 5970949864196790450/00018 5970949864196790450/00012 5970949864196790450/00014 5970949864196790450/00017 5970949864196790450/00016 5970949864196790450/00019 5970949864196790450/00011 5970949864196790450/00002 5916721177620745836/00029 5916721177620745836/00015 5916721177620745836/00003 5916721177620745836/00006 5916721177620745836/00056 5916721177620745836/00032 5916721177620745836/00070 5916721177620745836/00009 5916721177620745836/00073 5916721177620745836/00010 5916721177620745836/00033 5916721177620745836/00057 5916721177620745836/00053 5916721177620745836/00078 5916721177620745836/00030 5916721177620745836/00058 5916721177620745836/00031 5916721177620745836/00069 5916721177620745836/00022 5916721177620745836/00026 5916721177620745836/00044 5916721177620745836/00050 5916721177620745836/00036 5916721177620745836/00063 5916721177620745836/00045 5916721177620745836/00049 5916721177620745836/00072 5916721177620745836/00023 5916721177620745836/00038 5916721177620745836/00048 5916721177620745836/00018 5916721177620745836/00012 5916721177620745836/00041 5916721177620745836/00061 5916721177620745836/00021 5916721177620745836/00075 5916721177620745836/00014 5916721177620745836/00037 5916721177620745836/00047 5916721177620745836/00039 5916721177620745836/00020 5916721177620745836/00035 5916721177620745836/00051 5916721177620745836/00017 5916721177620745836/00052 5916721177620745836/00055 5916721177620745836/00016 5916721177620745836/00059 5916721177620745836/00027 5916721177620745836/00002 5916721177620745836/00008 5916721177620745836/00040 5916721177620745836/00007 5916721177620745836/00074 5916721177620745836/00004 5916721177620745836/00028 6313565847849574520/00003 6313565847849574520/00006 6313565847849574520/00013 6386588452319500723/00009 6386588452319500723/00014 6386588452319500723/00008 5999202588566552094/00006 5999202588566552094/00009 5999202588566552094/00010 5999202588566552094/00024 5999202588566552094/00030 5999202588566552094/00013 5999202588566552094/00022 5999202588566552094/00026 5999202588566552094/00023 5999202588566552094/00021 5999202588566552094/00014 5999202588566552094/00011 5999202588566552094/00027 5999202588566552094/00008 5999202588566552094/00007 5999202588566552094/00025 5999202588566552094/00004 5970683146858119298/00009 5970683146858119298/00010 5970683146858119298/00024 5970683146858119298/00022 5970683146858119298/00026 5970683146858119298/00023 5970683146858119298/00018 5970683146858119298/00012 5970683146858119298/00020 5970683146858119298/00017 5970683146858119298/00016 5970683146858119298/00019 5970683146858119298/00002 5970683146858119298/00007 5970683146858119298/00005 6366631027785194041/00018 6366631027785194041/00016 6055702883345492540/00004 5972925119656159575/00015 5972925119656159575/00003 5972925119656159575/00009 5972925119656159575/00012 5972925119656159575/00007 6111272888207973712/00003 6111272888207973712/00010 6111272888207973712/00012 6111272888207973712/00008 5944696876599995482/00003 5944696876599995482/00006 5944696876599995482/00070 5944696876599995482/00073 5944696876599995482/00010 5944696876599995482/00057 5944696876599995482/00024 5944696876599995482/00078 5944696876599995482/00030 5944696876599995482/00071 5944696876599995482/00058 5944696876599995482/00062 5944696876599995482/00031 5944696876599995482/00069 5944696876599995482/00022 5944696876599995482/00044 5944696876599995482/00077 5944696876599995482/00036 5944696876599995482/00063 5944696876599995482/00001 5944696876599995482/00066 5944696876599995482/00064 5944696876599995482/00038 5944696876599995482/00042 5944696876599995482/00065 5944696876599995482/00061 5944696876599995482/00021 5944696876599995482/00014 5944696876599995482/00037 5944696876599995482/00039 5944696876599995482/00020 5944696876599995482/00035 5944696876599995482/00051 5944696876599995482/00017 5944696876599995482/00076 5944696876599995482/00055 5944696876599995482/00016 5944696876599995482/00019 5944696876599995482/00067 5944696876599995482/00034 5944696876599995482/00002 5944696876599995482/00008 5944696876599995482/00040 5944696876599995482/00007 5944696876599995482/00068 5944696876599995482/00025 5944696876599995482/00043 5944696876599995482/00005 5944696876599995482/00074 5944696876599995482/00004 6242704041426395698/00012 6242704041426395698/00014 6242704041426395698/00002 6242704041426395698/00007 6130547412942321141/00010 6130547412942321141/00001 6130547412942321141/00014 6130547412942321141/00011 6130547412942321141/00002 6130547412942321141/00004 6168997248666215583/00029 6168997248666215583/00006 6168997248666215583/00056 6168997248666215583/00032 6168997248666215583/00073 6168997248666215583/00010 6168997248666215583/00030 6168997248666215583/00031 6168997248666215583/00077 6168997248666215583/00050 6168997248666215583/00001 6168997248666215583/00049 6168997248666215583/00038 6168997248666215583/00018 6168997248666215583/00042 6168997248666215583/00061 6168997248666215583/00021 6168997248666215583/00037 6168997248666215583/00035 6168997248666215583/00051 6168997248666215583/00016 6168997248666215583/00019 6168997248666215583/00011 6168997248666215583/00034 6168997248666215583/00007 6168997248666215583/00074 6228034580626862736/00006 6228034580626862736/00009 6228034580626862736/00024 6228034580626862736/00013 6228034580626862736/00022 6228034580626862736/00023 6228034580626862736/00021 6228034580626862736/00014 6228034580626862736/00017 6228034580626862736/00016 6228034580626862736/00019 6228034580626862736/00011 6228034580626862736/00002 6228034580626862736/00025 6119453512416670865/00046 6119453512416670865/00032 6119453512416670865/00009 6119453512416670865/00057 6119453512416670865/00030 6119453512416670865/00026 6119453512416670865/00049 6119453512416670865/00018 6119453512416670865/00041 6119453512416670865/00035 6119453512416670865/00052 6119453512416670865/00055 6119453512416670865/00027 6119453512416670865/00034 6119453512416670865/00028 6127617386252920200/00015 6127617386252920200/00009 6127617386252920200/00022 6127617386252920200/00023 6127617386252920200/00021 6127617386252920200/00020 6127617386252920200/00007 6127617386252920200/00004 5553598872613155994/00003 5553598872613155994/00006 5553598872613155994/00001 5553598872613155994/00002 5553598872613155994/00005 5984308930474252728/00015 5984308930474252728/00003 5984308930474252728/00024 5984308930474252728/00013 5984308930474252728/00018 5984308930474252728/00014 5984308930474252728/00017 5984308930474252728/00025 5984308930474252728/00005 5984308930474252728/00004 6116566005903570187/00006 6116566005903570187/00009 6116566005903570187/00010 6116566005903570187/00024 6116566005903570187/00013 6116566005903570187/00001 6116566005903570187/00018 6116566005903570187/00021 6116566005903570187/00020 6116566005903570187/00011 6116566005903570187/00002 6116566005903570187/00007 6116566005903570187/00025 6116566005903570187/00004 5552717545324013398/00029 5552717545324013398/00003 5552717545324013398/00032 5552717545324013398/00009 5552717545324013398/00010 5552717545324013398/00030 5552717545324013398/00013 5552717545324013398/00001 5552717545324013398/00023 5552717545324013398/00012 5552717545324013398/00014 5552717545324013398/00011 5552717545324013398/00008 5552717545324013398/00025 5552717545324013398/00028 5973280742948268389/00029 5973280742948268389/00003 5973280742948268389/00009 5973280742948268389/00010 5973280742948268389/00024 5973280742948268389/00013 5973280742948268389/00022 5973280742948268389/00026 5973280742948268389/00045 5973280742948268389/00048 5973280742948268389/00018 5973280742948268389/00042 5973280742948268389/00012 5973280742948268389/00039 5973280742948268389/00016 5973280742948268389/00027 5973280742948268389/00008 5973280742948268389/00025 5973280742948268389/00028 6379649932652838513/00016 6379649932652838513/00008 5971077424725417987/00003 5971077424725417987/00056 5971077424725417987/00010 5971077424725417987/00033 5971077424725417987/00057 5971077424725417987/00024 5971077424725417987/00053 5971077424725417987/00030 5971077424725417987/00062 5971077424725417987/00031 5971077424725417987/00022 5971077424725417987/00044 5971077424725417987/00036 5971077424725417987/00066 5971077424725417987/00064 5971077424725417987/00049 5971077424725417987/00038 5971077424725417987/00048 5971077424725417987/00012 5971077424725417987/00037 5971077424725417987/00047 5971077424725417987/00035 5971077424725417987/00051 5971077424725417987/00016 5971077424725417987/00019 5971077424725417987/00011 5971077424725417987/00027 5971077424725417987/00034 5971077424725417987/00008 5971077424725417987/00040 5971077424725417987/00043 5971077424725417987/00004 5580920018576464659/00003 5580920018576464659/00031 5580920018576464659/00036 5580920018576464659/00023 5580920018576464659/00021 5580920018576464659/00020 5580920018576464659/00035 5580920018576464659/00016 5580920018576464659/00027 5580920018576464659/00034 5580920018576464659/00004 5580920018576464659/00028 5633722346513475441/00003 5633722346513475441/00011 5633722346513475441/00002 5633722346513475441/00008 5865279495323051989/00015 5865279495323051989/00003 5865279495323051989/00009 5865279495323051989/00010 5865279495323051989/00013 5865279495323051989/00016 5865279495323051989/00011 5865279495323051989/00002 5865279495323051989/00008 5865279495323051989/00005 6083017586857843792/00006 6083017586857843792/00012 6083017586857843792/00011 6083017586857843792/00007 6383990856098877828/00005 6383990856098877828/00004 5860049513646772348/00010 5860049513646772348/00011 5860049513646772348/00002 5939608628844355451/00029 5939608628844355451/00015 5939608628844355451/00003 5939608628844355451/00010 5939608628844355451/00033 5939608628844355451/00024 5939608628844355451/00030 5939608628844355451/00044 5939608628844355451/00001 5939608628844355451/00045 5939608628844355451/00049 5939608628844355451/00038 5939608628844355451/00048 5939608628844355451/00018 5939608628844355451/00042 5939608628844355451/00041 5939608628844355451/00021 5939608628844355451/00014 5939608628844355451/00037 5939608628844355451/00047 5939608628844355451/00020 5939608628844355451/00017 5939608628844355451/00016 5939608628844355451/00019 5939608628844355451/00011 5939608628844355451/00002 5939608628844355451/00025 5939608628844355451/00043 5939608628844355451/00005 6248604038000919861/00001 6261282781458718021/00002 6261282781458718021/00007 6261282781458718021/00005 6261282781458718021/00004 6216237164458262506/00029 6216237164458262506/00015 6216237164458262506/00009 6216237164458262506/00024 6216237164458262506/00030 6216237164458262506/00031 6216237164458262506/00022 6216237164458262506/00026 6216237164458262506/00001 6216237164458262506/00023 6216237164458262506/00021 6216237164458262506/00020 6216237164458262506/00035 6216237164458262506/00019 6216237164458262506/00027 6216237164458262506/00034 6216237164458262506/00008 6216237164458262506/00007 6216237164458262506/00025 6012550058432309954/00029 6012550058432309954/00015 6012550058432309954/00046 6012550058432309954/00009 6012550058432309954/00010 6012550058432309954/00030 6012550058432309954/00013 6012550058432309954/00001 6012550058432309954/00045 6012550058432309954/00038 6012550058432309954/00018 6012550058432309954/00012 6012550058432309954/00021 6012550058432309954/00014 6012550058432309954/00037 6012550058432309954/00047 6012550058432309954/00020 6012550058432309954/00035 6012550058432309954/00017 6012550058432309954/00027 6012550058432309954/00040 6012550058432309954/00025 6012550058432309954/00005 6012550058432309954/00004 6012550058432309954/00028 6084311231007400227/00022 6084311231007400227/00023 6084311231007400227/00025 6080864519752291431/00003 6080864519752291431/00031 6080864519752291431/00013 6080864519752291431/00050 6080864519752291431/00049 6080864519752291431/00038 6080864519752291431/00018 6080864519752291431/00035 6080864519752291431/00034 6080864519752291431/00002 6080864519752291431/00040 6080864519752291431/00007 6080864519752291431/00005 5954718753288396443/00010 5954718753288396443/00002 6390670389237621263/00012 6390670389237621263/00007 6390670389237621263/00005 6232159037721250150/00003 6232159037721250150/00046 6232159037721250150/00032 6232159037721250150/00033 6232159037721250150/00053 6232159037721250150/00031 6232159037721250150/00026 6232159037721250150/00044 6232159037721250150/00050 6232159037721250150/00036 6232159037721250150/00001 6232159037721250150/00045 6232159037721250150/00049 6232159037721250150/00023 6232159037721250150/00038 6232159037721250150/00048 6232159037721250150/00012 6232159037721250150/00041 6232159037721250150/00021 6232159037721250150/00037 6232159037721250150/00047 6232159037721250150/00039 6232159037721250150/00020 6232159037721250150/00035 6232159037721250150/00051 6232159037721250150/00017 6232159037721250150/00052 6232159037721250150/00055 6232159037721250150/00027 6232159037721250150/00034 6232159037721250150/00002 6232159037721250150/00007 6232159037721250150/00025 6232159037721250150/00054 6232159037721250150/00004 6232159037721250150/00028 6192947704295650865/00003 6192947704295650865/00010 6192947704295650865/00013 6192947704295650865/00001 6192947704295650865/00012 6192947704295650865/00014 6192947704295650865/00011 6192947704295650865/00002 6192947704295650865/00008 6192947704295650865/00004 5988033955610014447/00029 5988033955610014447/00015 5988033955610014447/00003 5988033955610014447/00006 5988033955610014447/00030 5988033955610014447/00013 5988033955610014447/00022 5988033955610014447/00026 5988033955610014447/00001 5988033955610014447/00023 5988033955610014447/00018 5988033955610014447/00021 5988033955610014447/00017 5988033955610014447/00016 5988033955610014447/00019 5988033955610014447/00027 5988033955610014447/00002 5988033955610014447/00007 5988033955610014447/00005 5988033955610014447/00004 5988033955610014447/00028 6132781654929609008/00015 6132781654929609008/00003 6132781654929609008/00010 6132781654929609008/00001 6132781654929609008/00012 6132781654929609008/00019 6132781654929609008/00008 6132781654929609008/00007 6165487401391987978/00015 6165487401391987978/00003 6165487401391987978/00006 6165487401391987978/00009 6165487401391987978/00010 6165487401391987978/00033 6165487401391987978/00024 6165487401391987978/00030 6165487401391987978/00031 6165487401391987978/00013 6165487401391987978/00026 6165487401391987978/00001 6165487401391987978/00023 6165487401391987978/00012 6165487401391987978/00014 6165487401391987978/00035 6165487401391987978/00017 6165487401391987978/00016 6165487401391987978/00019 6165487401391987978/00011 6165487401391987978/00027 6165487401391987978/00008 6165487401391987978/00007 6165487401391987978/00025 5946164466924976773/00009 5946164466924976773/00024 5946164466924976773/00013 5946164466924976773/00001 5946164466924976773/00018 5946164466924976773/00017 5946164466924976773/00011 5946164466924976773/00002 5946164466924976773/00008 6329054788409218032/00003 6329054788409218032/00017 6329054788409218032/00016 6329054788409218032/00008 6329054788409218032/00004 6217470249568879943/00001 6217470249568879943/00007 6217470249568879943/00005 6217470249568879943/00004 6375448166147161013/00031 6092043460630394981/00010 6092043460630394981/00005 6092043460630394981/00004 6216697155455598083/00006 6216697155455598083/00009 6216697155455598083/00010 6216697155455598083/00031 6216697155455598083/00026 6216697155455598083/00001 6216697155455598083/00049 6216697155455598083/00023 6216697155455598083/00048 6216697155455598083/00018 6216697155455598083/00012 6216697155455598083/00041 6216697155455598083/00014 6216697155455598083/00037 6216697155455598083/00039 6216697155455598083/00011 6216697155455598083/00008 6216697155455598083/00005 6296488198887233602/00015 6296488198887233602/00009 6296488198887233602/00010 6296488198887233602/00001 6296488198887233602/00012 6296488198887233602/00014 6296488198887233602/00017 6296488198887233602/00011 6296488198887233602/00007 6296488198887233602/00005 6296488198887233602/00004 5705728332224388955/00015 5705728332224388955/00003 5705728332224388955/00009 5705728332224388955/00010 5705728332224388955/00024 5705728332224388955/00030 5705728332224388955/00031 5705728332224388955/00013 5705728332224388955/00022 5705728332224388955/00036 5705728332224388955/00001 5705728332224388955/00023 5705728332224388955/00038 5705728332224388955/00018 5705728332224388955/00012 5705728332224388955/00041 5705728332224388955/00021 5705728332224388955/00014 5705728332224388955/00037 5705728332224388955/00020 5705728332224388955/00017 5705728332224388955/00016 5705728332224388955/00019 5705728332224388955/00011 5705728332224388955/00027 5705728332224388955/00002 5705728332224388955/00008 5705728332224388955/00040 5705728332224388955/00007 5705728332224388955/00025 5705728332224388955/00005 5556293105597937666/00001 6256034760919735412/00003 6256034760919735412/00008 6111986711772568049/00002 6355193100379206640/00008 6130910767175560232/00002 6130910767175560232/00008 6130910767175560232/00004 6099353065471466274/00003 6099353065471466274/00001 6099353065471466274/00002 6049708826987126376/00015 6049708826987126376/00010 6049708826987126376/00001 6049708826987126376/00002 6049708826987126376/00008 5861568643579367675/00015 5861568643579367675/00006 5861568643579367675/00010 5861568643579367675/00024 5861568643579367675/00001 5861568643579367675/00023 5861568643579367675/00020 5861568643579367675/00016 5861568643579367675/00027 5861568643579367675/00002 5861568643579367675/00007 5861568643579367675/00005 6228176314547693640/00029 6228176314547693640/00006 6228176314547693640/00046 6228176314547693640/00032 6228176314547693640/00010 6228176314547693640/00053 6228176314547693640/00030 6228176314547693640/00069 6228176314547693640/00045 6228176314547693640/00066 6228176314547693640/00049 6228176314547693640/00048 6228176314547693640/00042 6228176314547693640/00041 6228176314547693640/00065 6228176314547693640/00075 6228176314547693640/00037 6228176314547693640/00047 6228176314547693640/00039 6228176314547693640/00035 6228176314547693640/00052 6228176314547693640/00011 6228176314547693640/00067 6228176314547693640/00034 6228176314547693640/00002 6228176314547693640/00008 6228176314547693640/00040 6228176314547693640/00007 6228176314547693640/00054 6228176314547693640/00043 6228176314547693640/00005 6228176314547693640/00074 6228176314547693640/00004 5857186488447256058/00060 5857186488447256058/00029 5857186488447256058/00015 5857186488447256058/00006 5857186488447256058/00032 5857186488447256058/00070 5857186488447256058/00009 5857186488447256058/00073 5857186488447256058/00010 5857186488447256058/00024 5857186488447256058/00078 5857186488447256058/00030 5857186488447256058/00062 5857186488447256058/00031 5857186488447256058/00022 5857186488447256058/00026 5857186488447256058/00077 5857186488447256058/00050 5857186488447256058/00036 5857186488447256058/00063 5857186488447256058/00001 5857186488447256058/00045 5857186488447256058/00066 5857186488447256058/00064 5857186488447256058/00049 5857186488447256058/00023 5857186488447256058/00048 5857186488447256058/00012 5857186488447256058/00041 5857186488447256058/00065 5857186488447256058/00021 5857186488447256058/00075 5857186488447256058/00079 5857186488447256058/00014 5857186488447256058/00037 5857186488447256058/00047 5857186488447256058/00039 5857186488447256058/00020 5857186488447256058/00051 5857186488447256058/00017 5857186488447256058/00076 5857186488447256058/00052 5857186488447256058/00016 5857186488447256058/00059 5857186488447256058/00019 5857186488447256058/00027 5857186488447256058/00067 5857186488447256058/00081 5857186488447256058/00082 5857186488447256058/00008 5857186488447256058/00007 5857186488447256058/00025 5857186488447256058/00005 5857186488447256058/00004 5857186488447256058/00028 6079444603564303072/00015 6079444603564303072/00003 6079444603564303072/00006 6079444603564303072/00014 6079444603564303072/00020 6079444603564303072/00017 6079444603564303072/00016 6079444603564303072/00019 6079444603564303072/00011 6079444603564303072/00002 6079444603564303072/00008 6079444603564303072/00007 6079444603564303072/00005 6079444603564303072/00004 6225208921642820775/00015 6225208921642820775/00006 6225208921642820775/00001 6225208921642820775/00016 6225208921642820775/00011 6225208921642820775/00002 6225208921642820775/00004 6077169129890812371/00125 6077169129890812371/00029 6077169129890812371/00003 6077169129890812371/00006 6077169129890812371/00056 6077169129890812371/00032 6077169129890812371/00109 6077169129890812371/00122 6077169129890812371/00009 6077169129890812371/00090 6077169129890812371/00073 6077169129890812371/00010 6077169129890812371/00033 6077169129890812371/00123 6077169129890812371/00116 6077169129890812371/00030 6077169129890812371/00071 6077169129890812371/00058 6077169129890812371/00121 6077169129890812371/00031 6077169129890812371/00069 6077169129890812371/00022 6077169129890812371/00096 6077169129890812371/00094 6077169129890812371/00044 6077169129890812371/00099 6077169129890812371/00077 6077169129890812371/00093 6077169129890812371/00050 6077169129890812371/00105 6077169129890812371/00117 6077169129890812371/00110 6077169129890812371/00001 6077169129890812371/00045 6077169129890812371/00066 6077169129890812371/00049 6077169129890812371/00023 6077169129890812371/00048 6077169129890812371/00018 6077169129890812371/00042 6077169129890812371/00041 6077169129890812371/00065 6077169129890812371/00061 6077169129890812371/00083 6077169129890812371/00021 6077169129890812371/00079 6077169129890812371/00014 6077169129890812371/00039 6077169129890812371/00124 6077169129890812371/00020 6077169129890812371/00035 6077169129890812371/00051 6077169129890812371/00017 6077169129890812371/00055 6077169129890812371/00016 6077169129890812371/00111 6077169129890812371/00059 6077169129890812371/00019 6077169129890812371/00084 6077169129890812371/00067 6077169129890812371/00115 6077169129890812371/00034 6077169129890812371/00081 6077169129890812371/00082 6077169129890812371/00100 6077169129890812371/00106 6077169129890812371/00089 6077169129890812371/00092 6077169129890812371/00008 6077169129890812371/00040 6077169129890812371/00007 6077169129890812371/00102 6077169129890812371/00097 6077169129890812371/00043 6077169129890812371/00005 6077169129890812371/00004 6077169129890812371/00028 5954681387072918737/00003 5954681387072918737/00006 5954681387072918737/00005 5954681387072918737/00004 5985526553703327269/00003 5985526553703327269/00007 5985526553703327269/00004 6238251019333923377/00015 6238251019333923377/00003 6238251019333923377/00009 6238251019333923377/00014 6238251019333923377/00002 6238251019333923377/00008 6238251019333923377/00007 5921313356653567597/00002 5921313356653567597/00007 5867834571367445380/00015 5867834571367445380/00003 5867834571367445380/00001 5867834571367445380/00012 5867834571367445380/00011 5867834571367445380/00002 5867834571367445380/00008 5867834571367445380/00007 5867834571367445380/00005 5867834571367445380/00004 5541940613384882281/00125 5541940613384882281/00029 5541940613384882281/00003 5541940613384882281/00006 5541940613384882281/00098 5541940613384882281/00032 5541940613384882281/00113 5541940613384882281/00109 5541940613384882281/00009 5541940613384882281/00073 5541940613384882281/00033 5541940613384882281/00123 5541940613384882281/00057 5541940613384882281/00118 5541940613384882281/00116 5541940613384882281/00078 5541940613384882281/00071 5541940613384882281/00058 5541940613384882281/00031 5541940613384882281/00022 5541940613384882281/00096 5541940613384882281/00026 5541940613384882281/00050 5541940613384882281/00117 5541940613384882281/00110 5541940613384882281/00072 5541940613384882281/00023 5541940613384882281/00038 5541940613384882281/00088 5541940613384882281/00134 5541940613384882281/00018 5541940613384882281/00042 5541940613384882281/00135 5541940613384882281/00126 5541940613384882281/00021 5541940613384882281/00104 5541940613384882281/00014 5541940613384882281/00101 5541940613384882281/00047 5541940613384882281/00124 5541940613384882281/00080 5541940613384882281/00091 5541940613384882281/00016 5541940613384882281/00111 5541940613384882281/00019 5541940613384882281/00119 5541940613384882281/00084 5541940613384882281/00115 5541940613384882281/00081 5541940613384882281/00082 5541940613384882281/00100 5541940613384882281/00092 5541940613384882281/00008 5541940613384882281/00131 5541940613384882281/00007 5541940613384882281/00102 5541940613384882281/00132 5541940613384882281/00054 5541940613384882281/00043 5541940613384882281/00005 5753211772662042487/00001 6090439290345338853/00029 6090439290345338853/00032 6090439290345338853/00026 6090439290345338853/00001 6090439290345338853/00023 6090439290345338853/00014 6090439290345338853/00017 6090439290345338853/00016 6090439290345338853/00019 6090439290345338853/00027 6090439290345338853/00008 6117953709836905949/00015 6117953709836905949/00010 6117953709836905949/00030 6117953709836905949/00031 6117953709836905949/00013 6117953709836905949/00023 6117953709836905949/00019 6117953709836905949/00002 6117953709836905949/00004 6076457883306681600/00003 6076457883306681600/00001 5940891965072466179/00003 5940891965072466179/00006 5940891965072466179/00009 5940891965072466179/00013 5940891965072466179/00001 5940891965072466179/00008 5940891965072466179/00004 6213222097416471139/00060 6213222097416471139/00015 6213222097416471139/00003 6213222097416471139/00006 6213222097416471139/00046 6213222097416471139/00056 6213222097416471139/00073 6213222097416471139/00010 6213222097416471139/00024 6213222097416471139/00053 6213222097416471139/00030 6213222097416471139/00058 6213222097416471139/00062 6213222097416471139/00013 6213222097416471139/00069 6213222097416471139/00022 6213222097416471139/00026 6213222097416471139/00044 6213222097416471139/00077 6213222097416471139/00036 6213222097416471139/00063 6213222097416471139/00001 6213222097416471139/00045 6213222097416471139/00066 6213222097416471139/00064 6213222097416471139/00072 6213222097416471139/00023 6213222097416471139/00018 6213222097416471139/00041 6213222097416471139/00065 6213222097416471139/00061 6213222097416471139/00083 6213222097416471139/00079 6213222097416471139/00014 6213222097416471139/00051 6213222097416471139/00017 6213222097416471139/00080 6213222097416471139/00016 6213222097416471139/00059 6213222097416471139/00019 6213222097416471139/00011 6213222097416471139/00067 6213222097416471139/00002 6213222097416471139/00007 6213222097416471139/00068 6213222097416471139/00025 6213222097416471139/00005 6213222097416471139/00074 6102449307395155677/00003 6102449307395155677/00001 6102449307395155677/00004 6377365439548029922/00009 6377365439548029922/00024 6377365439548029922/00031 6377365439548029922/00022 6377365439548029922/00026 6377365439548029922/00039 6377365439548029922/00007 6377365439548029922/00025 6080072098286242304/00003 6080072098286242304/00001 6080072098286242304/00008 5954319321329935516/00029 5954319321329935516/00015 5954319321329935516/00032 5954319321329935516/00010 5954319321329935516/00024 5954319321329935516/00013 5954319321329935516/00022 5954319321329935516/00001 5954319321329935516/00021 5954319321329935516/00014 5954319321329935516/00016 5954319321329935516/00008 5954319321329935516/00007 5954319321329935516/00005 5954319321329935516/00004 5551009007333662603/00001 5661513791395696218/00003 5661513791395696218/00006 5661513791395696218/00001 5661513791395696218/00012 5661513791395696218/00011 5661513791395696218/00002 5661513791395696218/00008 5860017301391988208/00003 5860017301391988208/00001 5860017301391988208/00008 5860017301391988208/00007 5860017301391988208/00005 5992569441074594908/00003 5992569441074594908/00009 5992569441074594908/00010 5992569441074594908/00013 5992569441074594908/00001 5992569441074594908/00012 5992569441074594908/00011 5992569441074594908/00008 5992569441074594908/00007 5992569441074594908/00005 5880378023355461868/00003 5880378023355461868/00006 5880378023355461868/00010 5880378023355461868/00013 5880378023355461868/00001 5880378023355461868/00017 5880378023355461868/00016 5880378023355461868/00008 5880378023355461868/00007 5880378023355461868/00005 6212557236479047437/00015 6212557236479047437/00003 6212557236479047437/00006 6212557236479047437/00009 6212557236479047437/00013 6212557236479047437/00026 6212557236479047437/00023 6212557236479047437/00012 6212557236479047437/00021 6212557236479047437/00014 6212557236479047437/00020 6212557236479047437/00019 6212557236479047437/00027 6212557236479047437/00002 6212557236479047437/00008 6212557236479047437/00007 6212557236479047437/00005 6212557236479047437/00004 6176619956623227967/00029 6176619956623227967/00003 6176619956623227967/00006 6176619956623227967/00009 6176619956623227967/00010 6176619956623227967/00033 6176619956623227967/00024 6176619956623227967/00030 6176619956623227967/00013 6176619956623227967/00022 6176619956623227967/00026 6176619956623227967/00036 6176619956623227967/00023 6176619956623227967/00038 6176619956623227967/00018 6176619956623227967/00012 6176619956623227967/00021 6176619956623227967/00037 6176619956623227967/00020 6176619956623227967/00035 6176619956623227967/00017 6176619956623227967/00011 6176619956623227967/00008 6176619956623227967/00007 6176619956623227967/00025 6176619956623227967/00005 6176619956623227967/00004 6176619956623227967/00028 5583908027324294269/00015 5583908027324294269/00013 5583908027324294269/00018 5583908027324294269/00014 5583908027324294269/00017 5583908027324294269/00016 5583908027324294269/00019 5583908027324294269/00011 5583908027324294269/00002 5583908027324294269/00008 6079055479527306784/00001 6047057114178639659/00003 6047057114178639659/00006 6047057114178639659/00001 6047057114178639659/00007 6047057114178639659/00005 6328351272766065122/00003 6328351272766065122/00006 6328351272766065122/00002 6328351272766065122/00007 5973041083773852889/00009 5973041083773852889/00010 5973041083773852889/00001 5973041083773852889/00018 5973041083773852889/00012 5973041083773852889/00014 5973041083773852889/00020 5973041083773852889/00017 5973041083773852889/00007 5973041083773852889/00005 5973041083773852889/00004 6138429107427121863/00003 6138429107427121863/00006 6138429107427121863/00009 6138429107427121863/00013 6138429107427121863/00012 6138429107427121863/00011 6138429107427121863/00002 6138429107427121863/00005 6138429107427121863/00004 5554557509313620714/00029 5554557509313620714/00015 5554557509313620714/00006 5554557509313620714/00032 5554557509313620714/00009 5554557509313620714/00033 5554557509313620714/00024 5554557509313620714/00030 5554557509313620714/00026 5554557509313620714/00001 5554557509313620714/00023 5554557509313620714/00018 5554557509313620714/00012 5554557509313620714/00014 5554557509313620714/00016 5554557509313620714/00019 5554557509313620714/00027 5554557509313620714/00002 5554557509313620714/00008 5554557509313620714/00025 5554557509313620714/00005 5554557509313620714/00028 6333175380032936690/00015 6333175380032936690/00012 5562014002036182323/00009 5562014002036182323/00010 5562014002036182323/00013 5562014002036182323/00016 5562014002036182323/00002 5562014002036182323/00008 5562014002036182323/00004 5559149688346479685/00003 5559149688346479685/00001 5559149688346479685/00002 5978142216430678842/00003 5978142216430678842/00006 5978142216430678842/00001 5978142216430678842/00011 5978142216430678842/00004 6117961440778038750/00009 6117961440778038750/00010 6192561157239009848/00015 6192561157239009848/00003 6192561157239009848/00006 6192561157239009848/00009 6192561157239009848/00010 6192561157239009848/00013 6192561157239009848/00026 6192561157239009848/00001 6192561157239009848/00012 6192561157239009848/00014 6192561157239009848/00027 6192561157239009848/00002 6192561157239009848/00008 6192561157239009848/00007 6192561157239009848/00025 6192561157239009848/00005 6192561157239009848/00004 6257895340752297834/00029 6257895340752297834/00015 6257895340752297834/00044 6257895340752297834/00050 6257895340752297834/00038 6257895340752297834/00018 6257895340752297834/00012 6257895340752297834/00037 6257895340752297834/00020 6257895340752297834/00052 6257895340752297834/00016 6257895340752297834/00004 6097949899655865516/00015 6097949899655865516/00003 6097949899655865516/00009 6097949899655865516/00010 6097949899655865516/00001 6097949899655865516/00021 6097949899655865516/00020 6097949899655865516/00017 6097949899655865516/00007 6097949899655865516/00004 6344350455440407821/00032 6344350455440407821/00030 6344350455440407821/00014 6344350455440407821/00047 5976222366049298432/00015 5976222366049298432/00006 5976222366049298432/00022 5976222366049298432/00023 5976222366049298432/00014 5976222366049298432/00002 5976222366049298432/00025 5976222366049298432/00005 5976222366049298432/00004 6208622187442383782/00015 6208622187442383782/00006 6208622187442383782/00032 6208622187442383782/00009 6208622187442383782/00024 6208622187442383782/00030 6208622187442383782/00022 6208622187442383782/00026 6208622187442383782/00001 6208622187442383782/00023 6208622187442383782/00018 6208622187442383782/00012 6208622187442383782/00021 6208622187442383782/00037 6208622187442383782/00016 6208622187442383782/00007 6208622187442383782/00005 6209855272553065537/00015 6209855272553065537/00003 6209855272553065537/00006 6209855272553065537/00009 6209855272553065537/00010 6209855272553065537/00013 6209855272553065537/00012 6209855272553065537/00014 6209855272553065537/00017 6209855272553065537/00016 6209855272553065537/00011 6209855272553065537/00008 6209855272553065537/00007 6209855272553065537/00005 5859647504707866698/00003 5859647504707866698/00006 5859647504707866698/00001 5859647504707866698/00011 5859647504707866698/00005 5859647504707866698/00004 5866029396612933601/00015 5866029396612933601/00009 5866029396612933601/00010 5866029396612933601/00013 5866029396612933601/00001 5866029396612933601/00018 5866029396612933601/00021 5866029396612933601/00014 5866029396612933601/00020 5866029396612933601/00017 5866029396612933601/00019 5866029396612933601/00005 5866029396612933601/00004 6079262926447639905/00003 6079262926447639905/00001 6079262926447639905/00005 6079262926447639905/00004 5983686589712995130/00029 5983686589712995130/00032 5983686589712995130/00009 5983686589712995130/00033 5983686589712995130/00024 5983686589712995130/00013 5983686589712995130/00036 5983686589712995130/00023 5983686589712995130/00020 5983686589712995130/00035 5983686589712995130/00017 5983686589712995130/00019 5983686589712995130/00027 5983686589712995130/00034 5983686589712995130/00002 5983686589712995130/00007 5983686589712995130/00025 5983686589712995130/00005 5983686589712995130/00028 6129121054303316841/00006 6129121054303316841/00009 6129121054303316841/00013 6129121054303316841/00001 6129121054303316841/00014 6129121054303316841/00002 6129121054303316841/00007 6129121054303316841/00004 5704009486312527547/00006 5704009486312527547/00009 5704009486312527547/00008 5704009486312527547/00005 5704009486312527547/00004 6045255804894625121/00005 6359588140413215496/00004 6081606690101040237/00029 6081606690101040237/00015 6081606690101040237/00003 6081606690101040237/00006 6081606690101040237/00009 6081606690101040237/00010 6081606690101040237/00024 6081606690101040237/00013 6081606690101040237/00001 6081606690101040237/00023 6081606690101040237/00018 6081606690101040237/00012 6081606690101040237/00014 6081606690101040237/00019 6081606690101040237/00011 6081606690101040237/00008 6081606690101040237/00005 6118027153777667557/00006 6118027153777667557/00009 6118027153777667557/00010 6118027153777667557/00011 6118027153777667557/00005 6118027153777667557/00004 5962527003832534045/00003 5962527003832534045/00022 5962527003832534045/00038 5962527003832534045/00004 6377779044898631026/00001 6127942085780561051/00003 6127942085780561051/00006 6127942085780561051/00012 6127942085780561051/00011 6127942085780561051/00002 6127942085780561051/00008 6127942085780561051/00007 6127942085780561051/00004 5964390160645539923/00015 5964390160645539923/00003 5964390160645539923/00006 5964390160645539923/00032 5964390160645539923/00010 5964390160645539923/00024 5964390160645539923/00030 5964390160645539923/00031 5964390160645539923/00013 5964390160645539923/00022 5964390160645539923/00026 5964390160645539923/00044 5964390160645539923/00036 5964390160645539923/00001 5964390160645539923/00012 5964390160645539923/00041 5964390160645539923/00037 5964390160645539923/00039 5964390160645539923/00020 5964390160645539923/00017 5964390160645539923/00016 5964390160645539923/00019 5964390160645539923/00011 5964390160645539923/00002 5964390160645539923/00008 5964390160645539923/00040 5964390160645539923/00007 5964390160645539923/00025 5964390160645539923/00043 5964390160645539923/00005 5964390160645539923/00028 5695214252283763721/00060 5695214252283763721/00015 5695214252283763721/00003 5695214252283763721/00006 5695214252283763721/00046 5695214252283763721/00056 5695214252283763721/00070 5695214252283763721/00009 5695214252283763721/00010 5695214252283763721/00033 5695214252283763721/00057 5695214252283763721/00024 5695214252283763721/00053 5695214252283763721/00030 5695214252283763721/00062 5695214252283763721/00031 5695214252283763721/00013 5695214252283763721/00022 5695214252283763721/00026 5695214252283763721/00044 5695214252283763721/00050 5695214252283763721/00063 5695214252283763721/00045 5695214252283763721/00066 5695214252283763721/00049 5695214252283763721/00018 5695214252283763721/00012 5695214252283763721/00041 5695214252283763721/00065 5695214252283763721/00061 5695214252283763721/00021 5695214252283763721/00014 5695214252283763721/00037 5695214252283763721/00035 5695214252283763721/00051 5695214252283763721/00017 5695214252283763721/00052 5695214252283763721/00055 5695214252283763721/00016 5695214252283763721/00059 5695214252283763721/00019 5695214252283763721/00011 5695214252283763721/00027 5695214252283763721/00067 5695214252283763721/00034 5695214252283763721/00007 5695214252283763721/00068 5695214252283763721/00054 5695214252283763721/00043 5695214252283763721/00005 6082031891863344310/00010 6082031891863344310/00008 6005565153119550894/00029 6005565153119550894/00006 6005565153119550894/00031 6005565153119550894/00026 6005565153119550894/00023 6005565153119550894/00018 6005565153119550894/00012 6005565153119550894/00020 6005565153119550894/00011 6005565153119550894/00027 6005565153119550894/00008 6005565153119550894/00007 6005565153119550894/00005 6005565153119550894/00028 6195545300516274121/00006 6195545300516274121/00001 6195545300516274121/00004 5536876846942893978/00060 5536876846942893978/00015 5536876846942893978/00006 5536876846942893978/00056 5536876846942893978/00032 5536876846942893978/00070 5536876846942893978/00009 5536876846942893978/00073 5536876846942893978/00010 5536876846942893978/00024 5536876846942893978/00030 5536876846942893978/00058 5536876846942893978/00013 5536876846942893978/00026 5536876846942893978/00044 5536876846942893978/00036 5536876846942893978/00001 5536876846942893978/00072 5536876846942893978/00048 5536876846942893978/00018 5536876846942893978/00012 5536876846942893978/00041 5536876846942893978/00065 5536876846942893978/00014 5536876846942893978/00035 5536876846942893978/00059 5536876846942893978/00019 5536876846942893978/00011 5536876846942893978/00034 5536876846942893978/00002 5536876846942893978/00040 5536876846942893978/00007 5536876846942893978/00068 6055669382600519269/00003 6055669382600519269/00006 6055669382600519269/00001 6055669382600519269/00002 6218529388504139747/00015 6218529388504139747/00003 6218529388504139747/00009 6218529388504139747/00010 6218529388504139747/00024 6218529388504139747/00013 6218529388504139747/00026 6218529388504139747/00001 6218529388504139747/00023 6218529388504139747/00021 6218529388504139747/00014 6218529388504139747/00016 6218529388504139747/00011 6218529388504139747/00002 6218529388504139747/00007 5948019892796848934/00006 5948019892796848934/00031 5948019892796848934/00022 5948019892796848934/00023 5948019892796848934/00018 5948019892796848934/00012 5948019892796848934/00014 5948019892796848934/00020 5948019892796848934/00016 5948019892796848934/00011 5948019892796848934/00002 5948019892796848934/00025 5948019892796848934/00004 5948019892796848934/00028 6284598011424982129/00029 6284598011424982129/00015 6284598011424982129/00003 6284598011424982129/00006 6284598011424982129/00032 6284598011424982129/00010 6284598011424982129/00033 6284598011424982129/00030 6284598011424982129/00013 6284598011424982129/00022 6284598011424982129/00026 6284598011424982129/00044 6284598011424982129/00036 6284598011424982129/00001 6284598011424982129/00023 6284598011424982129/00038 6284598011424982129/00042 6284598011424982129/00012 6284598011424982129/00041 6284598011424982129/00021 6284598011424982129/00014 6284598011424982129/00037 6284598011424982129/00039 6284598011424982129/00035 6284598011424982129/00017 6284598011424982129/00016 6284598011424982129/00019 6284598011424982129/00011 6284598011424982129/00034 6284598011424982129/00008 6284598011424982129/00040 6284598011424982129/00025 6284598011424982129/00043 6284598011424982129/00005 6284598011424982129/00004 6284598011424982129/00028 6076338053719123186/00003 6076338053719123186/00011 6076338053719123186/00008 6076338053719123186/00004 6355830903022659925/00014 5970315927024540005/00029 5970315927024540005/00015 5970315927024540005/00003 5970315927024540005/00006 5970315927024540005/00032 5970315927024540005/00010 5970315927024540005/00030 5970315927024540005/00031 5970315927024540005/00022 5970315927024540005/00036 5970315927024540005/00001 5970315927024540005/00023 5970315927024540005/00018 5970315927024540005/00021 5970315927024540005/00020 5970315927024540005/00035 5970315927024540005/00017 5970315927024540005/00016 5970315927024540005/00019 5970315927024540005/00011 5970315927024540005/00027 5970315927024540005/00002 5970315927024540005/00007 5970315927024540005/00025 5970315927024540005/00004 6095630617316018728/00015 6095630617316018728/00006 6095630617316018728/00009 6095630617316018728/00010 6095630617316018728/00022 6095630617316018728/00001 6095630617316018728/00023 6095630617316018728/00012 6095630617316018728/00021 6095630617316018728/00020 6095630617316018728/00011 6095630617316018728/00002 6095630617316018728/00008 6095630617316018728/00005 5870830311056405691/00015 5870830311056405691/00006 5870830311056405691/00012 5870830311056405691/00017 5870830311056405691/00016 5870830311056405691/00019 5870830311056405691/00002 5870830311056405691/00007 5870830311056405691/00005 5870830311056405691/00004 5965472492404198512/00015 5965472492404198512/00003 5965472492404198512/00022 5965472492404198512/00001 5965472492404198512/00018 5965472492404198512/00021 5965472492404198512/00014 5965472492404198512/00020 5965472492404198512/00017 5965472492404198512/00019 5965472492404198512/00004 6017424416816605260/00003 6017424416816605260/00032 6017424416816605260/00009 6017424416816605260/00010 6017424416816605260/00030 6017424416816605260/00031 6017424416816605260/00013 6017424416816605260/00022 6017424416816605260/00026 6017424416816605260/00023 6017424416816605260/00012 6017424416816605260/00017 6017424416816605260/00016 6017424416816605260/00019 6017424416816605260/00011 6017424416816605260/00002 6017424416816605260/00008 6017424416816605260/00007 6017424416816605260/00028 6024475035129672240/00006 6024475035129672240/00001 6024475035129672240/00005 6024475035129672240/00004 6096125397548517942/00006 6096125397548517942/00005 6227118464102621148/00006 6227118464102621148/00001 6227118464102621148/00002 6227118464102621148/00004 6325119739372550419/00015 6325119739372550419/00024 6325119739372550419/00022 6325119739372550419/00026 6325119739372550419/00023 6325119739372550419/00021 6325119739372550419/00014 6325119739372550419/00017 6325119739372550419/00016 6325119739372550419/00027 6325119739372550419/00005 6294582521897998283/00029 6294582521897998283/00015 6294582521897998283/00003 6294582521897998283/00006 6294582521897998283/00032 6294582521897998283/00009 6294582521897998283/00010 6294582521897998283/00033 6294582521897998283/00030 6294582521897998283/00031 6294582521897998283/00001 6294582521897998283/00023 6294582521897998283/00018 6294582521897998283/00012 6294582521897998283/00020 6294582521897998283/00035 6294582521897998283/00016 6294582521897998283/00011 6294582521897998283/00007 6294582521897998283/00005 6294582521897998283/00004 6246743458168222038/00029 6246743458168222038/00015 6246743458168222038/00003 6246743458168222038/00009 6246743458168222038/00031 6246743458168222038/00026 6246743458168222038/00045 6246743458168222038/00049 6246743458168222038/00048 6246743458168222038/00042 6246743458168222038/00014 6246743458168222038/00020 6246743458168222038/00017 6246743458168222038/00016 6246743458168222038/00002 6246743458168222038/00008 6246743458168222038/00007 6246743458168222038/00043 6349420664333310663/00012 5991755115275275454/00015 5991755115275275454/00003 5991755115275275454/00006 5991755115275275454/00009 5991755115275275454/00010 5991755115275275454/00013 5991755115275275454/00018 5991755115275275454/00012 5991755115275275454/00021 5991755115275275454/00014 5991755115275275454/00020 5991755115275275454/00017 5991755115275275454/00016 5991755115275275454/00019 5991755115275275454/00002 5991755115275275454/00005 5991755115275275454/00004 6243720660185360999/00001 6243720660185360999/00007 6243720660185360999/00005 6243720660185360999/00004 6214517030056215518/00006 6214517030056215518/00009 6214517030056215518/00010 6214517030056215518/00024 6214517030056215518/00013 6214517030056215518/00001 6214517030056215518/00018 6214517030056215518/00012 6214517030056215518/00021 6214517030056215518/00014 6214517030056215518/00020 6214517030056215518/00017 6214517030056215518/00002 6214517030056215518/00008 6214517030056215518/00025 6214517030056215518/00005 6214517030056215518/00028 6125754229439910296/00003 6125754229439910296/00006 6125754229439910296/00012 6125754229439910296/00007 6125754229439910296/00004 6152076795506977036/00029 6152076795506977036/00015 6152076795506977036/00003 6152076795506977036/00006 6152076795506977036/00032 6152076795506977036/00009 6152076795506977036/00010 6152076795506977036/00033 6152076795506977036/00024 6152076795506977036/00030 6152076795506977036/00031 6152076795506977036/00013 6152076795506977036/00022 6152076795506977036/00026 6152076795506977036/00036 6152076795506977036/00001 6152076795506977036/00045 6152076795506977036/00038 6152076795506977036/00042 6152076795506977036/00041 6152076795506977036/00021 6152076795506977036/00014 6152076795506977036/00037 6152076795506977036/00020 6152076795506977036/00035 6152076795506977036/00016 6152076795506977036/00011 6152076795506977036/00027 6152076795506977036/00034 6152076795506977036/00040 6152076795506977036/00007 6152076795506977036/00025 6152076795506977036/00005 6152076795506977036/00004 6152076795506977036/00028 6189592475844010422/00015 6189592475844010422/00003 6189592475844010422/00006 6189592475844010422/00033 6189592475844010422/00031 6189592475844010422/00013 6189592475844010422/00001 6189592475844010422/00021 6189592475844010422/00016 6189592475844010422/00019 6189592475844010422/00027 6189592475844010422/00002 6189592475844010422/00025 6189592475844010422/00005 6220040787495602232/00046 6220040787495602232/00010 6220040787495602232/00033 6220040787495602232/00024 6220040787495602232/00053 6220040787495602232/00030 6220040787495602232/00031 6220040787495602232/00026 6220040787495602232/00050 6220040787495602232/00036 6220040787495602232/00045 6220040787495602232/00049 6220040787495602232/00038 6220040787495602232/00042 6220040787495602232/00021 6220040787495602232/00037 6220040787495602232/00039 6220040787495602232/00020 6220040787495602232/00035 6220040787495602232/00051 6220040787495602232/00017 6220040787495602232/00034 6220040787495602232/00007 6220040787495602232/00025 6220040787495602232/00043 6220040787495602232/00005 6220040787495602232/00028 5573250924972719885/00029 5573250924972719885/00003 5573250924972719885/00006 5573250924972719885/00046 5573250924972719885/00032 5573250924972719885/00009 5573250924972719885/00010 5573250924972719885/00033 5573250924972719885/00024 5573250924972719885/00030 5573250924972719885/00031 5573250924972719885/00013 5573250924972719885/00026 5573250924972719885/00044 5573250924972719885/00036 5573250924972719885/00001 5573250924972719885/00045 5573250924972719885/00049 5573250924972719885/00023 5573250924972719885/00038 5573250924972719885/00048 5573250924972719885/00018 5573250924972719885/00042 5573250924972719885/00012 5573250924972719885/00037 5573250924972719885/00047 5573250924972719885/00039 5573250924972719885/00020 5573250924972719885/00035 5573250924972719885/00051 5573250924972719885/00017 5573250924972719885/00052 5573250924972719885/00016 5573250924972719885/00011 5573250924972719885/00027 5573250924972719885/00002 5573250924972719885/00008 5573250924972719885/00007 5573250924972719885/00025 5573250924972719885/00043 6240790633496029484/00003 6240790633496029484/00001 6240790633496029484/00002 6240790633496029484/00005 6240790633496029484/00004 6017841887638440636/00015 6017841887638440636/00003 6017841887638440636/00010 6017841887638440636/00013 6017841887638440636/00011 6017841887638440636/00002 6017841887638440636/00008 6017841887638440636/00005 5943988206996091651/00015 5943988206996091651/00006 5943988206996091651/00009 5943988206996091651/00010 5943988206996091651/00013 5943988206996091651/00001 5943988206996091651/00014 5943988206996091651/00019 5943988206996091651/00011 5943988206996091651/00008 5943988206996091651/00007 5943988206996091651/00005 5943988206996091651/00004 6233883037724292359/00029 6233883037724292359/00015 6233883037724292359/00003 6233883037724292359/00006 6233883037724292359/00032 6233883037724292359/00009 6233883037724292359/00010 6233883037724292359/00033 6233883037724292359/00024 6233883037724292359/00030 6233883037724292359/00031 6233883037724292359/00013 6233883037724292359/00022 6233883037724292359/00026 6233883037724292359/00001 6233883037724292359/00038 6233883037724292359/00018 6233883037724292359/00012 6233883037724292359/00014 6233883037724292359/00037 6233883037724292359/00039 6233883037724292359/00020 6233883037724292359/00017 6233883037724292359/00016 6233883037724292359/00027 6233883037724292359/00002 6233883037724292359/00008 6233883037724292359/00025 6233883037724292359/00005 6233883037724292359/00004 6233883037724292359/00028 6126478360926022944/00029 6126478360926022944/00032 6126478360926022944/00009 6126478360926022944/00010 6126478360926022944/00033 6126478360926022944/00036 6126478360926022944/00035 6126478360926022944/00017 6126478360926022944/00016 6126478360926022944/00007 6126478360926022944/00028 5939009480906563415/00014 5939009480906563415/00016 5939009480906563415/00005 5947275145467758861/00015 5947275145467758861/00006 5947275145467758861/00009 5947275145467758861/00010 5947275145467758861/00013 5947275145467758861/00014 5947275145467758861/00016 5947275145467758861/00011 5947275145467758861/00008 5947275145467758861/00007 5947275145467758861/00005 6176612225682029302/00003 6176612225682029302/00006 6176612225682029302/00001 6176612225682029302/00005 6076828968611457247/00029 6076828968611457247/00015 6076828968611457247/00003 6076828968611457247/00006 6076828968611457247/00046 6076828968611457247/00032 6076828968611457247/00009 6076828968611457247/00010 6076828968611457247/00033 6076828968611457247/00024 6076828968611457247/00031 6076828968611457247/00022 6076828968611457247/00026 6076828968611457247/00044 6076828968611457247/00036 6076828968611457247/00001 6076828968611457247/00045 6076828968611457247/00023 6076828968611457247/00038 6076828968611457247/00042 6076828968611457247/00012 6076828968611457247/00041 6076828968611457247/00014 6076828968611457247/00037 6076828968611457247/00047 6076828968611457247/00039 6076828968611457247/00020 6076828968611457247/00016 6076828968611457247/00019 6076828968611457247/00027 6076828968611457247/00002 6076828968611457247/00008 6076828968611457247/00040 6076828968611457247/00025 6076828968611457247/00005 6076828968611457247/00028 6293882871725478288/00015 6293882871725478288/00004 6160095069951789749/00015 6160095069951789749/00006 6160095069951789749/00009 6160095069951789749/00010 6160095069951789749/00013 6160095069951789749/00022 6160095069951789749/00001 6160095069951789749/00014 6160095069951789749/00020 6160095069951789749/00017 6160095069951789749/00011 6160095069951789749/00008 6160095069951789749/00007 6160095069951789749/00005 6118777055067550826/00015 6118777055067550826/00003 6118777055067550826/00006 6118777055067550826/00009 6118777055067550826/00010 6118777055067550826/00033 6118777055067550826/00030 6118777055067550826/00031 6118777055067550826/00013 6118777055067550826/00022 6118777055067550826/00026 6118777055067550826/00018 6118777055067550826/00042 6118777055067550826/00012 6118777055067550826/00041 6118777055067550826/00021 6118777055067550826/00014 6118777055067550826/00039 6118777055067550826/00020 6118777055067550826/00035 6118777055067550826/00017 6118777055067550826/00019 6118777055067550826/00027 6118777055067550826/00034 6118777055067550826/00002 6118777055067550826/00040 6118777055067550826/00007 6118777055067550826/00025 6118777055067550826/00005 6118777055067550826/00028 5941773292361605454/00005 5941773292361605454/00004 6115437288498240710/00001 6323956232732063947/00013 6323956232732063947/00022 6323956232732063947/00023 6323956232732063947/00020 6323956232732063947/00017 6323956232732063947/00019 6323956232732063947/00011 6323956232732063947/00005 5973410880458038503/00010 5973410880458038503/00001 5973410880458038503/00008 6369220893064682263/00003 6369220893064682263/00033 6369220893064682263/00023 6369220893064682263/00035 6369220893064682263/00007 6220840939902787040/00029 6220840939902787040/00003 6220840939902787040/00006 6220840939902787040/00046 6220840939902787040/00032 6220840939902787040/00009 6220840939902787040/00033 6220840939902787040/00057 6220840939902787040/00053 6220840939902787040/00030 6220840939902787040/00058 6220840939902787040/00013 6220840939902787040/00022 6220840939902787040/00026 6220840939902787040/00044 6220840939902787040/00050 6220840939902787040/00036 6220840939902787040/00045 6220840939902787040/00049 6220840939902787040/00023 6220840939902787040/00038 6220840939902787040/00048 6220840939902787040/00018 6220840939902787040/00042 6220840939902787040/00041 6220840939902787040/00021 6220840939902787040/00014 6220840939902787040/00047 6220840939902787040/00020 6220840939902787040/00051 6220840939902787040/00052 6220840939902787040/00055 6220840939902787040/00016 6220840939902787040/00019 6220840939902787040/00011 6220840939902787040/00027 6220840939902787040/00034 6220840939902787040/00002 6220840939902787040/00008 6220840939902787040/00040 6220840939902787040/00007 6220840939902787040/00025 6220840939902787040/00054 6220840939902787040/00005 6220840939902787040/00004 6220840939902787040/00028 5986535441520502764/00015 5986535441520502764/00010 5986535441520502764/00013 5986535441520502764/00026 5986535441520502764/00021 5986535441520502764/00014 5986535441520502764/00016 5986535441520502764/00019 5986535441520502764/00011 5986535441520502764/00002 5986535441520502764/00007 5986535441520502764/00025 5986535441520502764/00005 6174022360402606976/00029 6174022360402606976/00015 6174022360402606976/00003 6174022360402606976/00032 6174022360402606976/00009 6174022360402606976/00010 6174022360402606976/00033 6174022360402606976/00024 6174022360402606976/00030 6174022360402606976/00013 6174022360402606976/00022 6174022360402606976/00036 6174022360402606976/00023 6174022360402606976/00038 6174022360402606976/00012 6174022360402606976/00021 6174022360402606976/00039 6174022360402606976/00035 6174022360402606976/00017 6174022360402606976/00016 6174022360402606976/00019 6174022360402606976/00011 6174022360402606976/00027 6174022360402606976/00034 6174022360402606976/00002 6174022360402606976/00025 6174022360402606976/00005 6174022360402606976/00004 5972198411189673982/00029 5972198411189673982/00015 5972198411189673982/00006 5972198411189673982/00032 5972198411189673982/00009 5972198411189673982/00033 5972198411189673982/00013 5972198411189673982/00077 5972198411189673982/00036 5972198411189673982/00064 5972198411189673982/00072 5972198411189673982/00023 5972198411189673982/00048 5972198411189673982/00085 5972198411189673982/00042 5972198411189673982/00021 5972198411189673982/00075 5972198411189673982/00079 5972198411189673982/00037 5972198411189673982/00047 5972198411189673982/00020 5972198411189673982/00035 5972198411189673982/00017 5972198411189673982/00052 5972198411189673982/00016 5972198411189673982/00059 5972198411189673982/00034 5972198411189673982/00008 5972198411189673982/00040 5972198411189673982/00007 5972198411189673982/00054 5972198411189673982/00074 5972198411189673982/00028 5562988100618919203/00003 5562988100618919203/00006 5562988100618919203/00010 5562988100618919203/00001 5562988100618919203/00014 5562988100618919203/00008 5562988100618919203/00007 5562988100618919203/00005 5562988100618919203/00004 5676667724506192065/00002 6081142833633136407/00015 6081142833633136407/00010 6081142833633136407/00033 6081142833633136407/00013 6081142833633136407/00026 6081142833633136407/00036 6081142833633136407/00001 6081142833633136407/00038 6081142833633136407/00018 6081142833633136407/00021 6081142833633136407/00037 6081142833633136407/00039 6081142833633136407/00020 6081142833633136407/00035 6081142833633136407/00034 6081142833633136407/00007 6081142833633136407/00004 5992534651839499526/00003 5992534651839499526/00006 5992534651839499526/00010 5992534651839499526/00013 5992534651839499526/00018 5992534651839499526/00014 5992534651839499526/00017 5992534651839499526/00016 5992534651839499526/00019 5992534651839499526/00002 5992534651839499526/00008 5992534651839499526/00007 5992534651839499526/00005 5992534651839499526/00004 6098722993769138929/00001 6098722993769138929/00004 6134637080801485493/00015 6134637080801485493/00098 6134637080801485493/00070 6134637080801485493/00010 6134637080801485493/00024 6134637080801485493/00069 6134637080801485493/00044 6134637080801485493/00038 6134637080801485493/00075 6134637080801485493/00076 6134637080801485493/00080 6134637080801485493/00084 6134637080801485493/00027 6134637080801485493/00002 6134637080801485493/00087 6134637080801485493/00068 6134637080801485493/00097 6263059609429075361/00029 6263059609429075361/00033 6263059609429075361/00031 6263059609429075361/00022 6263059609429075361/00036 6263059609429075361/00023 6263059609429075361/00012 6263059609429075361/00037 6263059609429075361/00020 6263059609429075361/00035 6263059609429075361/00017 6263059609429075361/00016 6263059609429075361/00034 6263059609429075361/00002 6263059609429075361/00007 6263059609429075361/00005 6263059609429075361/00004 5942747390944340934/00029 5942747390944340934/00003 5942747390944340934/00006 5942747390944340934/00009 5942747390944340934/00024 5942747390944340934/00030 5942747390944340934/00013 5942747390944340934/00026 5942747390944340934/00001 5942747390944340934/00018 5942747390944340934/00027 5942747390944340934/00002 5942747390944340934/00008 5942747390944340934/00007 5942747390944340934/00025 5942747390944340934/00005 5942747390944340934/00004 5932430450002543806/00015 5932430450002543806/00003 5932430450002543806/00018 5932430450002543806/00012 5932430450002543806/00014 5932430450002543806/00016 5932430450002543806/00011 6116104726415977713/00009 6116104726415977713/00010 6116104726415977713/00031 6116104726415977713/00026 6116104726415977713/00049 6116104726415977713/00023 6116104726415977713/00037 6116104726415977713/00047 6116104726415977713/00035 6116104726415977713/00052 6116104726415977713/00027 6116104726415977713/00028 5973995855003050094/00015 5973995855003050094/00003 5973995855003050094/00032 5973995855003050094/00009 5973995855003050094/00033 5973995855003050094/00024 5973995855003050094/00044 5973995855003050094/00018 5973995855003050094/00042 5973995855003050094/00041 5973995855003050094/00039 5973995855003050094/00020 5973995855003050094/00019 5973995855003050094/00034 5973995855003050094/00043 6199982860726471867/00003 6199982860726471867/00006 6199982860726471867/00001 6199982860726471867/00007 6199982860726471867/00005 6199982860726471867/00004 6041916038325253798/00001 6041916038325253798/00002 5985051100823002262/00015 5985051100823002262/00006 5985051100823002262/00009 5985051100823002262/00024 5985051100823002262/00031 5985051100823002262/00013 5985051100823002262/00022 5985051100823002262/00001 5985051100823002262/00023 5985051100823002262/00018 5985051100823002262/00012 5985051100823002262/00014 5985051100823002262/00020 5985051100823002262/00016 5985051100823002262/00008 5985051100823002262/00025 5985051100823002262/00005 5985051100823002262/00004 5985051100823002262/00028 6228135082861652036/00003 5940180718488248497/00015 5940180718488248497/00003 5940180718488248497/00009 5940180718488248497/00010 5940180718488248497/00013 5940180718488248497/00018 5940180718488248497/00021 5940180718488248497/00014 5940180718488248497/00020 5940180718488248497/00017 5940180718488248497/00016 5940180718488248497/00011 5940180718488248497/00008 5940180718488248497/00007 6174408907459245212/00003 6174408907459245212/00006 6174408907459245212/00009 6174408907459245212/00013 6174408907459245212/00023 6174408907459245212/00012 6174408907459245212/00017 6174408907459245212/00019 6174408907459245212/00005 6174408907459245212/00004 6369970794354565537/00003 6369970794354565537/00002 6033396541197638142/00029 6033396541197638142/00032 6033396541197638142/00010 6033396541197638142/00018 6033396541197638142/00021 6033396541197638142/00014 6033396541197638142/00016 6033396541197638142/00019 6033396541197638142/00002 6033396541197638142/00025 6033396541197638142/00004 5955364286873051262/00015 5955364286873051262/00006 5955364286873051262/00009 5955364286873051262/00010 5955364286873051262/00013 5955364286873051262/00001 5955364286873051262/00012 5955364286873051262/00014 5955364286873051262/00011 5955364286873051262/00002 5955364286873051262/00008 5975399020818655185/00003 5975399020818655185/00006 5975399020818655185/00010 5975399020818655185/00024 5975399020818655185/00030 5975399020818655185/00013 5975399020818655185/00022 5975399020818655185/00001 5975399020818655185/00023 5975399020818655185/00018 5975399020818655185/00012 5975399020818655185/00020 5975399020818655185/00016 5975399020818655185/00002 5975399020818655185/00028 6244888032296347552/00009 6244888032296347552/00033 6244888032296347552/00030 6244888032296347552/00026 6244888032296347552/00050 6244888032296347552/00036 6244888032296347552/00049 6244888032296347552/00038 6244888032296347552/00021 6244888032296347552/00037 6244888032296347552/00047 6244888032296347552/00035 6244888032296347552/00017 6244888032296347552/00016 6244888032296347552/00019 6244888032296347552/00011 6244888032296347552/00027 6244888032296347552/00040 6244888032296347552/00004 5985831925877420724/00015 5985831925877420724/00003 5985831925877420724/00006 5985831925877420724/00024 5985831925877420724/00001 5985831925877420724/00012 5985831925877420724/00016 5985831925877420724/00019 5985831925877420724/00005 5985831925877420724/00028 5969948707320095975/00003 5969948707320095975/00010 5969948707320095975/00001 5969948707320095975/00012 5969948707320095975/00014 5969948707320095975/00011 5969948707320095975/00002 5969948707320095975/00008 5969948707320095975/00007 5969948707320095975/00005 5969948707320095975/00004 5880493987472387907/00004 6326538367070482119/00001 6326538367070482119/00002 6326538367070482119/00004 5883833754041772355/00029 5883833754041772355/00015 5883833754041772355/00003 5883833754041772355/00006 5883833754041772355/00032 5883833754041772355/00009 5883833754041772355/00024 5883833754041772355/00030 5883833754041772355/00031 5883833754041772355/00001 5883833754041772355/00042 5883833754041772355/00012 5883833754041772355/00014 5883833754041772355/00037 5883833754041772355/00035 5883833754041772355/00019 5883833754041772355/00027 5883833754041772355/00034 5883833754041772355/00008 5883833754041772355/00025 5883833754041772355/00043 5883833754041772355/00005 5883833754041772355/00028 6017424416816553406/00001 6017424416816553406/00002 6017424416816553406/00004 6243057087738065053/00006 6243057087738065053/00001 6243057087738065053/00011 6373112133434795034/00002 6373112133434795034/00007 6373112133434795034/00005 5859690024884097102/00015 5859690024884097102/00003 5859690024884097102/00006 5859690024884097102/00009 5859690024884097102/00030 5859690024884097102/00013 5859690024884097102/00022 5859690024884097102/00026 5859690024884097102/00036 5859690024884097102/00023 5859690024884097102/00018 5859690024884097102/00012 5859690024884097102/00021 5859690024884097102/00014 5859690024884097102/00039 5859690024884097102/00027 5859690024884097102/00040 5859690024884097102/00025 5859690024884097102/00043 5859690024884097102/00004 5859690024884097102/00028 6196658556039459810/00029 6196658556039459810/00015 6196658556039459810/00003 6196658556039459810/00006 6196658556039459810/00032 6196658556039459810/00009 6196658556039459810/00024 6196658556039459810/00013 6196658556039459810/00022 6196658556039459810/00026 6196658556039459810/00023 6196658556039459810/00012 6196658556039459810/00014 6196658556039459810/00011 6196658556039459810/00002 6196658556039459810/00008 6196658556039459810/00025 6196658556039459810/00005 6196658556039459810/00004 6131734112406115092/00003 6131734112406115092/00006 6131734112406115092/00001 6131734112406115092/00002 6131734112406115092/00005 6122801009927180587/00015 6122801009927180587/00009 6122801009927180587/00013 6122801009927180587/00018 6122801009927180587/00021 6122801009927180587/00011 6122801009927180587/00025 6122801009927180587/00004 5857811406188824102/00015 5857811406188824102/00003 5857811406188824102/00006 5857811406188824102/00032 5857811406188824102/00009 5857811406188824102/00010 5857811406188824102/00030 5857811406188824102/00031 5857811406188824102/00013 5857811406188824102/00026 5857811406188824102/00012 5857811406188824102/00021 5857811406188824102/00014 5857811406188824102/00020 5857811406188824102/00017 5857811406188824102/00016 5857811406188824102/00019 5857811406188824102/00011 5857811406188824102/00027 5857811406188824102/00002 5857811406188824102/00007 5857811406188824102/00025 5857811406188824102/00005 5857811406188824102/00028 6116855916196048235/00006 6116855916196048235/00009 6116855916196048235/00011 6116855916196048235/00007 6348440123299631026/00021 6122777817103782186/00003 6122777817103782186/00007 6122777817103782186/00004 6264582604832173242/00006 6264582604832173242/00013 6264582604832173242/00021 6264582604832173242/00025 5989133037741127738/00029 5989133037741127738/00009 5989133037741127738/00033 5989133037741127738/00022 5989133037741127738/00001 5989133037741127738/00012 5989133037741127738/00021 5989133037741127738/00016 5989133037741127738/00008 5989133037741127738/00025 5989133037741127738/00004 5989133037741127738/00028 5958785228324251846/00015 5958785228324251846/00003 5958785228324251846/00006 5958785228324251846/00046 5958785228324251846/00032 5958785228324251846/00009 5958785228324251846/00010 5958785228324251846/00024 5958785228324251846/00053 5958785228324251846/00030 5958785228324251846/00022 5958785228324251846/00044 5958785228324251846/00050 5958785228324251846/00036 5958785228324251846/00049 5958785228324251846/00048 5958785228324251846/00018 5958785228324251846/00042 5958785228324251846/00012 5958785228324251846/00041 5958785228324251846/00014 5958785228324251846/00037 5958785228324251846/00039 5958785228324251846/00020 5958785228324251846/00035 5958785228324251846/00016 5958785228324251846/00019 5958785228324251846/00011 5958785228324251846/00034 5958785228324251846/00008 5958785228324251846/00040 5958785228324251846/00007 5958785228324251846/00043 5958785228324251846/00005 5958785228324251846/00004 5958785228324251846/00028 6191818986890260693/00015 6191818986890260693/00003 6191818986890260693/00006 6191818986890260693/00010 6191818986890260693/00013 6191818986890260693/00018 6191818986890260693/00012 6191818986890260693/00014 6191818986890260693/00020 6191818986890260693/00011 6191818986890260693/00002 6191818986890260693/00008 6191818986890260693/00005 6050506402414059176/00060 6050506402414059176/00029 6050506402414059176/00006 6050506402414059176/00046 6050506402414059176/00009 6050506402414059176/00073 6050506402414059176/00010 6050506402414059176/00033 6050506402414059176/00053 6050506402414059176/00071 6050506402414059176/00058 6050506402414059176/00062 6050506402414059176/00013 6050506402414059176/00069 6050506402414059176/00050 6050506402414059176/00001 6050506402414059176/00045 6050506402414059176/00066 6050506402414059176/00064 6050506402414059176/00049 6050506402414059176/00038 6050506402414059176/00018 6050506402414059176/00012 6050506402414059176/00065 6050506402414059176/00021 6050506402414059176/00075 6050506402414059176/00014 6050506402414059176/00020 6050506402414059176/00035 6050506402414059176/00051 6050506402414059176/00052 6050506402414059176/00016 6050506402414059176/00059 6050506402414059176/00019 6050506402414059176/00067 6050506402414059176/00007 6050506402414059176/00068 6050506402414059176/00043 6050506402414059176/00074 6050506402414059176/00004 6050506402414059176/00028 6222445110187844729/00003 6222445110187844729/00006 6222445110187844729/00010 6222445110187844729/00022 6222445110187844729/00026 6222445110187844729/00023 6222445110187844729/00012 6222445110187844729/00021 6222445110187844729/00017 6222445110187844729/00016 6222445110187844729/00019 6222445110187844729/00011 6222445110187844729/00008 6222445110187844729/00004 6369259547770346264/00010 6369259547770346264/00016 6127199915431811298/00009 6127199915431811298/00010 6127199915431811298/00012 6127199915431811298/00011 6127199915431811298/00002 6127199915431811298/00008 6127199915431811298/00007 6127199915431811298/00005 5964019075471229367/00006 5964019075471229367/00009 5964019075471229367/00002 5964019075471229367/00005 6108386670185059670/00029 6108386670185059670/00003 6108386670185059670/00006 6108386670185059670/00010 6108386670185059670/00033 6108386670185059670/00030 6108386670185059670/00013 6108386670185059670/00022 6108386670185059670/00026 6108386670185059670/00036 6108386670185059670/00001 6108386670185059670/00023 6108386670185059670/00018 6108386670185059670/00012 6108386670185059670/00020 6108386670185059670/00035 6108386670185059670/00017 6108386670185059670/00016 6108386670185059670/00019 6108386670185059670/00027 6108386670185059670/00034 6108386670185059670/00008 6108386670185059670/00007 6108386670185059670/00005 6108386670185059670/00004 6108386670185059670/00028 6124358794565444889/00029 6124358794565444889/00024 6124358794565444889/00030 6124358794565444889/00026 6124358794565444889/00036 6124358794565444889/00001 6124358794565444889/00023 6124358794565444889/00018 6124358794565444889/00012 6124358794565444889/00037 6124358794565444889/00035 6124358794565444889/00016 6124358794565444889/00027 6124358794565444889/00034 6124358794565444889/00008 6124358794565444889/00025 6124358794565444889/00005 6124358794565444889/00004 6124358794565444889/00028 6258192981985973325/00002 5942194628653347004/00003 5942194628653347004/00006 5942194628653347004/00010 5942194628653347004/00013 5942194628653347004/00001 5942194628653347004/00002 5942194628653347004/00007 5942194628653347004/00005 5572404386918676247/00003 5572404386918676247/00005 5749756041975676393/00003 5749756041975676393/00006 5749756041975676393/00032 5749756041975676393/00010 5749756041975676393/00024 5749756041975676393/00031 5749756041975676393/00026 5749756041975676393/00038 5749756041975676393/00037 5749756041975676393/00039 5749756041975676393/00020 5749756041975676393/00019 5749756041975676393/00011 5749756041975676393/00027 5749756041975676393/00002 5749756041975676393/00008 5749756041975676393/00040 5749756041975676393/00025 5749756041975676393/00005 5749756041975676393/00004 5749756041975676393/00028 6285734459901992892/00003 6285734459901992892/00006 6285734459901992892/00032 6285734459901992892/00009 6285734459901992892/00010 6285734459901992892/00033 6285734459901992892/00024 6285734459901992892/00031 6285734459901992892/00013 6285734459901992892/00022 6285734459901992892/00026 6285734459901992892/00036 6285734459901992892/00001 6285734459901992892/00023 6285734459901992892/00038 6285734459901992892/00018 6285734459901992892/00012 6285734459901992892/00037 6285734459901992892/00039 6285734459901992892/00035 6285734459901992892/00017 6285734459901992892/00016 6285734459901992892/00034 6285734459901992892/00002 6285734459901992892/00008 6285734459901992892/00007 6285734459901992892/00025 6285734459901992892/00005 6285734459901992892/00004 6285734459901992892/00028 5955008663580939946/00029 5955008663580939946/00015 5955008663580939946/00009 5955008663580939946/00010 5955008663580939946/00014 5955008663580939946/00020 5955008663580939946/00017 5955008663580939946/00019 5955008663580939946/00011 5955008663580939946/00007 5955008663580939946/00005 5955008663580939946/00028 5986632078284600430/00003 5986632078284600430/00006 5986632078284600430/00009 5986632078284600430/00010 5986632078284600430/00001 5986632078284600430/00008 5986632078284600430/00007 6336117003133970558/00003 6336117003133970558/00062 6336117003133970558/00018 6336117003133970558/00067 6364791063795580193/00006 6364791063795580193/00005 5537514649586349811/00060 5537514649586349811/00029 5537514649586349811/00015 5537514649586349811/00006 5537514649586349811/00032 5537514649586349811/00070 5537514649586349811/00010 5537514649586349811/00033 5537514649586349811/00057 5537514649586349811/00078 5537514649586349811/00058 5537514649586349811/00062 5537514649586349811/00031 5537514649586349811/00013 5537514649586349811/00044 5537514649586349811/00050 5537514649586349811/00036 5537514649586349811/00063 5537514649586349811/00045 5537514649586349811/00066 5537514649586349811/00064 5537514649586349811/00038 5537514649586349811/00048 5537514649586349811/00065 5537514649586349811/00039 5537514649586349811/00035 5537514649586349811/00017 5537514649586349811/00059 5537514649586349811/00011 5537514649586349811/00067 5537514649586349811/00034 5537514649586349811/00008 5537514649586349811/00040 6035986406476391226/00003 6035986406476391226/00006 6035986406476391226/00010 6035986406476391226/00001 6035986406476391226/00012 6035986406476391226/00002 6035986406476391226/00008 6035986406476391226/00007 6035986406476391226/00005 6035986406476391226/00004 6048580109581736274/00003 6223384419535476251/00029 6223384419535476251/00015 6223384419535476251/00003 6223384419535476251/00006 6223384419535476251/00009 6223384419535476251/00001 6223384419535476251/00012 6223384419535476251/00014 6223384419535476251/00017 6223384419535476251/00019 6223384419535476251/00011 6223384419535476251/00002 6223384419535476251/00008 6223384419535476251/00007 6223384419535476251/00005 5993214974659249613/00015 5993214974659249613/00006 5993214974659249613/00013 5993214974659249613/00022 5993214974659249613/00001 5993214974659249613/00018 5993214974659249613/00014 5993214974659249613/00020 5993214974659249613/00019 5993214974659249613/00011 5993214974659249613/00002 5993214974659249613/00008 5993214974659249613/00007 5993214974659249613/00005 5993214974659249613/00004 5950978266270305420/00015 5950978266270305420/00003 5950978266270305420/00006 5950978266270305420/00010 5950978266270305420/00030 5950978266270305420/00013 5950978266270305420/00022 5950978266270305420/00001 5950978266270305420/00018 5950978266270305420/00021 5950978266270305420/00014 5950978266270305420/00020 5950978266270305420/00017 5950978266270305420/00016 5950978266270305420/00027 5950978266270305420/00002 5950978266270305420/00025 5950978266270305420/00004 5950978266270305420/00028 5986550903402701903/00003 5986550903402701903/00006 5986550903402701903/00009 5986550903402701903/00022 5986550903402701903/00018 5986550903402701903/00012 5986550903402701903/00020 5986550903402701903/00011 5986550903402701903/00008 5986550903402701903/00007 5986550903402701903/00025 5860044359685950748/00002 6057501615649714781/00006 6057501615649714781/00032 6057501615649714781/00009 6057501615649714781/00033 6057501615649714781/00024 6057501615649714781/00022 6057501615649714781/00023 6057501615649714781/00038 6057501615649714781/00018 6057501615649714781/00012 6057501615649714781/00021 6057501615649714781/00014 6057501615649714781/00020 6057501615649714781/00035 6057501615649714781/00019 6057501615649714781/00027 6057501615649714781/00034 6057501615649714781/00002 6057501615649714781/00008 6057501615649714781/00005 6057501615649714781/00004 6057501615649714781/00028 6112410625044684460/00015 6112410625044684460/00006 6112410625044684460/00009 6112410625044684460/00013 6112410625044684460/00018 6112410625044684460/00014 6112410625044684460/00017 6112410625044684460/00016 6112410625044684460/00019 5933106907351729824/00003 5933106907351729824/00006 5933106907351729824/00005 5933106907351729824/00004 6045278997718023523/00002 6215962716047982033/00006 6215962716047982033/00001 6215962716047982033/00017 6215962716047982033/00002 6215962716047982033/00008 6215962716047982033/00004 6149708550539893551/00003 6149708550539893551/00006 6149708550539893551/00001 6149708550539893551/00002 6149708550539893551/00007 6149708550539893551/00005 5989268329210889795/00029 5989268329210889795/00015 5989268329210889795/00006 5989268329210889795/00009 5989268329210889795/00010 5989268329210889795/00033 5989268329210889795/00024 5989268329210889795/00030 5989268329210889795/00031 5989268329210889795/00013 5989268329210889795/00022 5989268329210889795/00026 5989268329210889795/00001 5989268329210889795/00012 5989268329210889795/00014 5989268329210889795/00037 5989268329210889795/00039 5989268329210889795/00020 5989268329210889795/00016 5989268329210889795/00019 5989268329210889795/00011 5989268329210889795/00002 5989268329210889795/00008 5989268329210889795/00040 5989268329210889795/00005 5989268329210889795/00004 5963157075534919156/00029 5963157075534919156/00032 5963157075534919156/00009 5963157075534919156/00033 5963157075534919156/00024 5963157075534919156/00013 5963157075534919156/00017 5963157075534919156/00019 5963157075534919156/00011 5963157075534919156/00034 5963157075534919156/00002 5963157075534919156/00040 5963157075534919156/00007 5963157075534919156/00005 5963157075534919156/00028 5967722196274484764/00029 5967722196274484764/00006 5967722196274484764/00032 5967722196274484764/00009 5967722196274484764/00010 5967722196274484764/00024 5967722196274484764/00030 5967722196274484764/00031 5967722196274484764/00013 5967722196274484764/00026 5967722196274484764/00001 5967722196274484764/00012 5967722196274484764/00021 5967722196274484764/00017 5967722196274484764/00019 5967722196274484764/00011 5967722196274484764/00027 5967722196274484764/00008 5967722196274484764/00004 5967722196274484764/00028 5542132598423013227/00015 5542132598423013227/00032 5542132598423013227/00009 5542132598423013227/00030 5542132598423013227/00036 5542132598423013227/00038 5542132598423013227/00018 5542132598423013227/00042 5542132598423013227/00041 5542132598423013227/00021 5542132598423013227/00014 5542132598423013227/00037 5542132598423013227/00047 5542132598423013227/00039 5542132598423013227/00035 5542132598423013227/00051 5542132598423013227/00055 5542132598423013227/00016 5542132598423013227/00059 5542132598423013227/00019 5542132598423013227/00027 5542132598423013227/00034 5542132598423013227/00002 5542132598423013227/00040 5542132598423013227/00005 6324764116080445123/00006 6324764116080445123/00010 6324764116080445123/00013 6324764116080445123/00001 6324764116080445123/00018 6324764116080445123/00012 6324764116080445123/00014 6324764116080445123/00020 6324764116080445123/00017 6324764116080445123/00019 6324764116080445123/00011 6324764116080445123/00008 6324764116080445123/00007 6324764116080445123/00005 6324764116080445123/00004 5994761162885811859/00060 5994761162885811859/00029 5994761162885811859/00015 5994761162885811859/00006 5994761162885811859/00098 5994761162885811859/00046 5994761162885811859/00032 5994761162885811859/00090 5994761162885811859/00073 5994761162885811859/00033 5994761162885811859/00057 5994761162885811859/00024 5994761162885811859/00078 5994761162885811859/00030 5994761162885811859/00071 5994761162885811859/00058 5994761162885811859/00062 5994761162885811859/00086 5994761162885811859/00013 5994761162885811859/00069 5994761162885811859/00096 5994761162885811859/00094 5994761162885811859/00077 5994761162885811859/00063 5994761162885811859/00001 5994761162885811859/00045 5994761162885811859/00066 5994761162885811859/00064 5994761162885811859/00049 5994761162885811859/00072 5994761162885811859/00088 5994761162885811859/00048 5994761162885811859/00018 5994761162885811859/00085 5994761162885811859/00041 5994761162885811859/00065 5994761162885811859/00061 5994761162885811859/00083 5994761162885811859/00079 5994761162885811859/00014 5994761162885811859/00037 5994761162885811859/00047 5994761162885811859/00039 5994761162885811859/00020 5994761162885811859/00035 5994761162885811859/00051 5994761162885811859/00017 5994761162885811859/00076 5994761162885811859/00080 5994761162885811859/00052 5994761162885811859/00091 5994761162885811859/00016 5994761162885811859/00095 5994761162885811859/00059 5994761162885811859/00067 5994761162885811859/00034 5994761162885811859/00100 5994761162885811859/00089 5994761162885811859/00092 5994761162885811859/00087 5994761162885811859/00040 5994761162885811859/00007 5994761162885811859/00102 5994761162885811859/00097 5994761162885811859/00025 5994761162885811859/00005 5994761162885811859/00074 5994761162885811859/00004 6215494994109513609/00009 6215494994109513609/00010 6215494994109513609/00001 6215494994109513609/00012 6215494994109513609/00011 6215494994109513609/00007 6215494994109513609/00005 6215494994109513609/00004 5938673184967350375/00002 6096068703980149016/00003 6096068703980149016/00010 6096068703980149016/00024 6096068703980149016/00020 6096068703980149016/00016 6096068703980149016/00019 6096068703980149016/00027 6096068703980149016/00008 6096068703980149016/00004 5556552092125886605/00003 5556552092125886605/00002 5556552092125886605/00004 5962472887244604442/00029 5962472887244604442/00003 5962472887244604442/00022 5962472887244604442/00026 5962472887244604442/00021 5962472887244604442/00020 5962472887244604442/00016 5962472887244604442/00002 5962472887244604442/00008 5962472887244604442/00007 5962472887244604442/00025 5962472887244604442/00004 6383716407688597209/00006 6383716407688597209/00024 6383716407688597209/00036 6383716407688597209/00001 6383716407688597209/00018 6383716407688597209/00020 6383716407688597209/00035 6383716407688597209/00011 6383716407688597209/00025 6197060564978272844/00015 6197060564978272844/00003 6197060564978272844/00006 6197060564978272844/00010 6197060564978272844/00022 6197060564978272844/00001 6197060564978272844/00018 6197060564978272844/00012 6197060564978272844/00021 6197060564978272844/00020 6197060564978272844/00017 6197060564978272844/00016 6197060564978272844/00019 6197060564978272844/00002 5933122369233932002/00060 5933122369233932002/00029 5933122369233932002/00015 5933122369233932002/00006 5933122369233932002/00046 5933122369233932002/00032 5933122369233932002/00070 5933122369233932002/00073 5933122369233932002/00010 5933122369233932002/00033 5933122369233932002/00053 5933122369233932002/00030 5933122369233932002/00071 5933122369233932002/00058 5933122369233932002/00062 5933122369233932002/00086 5933122369233932002/00013 5933122369233932002/00022 5933122369233932002/00044 5933122369233932002/00036 5933122369233932002/00063 5933122369233932002/00045 5933122369233932002/00066 5933122369233932002/00088 5933122369233932002/00018 5933122369233932002/00083 5933122369233932002/00021 5933122369233932002/00075 5933122369233932002/00079 5933122369233932002/00037 5933122369233932002/00047 5933122369233932002/00020 5933122369233932002/00035 5933122369233932002/00076 5933122369233932002/00080 5933122369233932002/00052 5933122369233932002/00055 5933122369233932002/00016 5933122369233932002/00084 5933122369233932002/00067 5933122369233932002/00034 5933122369233932002/00089 5933122369233932002/00008 5933122369233932002/00007 5933122369233932002/00068 5933122369233932002/00025 5933122369233932002/00054 5933122369233932002/00043 5933122369233932002/00005 5933122369233932002/00028 6051548790976800348/00006 6051548790976800348/00032 6051548790976800348/00009 6051548790976800348/00024 6051548790976800348/00026 6051548790976800348/00036 6051548790976800348/00023 6051548790976800348/00018 6051548790976800348/00042 6051548790976800348/00041 6051548790976800348/00039 6051548790976800348/00035 6051548790976800348/00016 6051548790976800348/00019 6051548790976800348/00027 6051548790976800348/00002 6051548790976800348/00008 6051548790976800348/00025 6051548790976800348/00005 6051548790976800348/00004 6051548790976800348/00028 6360983575287674299/00011 6131718650523937885/00029 6131718650523937885/00015 6131718650523937885/00003 6131718650523937885/00006 6131718650523937885/00009 6131718650523937885/00024 6131718650523937885/00001 6131718650523937885/00045 6131718650523937885/00038 6131718650523937885/00048 6131718650523937885/00018 6131718650523937885/00012 6131718650523937885/00014 6131718650523937885/00039 6131718650523937885/00035 6131718650523937885/00051 6131718650523937885/00017 6131718650523937885/00052 6131718650523937885/00016 6131718650523937885/00011 6131718650523937885/00034 6131718650523937885/00002 6131718650523937885/00008 6131718650523937885/00025 6131718650523937885/00004 6131718650523937885/00028 6130516489177787401/00003 6130516489177787401/00006 6130516489177787401/00010 6130516489177787401/00001 6130516489177787401/00004 5995947862349630974/00015 5995947862349630974/00006 5995947862349630974/00010 5995947862349630974/00024 5995947862349630974/00013 5995947862349630974/00022 5995947862349630974/00023 5995947862349630974/00012 5995947862349630974/00021 5995947862349630974/00014 5995947862349630974/00020 5995947862349630974/00017 5995947862349630974/00016 5995947862349630974/00011 5995947862349630974/00027 5995947862349630974/00008 5995947862349630974/00007 5995947862349630974/00025 5995947862349630974/00004 5710915793724504811/00006 5710915793724504811/00009 5710915793724504811/00010 5710915793724504811/00024 5710915793724504811/00022 5710915793724504811/00026 5710915793724504811/00023 5710915793724504811/00012 5710915793724504811/00021 5710915793724504811/00017 5710915793724504811/00011 5710915793724504811/00027 5710915793724504811/00002 5710915793724504811/00008 5710915793724504811/00025 6222978545126070829/00029 6222978545126070829/00015 6222978545126070829/00003 6222978545126070829/00009 6222978545126070829/00010 6222978545126070829/00018 6222978545126070829/00019 6222978545126070829/00011 6222978545126070829/00008 6222978545126070829/00007 6222978545126070829/00004 6222978545126070829/00028 6260129582739679199/00006 6260129582739679199/00001 6260129582739679199/00007 6260129582739679199/00005 6327609102417316299/00006 6327609102417316299/00010 6327609102417316299/00001 6327609102417316299/00012 6327609102417316299/00011 6327609102417316299/00002 6327609102417316299/00004 5562876001972492067/00003 5562876001972492067/00006 5562876001972492067/00032 5562876001972492067/00009 5562876001972492067/00010 5562876001972492067/00030 5562876001972492067/00031 5562876001972492067/00026 5562876001972492067/00023 5562876001972492067/00018 5562876001972492067/00020 5562876001972492067/00017 5562876001972492067/00016 5562876001972492067/00019 5562876001972492067/00011 5562876001972492067/00027 5562876001972492067/00002 5562876001972492067/00008 5562876001972492067/00007 5562876001972492067/00025 5562876001972492067/00005 5562876001972492067/00004 5562876001972492067/00028 6292042907735871779/00015 6292042907735871779/00003 6292042907735871779/00009 6292042907735871779/00010 6292042907735871779/00013 6292042907735871779/00022 6292042907735871779/00001 6292042907735871779/00023 6292042907735871779/00021 6292042907735871779/00014 6292042907735871779/00020 6292042907735871779/00017 6292042907735871779/00011 6292042907735871779/00027 6292042907735871779/00008 6292042907735871779/00007 6292042907735871779/00005 6292042907735871779/00004 6292042907735871779/00028 6083910510689103526/00002 6083910510689103526/00004 6107961468422754744/00015 6107961468422754744/00003 6107961468422754744/00006 6107961468422754744/00009 6107961468422754744/00010 6107961468422754744/00033 6107961468422754744/00024 6107961468422754744/00013 6107961468422754744/00036 6107961468422754744/00001 6107961468422754744/00023 6107961468422754744/00018 6107961468422754744/00021 6107961468422754744/00014 6107961468422754744/00037 6107961468422754744/00020 6107961468422754744/00016 6107961468422754744/00019 6107961468422754744/00034 6107961468422754744/00002 6107961468422754744/00008 6107961468422754744/00040 6107961468422754744/00007 6107961468422754744/00005 5962523138362675730/00003 5962523138362675730/00004 6256418730995993430/00029 6256418730995993430/00003 6256418730995993430/00006 6256418730995993430/00009 6256418730995993430/00024 6256418730995993430/00030 6256418730995993430/00022 6256418730995993430/00026 6256418730995993430/00023 6256418730995993430/00038 6256418730995993430/00018 6256418730995993430/00020 6256418730995993430/00017 6256418730995993430/00016 6256418730995993430/00019 6256418730995993430/00027 6256418730995993430/00034 6256418730995993430/00002 6256418730995993430/00008 6256418730995993430/00007 6256418730995993430/00005 5537143564411975377/00029 5537143564411975377/00015 5537143564411975377/00031 5537143564411975377/00022 5537143564411975377/00023 5537143564411975377/00038 5537143564411975377/00042 5537143564411975377/00037 5537143564411975377/00039 5537143564411975377/00035 5537143564411975377/00017 5537143564411975377/00034 5537143564411975377/00040 5537143564411975377/00005 6127296552195971309/00009 6127296552195971309/00010 6127296552195971309/00012 6127296552195971309/00008 6127296552195971309/00007 6077174283851659335/00029 6077174283851659335/00015 6077174283851659335/00003 6077174283851659335/00032 6077174283851659335/00010 6077174283851659335/00033 6077174283851659335/00030 6077174283851659335/00026 6077174283851659335/00001 6077174283851659335/00049 6077174283851659335/00023 6077174283851659335/00038 6077174283851659335/00048 6077174283851659335/00018 6077174283851659335/00042 6077174283851659335/00041 6077174283851659335/00021 6077174283851659335/00037 6077174283851659335/00039 6077174283851659335/00035 6077174283851659335/00011 6077174283851659335/00027 6077174283851659335/00002 6077174283851659335/00008 6077174283851659335/00040 6077174283851659335/00004 6077174283851659335/00028 6110906956994420042/00003 6110906956994420042/00009 6110906956994420042/00010 6110906956994420042/00001 6110906956994420042/00002 6110906956994420042/00005 6110906956994420042/00004 6224126589884225100/00029 6224126589884225100/00003 6224126589884225100/00009 6224126589884225100/00010 6224126589884225100/00033 6224126589884225100/00024 6224126589884225100/00031 6224126589884225100/00026 6224126589884225100/00038 6224126589884225100/00012 6224126589884225100/00014 6224126589884225100/00037 6224126589884225100/00020 6224126589884225100/00011 6224126589884225100/00002 6224126589884225100/00007 6224126589884225100/00025 6224126589884225100/00005 6224126589884225100/00004 6223036527184566836/00003 6223036527184566836/00001 6223036527184566836/00002 6223036527184566836/00007 5656327618385802607/00015 5656327618385802607/00003 5656327618385802607/00009 5656327618385802607/00010 5656327618385802607/00012 5656327618385802607/00014 5656327618385802607/00008 5656327618385802607/00007 5656327618385802607/00005 5656327618385802607/00004 6155417850566471662/00006 6155417850566471662/00024 6155417850566471662/00031 6155417850566471662/00013 6155417850566471662/00023 6155417850566471662/00014 6155417850566471662/00017 6155417850566471662/00011 6155417850566471662/00027 6155417850566471662/00002 6155417850566471662/00008 6155417850566471662/00025 5905232999097357147/00002 6129815550514990820/00060 6129815550514990820/00029 6129815550514990820/00003 6129815550514990820/00098 6129815550514990820/00107 6129815550514990820/00032 6129815550514990820/00009 6129815550514990820/00112 6129815550514990820/00033 6129815550514990820/00057 6129815550514990820/00116 6129815550514990820/00071 6129815550514990820/00058 6129815550514990820/00062 6129815550514990820/00031 6129815550514990820/00086 6129815550514990820/00013 6129815550514990820/00069 6129815550514990820/00022 6129815550514990820/00096 6129815550514990820/00094 6129815550514990820/00077 6129815550514990820/00093 6129815550514990820/00103 6129815550514990820/00050 6129815550514990820/00064 6129815550514990820/00072 6129815550514990820/00023 6129815550514990820/00114 6129815550514990820/00038 6129815550514990820/00088 6129815550514990820/00085 6129815550514990820/00041 6129815550514990820/00061 6129815550514990820/00083 6129815550514990820/00104 6129815550514990820/00079 6129815550514990820/00014 6129815550514990820/00037 6129815550514990820/00047 6129815550514990820/00039 6129815550514990820/00051 6129815550514990820/00076 6129815550514990820/00052 6129815550514990820/00091 6129815550514990820/00055 6129815550514990820/00095 6129815550514990820/00111 6129815550514990820/00059 6129815550514990820/00019 6129815550514990820/00011 6129815550514990820/00067 6129815550514990820/00081 6129815550514990820/00082 6129815550514990820/00089 6129815550514990820/00092 6129815550514990820/00008 6129815550514990820/00087 6129815550514990820/00040 6129815550514990820/00097 6129815550514990820/00043 6129815550514990820/00028 6222665442010189767/00015 6222665442010189767/00003 6222665442010189767/00006 6222665442010189767/00009 6222665442010189767/00010 6222665442010189767/00013 6222665442010189767/00001 6222665442010189767/00012 6222665442010189767/00014 6222665442010189767/00020 6222665442010189767/00017 6222665442010189767/00016 6222665442010189767/00011 6222665442010189767/00002 6222665442010189767/00008 6222665442010189767/00007 6222665442010189767/00004 6064567695844356235/00015 6064567695844356235/00003 6064567695844356235/00006 6064567695844356235/00010 6064567695844356235/00001 6064567695844356235/00012 6064567695844356235/00017 6064567695844356235/00016 6064567695844356235/00011 6064567695844356235/00002 6064567695844356235/00008 6064567695844356235/00007 6064567695844356235/00004 6156581357206958150/00003 6156581357206958150/00001 6156581357206958150/00002 6156581357206958150/00008 6156581357206958150/00005 6156581357206958150/00004 6225537486641029331/00009 6225537486641029331/00010 6225537486641029331/00013 6225537486641029331/00012 6225537486641029331/00011 6225537486641029331/00002 6225537486641029331/00007 6225537486641029331/00005 6225537486641029331/00004 6313877662475262663/00015 6313877662475262663/00033 6313877662475262663/00030 6313877662475262663/00013 6313877662475262663/00001 6313877662475262663/00018 6313877662475262663/00012 6313877662475262663/00039 6313877662475262663/00017 6313877662475262663/00016 6313877662475262663/00034 6313877662475262663/00005 6313877662475262663/00028 5948327841951944886/00003 5948327841951944886/00006 5948327841951944886/00009 5948327841951944886/00001 5948327841951944886/00002 5948327841951944886/00008 5948327841951944886/00004 6037107392941383079/00015 6037107392941383079/00003 6037107392941383079/00033 6037107392941383079/00024 6037107392941383079/00030 6037107392941383079/00022 6037107392941383079/00001 6037107392941383079/00023 6037107392941383079/00017 6037107392941383079/00011 6037107392941383079/00034 6106844347429062870/00029 6106844347429062870/00006 6106844347429062870/00032 6106844347429062870/00024 6106844347429062870/00031 6106844347429062870/00013 6106844347429062870/00014 6106844347429062870/00020 6106844347429062870/00002 6106844347429062870/00025 6106844347429062870/00005 6106844347429062870/00004 5936782969860318155/00001 6215147101758537545/00001 5945793381750602365/00003 5945793381750602365/00032 5945793381750602365/00033 5945793381750602365/00024 5945793381750602365/00030 5945793381750602365/00013 5945793381750602365/00026 5945793381750602365/00001 5945793381750602365/00045 5945793381750602365/00041 5945793381750602365/00021 5945793381750602365/00014 5945793381750602365/00035 5945793381750602365/00027 5945793381750602365/00034 5945793381750602365/00025 5945793381750602365/00043 5945793381750602365/00005 5945793381750602365/00004 5945793381750602365/00028 6170489320304850765/00060 6170489320304850765/00029 6170489320304850765/00015 6170489320304850765/00003 6170489320304850765/00070 6170489320304850765/00009 6170489320304850765/00024 6170489320304850765/00030 6170489320304850765/00071 6170489320304850765/00058 6170489320304850765/00022 6170489320304850765/00026 6170489320304850765/00044 6170489320304850765/00042 6170489320304850765/00021 6170489320304850765/00014 6170489320304850765/00047 6170489320304850765/00020 6170489320304850765/00052 6170489320304850765/00016 6170489320304850765/00019 6170489320304850765/00011 6170489320304850765/00027 6170489320304850765/00034 6170489320304850765/00002 6170489320304850765/00008 6170489320304850765/00068 6170489320304850765/00025 6170489320304850765/00043 6170489320304850765/00005 6232576508542421770/00013 6232576508542421770/00001 6232576508542421770/00023 6232576508542421770/00021 6232576508542421770/00014 6232576508542421770/00020 6232576508542421770/00017 6232576508542421770/00011 6232576508542421770/00008 6232576508542421770/00005 6232576508542421770/00004 6216268088222793710/00003 6216268088222793710/00006 6216268088222793710/00011 6216268088222793710/00002 6216268088222793710/00008 6216268088222793710/00007 6216268088222793710/00005 5571291131395552936/00006 5571291131395552936/00009 5571291131395552936/00001 5571291131395552936/00002 5571291131395552936/00008 5571291131395552936/00005 6152228837349908415/00003 6152228837349908415/00006 6152228837349908415/00009 6152228837349908415/00012 6152228837349908415/00002 6152228837349908415/00008 6152228837349908415/00007 6152228837349908415/00004 6041173867976504980/00003 6041173867976504980/00009 6041173867976504980/00002 6041173867976504980/00004 5928008351674643244/00003 5928008351674643244/00002 6014777857968812796/00015 6014777857968812796/00003 6014777857968812796/00009 6014777857968812796/00018 6014777857968812796/00012 6014777857968812796/00014 6014777857968812796/00017 6014777857968812796/00019 6014777857968812796/00002 6014777857968812796/00008 6014777857968812796/00005 6014777857968812796/00004 5542709842027595665/00029 5542709842027595665/00032 5542709842027595665/00033 5542709842027595665/00030 5542709842027595665/00026 5542709842027595665/00023 5542709842027595665/00018 5542709842027595665/00017 5542709842027595665/00002 5542709842027595665/00008 5542709842027595665/00007 5542709842027595665/00025 5542709842027595665/00028 5553869455552804109/00015 5553869455552804109/00006 5553869455552804109/00032 5553869455552804109/00009 5553869455552804109/00031 5553869455552804109/00022 5553869455552804109/00044 5553869455552804109/00050 5553869455552804109/00036 5553869455552804109/00048 5553869455552804109/00042 5553869455552804109/00041 5553869455552804109/00011 5553869455552804109/00005 5553869455552804109/00004 5553869455552804109/00028 5714318696313101551/00147 5714318696313101551/00125 5714318696313101551/00060 5714318696313101551/00029 5714318696313101551/00015 5714318696313101551/00003 5714318696313101551/00006 5714318696313101551/00140 5714318696313101551/00098 5714318696313101551/00107 5714318696313101551/00032 5714318696313101551/00128 5714318696313101551/00169 5714318696313101551/00163 5714318696313101551/00113 5714318696313101551/00109 5714318696313101551/00122 5714318696313101551/00070 5714318696313101551/00159 5714318696313101551/00009 5714318696313101551/00090 5714318696313101551/00152 5714318696313101551/00073 5714318696313101551/00112 5714318696313101551/00010 5714318696313101551/00164 5714318696313101551/00033 5714318696313101551/00123 5714318696313101551/00057 5714318696313101551/00141 5714318696313101551/00118 5714318696313101551/00116 5714318696313101551/00078 5714318696313101551/00030 5714318696313101551/00058 5714318696313101551/00121 5714318696313101551/00062 5714318696313101551/00167 5714318696313101551/00031 5714318696313101551/00013 5714318696313101551/00165 5714318696313101551/00137 5714318696313101551/00150 5714318696313101551/00069 5714318696313101551/00148 5714318696313101551/00022 5714318696313101551/00096 5714318696313101551/00026 5714318696313101551/00044 5714318696313101551/00130 5714318696313101551/00161 5714318696313101551/00172 5714318696313101551/00158 5714318696313101551/00099 5714318696313101551/00077 5714318696313101551/00093 5714318696313101551/00166 5714318696313101551/00103 5714318696313101551/00050 5714318696313101551/00105 5714318696313101551/00036 5714318696313101551/00117 5714318696313101551/00063 5714318696313101551/00110 5714318696313101551/00001 5714318696313101551/00045 5714318696313101551/00064 5714318696313101551/00136 5714318696313101551/00049 5714318696313101551/00157 5714318696313101551/00072 5714318696313101551/00154 5714318696313101551/00023 5714318696313101551/00114 5714318696313101551/00088 5714318696313101551/00048 5714318696313101551/00134 5714318696313101551/00108 5714318696313101551/00145 5714318696313101551/00018 5714318696313101551/00085 5714318696313101551/00042 5714318696313101551/00135 5714318696313101551/00012 5714318696313101551/00041 5714318696313101551/00162 5714318696313101551/00065 5714318696313101551/00129 5714318696313101551/00144 5714318696313101551/00061 5714318696313101551/00083 5714318696313101551/00075 5714318696313101551/00104 5714318696313101551/00151 5714318696313101551/00079 5714318696313101551/00160 5714318696313101551/00037 5714318696313101551/00127 5714318696313101551/00101 5714318696313101551/00039 5714318696313101551/00124 5714318696313101551/00035 5714318696313101551/00076 5714318696313101551/00080 5714318696313101551/00052 5714318696313101551/00091 5714318696313101551/00055 5714318696313101551/00016 5714318696313101551/00095 5714318696313101551/00138 5714318696313101551/00170 5714318696313101551/00059 5714318696313101551/00146 5714318696313101551/00019 5714318696313101551/00011 5714318696313101551/00119 5714318696313101551/00027 5714318696313101551/00067 5714318696313101551/00153 5714318696313101551/00115 5714318696313101551/00034 5714318696313101551/00082 5714318696313101551/00100 5714318696313101551/00002 5714318696313101551/00133 5714318696313101551/00089 5714318696313101551/00092 5714318696313101551/00131 5714318696313101551/00040 5714318696313101551/00007 5714318696313101551/00102 5714318696313101551/00132 5714318696313101551/00097 5714318696313101551/00156 5714318696313101551/00139 5714318696313101551/00175 5714318696313101551/00054 5714318696313101551/00005 5714318696313101551/00074 5714318696313101551/00155 5714318696313101551/00028 6107265683720867161/00009 6107265683720867161/00010 6107265683720867161/00013 6107265683720867161/00012 6107265683720867161/00005 6356530553195113872/00001 5557758118942575177/00010 5557758118942575177/00001 5557758118942575177/00012 5557758118942575177/00011 5557758118942575177/00008 5988522293391573607/00007 6214505433645164623/00015 6214505433645164623/00003 6214505433645164623/00001 6214505433645164623/00014 6214505433645164623/00011 6214505433645164623/00002 6214505433645164623/00004 6091703299350967538/00001 6091703299350967538/00002 6237130032869667301/00003 6237130032869667301/00012 6041711168385231828/00060 6041711168385231828/00029 6041711168385231828/00015 6041711168385231828/00003 6041711168385231828/00046 6041711168385231828/00070 6041711168385231828/00073 6041711168385231828/00010 6041711168385231828/00033 6041711168385231828/00024 6041711168385231828/00053 6041711168385231828/00062 6041711168385231828/00031 6041711168385231828/00086 6041711168385231828/00013 6041711168385231828/00069 6041711168385231828/00022 6041711168385231828/00094 6041711168385231828/00026 6041711168385231828/00077 6041711168385231828/00050 6041711168385231828/00036 6041711168385231828/00063 6041711168385231828/00064 6041711168385231828/00049 6041711168385231828/00088 6041711168385231828/00041 6041711168385231828/00065 6041711168385231828/00061 6041711168385231828/00083 6041711168385231828/00021 6041711168385231828/00079 6041711168385231828/00039 6041711168385231828/00020 6041711168385231828/00035 6041711168385231828/00051 6041711168385231828/00080 6041711168385231828/00055 6041711168385231828/00016 6041711168385231828/00059 6041711168385231828/00019 6041711168385231828/00011 6041711168385231828/00082 6041711168385231828/00002 6041711168385231828/00092 6041711168385231828/00040 6041711168385231828/00068 6041711168385231828/00025 6041711168385231828/00054 6041711168385231828/00005 6041711168385231828/00028 5698202261031596461/00003 5698202261031596461/00013 5698202261031596461/00022 5698202261031596461/00001 5698202261031596461/00023 5698202261031596461/00038 5698202261031596461/00011 5698202261031596461/00002 5698202261031596461/00008 5698202261031596461/00007 5698202261031596461/00005 6288679948343102712/00006 6288679948343102712/00013 6288679948343102712/00012 6288679948343102712/00014 6288679948343102712/00011 6288679948343102712/00007 6288679948343102712/00004 6094903908849535584/00003 6094903908849535584/00009 6094903908849535584/00010 6094903908849535584/00024 6094903908849535584/00030 6094903908849535584/00013 6094903908849535584/00022 6094903908849535584/00026 6094903908849535584/00001 6094903908849535584/00023 6094903908849535584/00018 6094903908849535584/00014 6094903908849535584/00020 6094903908849535584/00016 6094903908849535584/00011 6094903908849535584/00027 6094903908849535584/00007 6094903908849535584/00025 6094903908849535584/00005 6094903908849535584/00004 5990308140793317014/00060 5990308140793317014/00003 5990308140793317014/00006 5990308140793317014/00046 5990308140793317014/00056 5990308140793317014/00032 5990308140793317014/00070 5990308140793317014/00009 5990308140793317014/00010 5990308140793317014/00057 5990308140793317014/00053 5990308140793317014/00030 5990308140793317014/00071 5990308140793317014/00062 5990308140793317014/00031 5990308140793317014/00013 5990308140793317014/00022 5990308140793317014/00026 5990308140793317014/00044 5990308140793317014/00077 5990308140793317014/00050 5990308140793317014/00063 5990308140793317014/00045 5990308140793317014/00066 5990308140793317014/00049 5990308140793317014/00072 5990308140793317014/00038 5990308140793317014/00048 5990308140793317014/00018 5990308140793317014/00085 5990308140793317014/00041 5990308140793317014/00065 5990308140793317014/00061 5990308140793317014/00083 5990308140793317014/00021 5990308140793317014/00075 5990308140793317014/00079 5990308140793317014/00037 5990308140793317014/00101 5990308140793317014/00047 5990308140793317014/00020 5990308140793317014/00051 5990308140793317014/00076 5990308140793317014/00052 5990308140793317014/00016 5990308140793317014/00059 5990308140793317014/00019 5990308140793317014/00084 5990308140793317014/00067 5990308140793317014/00081 5990308140793317014/00082 5990308140793317014/00002 5990308140793317014/00089 5990308140793317014/00008 5990308140793317014/00087 5990308140793317014/00040 5990308140793317014/00102 5990308140793317014/00025 5990308140793317014/00043 5990308140793317014/00004 5990308140793317014/00028 6125746498498782358/00003 6125746498498782358/00006 6125746498498782358/00013 6125746498498782358/00001 6125746498498782358/00023 6125746498498782358/00021 6125746498498782358/00020 6125746498498782358/00017 6125746498498782358/00016 6125746498498782358/00019 6125746498498782358/00008 6125746498498782358/00007 6125746498498782358/00028 5951603184011877106/00060 5951603184011877106/00029 5951603184011877106/00015 5951603184011877106/00098 5951603184011877106/00046 5951603184011877106/00056 5951603184011877106/00032 5951603184011877106/00009 5951603184011877106/00090 5951603184011877106/00010 5951603184011877106/00057 5951603184011877106/00053 5951603184011877106/00030 5951603184011877106/00062 5951603184011877106/00031 5951603184011877106/00086 5951603184011877106/00022 5951603184011877106/00096 5951603184011877106/00044 5951603184011877106/00077 5951603184011877106/00050 5951603184011877106/00105 5951603184011877106/00036 5951603184011877106/00063 5951603184011877106/00001 5951603184011877106/00045 5951603184011877106/00066 5951603184011877106/00064 5951603184011877106/00072 5951603184011877106/00088 5951603184011877106/00048 5951603184011877106/00018 5951603184011877106/00085 5951603184011877106/00042 5951603184011877106/00012 5951603184011877106/00065 5951603184011877106/00083 5951603184011877106/00021 5951603184011877106/00075 5951603184011877106/00079 5951603184011877106/00014 5951603184011877106/00101 5951603184011877106/00047 5951603184011877106/00020 5951603184011877106/00035 5951603184011877106/00051 5951603184011877106/00017 5951603184011877106/00080 5951603184011877106/00052 5951603184011877106/00095 5951603184011877106/00059 5951603184011877106/00019 5951603184011877106/00011 5951603184011877106/00027 5951603184011877106/00067 5951603184011877106/00082 5951603184011877106/00100 5951603184011877106/00087 5951603184011877106/00007 5951603184011877106/00102 5951603184011877106/00068 5951603184011877106/00097 5951603184011877106/00028 5539826200985059108/00003 5539826200985059108/00010 5539826200985059108/00024 5539826200985059108/00013 5539826200985059108/00022 5539826200985059108/00023 5539826200985059108/00021 5539826200985059108/00014 5539826200985059108/00020 5539826200985059108/00017 5539826200985059108/00019 5539826200985059108/00008 5539826200985059108/00007 6042665939615135421/00009 6042665939615135421/00013 6042665939615135421/00001 6224489944117466725/00060 6224489944117466725/00029 6224489944117466725/00015 6224489944117466725/00003 6224489944117466725/00006 6224489944117466725/00046 6224489944117466725/00032 6224489944117466725/00033 6224489944117466725/00030 6224489944117466725/00022 6224489944117466725/00063 6224489944117466725/00049 6224489944117466725/00038 6224489944117466725/00042 6224489944117466725/00012 6224489944117466725/00041 6224489944117466725/00061 6224489944117466725/00014 6224489944117466725/00035 6224489944117466725/00052 6224489944117466725/00019 6224489944117466725/00034 6224489944117466725/00054 6224489944117466725/00005 6229716060323309759/00003 6229716060323309759/00002 6229716060323309759/00005 6077474502065649059/00015 6077474502065649059/00003 6077474502065649059/00006 6077474502065649059/00013 6077474502065649059/00014 6077474502065649059/00002 6118761593185285225/00029 6118761593185285225/00003 6118761593185285225/00006 6118761593185285225/00024 6118761593185285225/00030 6118761593185285225/00044 6118761593185285225/00001 6118761593185285225/00045 6118761593185285225/00023 6118761593185285225/00038 6118761593185285225/00042 6118761593185285225/00041 6118761593185285225/00037 6118761593185285225/00039 6118761593185285225/00016 6118761593185285225/00027 6118761593185285225/00040 6118761593185285225/00007 6118761593185285225/00005 6118761593185285225/00028 5964637550761850467/00029 5964637550761850467/00015 5964637550761850467/00006 5964637550761850467/00030 5964637550761850467/00031 5964637550761850467/00022 5964637550761850467/00026 5964637550761850467/00001 5964637550761850467/00038 5964637550761850467/00021 5964637550761850467/00014 5964637550761850467/00039 5964637550761850467/00020 5964637550761850467/00017 5964637550761850467/00019 5964637550761850467/00027 5964637550761850467/00025 5964637550761850467/00005 5964637550761850467/00028 5576934718422501620/00029 5576934718422501620/00015 5576934718422501620/00006 5576934718422501620/00001 5576934718422501620/00023 5576934718422501620/00018 5576934718422501620/00012 5576934718422501620/00021 5576934718422501620/00014 5576934718422501620/00020 5576934718422501620/00016 5576934718422501620/00019 5576934718422501620/00002 5576934718422501620/00005 5576934718422501620/00028 5965503416168664439/00029 5965503416168664439/00015 5965503416168664439/00003 5965503416168664439/00006 5965503416168664439/00009 5965503416168664439/00010 5965503416168664439/00033 5965503416168664439/00024 5965503416168664439/00030 5965503416168664439/00031 5965503416168664439/00022 5965503416168664439/00026 5965503416168664439/00044 5965503416168664439/00036 5965503416168664439/00023 5965503416168664439/00038 5965503416168664439/00018 5965503416168664439/00042 5965503416168664439/00041 5965503416168664439/00014 5965503416168664439/00037 5965503416168664439/00039 5965503416168664439/00020 5965503416168664439/00035 5965503416168664439/00017 5965503416168664439/00016 5965503416168664439/00019 5965503416168664439/00027 5965503416168664439/00034 5965503416168664439/00002 5965503416168664439/00008 5965503416168664439/00040 5965503416168664439/00007 5965503416168664439/00025 5965503416168664439/00043 5965503416168664439/00005 5965503416168664439/00004 6254884139181066831/00003 6254884139181066831/00010 6254884139181066831/00016 6254594228888589203/00007 6110953342641215833/00015 6110953342641215833/00006 6110953342641215833/00010 6110953342641215833/00013 6110953342641215833/00022 6110953342641215833/00001 6110953342641215833/00021 6110953342641215833/00020 6110953342641215833/00017 6110953342641215833/00011 6110953342641215833/00004 6385158228209864505/00003 6385158228209864505/00031 6385158228209864505/00020 6385158228209864505/00005 6385158228209864505/00028 6145441071034645790/00015 6145441071034645790/00003 6145441071034645790/00006 6145441071034645790/00009 6145441071034645790/00010 6145441071034645790/00013 6145441071034645790/00001 6145441071034645790/00012 6145441071034645790/00014 6145441071034645790/00016 6145441071034645790/00011 6145441071034645790/00002 6145441071034645790/00008 6145441071034645790/00007 6145441071034645790/00005 6145441071034645790/00004 5552399288247379774/00003 5552399288247379774/00006 5552399288247379774/00009 5552399288247379774/00004 6111651704323480930/00001 6111651704323480930/00012 6111651704323480930/00014 6111651704323480930/00002 6111651704323480930/00025 6111651704323480930/00005 6111651704323480930/00004 6251544372611696966/00003 6251544372611696966/00010 6251544372611696966/00008 6251544372611696966/00004 6243832758831786611/00002 5863037522394535617/00006 5863037522394535617/00009 5863037522394535617/00010 5863037522394535617/00001 5863037522394535617/00012 5863037522394535617/00011 5863037522394535617/00008 5863037522394535617/00007 5863037522394535617/00005 5863037522394535617/00004 6122035646755033360/00003 6122035646755033360/00006 6122035646755033360/00001 6122035646755033360/00002 6122035646755033360/00008 6122035646755033360/00005 6122035646755033360/00004 6126264471554746502/00060 6126264471554746502/00070 6126264471554746502/00009 6126264471554746502/00031 6126264471554746502/00044 6126264471554746502/00001 6126264471554746502/00066 6126264471554746502/00064 6126264471554746502/00049 6126264471554746502/00038 6126264471554746502/00018 6126264471554746502/00042 6126264471554746502/00061 6126264471554746502/00021 6126264471554746502/00017 6126264471554746502/00016 6126264471554746502/00027 6126264471554746502/00067 6126264471554746502/00068 6126264471554746502/00043 5989654876268244131/00015 5989654876268244131/00003 5989654876268244131/00006 5989654876268244131/00009 5989654876268244131/00010 5989654876268244131/00022 5989654876268244131/00001 5989654876268244131/00012 5989654876268244131/00014 5989654876268244131/00020 5989654876268244131/00011 5989654876268244131/00002 5989654876268244131/00008 5989654876268244131/00007 5989654876268244131/00005 5989654876268244131/00004 6362925330002196038/00013 6362925330002196038/00021 6362925330002196038/00014 6218092590330136502/00006 6218092590330136502/00009 6218092590330136502/00010 6218092590330136502/00001 6218092590330136502/00018 6218092590330136502/00014 6218092590330136502/00017 6218092590330136502/00002 6218092590330136502/00008 5692443998377843907/00009 5692443998377843907/00002 5906270233699343178/00147 5906270233699343178/00125 5906270233699343178/00060 5906270233699343178/00015 5906270233699343178/00140 5906270233699343178/00098 5906270233699343178/00128 5906270233699343178/00070 5906270233699343178/00009 5906270233699343178/00090 5906270233699343178/00073 5906270233699343178/00112 5906270233699343178/00010 5906270233699343178/00033 5906270233699343178/00123 5906270233699343178/00057 5906270233699343178/00024 5906270233699343178/00141 5906270233699343178/00078 5906270233699343178/00071 5906270233699343178/00058 5906270233699343178/00121 5906270233699343178/00142 5906270233699343178/00031 5906270233699343178/00086 5906270233699343178/00137 5906270233699343178/00069 5906270233699343178/00096 5906270233699343178/00094 5906270233699343178/00026 5906270233699343178/00044 5906270233699343178/00099 5906270233699343178/00077 5906270233699343178/00093 5906270233699343178/00120 5906270233699343178/00036 5906270233699343178/00110 5906270233699343178/00045 5906270233699343178/00066 5906270233699343178/00136 5906270233699343178/00049 5906270233699343178/00048 5906270233699343178/00134 5906270233699343178/00085 5906270233699343178/00042 5906270233699343178/00135 5906270233699343178/00041 5906270233699343178/00144 5906270233699343178/00061 5906270233699343178/00021 5906270233699343178/00075 5906270233699343178/00104 5906270233699343178/00014 5906270233699343178/00127 5906270233699343178/00047 5906270233699343178/00039 5906270233699343178/00091 5906270233699343178/00059 5906270233699343178/00011 5906270233699343178/00084 5906270233699343178/00027 5906270233699343178/00115 5906270233699343178/00106 5906270233699343178/00089 5906270233699343178/00092 5906270233699343178/00008 5906270233699343178/00007 5906270233699343178/00054 5906270233699343178/00028 5988514562450442432/00009 5988514562450442432/00011 5988514562450442432/00004 6238637566390540804/00003 6238637566390540804/00001 6238637566390540804/00002 5969465523499291308/00009 5969465523499291308/00007 5969465523499291308/00005 5969465523499291308/00004 6228506168036026465/00002 6228506168036026465/00007 6228506168036026465/00005 6228506168036026465/00004 5864094084349423079/00060 5864094084349423079/00029 5864094084349423079/00015 5864094084349423079/00046 5864094084349423079/00032 5864094084349423079/00009 5864094084349423079/00053 5864094084349423079/00030 5864094084349423079/00031 5864094084349423079/00022 5864094084349423079/00026 5864094084349423079/00050 5864094084349423079/00012 5864094084349423079/00041 5864094084349423079/00021 5864094084349423079/00037 5864094084349423079/00039 5864094084349423079/00035 5864094084349423079/00051 5864094084349423079/00017 5864094084349423079/00055 5864094084349423079/00059 5864094084349423079/00011 5864094084349423079/00027 5864094084349423079/00034 5864094084349423079/00008 5864094084349423079/00007 5864094084349423079/00025 5864094084349423079/00005 5864094084349423079/00004 6353975477150785494/00030 6353975477150785494/00019 6353975477150785494/00008 5863416338510046569/00003 5863416338510046569/00009 5863416338510046569/00010 5863416338510046569/00013 5863416338510046569/00001 5863416338510046569/00012 5863416338510046569/00014 5863416338510046569/00011 5863416338510046569/00007 5863416338510046569/00004 6117227001370422679/00010 6117227001370422679/00030 6117227001370422679/00013 6117227001370422679/00001 6117227001370422679/00018 6117227001370422679/00012 6117227001370422679/00020 6117227001370422679/00011 6117227001370422679/00027 6117227001370422679/00034 6117227001370422679/00007 6117227001370422679/00025 5950169094431804830/00015 5950169094431804830/00010 5950169094431804830/00013 5950169094431804830/00014 5950169094431804830/00002 5950169094431804830/00007 5854588892226633054/00015 5854588892226633054/00032 5854588892226633054/00009 5854588892226633054/00010 5854588892226633054/00033 5854588892226633054/00024 5854588892226633054/00030 5854588892226633054/00013 5854588892226633054/00022 5854588892226633054/00044 5854588892226633054/00036 5854588892226633054/00001 5854588892226633054/00049 5854588892226633054/00023 5854588892226633054/00042 5854588892226633054/00012 5854588892226633054/00021 5854588892226633054/00014 5854588892226633054/00037 5854588892226633054/00039 5854588892226633054/00020 5854588892226633054/00035 5854588892226633054/00017 5854588892226633054/00016 5854588892226633054/00019 5854588892226633054/00034 5854588892226633054/00040 5854588892226633054/00025 5854588892226633054/00043 6132120659462780732/00003 6132120659462780732/00001 6132120659462780732/00002 6132120659462780732/00008 6132120659462780732/00007 6061521705038097154/00006 6061521705038097154/00013 6061521705038097154/00004 5962847837889545281/00003 5962847837889545281/00032 5962847837889545281/00010 5962847837889545281/00033 5962847837889545281/00024 5962847837889545281/00031 5962847837889545281/00022 5962847837889545281/00036 5962847837889545281/00012 5962847837889545281/00014 5962847837889545281/00020 5962847837889545281/00017 5962847837889545281/00008 5962847837889545281/00025 5962847837889545281/00004 6216349263104688118/00009 6216349263104688118/00013 6216349263104688118/00001 6216349263104688118/00014 6216349263104688118/00002 6216349263104688118/00008 6216349263104688118/00007 6216349263104688118/00005 6216349263104688118/00004 6093407971740336641/00006 6093407971740336641/00009 6093407971740336641/00010 6093407971740336641/00008 6093407971740336641/00005 5940188449429381298/00003 5940188449429381298/00006 5940188449429381298/00012 5940188449429381298/00002 5940188449429381298/00008 5940188449429381298/00004 5976365388460957285/00003 5976365388460957285/00001 5976365388460957285/00007 5976365388460957285/00005 5855584895142575528/00015 5855584895142575528/00003 5855584895142575528/00032 5855584895142575528/00009 5855584895142575528/00010 5855584895142575528/00033 5855584895142575528/00030 5855584895142575528/00031 5855584895142575528/00013 5855584895142575528/00022 5855584895142575528/00001 5855584895142575528/00023 5855584895142575528/00014 5855584895142575528/00016 5855584895142575528/00011 5855584895142575528/00002 5855584895142575528/00008 5855584895142575528/00004 5855584895142575528/00028 6128409807719032257/00006 6128409807719032257/00001 6128409807719032257/00002 6128409807719032257/00008 6017810964003677682/00003 6017810964003677682/00010 6017810964003677682/00013 6017810964003677682/00012 6017810964003677682/00016 6017810964003677682/00011 6017810964003677682/00002 6017810964003677682/00008 5991085100377099128/00010 5991085100377099128/00013 5991085100377099128/00038 5991085100377099128/00012 5991085100377099128/00014 5991085100377099128/00019 5991085100377099128/00007 5991085100377099128/00005 5991085100377099128/00004 5692781582807311304/00003 5692781582807311304/00010 5692781582807311304/00013 5692781582807311304/00001 5692781582807311304/00014 5692781582807311304/00020 5692781582807311304/00016 5692781582807311304/00019 5692781582807311304/00002 5692781582807311304/00004 6350152526760616781/00009 6350152526760616781/00013 6350152526760616781/00052 6350152526760616781/00016 6350152526760616781/00059 6350152526760616781/00067 6350152526760616781/00008 6243026163973534953/00015 6243026163973534953/00003 6243026163973534953/00010 6243026163973534953/00024 6243026163973534953/00031 6243026163973534953/00013 6243026163973534953/00017 6243026163973534953/00016 6243026163973534953/00019 6243026163973534953/00002 6243026163973534953/00005 6243026163973534953/00004 6125390875206668804/00060 6125390875206668804/00015 6125390875206668804/00056 6125390875206668804/00032 6125390875206668804/00009 6125390875206668804/00010 6125390875206668804/00024 6125390875206668804/00062 6125390875206668804/00031 6125390875206668804/00044 6125390875206668804/00050 6125390875206668804/00036 6125390875206668804/00064 6125390875206668804/00049 6125390875206668804/00048 6125390875206668804/00018 6125390875206668804/00012 6125390875206668804/00065 6125390875206668804/00021 6125390875206668804/00047 6125390875206668804/00020 6125390875206668804/00035 6125390875206668804/00002 6125390875206668804/00007 6125390875206668804/00054 6125390875206668804/00043 6125390875206668804/00005 6125390875206668804/00028 6248641404216329466/00010 6248641404216329466/00001 6248641404216329466/00011 6248641404216329466/00002 6248641404216329466/00007 6248641404216329466/00005 6162688800701845356/00013 6162688800701845356/00001 6162688800701845356/00005 5868204368051630981/00015 5868204368051630981/00003 5868204368051630981/00006 5868204368051630981/00009 5868204368051630981/00010 5868204368051630981/00001 5868204368051630981/00012 5868204368051630981/00014 5868204368051630981/00017 5868204368051630981/00016 5868204368051630981/00011 5868204368051630981/00002 5868204368051630981/00005 5868204368051630981/00004 6363306723098082453/00001 5999550480917586806/00029 5999550480917586806/00003 5999550480917586806/00032 5999550480917586806/00009 5999550480917586806/00010 5999550480917586806/00033 5999550480917586806/00024 5999550480917586806/00030 5999550480917586806/00013 5999550480917586806/00026 5999550480917586806/00044 5999550480917586806/00001 5999550480917586806/00045 5999550480917586806/00023 5999550480917586806/00038 5999550480917586806/00048 5999550480917586806/00042 5999550480917586806/00041 5999550480917586806/00021 5999550480917586806/00037 5999550480917586806/00039 5999550480917586806/00020 5999550480917586806/00035 5999550480917586806/00016 5999550480917586806/00019 5999550480917586806/00011 5999550480917586806/00027 5999550480917586806/00034 5999550480917586806/00008 5999550480917586806/00007 5999550480917586806/00043 5999550480917586806/00028 6345541020505319391/00015 6345541020505319391/00007 5956612833996420983/00015 5956612833996420983/00003 5956612833996420983/00006 5956612833996420983/00024 5956612833996420983/00030 5956612833996420983/00022 5956612833996420983/00026 5956612833996420983/00036 5956612833996420983/00001 5956612833996420983/00023 5956612833996420983/00014 5956612833996420983/00020 5956612833996420983/00035 5956612833996420983/00017 5956612833996420983/00019 5956612833996420983/00011 5956612833996420983/00002 5956612833996420983/00008 5956612833996420983/00007 5956612833996420983/00004 6262274918904096101/00013 6262274918904096101/00001 6262274918904096101/00012 6262274918904096101/00002 6262274918904096101/00008 6262274918904096101/00007 6103206939756576237/00060 6103206939756576237/00029 6103206939756576237/00003 6103206939756576237/00006 6103206939756576237/00046 6103206939756576237/00056 6103206939756576237/00032 6103206939756576237/00033 6103206939756576237/00057 6103206939756576237/00024 6103206939756576237/00053 6103206939756576237/00030 6103206939756576237/00058 6103206939756576237/00031 6103206939756576237/00013 6103206939756576237/00026 6103206939756576237/00044 6103206939756576237/00050 6103206939756576237/00036 6103206939756576237/00063 6103206939756576237/00001 6103206939756576237/00049 6103206939756576237/00023 6103206939756576237/00038 6103206939756576237/00018 6103206939756576237/00042 6103206939756576237/00012 6103206939756576237/00041 6103206939756576237/00065 6103206939756576237/00061 6103206939756576237/00021 6103206939756576237/00014 6103206939756576237/00037 6103206939756576237/00047 6103206939756576237/00039 6103206939756576237/00035 6103206939756576237/00051 6103206939756576237/00017 6103206939756576237/00052 6103206939756576237/00016 6103206939756576237/00059 6103206939756576237/00011 6103206939756576237/00027 6103206939756576237/00034 6103206939756576237/00002 6103206939756576237/00040 6103206939756576237/00007 6103206939756576237/00025 6103206939756576237/00043 6103206939756576237/00028 6212994034652984710/00003 6212994034652984710/00006 6212994034652984710/00010 6212994034652984710/00012 6212994034652984710/00008 6212994034652984710/00005 6212994034652984710/00004 5910752891066184834/00002 5910752891066184834/00007 6392197250111351363/00010 6392197250111351363/00024 6392197250111351363/00002 6045626890069003904/00003 6045626890069003904/00001 6045626890069003904/00002 6045626890069003904/00004 6212275057127698220/00015 6212275057127698220/00003 6212275057127698220/00006 6212275057127698220/00010 6212275057127698220/00013 6212275057127698220/00001 6212275057127698220/00012 6212275057127698220/00014 6212275057127698220/00016 6212275057127698220/00011 6212275057127698220/00002 6212275057127698220/00004 5863366087392683366/00010 5863366087392683366/00001 5863366087392683366/00012 5863366087392683366/00011 5863366087392683366/00007 5863366087392683366/00005 5570668790634362481/00015 5570668790634362481/00009 5570668790634362481/00010 5570668790634362481/00013 5570668790634362481/00001 5570668790634362481/00014 5570668790634362481/00016 5570668790634362481/00011 5570668790634362481/00005 5570668790634362481/00004 5995874418408935143/00060 5995874418408935143/00015 5995874418408935143/00003 5995874418408935143/00006 5995874418408935143/00098 5995874418408935143/00107 5995874418408935143/00009 5995874418408935143/00090 5995874418408935143/00073 5995874418408935143/00033 5995874418408935143/00024 5995874418408935143/00078 5995874418408935143/00071 5995874418408935143/00058 5995874418408935143/00062 5995874418408935143/00031 5995874418408935143/00086 5995874418408935143/00013 5995874418408935143/00069 5995874418408935143/00094 5995874418408935143/00026 5995874418408935143/00044 5995874418408935143/00099 5995874418408935143/00077 5995874418408935143/00103 5995874418408935143/00036 5995874418408935143/00110 5995874418408935143/00045 5995874418408935143/00072 5995874418408935143/00038 5995874418408935143/00088 5995874418408935143/00108 5995874418408935143/00085 5995874418408935143/00041 5995874418408935143/00061 5995874418408935143/00021 5995874418408935143/00104 5995874418408935143/00014 5995874418408935143/00101 5995874418408935143/00047 5995874418408935143/00020 5995874418408935143/00035 5995874418408935143/00017 5995874418408935143/00080 5995874418408935143/00091 5995874418408935143/00095 5995874418408935143/00111 5995874418408935143/00059 5995874418408935143/00019 5995874418408935143/00027 5995874418408935143/00081 5995874418408935143/00082 5995874418408935143/00100 5995874418408935143/00002 5995874418408935143/00089 5995874418408935143/00008 5995874418408935143/00087 5995874418408935143/00007 5995874418408935143/00068 5995874418408935143/00025 5995874418408935143/00043 5995874418408935143/00074 5995874418408935143/00004 5995874418408935143/00028 6360740050641926958/00002 6360740050641926958/00004 6263105995075872166/00015 6263105995075872166/00003 6263105995075872166/00006 6263105995075872166/00001 6263105995075872166/00018 6263105995075872166/00020 6263105995075872166/00017 6263105995075872166/00016 6263105995075872166/00002 6263105995075872166/00008 6263105995075872166/00007 5958777497383119045/00010 5958777497383119045/00012 5958777497383119045/00016 5958777497383119045/00005 5958777497383119045/00004 6083759757206593320/00015 6083759757206593320/00003 6083759757206593320/00006 6083759757206593320/00010 6083759757206593320/00013 6083759757206593320/00022 6083759757206593320/00018 6083759757206593320/00012 6083759757206593320/00014 6083759757206593320/00020 6083759757206593320/00017 6083759757206593320/00016 6083759757206593320/00019 6083759757206593320/00011 6083759757206593320/00008 6083759757206593320/00004 6113516149626675679/00029 6113516149626675679/00015 6113516149626675679/00006 6113516149626675679/00032 6113516149626675679/00009 6113516149626675679/00030 6113516149626675679/00031 6113516149626675679/00013 6113516149626675679/00022 6113516149626675679/00026 6113516149626675679/00044 6113516149626675679/00001 6113516149626675679/00018 6113516149626675679/00042 6113516149626675679/00012 6113516149626675679/00041 6113516149626675679/00014 6113516149626675679/00016 6113516149626675679/00011 6113516149626675679/00034 6113516149626675679/00002 6113516149626675679/00008 6113516149626675679/00043 6113516149626675679/00004 6113516149626675679/00028 6083454385031848078/00029 6083454385031848078/00006 6083454385031848078/00010 6083454385031848078/00033 6083454385031848078/00024 6083454385031848078/00013 6083454385031848078/00022 6083454385031848078/00026 6083454385031848078/00012 6083454385031848078/00021 6083454385031848078/00014 6083454385031848078/00019 6083454385031848078/00027 6083454385031848078/00025 6092102731179079790/00009 6092102731179079790/00022 6092102731179079790/00014 6092102731179079790/00017 6092102731179079790/00016 6092102731179079790/00019 6092102731179079790/00027 6092102731179079790/00025 6092102731179079790/00005 6092102731179079790/00004 5971811864133033984/00029 5971811864133033984/00006 5971811864133033984/00033 5971811864133033984/00030 5971811864133033984/00013 5971811864133033984/00022 5971811864133033984/00012 5971811864133033984/00011 5971811864133033984/00027 5971811864133033984/00002 5971811864133033984/00008 5971811864133033984/00040 5971811864133033984/00005 5971811864133033984/00028 6232371638602402853/00006 6232371638602402853/00009 6232371638602402853/00013 6232371638602402853/00001 6232371638602402853/00011 6232371638602402853/00008 6095251801200511498/00029 6095251801200511498/00006 6095251801200511498/00032 6095251801200511498/00010 6095251801200511498/00024 6095251801200511498/00030 6095251801200511498/00026 6095251801200511498/00001 6095251801200511498/00023 6095251801200511498/00021 6095251801200511498/00017 6095251801200511498/00016 6095251801200511498/00011 6095251801200511498/00027 6095251801200511498/00002 6095251801200511498/00025 6095251801200511498/00005 6095251801200511498/00028 6109105647710472884/00003 6109105647710472884/00006 6109105647710472884/00001 6109105647710472884/00018 6109105647710472884/00017 6109105647710472884/00016 6109105647710472884/00019 6326866932068565154/00015 6326866932068565154/00001 6326866932068565154/00012 6326866932068565154/00016 6326866932068565154/00002 6326866932068565154/00008 6326866932068565154/00005 6121633637816186938/00006 6121633637816186938/00001 6121633637816186938/00016 6121633637816186938/00002 6103168284920510398/00029 6103168284920510398/00015 6103168284920510398/00003 6103168284920510398/00009 6103168284920510398/00010 6103168284920510398/00024 6103168284920510398/00030 6103168284920510398/00031 6103168284920510398/00012 6103168284920510398/00020 6103168284920510398/00017 6103168284920510398/00016 6103168284920510398/00019 6103168284920510398/00011 6103168284920510398/00027 6103168284920510398/00008 6103168284920510398/00007 6103168284920510398/00025 6103168284920510398/00005 6082712214683099272/00015 6082712214683099272/00006 6082712214683099272/00033 6082712214683099272/00030 6082712214683099272/00013 6082712214683099272/00026 6082712214683099272/00050 6082712214683099272/00036 6082712214683099272/00001 6082712214683099272/00045 6082712214683099272/00049 6082712214683099272/00012 6082712214683099272/00047 6082712214683099272/00016 6082712214683099272/00027 6082712214683099272/00002 6082712214683099272/00008 6082712214683099272/00025 6082712214683099272/00004 5966361550635111880/00003 5966361550635111880/00009 5966361550635111880/00002 5966361550635111880/00004 5989875208089877452/00006 5989875208089877452/00010 5989875208089877452/00001 5989875208089877452/00023 5989875208089877452/00018 5989875208089877452/00021 5989875208089877452/00017 5989875208089877452/00016 5989875208089877452/00019 5989875208089877452/00002 5989875208089877452/00008 5989875208089877452/00007 5989875208089877452/00005 5989875208089877452/00004 5975618064151453145/00015 5975618064151453145/00003 5975618064151453145/00006 5975618064151453145/00009 5975618064151453145/00013 5975618064151453145/00012 5975618064151453145/00007 6053775302022983249/00029 6053775302022983249/00006 6053775302022983249/00033 6053775302022983249/00053 6053775302022983249/00030 6053775302022983249/00013 6053775302022983249/00022 6053775302022983249/00026 6053775302022983249/00044 6053775302022983249/00050 6053775302022983249/00001 6053775302022983249/00045 6053775302022983249/00049 6053775302022983249/00023 6053775302022983249/00038 6053775302022983249/00042 6053775302022983249/00012 6053775302022983249/00021 6053775302022983249/00020 6053775302022983249/00017 6053775302022983249/00052 6053775302022983249/00055 6053775302022983249/00016 6053775302022983249/00019 6053775302022983249/00027 6053775302022983249/00040 5688237077911408947/00009 5688237077911408947/00001 5688237077911408947/00008 5688237077911408947/00005 6118470394402686992/00029 6118470394402686992/00032 6118470394402686992/00031 6118470394402686992/00044 6118470394402686992/00036 6118470394402686992/00001 6118470394402686992/00041 6118470394402686992/00021 6118470394402686992/00037 6118470394402686992/00020 6118470394402686992/00035 6118470394402686992/00017 6118470394402686992/00016 6118470394402686992/00034 6118470394402686992/00002 6118470394402686992/00040 6118470394402686992/00043 6118470394402686992/00028 6362143216457594387/00003 6362143216457594387/00021 6362143216457594387/00008 6362143216457594387/00025 6265591492650069407/00009 6265591492650069407/00013 6265591492650069407/00022 6265591492650069407/00001 6265591492650069407/00023 6265591492650069407/00018 6265591492650069407/00012 6265591492650069407/00020 6265591492650069407/00017 6265591492650069407/00016 6265591492650069407/00019 6265591492650069407/00008 6265591492650069407/00005 6265591492650069407/00004 6047497777823868946/00003 6047497777823868946/00001 6047497777823868946/00005 6047497777823868946/00004 5539444807889172133/00003 5539444807889172133/00006 5539444807889172133/00024 5539444807889172133/00013 5539444807889172133/00022 5539444807889172133/00026 5539444807889172133/00001 5539444807889172133/00023 5539444807889172133/00012 5539444807889172133/00021 5539444807889172133/00014 5539444807889172133/00017 5539444807889172133/00019 5539444807889172133/00011 5539444807889172133/00007 5539444807889172133/00025 5539444807889172133/00005 5539444807889172133/00004 5548283850584348350/00029 5548283850584348350/00015 5548283850584348350/00003 5548283850584348350/00032 5548283850584348350/00024 5548283850584348350/00030 5548283850584348350/00022 5548283850584348350/00026 5548283850584348350/00023 5548283850584348350/00018 5548283850584348350/00012 5548283850584348350/00014 5548283850584348350/00039 5548283850584348350/00020 5548283850584348350/00016 5548283850584348350/00034 5548283850584348350/00007 5548283850584348350/00025 5548283850584348350/00005 6388911600129842790/00013 5671950561924987118/00029 5671950561924987118/00015 5671950561924987118/00032 5671950561924987118/00009 5671950561924987118/00031 5671950561924987118/00022 5671950561924987118/00026 5671950561924987118/00001 5671950561924987118/00023 5671950561924987118/00018 5671950561924987118/00020 5671950561924987118/00016 5671950561924987118/00011 5671950561924987118/00034 5671950561924987118/00002 5671950561924987118/00004 5671950561924987118/00028 6339077953587836416/00029 6339077953587836416/00003 6339077953587836416/00031 6339077953587836416/00018 6339077953587836416/00035 6339077953587836416/00017 6339077953587836416/00002 6339077953587836416/00025 6339077953587836416/00004 6022203426926816347/00005 6022203426926816347/00004 5876753500454301829/00015 5876753500454301829/00003 5876753500454301829/00006 5876753500454301829/00009 5876753500454301829/00013 5876753500454301829/00018 5876753500454301829/00017 5876753500454301829/00008 5876753500454301829/00007 5876753500454301829/00004 5958704053442423269/00003 5958704053442423269/00009 5958704053442423269/00010 5958704053442423269/00017 5958704053442423269/00016 5958704053442423269/00011 6091923631042836567/00029 6091923631042836567/00010 6091923631042836567/00013 6091923631042836567/00026 6091923631042836567/00023 6091923631042836567/00018 6091923631042836567/00021 6091923631042836567/00014 6091923631042836567/00017 6091923631042836567/00011 6091923631042836567/00002 6091923631042836567/00025 6091923631042836567/00005 6091923631042836567/00004 5933477992526104257/00003 6129827146926714556/00029 6129827146926714556/00032 6129827146926714556/00009 6129827146926714556/00033 6129827146926714556/00030 6129827146926714556/00013 6129827146926714556/00022 6129827146926714556/00001 6129827146926714556/00012 6129827146926714556/00021 6129827146926714556/00016 6129827146926714556/00011 6129827146926714556/00034 6129827146926714556/00002 6129827146926714556/00007 6129827146926714556/00025 6361028672444286629/00010 6361028672444286629/00026 6361028672444286629/00023 6361028672444286629/00005 6114629405149799054/00015 6114629405149799054/00022 6114629405149799054/00026 6114629405149799054/00001 6114629405149799054/00018 6114629405149799054/00012 6114629405149799054/00021 6114629405149799054/00002 6114629405149799054/00007 6114629405149799054/00005 5985542015584867210/00006 5985542015584867210/00001 5985542015584867210/00002 5985542015584867210/00004 5971692034545539308/00006 5971692034545539308/00013 5971692034545539308/00022 5971692034545539308/00026 5971692034545539308/00012 5971692034545539308/00021 5971692034545539308/00014 5971692034545539308/00011 5971692034545539308/00008 5971692034545539308/00007 5971692034545539308/00005 5971692034545539308/00004 6149901824068215456/00003 6149901824068215456/00006 6149901824068215456/00022 6149901824068215456/00001 6149901824068215456/00012 6149901824068215456/00021 6149901824068215456/00027 6221498069899136887/00029 6221498069899136887/00003 6221498069899136887/00032 6221498069899136887/00033 6221498069899136887/00024 6221498069899136887/00031 6221498069899136887/00026 6221498069899136887/00036 6221498069899136887/00001 6221498069899136887/00045 6221498069899136887/00023 6221498069899136887/00012 6221498069899136887/00037 6221498069899136887/00035 6221498069899136887/00051 6221498069899136887/00052 6221498069899136887/00011 6221498069899136887/00027 6221498069899136887/00034 6221498069899136887/00008 6221498069899136887/00007 6221498069899136887/00025 6221498069899136887/00043 6221498069899136887/00004 6221498069899136887/00028 5989944786560004990/00006 5989944786560004990/00013 5989944786560004990/00001 5989944786560004990/00012 5989944786560004990/00008 5989944786560004990/00005 6220454392846212307/00015 6220454392846212307/00003 6220454392846212307/00006 6220454392846212307/00009 6220454392846212307/00010 6220454392846212307/00012 6220454392846212307/00014 6220454392846212307/00017 6220454392846212307/00019 6220454392846212307/00011 6220454392846212307/00008 6220454392846212307/00007 6220454392846212307/00005 6220454392846212307/00004 6264953690006547668/00003 6264953690006547668/00001 6264953690006547668/00011 6264953690006547668/00002 6261273762027332658/00001 6261273762027332658/00002 5694595776993142364/00015 5694595776993142364/00006 5694595776993142364/00010 5694595776993142364/00001 5694595776993142364/00018 5694595776993142364/00012 5694595776993142364/00014 5694595776993142364/00020 5694595776993142364/00017 5694595776993142364/00016 5694595776993142364/00019 5694595776993142364/00011 5694595776993142364/00002 5694595776993142364/00005 5694595776993142364/00004 6100620939817185975/00029 6100620939817185975/00006 6100620939817185975/00009 6100620939817185975/00012 6100620939817185975/00017 6100620939817185975/00016 6100620939817185975/00011 6100620939817185975/00002 6100620939817185975/00028 5970605837316382087/00029 5970605837316382087/00015 5970605837316382087/00006 5970605837316382087/00032 5970605837316382087/00013 5970605837316382087/00026 5970605837316382087/00001 5970605837316382087/00021 5970605837316382087/00014 5970605837316382087/00017 5970605837316382087/00016 5970605837316382087/00019 5970605837316382087/00011 5970605837316382087/00002 5970605837316382087/00008 5970605837316382087/00007 5970605837316382087/00005 5970605837316382087/00004 6256396826662787735/00003 6256396826662787735/00006 6256396826662787735/00007 6256396826662787735/00005 6365888857436445152/00006 6365888857436445152/00009 6365888857436445152/00011 6365888857436445152/00005 6207064402804186878/00009 6207064402804186878/00010 6207064402804186878/00033 6207064402804186878/00030 6207064402804186878/00031 6207064402804186878/00013 6207064402804186878/00022 6207064402804186878/00026 6207064402804186878/00017 6207064402804186878/00011 6207064402804186878/00027 6207064402804186878/00034 6207064402804186878/00005 6207064402804186878/00028 6233674302183305449/00003 6233674302183305449/00006 6233674302183305449/00009 6233674302183305449/00010 6233674302183305449/00013 6233674302183305449/00022 6233674302183305449/00001 6233674302183305449/00023 6233674302183305449/00012 6233674302183305449/00014 6233674302183305449/00017 6233674302183305449/00016 6233674302183305449/00008 6233674302183305449/00025 6233674302183305449/00005 6212963110888521039/00003 6212963110888521039/00032 6212963110888521039/00009 6212963110888521039/00024 6212963110888521039/00030 6212963110888521039/00031 6212963110888521039/00036 6212963110888521039/00023 6212963110888521039/00038 6212963110888521039/00018 6212963110888521039/00037 6212963110888521039/00020 6212963110888521039/00017 6212963110888521039/00002 6212963110888521039/00025 6339464500644477822/00032 6339464500644477822/00030 6339464500644477822/00021 6339464500644477822/00020 6339464500644477822/00008 5985909235288683646/00003 5985909235288683646/00013 6083129685504269404/00013 6083129685504269404/00014 6146824909497358008/00003 6146824909497358008/00004 6000663736440710092/00015 6000663736440710092/00003 6000663736440710092/00032 6000663736440710092/00033 6000663736440710092/00024 6000663736440710092/00030 6000663736440710092/00031 6000663736440710092/00013 6000663736440710092/00001 6000663736440710092/00018 6000663736440710092/00012 6000663736440710092/00020 6000663736440710092/00019 6000663736440710092/00034 6000663736440710092/00002 6000663736440710092/00008 6000663736440710092/00025 6000663736440710092/00004 6248200740571759847/00029 6248200740571759847/00006 6248200740571759847/00033 6248200740571759847/00024 6248200740571759847/00030 6248200740571759847/00026 6248200740571759847/00018 6248200740571759847/00012 6248200740571759847/00014 6248200740571759847/00027 6248200740571759847/00034 6248200740571759847/00008 6248200740571759847/00007 6248200740571759847/00025 5557920468706388610/00006 5557920468706388610/00046 5557920468706388610/00032 5557920468706388610/00010 5557920468706388610/00030 5557920468706388610/00022 5557920468706388610/00026 5557920468706388610/00045 5557920468706388610/00049 5557920468706388610/00023 5557920468706388610/00038 5557920468706388610/00048 5557920468706388610/00018 5557920468706388610/00020 5557920468706388610/00035 5557920468706388610/00016 5557920468706388610/00019 5557920468706388610/00011 5557920468706388610/00027 5557920468706388610/00040 5557920468706388610/00004 6133898775923300756/00003 6133898775923300756/00001 6133898775923300756/00002 6133898775923300756/00008 6133898775923300756/00007 6096712949074615488/00029 6096712949074615488/00006 6096712949074615488/00046 6096712949074615488/00009 6096712949074615488/00024 6096712949074615488/00031 6096712949074615488/00013 6096712949074615488/00022 6096712949074615488/00026 6096712949074615488/00044 6096712949074615488/00036 6096712949074615488/00045 6096712949074615488/00049 6096712949074615488/00038 6096712949074615488/00048 6096712949074615488/00042 6096712949074615488/00012 6096712949074615488/00021 6096712949074615488/00014 6096712949074615488/00037 6096712949074615488/00047 6096712949074615488/00035 6096712949074615488/00017 6096712949074615488/00016 6096712949074615488/00019 6096712949074615488/00011 6096712949074615488/00027 6096712949074615488/00034 6096712949074615488/00008 6096712949074615488/00040 6096712949074615488/00007 6096712949074615488/00025 6096712949074615488/00043 6096712949074615488/00005 6126867484963038545/00009 6126867484963038545/00010 6126867484963038545/00013 6126867484963038545/00012 5967411670138342624/00003 5967411670138342624/00006 5967411670138342624/00032 5967411670138342624/00009 5967411670138342624/00033 5967411670138342624/00031 5967411670138342624/00022 5967411670138342624/00023 5967411670138342624/00012 5967411670138342624/00019 5967411670138342624/00028 6260048407857847527/00003 6260048407857847527/00006 6260048407857847527/00009 6260048407857847527/00008 6325456035311830751/00006 6325456035311830751/00013 6325456035311830751/00017 6325456035311830751/00002 6325456035311830751/00007 6325456035311830751/00005 5949005587791253679/00125 5949005587791253679/00006 5949005587791253679/00098 5949005587791253679/00046 5949005587791253679/00056 5949005587791253679/00032 5949005587791253679/00128 5949005587791253679/00113 5949005587791253679/00109 5949005587791253679/00122 5949005587791253679/00073 5949005587791253679/00112 5949005587791253679/00010 5949005587791253679/00057 5949005587791253679/00053 5949005587791253679/00118 5949005587791253679/00078 5949005587791253679/00030 5949005587791253679/00058 5949005587791253679/00121 5949005587791253679/00086 5949005587791253679/00013 5949005587791253679/00137 5949005587791253679/00069 5949005587791253679/00044 5949005587791253679/00130 5949005587791253679/00099 5949005587791253679/00077 5949005587791253679/00093 5949005587791253679/00120 5949005587791253679/00103 5949005587791253679/00050 5949005587791253679/00105 5949005587791253679/00117 5949005587791253679/00063 5949005587791253679/00001 5949005587791253679/00045 5949005587791253679/00066 5949005587791253679/00064 5949005587791253679/00072 5949005587791253679/00023 5949005587791253679/00038 5949005587791253679/00048 5949005587791253679/00134 5949005587791253679/00108 5949005587791253679/00145 5949005587791253679/00042 5949005587791253679/00135 5949005587791253679/00041 5949005587791253679/00126 5949005587791253679/00065 5949005587791253679/00129 5949005587791253679/00061 5949005587791253679/00083 5949005587791253679/00021 5949005587791253679/00104 5949005587791253679/00079 5949005587791253679/00014 5949005587791253679/00037 5949005587791253679/00127 5949005587791253679/00101 5949005587791253679/00047 5949005587791253679/00039 5949005587791253679/00124 5949005587791253679/00020 5949005587791253679/00035 5949005587791253679/00017 5949005587791253679/00076 5949005587791253679/00052 5949005587791253679/00055 5949005587791253679/00111 5949005587791253679/00059 5949005587791253679/00146 5949005587791253679/00011 5949005587791253679/00119 5949005587791253679/00084 5949005587791253679/00067 5949005587791253679/00115 5949005587791253679/00100 5949005587791253679/00089 5949005587791253679/00008 5949005587791253679/00040 5949005587791253679/00007 5949005587791253679/00097 5949005587791253679/00139 5949005587791253679/00054 5949005587791253679/00043 5949005587791253679/00005 5949005587791253679/00074 6124633242975654350/00006 6124633242975654350/00013 6124633242975654350/00008 6124633242975654350/00004 6123941323744338551/00015 6123941323744338551/00003 6123941323744338551/00006 6123941323744338551/00009 6123941323744338551/00031 6123941323744338551/00013 6123941323744338551/00038 6123941323744338551/00012 6123941323744338551/00021 6123941323744338551/00037 6123941323744338551/00039 6123941323744338551/00017 6123941323744338551/00016 6123941323744338551/00011 6123941323744338551/00027 6123941323744338551/00034 6123941323744338551/00002 6123941323744338551/00008 6123941323744338551/00007 6123941323744338551/00004 6123941323744338551/00028 6117969171719171551/00003 6117969171719171551/00009 6117969171719171551/00010 6117969171719171551/00036 6117969171719171551/00041 6117969171719171551/00016 6117969171719171551/00011 6117969171719171551/00025 6329062519350282760/00006 6329062519350282760/00009 6329062519350282760/00013 6329062519350282760/00014 6329062519350282760/00017 6329062519350282760/00016 6329062519350282760/00011 6329062519350282760/00002 6329062519350282760/00008 5962787278850671680/00029 5962787278850671680/00003 5962787278850671680/00036 5962787278850671680/00001 5962787278850671680/00045 5962787278850671680/00014 5962787278850671680/00047 5962787278850671680/00039 5962787278850671680/00016 5962787278850671680/00019 5962787278850671680/00011 5962787278850671680/00028 5942820834885039755/00009 5942820834885039755/00024 5942820834885039755/00026 5942820834885039755/00014 5942820834885039755/00019 5942820834885039755/00025 5942820834885039755/00028 6108371208302794069/00029 6108371208302794069/00003 6108371208302794069/00006 6108371208302794069/00010 6108371208302794069/00033 6108371208302794069/00024 6108371208302794069/00030 6108371208302794069/00026 6108371208302794069/00044 6108371208302794069/00045 6108371208302794069/00023 6108371208302794069/00038 6108371208302794069/00042 6108371208302794069/00041 6108371208302794069/00021 6108371208302794069/00014 6108371208302794069/00020 6108371208302794069/00016 6108371208302794069/00019 6108371208302794069/00011 6108371208302794069/00034 6108371208302794069/00002 6108371208302794069/00008 6108371208302794069/00007 6108371208302794069/00043 6108371208302794069/00005 6108371208302794069/00004 6362193467574893437/00002 6362193467574893437/00007 6356901638369488289/00018 6094215855088714304/00029 6094215855088714304/00015 6094215855088714304/00003 6094215855088714304/00032 6094215855088714304/00010 6094215855088714304/00033 6094215855088714304/00030 6094215855088714304/00013 6094215855088714304/00036 6094215855088714304/00001 6094215855088714304/00045 6094215855088714304/00049 6094215855088714304/00023 6094215855088714304/00038 6094215855088714304/00048 6094215855088714304/00018 6094215855088714304/00042 6094215855088714304/00041 6094215855088714304/00014 6094215855088714304/00037 6094215855088714304/00052 6094215855088714304/00055 6094215855088714304/00027 6094215855088714304/00034 6094215855088714304/00040 6094215855088714304/00043 6094215855088714304/00005 6094215855088714304/00004 6076828968481690028/00003 6076828968481690028/00009 6076828968481690028/00010 6076828968481690028/00013 6076828968481690028/00022 6076828968481690028/00026 6076828968481690028/00001 6076828968481690028/00023 6076828968481690028/00018 6076828968481690028/00014 6076828968481690028/00017 6076828968481690028/00016 6076828968481690028/00019 6076828968481690028/00002 6076828968481690028/00008 6076828968481690028/00007 6076828968481690028/00005 5937946476500801298/00013 5937946476500801298/00012 5937946476500801298/00017 5937946476500801298/00011 6108742293477231256/00008 6108742293477231256/00005 6085727281724893549/00003 6085727281724893549/00012 6085727281724893549/00014 6085727281724893549/00016 6085727281724893549/00011 6085727281724893549/00002 6085727281724893549/00007 5923910952874254645/00029 5923910952874254645/00024 5923910952874254645/00022 5923910952874254645/00026 5923910952874254645/00023 5923910952874254645/00012 5923910952874254645/00014 5923910952874254645/00019 5923910952874254645/00027 5923910952874254645/00004 5949546753670552635/00003 5949546753670552635/00006 5949546753670552635/00010 5915399186687065812/00003 5915399186687065812/00006 5915399186687065812/00001 5940640709485588148/00029 5940640709485588148/00003 5940640709485588148/00046 5940640709485588148/00024 5940640709485588148/00026 5940640709485588148/00044 5940640709485588148/00049 5940640709485588148/00023 5940640709485588148/00012 5940640709485588148/00021 5940640709485588148/00027 5940640709485588148/00034 5940640709485588148/00002 5940640709485588148/00028 6367396390957341434/00013 6367396390957341434/00014 6367396390957341434/00011 6367396390957341434/00008 6021463833558444329/00003 6021463833558444329/00005 6021463833558444329/00004 6250496830088264434/00005 6110618335192124194/00002 5575816308938623425/00003 5575816308938623425/00006 5575816308938623425/00009 5575816308938623425/00010 5575816308938623425/00001 5575816308938623425/00002 5575816308938623425/00008 5575816308938623425/00007 5575816308938623425/00004 6126836561198576117/00003 6126836561198576117/00010 6126836561198576117/00013 6126836561198576117/00001 6126836561198576117/00014 6126836561198576117/00011 6126836561198576117/00002 6126836561198576117/00008 6126836561198576117/00004 5552736872676845399/00015 5552736872676845399/00013 5552736872676845399/00012 5552736872676845399/00016 5552736872676845399/00005 5552736872676845399/00004 6384361941273252259/00010 6384361941273252259/00012 5904606792865602249/00015 5904606792865602249/00006 5904606792865602249/00010 5904606792865602249/00013 5904606792865602249/00001 5904606792865602249/00018 5904606792865602249/00012 5904606792865602249/00014 5904606792865602249/00011 5904606792865602249/00002 5904606792865602249/00007 5987660293455265901/00001 6136712838495643452/00015 6136712838495643452/00006 6136712838495643452/00032 6136712838495643452/00010 6136712838495643452/00033 6136712838495643452/00024 6136712838495643452/00030 6136712838495643452/00031 6136712838495643452/00013 6136712838495643452/00001 6136712838495643452/00023 6136712838495643452/00038 6136712838495643452/00018 6136712838495643452/00012 6136712838495643452/00021 6136712838495643452/00014 6136712838495643452/00020 6136712838495643452/00035 6136712838495643452/00017 6136712838495643452/00019 6136712838495643452/00011 6136712838495643452/00027 6136712838495643452/00034 6136712838495643452/00002 6136712838495643452/00008 6136712838495643452/00025 6136712838495643452/00005 6136712838495643452/00004 6136712838495643452/00028 5693853606644393560/00015 5693853606644393560/00003 5693853606644393560/00046 5693853606644393560/00010 5693853606644393560/00024 5693853606644393560/00022 5693853606644393560/00026 5693853606644393560/00044 5693853606644393560/00001 5693853606644393560/00049 5693853606644393560/00023 5693853606644393560/00038 5693853606644393560/00018 5693853606644393560/00012 5693853606644393560/00021 5693853606644393560/00039 5693853606644393560/00016 5693853606644393560/00011 5693853606644393560/00034 5693853606644393560/00025 5693853606644393560/00005 5693853606644393560/00004 5693853606644393560/00028 5917981321025328964/00029 5917981321025328964/00003 5917981321025328964/00006 5917981321025328964/00032 5917981321025328964/00009 5917981321025328964/00010 5917981321025328964/00033 5917981321025328964/00030 5917981321025328964/00031 5917981321025328964/00022 5917981321025328964/00026 5917981321025328964/00001 5917981321025328964/00018 5917981321025328964/00021 5917981321025328964/00020 5917981321025328964/00017 5917981321025328964/00019 5917981321025328964/00027 5917981321025328964/00002 5917981321025328964/00025 5917981321025328964/00028 5953577150981186699/00029 5953577150981186699/00009 5953577150981186699/00024 5953577150981186699/00030 5953577150981186699/00013 5953577150981186699/00026 5953577150981186699/00044 5953577150981186699/00001 5953577150981186699/00023 5953577150981186699/00039 5953577150981186699/00027 5953577150981186699/00008 5953577150981186699/00004 6125398606147801605/00003 6125398606147801605/00006 6125398606147801605/00024 6125398606147801605/00026 6125398606147801605/00023 6125398606147801605/00014 6125398606147801605/00019 6125398606147801605/00007 6125398606147801605/00025 6125398606147801605/00005 6125398606147801605/00004 6126585305611694607/00003 6126585305611694607/00006 6126585305611694607/00001 6126585305611694607/00014 6126585305611694607/00002 6126585305611694607/00008 6126585305611694607/00005 6113581862626304484/00029 6113581862626304484/00003 6113581862626304484/00006 6113581862626304484/00032 6113581862626304484/00033 6113581862626304484/00024 6113581862626304484/00030 6113581862626304484/00031 6113581862626304484/00013 6113581862626304484/00044 6113581862626304484/00036 6113581862626304484/00001 6113581862626304484/00042 6113581862626304484/00012 6113581862626304484/00041 6113581862626304484/00021 6113581862626304484/00014 6113581862626304484/00035 6113581862626304484/00016 6113581862626304484/00019 6113581862626304484/00008 6113581862626304484/00007 6113581862626304484/00043 6113581862626304484/00004 5901630380529470440/00003 5901630380529470440/00002 5901630380529470440/00004 6080434164029232227/00003 6080434164029232227/00007 6279797096981569617/00029 6279797096981569617/00003 6279797096981569617/00009 6279797096981569617/00024 6279797096981569617/00030 6279797096981569617/00022 6279797096981569617/00001 6279797096981569617/00023 6279797096981569617/00018 6279797096981569617/00019 6279797096981569617/00011 6279797096981569617/00002 6279797096981569617/00004 6132039484580860188/00024 6132039484580860188/00022 6132039484580860188/00023 6132039484580860188/00012 6132039484580860188/00020 6132039484580860188/00011 5556567554008152192/00003 5954251031349925493/00003 5954251031349925493/00032 5954251031349925493/00009 5954251031349925493/00010 5954251031349925493/00033 5954251031349925493/00024 5954251031349925493/00031 5954251031349925493/00022 5954251031349925493/00026 5954251031349925493/00036 5954251031349925493/00001 5954251031349925493/00023 5954251031349925493/00038 5954251031349925493/00018 5954251031349925493/00014 5954251031349925493/00039 5954251031349925493/00035 5954251031349925493/00016 5954251031349925493/00034 5954251031349925493/00002 5954251031349925493/00025 5954251031349925493/00005 5570653328752096880/00029 5570653328752096880/00015 5570653328752096880/00009 5570653328752096880/00033 5570653328752096880/00030 5570653328752096880/00031 5570653328752096880/00013 5570653328752096880/00026 5570653328752096880/00044 5570653328752096880/00036 5570653328752096880/00045 5570653328752096880/00012 5570653328752096880/00039 5570653328752096880/00034 5570653328752096880/00008 5570653328752096880/00043 5949455270867143705/00014 5949455270867143705/00011 6131372046663087880/00008 5862295352045786765/00006 5862295352045786765/00009 5862295352045786765/00010 5862295352045786765/00013 5862295352045786765/00001 5862295352045786765/00014 5862295352045786765/00011 5862295352045786765/00002 6236016777346522321/00029 6236016777346522321/00003 6236016777346522321/00010 6236016777346522321/00022 6236016777346522321/00026 6236016777346522321/00001 6236016777346522321/00023 6236016777346522321/00012 6236016777346522321/00021 6236016777346522321/00020 6236016777346522321/00017 6236016777346522321/00011 6236016777346522321/00007 6236016777346522321/00005 6236016777346522321/00004 5570529633693972071/00009 5570529633693972071/00010 5570529633693972071/00033 5570529633693972071/00024 5570529633693972071/00031 5570529633693972071/00013 5570529633693972071/00022 5570529633693972071/00036 5570529633693972071/00023 5570529633693972071/00038 5570529633693972071/00012 5570529633693972071/00021 5570529633693972071/00020 5570529633693972071/00017 5570529633693972071/00019 5570529633693972071/00011 5570529633693972071/00027 5570529633693972071/00008 5570529633693972071/00040 5570529633693972071/00007 5570529633693972071/00025 5570529633693972071/00005 5560747416180591809/00015 5560747416180591809/00003 5560747416180591809/00006 5560747416180591809/00009 5560747416180591809/00010 5560747416180591809/00024 5560747416180591809/00013 5560747416180591809/00022 5560747416180591809/00001 5560747416180591809/00023 5560747416180591809/00012 5560747416180591809/00021 5560747416180591809/00014 5560747416180591809/00020 5560747416180591809/00019 5560747416180591809/00011 5560747416180591809/00002 5560747416180591809/00007 5560747416180591809/00025 5560747416180591809/00005 5560747416180591809/00004 6149543623795728976/00015 6149543623795728976/00006 6149543623795728976/00046 6149543623795728976/00009 6149543623795728976/00010 6149543623795728976/00033 6149543623795728976/00024 6149543623795728976/00030 6149543623795728976/00013 6149543623795728976/00022 6149543623795728976/00026 6149543623795728976/00050 6149543623795728976/00036 6149543623795728976/00049 6149543623795728976/00038 6149543623795728976/00018 6149543623795728976/00041 6149543623795728976/00014 6149543623795728976/00047 6149543623795728976/00020 6149543623795728976/00035 6149543623795728976/00016 6149543623795728976/00027 6149543623795728976/00002 6149543623795728976/00007 6149543623795728976/00025 6149543623795728976/00004 6149543623795728976/00028 6359580409472005362/00006 6359580409472005362/00001 6359580409472005362/00011 6359580409472005362/00002 5912407312468606466/00029 5912407312468606466/00015 5912407312468606466/00006 5912407312468606466/00032 5912407312468606466/00009 5912407312468606466/00010 5912407312468606466/00022 5912407312468606466/00026 5912407312468606466/00044 5912407312468606466/00036 5912407312468606466/00038 5912407312468606466/00048 5912407312468606466/00014 5912407312468606466/00039 5912407312468606466/00016 5912407312468606466/00007 5912407312468606466/00043 5912407312468606466/00004 5912407312468606466/00028 6211882067620114198/00060 6211882067620114198/00046 6211882067620114198/00056 6211882067620114198/00009 6211882067620114198/00010 6211882067620114198/00053 6211882067620114198/00030 6211882067620114198/00050 6211882067620114198/00045 6211882067620114198/00049 6211882067620114198/00018 6211882067620114198/00041 6211882067620114198/00061 6211882067620114198/00039 6211882067620114198/00051 6211882067620114198/00055 6211882067620114198/00016 6211882067620114198/00034 6211882067620114198/00040 6211882067620114198/00025 6211882067620114198/00054 6211882067620114198/00005 6211882067620114198/00004 6220384814376013602/00029 6220384814376013602/00003 6220384814376013602/00032 6220384814376013602/00009 6220384814376013602/00033 6220384814376013602/00024 6220384814376013602/00053 6220384814376013602/00030 6220384814376013602/00031 6220384814376013602/00026 6220384814376013602/00044 6220384814376013602/00050 6220384814376013602/00001 6220384814376013602/00038 6220384814376013602/00048 6220384814376013602/00018 6220384814376013602/00041 6220384814376013602/00037 6220384814376013602/00047 6220384814376013602/00020 6220384814376013602/00035 6220384814376013602/00016 6220384814376013602/00019 6220384814376013602/00011 6220384814376013602/00027 6220384814376013602/00034 6220384814376013602/00002 6220384814376013602/00008 6220384814376013602/00040 6220384814376013602/00007 6220384814376013602/00025 6220384814376013602/00054 6220384814376013602/00043 6220384814376013602/00005 6220384814376013602/00004 5939825095196073869/00006 5939825095196073869/00032 5939825095196073869/00010 5939825095196073869/00033 5939825095196073869/00024 5939825095196073869/00026 5939825095196073869/00023 5939825095196073869/00018 5939825095196073869/00014 5939825095196073869/00016 5939825095196073869/00034 5939825095196073869/00007 5939825095196073869/00004 5963261443240215512/00015 5963261443240215512/00003 5963261443240215512/00006 5963261443240215512/00009 5963261443240215512/00010 5963261443240215512/00013 5963261443240215512/00001 5963261443240215512/00012 5963261443240215512/00021 5963261443240215512/00014 5963261443240215512/00017 5963261443240215512/00016 5963261443240215512/00019 5963261443240215512/00002 5963261443240215512/00008 5963261443240215512/00007 5963261443240215512/00025 5963261443240215512/00005 5963261443240215512/00004 5745418984000162175/00003 5745418984000162175/00001 5745418984000162175/00002 6053790763905313279/00006 6053790763905313279/00005 6053790763905313279/00004 6250083224737593779/00015 6250083224737593779/00003 6250083224737593779/00033 6250083224737593779/00030 6250083224737593779/00013 6250083224737593779/00023 6250083224737593779/00038 6250083224737593779/00021 6250083224737593779/00020 6250083224737593779/00016 6250083224737593779/00019 6250083224737593779/00040 6250083224737593779/00025 6250083224737593779/00004 6279070388515022591/00015 6279070388515022591/00006 6279070388515022591/00009 6279070388515022591/00010 6279070388515022591/00013 6279070388515022591/00022 6279070388515022591/00001 6279070388515022591/00018 6279070388515022591/00019 6279070388515022591/00011 6279070388515022591/00002 6279070388515022591/00007 6242236319487862422/00003 6242236319487862422/00009 6242236319487862422/00001 6242236319487862422/00012 6242236319487862422/00008 6242236319487862422/00005 5994390077711437429/00060 5994390077711437429/00029 5994390077711437429/00006 5994390077711437429/00046 5994390077711437429/00056 5994390077711437429/00032 5994390077711437429/00070 5994390077711437429/00009 5994390077711437429/00010 5994390077711437429/00033 5994390077711437429/00057 5994390077711437429/00024 5994390077711437429/00078 5994390077711437429/00058 5994390077711437429/00062 5994390077711437429/00013 5994390077711437429/00069 5994390077711437429/00026 5994390077711437429/00044 5994390077711437429/00077 5994390077711437429/00063 5994390077711437429/00001 5994390077711437429/00045 5994390077711437429/00066 5994390077711437429/00064 5994390077711437429/00072 5994390077711437429/00038 5994390077711437429/00088 5994390077711437429/00018 5994390077711437429/00042 5994390077711437429/00012 5994390077711437429/00065 5994390077711437429/00083 5994390077711437429/00075 5994390077711437429/00079 5994390077711437429/00014 5994390077711437429/00047 5994390077711437429/00039 5994390077711437429/00020 5994390077711437429/00017 5994390077711437429/00055 5994390077711437429/00059 5994390077711437429/00011 5994390077711437429/00027 5994390077711437429/00034 5994390077711437429/00081 5994390077711437429/00008 5994390077711437429/00087 5994390077711437429/00007 5994390077711437429/00068 5994390077711437429/00025 5994390077711437429/00054 5994390077711437429/00043 5994390077711437429/00005 5994390077711437429/00074 6014092381188298427/00001 6014092381188298427/00002 6117605817485929919/00029 6117605817485929919/00015 6117605817485929919/00003 6117605817485929919/00006 6117605817485929919/00032 6117605817485929919/00010 6117605817485929919/00033 6117605817485929919/00030 6117605817485929919/00031 6117605817485929919/00026 6117605817485929919/00044 6117605817485929919/00001 6117605817485929919/00012 6117605817485929919/00021 6117605817485929919/00014 6117605817485929919/00037 6117605817485929919/00020 6117605817485929919/00035 6117605817485929919/00016 6117605817485929919/00027 6117605817485929919/00034 6117605817485929919/00002 6117605817485929919/00008 6117605817485929919/00040 6117605817485929919/00007 6117605817485929919/00005 6117605817485929919/00004 6348714571709909926/00001 6348714571709909926/00011 6126828830257436278/00006 6126828830257436278/00001 6126828830257436278/00012 6126828830257436278/00011 6126828830257436278/00002 6192402672945788438/00015 6192402672945788438/00003 6192402672945788438/00009 6192402672945788438/00010 6192402672945788438/00024 6192402672945788438/00013 6192402672945788438/00022 6192402672945788438/00001 6192402672945788438/00018 6192402672945788438/00012 6192402672945788438/00021 6192402672945788438/00020 6192402672945788438/00017 6192402672945788438/00019 6192402672945788438/00011 6192402672945788438/00007 6192402672945788438/00025 6192402672945788438/00028 6129843897299168958/00015 6129843897299168958/00009 6129843897299168958/00022 6129843897299168958/00036 6129843897299168958/00012 6129843897299168958/00041 6129843897299168958/00021 6129843897299168958/00014 6129843897299168958/00037 6129843897299168958/00039 6129843897299168958/00019 6129843897299168958/00011 6129843897299168958/00040 6129843897299168958/00007 6129843897299168958/00025 6129843897299168958/00005 6091664644514887751/00015 6091664644514887751/00006 6091664644514887751/00009 6091664644514887751/00013 6091664644514887751/00022 6091664644514887751/00023 6091664644514887751/00011 6091664644514887751/00008 6091664644514887751/00005 5970296599671005453/00029 5970296599671005453/00006 5970296599671005453/00030 5970296599671005453/00018 5970296599671005453/00020 5970296599671005453/00016 5970296599671005453/00027 5970296599671005453/00002 5970296599671005453/00008 5970296599671005453/00007 5970296599671005453/00025 5970296599671005453/00005 5970296599671005453/00004 6112757228905471396/00015 6112757228905471396/00031 6112757228905471396/00011 6112757228905471396/00007 6086009461076240768/00003 6086009461076240768/00006 6086009461076240768/00009 6086009461076240768/00010 6086009461076240768/00001 6086009461076240768/00011 6086009461076240768/00002 6086009461076240768/00008 6218463675504510940/00006 6218463675504510940/00009 6218463675504510940/00013 6218463675504510940/00001 6218463675504510940/00018 6218463675504510940/00012 6218463675504510940/00014 6218463675504510940/00020 6218463675504510940/00017 6218463675504510940/00016 6218463675504510940/00011 6218463675504510940/00002 6218463675504510940/00007 6218463675504510940/00004 6020350578035319652/00001 6020350578035319652/00002 5910165339540087670/00009 5910165339540087670/00010 5910165339540087670/00013 5910165339540087670/00022 5910165339540087670/00001 5910165339540087670/00023 5910165339540087670/00018 5910165339540087670/00021 5910165339540087670/00014 5910165339540087670/00016 5910165339540087670/00019 5910165339540087670/00002 5910165339540087670/00008 5910165339540087670/00007 5910165339540087670/00005 5910165339540087670/00004 6221869155073511315/00029 6221869155073511315/00015 6221869155073511315/00032 6221869155073511315/00033 6221869155073511315/00030 6221869155073511315/00031 6221869155073511315/00022 6221869155073511315/00026 6221869155073511315/00018 6221869155073511315/00041 6221869155073511315/00039 6221869155073511315/00035 6221869155073511315/00017 6221869155073511315/00016 6221869155073511315/00019 6221869155073511315/00027 6221869155073511315/00034 6221869155073511315/00008 6221869155073511315/00025 6232286598249941898/00029 6232286598249941898/00003 6232286598249941898/00006 6232286598249941898/00033 6232286598249941898/00030 6232286598249941898/00031 6232286598249941898/00022 6232286598249941898/00036 6232286598249941898/00001 6232286598249941898/00012 6232286598249941898/00041 6232286598249941898/00021 6232286598249941898/00014 6232286598249941898/00020 6232286598249941898/00019 6232286598249941898/00027 6232286598249941898/00034 6232286598249941898/00002 6232286598249941898/00008 6232286598249941898/00040 6232286598249941898/00005 6232286598249941898/00004 6232286598249941898/00028 6336851442541654996/00001 6075247991019398306/00015 6075247991019398306/00003 6075247991019398306/00009 6075247991019398306/00010 6075247991019398306/00012 6075247991019398306/00014 6075247991019398306/00020 6075247991019398306/00016 6075247991019398306/00019 6075247991019398306/00011 6075247991019398306/00008 6075247991019398306/00007 6075247991019398306/00004 5553708394279204766/00003 5553708394279204766/00006 5553708394279204766/00001 5542042404109797485/00003 5542042404109797485/00001 5542042404109797485/00002 5542042404109797485/00004 6097583968442246271/00009 6097583968442246271/00013 6097583968442246271/00001 6097583968442246271/00012 6097583968442246271/00017 6097583968442246271/00011 6097583968442246271/00002 6097583968442246271/00007 6097583968442246271/00004 5856678823312868540/00002 5856678823312868540/00004 6224053145943530113/00006 6224053145943530113/00009 6224053145943530113/00001 6224053145943530113/00012 6224053145943530113/00011 6224053145943530113/00002 6224053145943530113/00007 6193318789470025272/00006 6193318789470025272/00002 6193318789470025272/00008 6193318789470025272/00005 6125209198090053152/00009 6125209198090053152/00002 6125209198090053152/00007 5717618519686620060/00006 5717618519686620060/00010 5717618519686620060/00001 5717618519686620060/00002 5717618519686620060/00008 5717618519686620060/00007 6110226634174663049/00006 6110226634174663049/00001 6110226634174663049/00002 6128320901896073757/00015 6128320901896073757/00006 6128320901896073757/00009 6128320901896073757/00013 6128320901896073757/00001 6128320901896073757/00012 6128320901896073757/00014 6128320901896073757/00002 6128320901896073757/00008 6128320901896073757/00007 6128320901896073757/00005 6128320901896073757/00004 6253442318659799517/00003 6253442318659799517/00010 6253442318659799517/00014 5960290184864777799/00024 5960290184864777799/00013 5960290184864777799/00045 5960290184864777799/00018 5960290184864777799/00035 5960290184864777799/00051 5960290184864777799/00011 5960290184864777799/00027 5960290184864777799/00007 5960290184864777799/00005 6284911114540926118/00003 6284911114540926118/00001 6284911114540926118/00002 6284911114540926118/00004 5904614523806735422/00015 5904614523806735422/00003 5904614523806735422/00006 5904614523806735422/00009 5904614523806735422/00013 5904614523806735422/00001 5904614523806735422/00012 5904614523806735422/00021 5904614523806735422/00014 5904614523806735422/00016 5904614523806735422/00019 5904614523806735422/00002 5904614523806735422/00007 6077803067063793084/00006 6077803067063793084/00009 6077803067063793084/00024 6077803067063793084/00022 6077803067063793084/00001 6077803067063793084/00012 6077803067063793084/00021 6077803067063793084/00017 6077803067063793084/00011 6077803067063793084/00027 6077803067063793084/00008 6077803067063793084/00007 6077803067063793084/00025 6077803067063793084/00004 6115043010500467373/00003 6115043010500467373/00006 6115043010500467373/00009 6115043010500467373/00010 6115043010500467373/00024 6115043010500467373/00022 6115043010500467373/00001 6115043010500467373/00023 6115043010500467373/00021 6115043010500467373/00014 6115043010500467373/00020 6115043010500467373/00016 6115043010500467373/00011 6115043010500467373/00008 6115043010500467373/00005 6115043010500467373/00004 6093802249738109472/00002 6074834385668797501/00015 6074834385668797501/00009 6074834385668797501/00023 6074834385668797501/00012 6074834385668797501/00014 6074834385668797501/00020 6074834385668797501/00007 6355414720691614656/00013 6360709126877459881/00010 6360709126877459881/00011 6360709126877459881/00008 6239379736869713934/00029 6239379736869713934/00015 6239379736869713934/00003 6239379736869713934/00006 6239379736869713934/00046 6239379736869713934/00032 6239379736869713934/00009 6239379736869713934/00010 6239379736869713934/00033 6239379736869713934/00030 6239379736869713934/00031 6239379736869713934/00022 6239379736869713934/00026 6239379736869713934/00044 6239379736869713934/00036 6239379736869713934/00001 6239379736869713934/00045 6239379736869713934/00023 6239379736869713934/00038 6239379736869713934/00048 6239379736869713934/00018 6239379736869713934/00042 6239379736869713934/00012 6239379736869713934/00041 6239379736869713934/00021 6239379736869713934/00014 6239379736869713934/00037 6239379736869713934/00039 6239379736869713934/00020 6239379736869713934/00035 6239379736869713934/00016 6239379736869713934/00019 6239379736869713934/00011 6239379736869713934/00027 6239379736869713934/00007 6239379736869713934/00025 6239379736869713934/00043 6239379736869713934/00005 6239379736869713934/00004 6239379736869713934/00028 5540483330981347168/00015 5540483330981347168/00003 5540483330981347168/00010 5540483330981347168/00030 5540483330981347168/00001 5540483330981347168/00012 5540483330981347168/00014 5540483330981347168/00016 5540483330981347168/00011 5540483330981347168/00008 5540483330981347168/00025 5540483330981347168/00005 6379224730890468911/00024 6379224730890468911/00025 5683486414585323369/00015 5683486414585323369/00033 5683486414585323369/00024 5683486414585323369/00026 5683486414585323369/00023 5683486414585323369/00018 5683486414585323369/00012 5683486414585323369/00041 5683486414585323369/00021 5683486414585323369/00014 5683486414585323369/00039 5683486414585323369/00020 5683486414585323369/00017 5683486414585323369/00019 5683486414585323369/00002 5683486414585323369/00008 5683486414585323369/00043 5683486414585323369/00005 5683486414585323369/00004 5922411150294425283/00029 5922411150294425283/00015 5922411150294425283/00003 5922411150294425283/00010 5922411150294425283/00024 5922411150294425283/00030 5922411150294425283/00013 5922411150294425283/00022 5922411150294425283/00001 5922411150294425283/00023 5922411150294425283/00018 5922411150294425283/00012 5922411150294425283/00021 5922411150294425283/00014 5922411150294425283/00020 5922411150294425283/00017 5922411150294425283/00016 5922411150294425283/00027 5922411150294425283/00002 5922411150294425283/00025 5922411150294425283/00005 5922411150294425283/00028 6112772690787736998/00029 6112772690787736998/00010 6112772690787736998/00001 6112772690787736998/00020 6112772690787736998/00016 6112772690787736998/00019 6112772690787736998/00027 6112772690787736998/00008 6112772690787736998/00025 6112772690787736998/00005 6112772690787736998/00004 6004436435713518818/00003 6004436435713518818/00032 6004436435713518818/00009 6004436435713518818/00010 6004436435713518818/00033 6004436435713518818/00024 6004436435713518818/00030 6004436435713518818/00013 6004436435713518818/00036 6004436435713518818/00001 6004436435713518818/00038 6004436435713518818/00018 6004436435713518818/00012 6004436435713518818/00021 6004436435713518818/00014 6004436435713518818/00020 6004436435713518818/00017 6004436435713518818/00016 6004436435713518818/00019 6004436435713518818/00011 6004436435713518818/00034 6004436435713518818/00002 6004436435713518818/00008 6004436435713518818/00040 6004436435713518818/00007 6004436435713518818/00025 6004436435713518818/00005 6004436435713518818/00004 6004436435713518818/00028 5972606862579587386/00015 5972606862579587386/00010 5972606862579587386/00033 5972606862579587386/00030 5972606862579587386/00031 5972606862579587386/00021 5972606862579587386/00020 5972606862579587386/00019 5972606862579587386/00027 5972606862579587386/00007 5972606862579587386/00004 6285027078788341775/00003 6285027078788341775/00006 6285027078788341775/00009 6285027078788341775/00010 6285027078788341775/00013 6285027078788341775/00012 6285027078788341775/00014 6285027078788341775/00011 6285027078788341775/00002 6285027078788341775/00005 6285027078788341775/00004 6104660356559076668/00003 6104660356559076668/00010 6104660356559076668/00013 6104660356559076668/00022 6104660356559076668/00001 6104660356559076668/00023 6104660356559076668/00012 6104660356559076668/00021 6104660356559076668/00020 6104660356559076668/00016 6104660356559076668/00019 6104660356559076668/00011 6104660356559076668/00007 6104660356559076668/00005 5991460051022102259/00029 5991460051022102259/00006 5991460051022102259/00032 5991460051022102259/00009 5991460051022102259/00010 5991460051022102259/00033 5991460051022102259/00030 5991460051022102259/00031 5991460051022102259/00013 5991460051022102259/00026 5991460051022102259/00036 5991460051022102259/00001 5991460051022102259/00023 5991460051022102259/00018 5991460051022102259/00042 5991460051022102259/00012 5991460051022102259/00014 5991460051022102259/00039 5991460051022102259/00020 5991460051022102259/00035 5991460051022102259/00016 5991460051022102259/00019 5991460051022102259/00011 5991460051022102259/00027 5991460051022102259/00002 5991460051022102259/00008 5991460051022102259/00040 5991460051022102259/00025 5991460051022102259/00005 5991460051022102259/00004 6190999507130183842/00006 6190999507130183842/00001 6190999507130183842/00002 6190999507130183842/00004 6099078617061188212/00006 6099078617061188212/00002 6099078617061188212/00005 6353179190214044575/00010 6353179190214044575/00020 6353179190214044575/00019 6226186885696121650/00029 6226186885696121650/00015 6226186885696121650/00046 6226186885696121650/00010 6226186885696121650/00030 6226186885696121650/00031 6226186885696121650/00022 6226186885696121650/00026 6226186885696121650/00044 6226186885696121650/00050 6226186885696121650/00049 6226186885696121650/00038 6226186885696121650/00048 6226186885696121650/00018 6226186885696121650/00042 6226186885696121650/00041 6226186885696121650/00021 6226186885696121650/00035 6226186885696121650/00016 6226186885696121650/00011 6226186885696121650/00027 6226186885696121650/00002 6226186885696121650/00008 6226186885696121650/00040 6226186885696121650/00007 6226186885696121650/00025 6226186885696121650/00043 6226186885696121650/00005 6226186885696121650/00004 6226186885696121650/00028 6090876088519342090/00015 6090876088519342090/00006 6090876088519342090/00010 6090876088519342090/00013 6090876088519342090/00001 6090876088519342090/00018 6090876088519342090/00012 6090876088519342090/00014 6090876088519342090/00016 6090876088519342090/00019 6090876088519342090/00002 6090876088519342090/00007 5909794254365713250/00006 5909794254365713250/00009 5909794254365713250/00010 5909794254365713250/00013 5909794254365713250/00001 5909794254365713250/00012 5909794254365713250/00014 5909794254365713250/00008 5909794254365713250/00005 5909794254365713250/00004 6249012489390766710/00003 6249012489390766710/00006 6249012489390766710/00005 5858182491363198530/00015 5858182491363198530/00006 5858182491363198530/00009 5858182491363198530/00010 5858182491363198530/00022 5858182491363198530/00018 5858182491363198530/00017 5858182491363198530/00008 5858182491363198530/00004 5881893287817428595/00002 5881893287817428595/00004 5688959920907327043/00009 5688959920907327043/00010 5688959920907327043/00013 5688959920907327043/00001 5688959920907327043/00014 5688959920907327043/00008 5688959920907327043/00007 5688959920907327043/00004 6344737002497020519/00001 6344737002497020519/00005 5723119084302615213/00001 5723119084302615213/00005 5723119084302615213/00004 6247408319105708663/00009 6247408319105708663/00010 5581310431103671083/00003 5581310431103671083/00006 6115371575498547933/00003 6115371575498547933/00009 6115371575498547933/00010 6115371575498547933/00022 6115371575498547933/00021 6115371575498547933/00020 6115371575498547933/00017 6115371575498547933/00016 6115371575498547933/00002 6115371575498547933/00007 6115371575498547933/00005 6115371575498547933/00004 5535496873950688380/00060 5535496873950688380/00015 5535496873950688380/00003 5535496873950688380/00056 5535496873950688380/00032 5535496873950688380/00070 5535496873950688380/00009 5535496873950688380/00033 5535496873950688380/00057 5535496873950688380/00024 5535496873950688380/00053 5535496873950688380/00030 5535496873950688380/00071 5535496873950688380/00058 5535496873950688380/00062 5535496873950688380/00069 5535496873950688380/00022 5535496873950688380/00026 5535496873950688380/00044 5535496873950688380/00050 5535496873950688380/00036 5535496873950688380/00063 5535496873950688380/00045 5535496873950688380/00066 5535496873950688380/00064 5535496873950688380/00072 5535496873950688380/00023 5535496873950688380/00048 5535496873950688380/00041 5535496873950688380/00021 5535496873950688380/00014 5535496873950688380/00020 5535496873950688380/00035 5535496873950688380/00017 5535496873950688380/00076 5535496873950688380/00052 5535496873950688380/00055 5535496873950688380/00016 5535496873950688380/00019 5535496873950688380/00027 5535496873950688380/00025 5535496873950688380/00054 5535496873950688380/00043 5535496873950688380/00004 5535496873950688380/00028 5552760065500247250/00015 5552760065500247250/00003 5552760065500247250/00006 5552760065500247250/00010 5552760065500247250/00023 5552760065500247250/00020 5552760065500247250/00002 5552760065500247250/00005 5552760065500247250/00004 6074602457434810844/00006 6074602457434810844/00009 6074602457434810844/00010 6074602457434810844/00001 6074602457434810844/00012 6074602457434810844/00002 6074602457434810844/00007 5884490884038050372/00002 5884490884038050372/00005 6152870505463213376/00003 6152870505463213376/00002 6208927559617193740/00029 6208927559617193740/00006 6208927559617193740/00010 6208927559617193740/00030 6208927559617193740/00022 6208927559617193740/00026 6208927559617193740/00023 6208927559617193740/00018 6208927559617193740/00012 6208927559617193740/00021 6208927559617193740/00014 6208927559617193740/00020 6208927559617193740/00017 6208927559617193740/00016 6208927559617193740/00019 6208927559617193740/00027 6208927559617193740/00008 6208927559617193740/00005 6208927559617193740/00004 6126536342984582120/00006 6126536342984582120/00010 6126536342984582120/00024 6126536342984582120/00001 6126536342984582120/00014 6126536342984582120/00017 6126536342984582120/00019 6126536342984582120/00002 6126536342984582120/00008 6126536342984582120/00005 5671931234572155114/00029 5671931234572155114/00015 5671931234572155114/00003 5671931234572155114/00006 5671931234572155114/00009 5671931234572155114/00010 5671931234572155114/00024 5671931234572155114/00030 5671931234572155114/00013 5671931234572155114/00026 5671931234572155114/00001 5671931234572155114/00018 5671931234572155114/00012 5671931234572155114/00021 5671931234572155114/00020 5671931234572155114/00017 5671931234572155114/00016 5671931234572155114/00019 5671931234572155114/00011 5671931234572155114/00027 5671931234572155114/00002 5671931234572155114/00008 5671931234572155114/00007 5671931234572155114/00025 5671931234572155114/00005 5671931234572155114/00004 5671931234572155114/00028 6120617019057221887/00006 6120617019057221887/00001 6120617019057221887/00002 6120617019057221887/00004 6111659435264613731/00015 6111659435264613731/00003 6111659435264613731/00006 6111659435264613731/00012 6111659435264613731/00016 6111659435264613731/00011 6111659435264613731/00008 6111659435264613731/00005 6111659435264613731/00004 5913520567991793457/00015 5913520567991793457/00003 5913520567991793457/00006 5913520567991793457/00032 5913520567991793457/00009 5913520567991793457/00010 5913520567991793457/00024 5913520567991793457/00030 5913520567991793457/00022 5913520567991793457/00026 5913520567991793457/00036 5913520567991793457/00001 5913520567991793457/00023 5913520567991793457/00038 5913520567991793457/00018 5913520567991793457/00042 5913520567991793457/00012 5913520567991793457/00014 5913520567991793457/00039 5913520567991793457/00035 5913520567991793457/00027 5913520567991793457/00002 5913520567991793457/00008 5913520567991793457/00040 5913520567991793457/00007 5913520567991793457/00004 5913520567991793457/00028 6125019790032294377/00003 6125019790032294377/00009 6125019790032294377/00018 6125019790032294377/00004 5719725201145311069/00003 5719725201145311069/00009 5719725201145311069/00002 5719725201145311069/00007 5719725201145311069/00005 5719725201145311069/00004 6155097016509521849/00015 6155097016509521849/00006 6155097016509521849/00032 6155097016509521849/00010 6155097016509521849/00033 6155097016509521849/00024 6155097016509521849/00013 6155097016509521849/00022 6155097016509521849/00026 6155097016509521849/00036 6155097016509521849/00001 6155097016509521849/00018 6155097016509521849/00021 6155097016509521849/00020 6155097016509521849/00016 6155097016509521849/00027 6155097016509521849/00002 6155097016509521849/00008 6155097016509521849/00005 6155097016509521849/00004 5917996782907657938/00003 5917996782907657938/00001 6292769616202358080/00009 6292769616202358080/00010 6292769616202358080/00001 6292769616202358080/00011 6292769616202358080/00002 6292769616202358080/00008 6292769616202358080/00005 6093527801327895055/00003 6093527801327895055/00006 6093527801327895055/00008 6093527801327895055/00007 5990270774577776843/00003 5990270774577776843/00002 5990270774577776843/00007 5990270774577776843/00005 5990270774577776843/00004 6215560707109142416/00003 6215560707109142416/00006 6215560707109142416/00032 6215560707109142416/00009 6215560707109142416/00010 6215560707109142416/00024 6215560707109142416/00030 6215560707109142416/00013 6215560707109142416/00026 6215560707109142416/00036 6215560707109142416/00001 6215560707109142416/00038 6215560707109142416/00042 6215560707109142416/00021 6215560707109142416/00037 6215560707109142416/00020 6215560707109142416/00035 6215560707109142416/00017 6215560707109142416/00027 6215560707109142416/00002 6215560707109142416/00007 6215560707109142416/00025 6215560707109142416/00043 6215560707109142416/00005 6081185353809366812/00003 6081185353809366812/00001 6081185353809366812/00002 6081185353809366812/00005 5566095938954306057/00003 5566095938954306057/00006 5566095938954306057/00032 5566095938954306057/00024 5566095938954306057/00022 5566095938954306057/00026 5566095938954306057/00001 5566095938954306057/00023 5566095938954306057/00012 5566095938954306057/00014 5566095938954306057/00017 5566095938954306057/00016 5566095938954306057/00019 5566095938954306057/00007 5566095938954306057/00025 5566095938954306057/00005 5566095938954306057/00004 5566095938954306057/00028 6112039539870310071/00029 6112039539870310071/00006 6112039539870310071/00024 6112039539870310071/00026 6112039539870310071/00021 6112039539870310071/00020 6112039539870310071/00035 6112039539870310071/00016 6112039539870310071/00019 6112039539870310071/00011 6112039539870310071/00028 6227766574667659638/00015 6227766574667659638/00006 6227766574667659638/00020 6227766574667659638/00017 6227766574667659638/00016 6227766574667659638/00019 6227766574667659638/00002 6227766574667659638/00007 6213751666884002472/00015 6213751666884002472/00006 6213751666884002472/00022 6213751666884002472/00001 6213751666884002472/00014 6213751666884002472/00002 6213751666884002472/00004 5558303150292462174/00007 5558303150292462174/00005 6204466806583563899/00015 6204466806583563899/00003 6204466806583563899/00006 6204466806583563899/00033 6204466806583563899/00030 6204466806583563899/00031 6204466806583563899/00026 6204466806583563899/00018 6204466806583563899/00012 6204466806583563899/00014 6204466806583563899/00020 6204466806583563899/00016 6204466806583563899/00019 6204466806583563899/00027 6204466806583563899/00002 6204466806583563899/00008 6204466806583563899/00005 6359128149415800422/00006 6244938283413778587/00003 6043651634609635419/00029 6043651634609635419/00003 6043651634609635419/00006 6043651634609635419/00024 6043651634609635419/00030 6043651634609635419/00022 6043651634609635419/00001 6043651634609635419/00014 6043651634609635419/00020 6043651634609635419/00016 6043651634609635419/00007 6043651634609635419/00025 6043651634609635419/00005 6043651634609635419/00004 5682340946807479970/00060 5682340946807479970/00003 5682340946807479970/00006 5682340946807479970/00046 5682340946807479970/00032 5682340946807479970/00009 5682340946807479970/00010 5682340946807479970/00033 5682340946807479970/00057 5682340946807479970/00024 5682340946807479970/00053 5682340946807479970/00030 5682340946807479970/00031 5682340946807479970/00026 5682340946807479970/00050 5682340946807479970/00036 5682340946807479970/00023 5682340946807479970/00038 5682340946807479970/00018 5682340946807479970/00042 5682340946807479970/00021 5682340946807479970/00037 5682340946807479970/00039 5682340946807479970/00020 5682340946807479970/00017 5682340946807479970/00055 5682340946807479970/00059 5682340946807479970/00019 5682340946807479970/00011 5682340946807479970/00002 5682340946807479970/00008 5682340946807479970/00040 5682340946807479970/00025 5682340946807479970/00054 5682340946807479970/00004 5682340946807479970/00028 6384364518253565937/00001 6384364518253565937/00017 6384364518253565937/00011 6104934804969353633/00003 6104934804969353633/00001 6104934804969353633/00005 5977385872820258148/00003 5977385872820258148/00006 5977385872820258148/00009 5977385872820258148/00010 5977385872820258148/00013 5977385872820258148/00001 5977385872820258148/00012 5977385872820258148/00011 5977385872820258148/00008 5977385872820258148/00005 5977385872820258148/00004 6381395836858569746/00009 6381395836858569746/00005 6127609655311787399/00007 6127609655311787399/00005 6127609655311787399/00004 5936179956452020142/00029 5936179956452020142/00015 5936179956452020142/00003 5936179956452020142/00006 5936179956452020142/00009 5936179956452020142/00010 5936179956452020142/00024 5936179956452020142/00030 5936179956452020142/00026 5936179956452020142/00001 5936179956452020142/00023 5936179956452020142/00018 5936179956452020142/00012 5936179956452020142/00021 5936179956452020142/00014 5936179956452020142/00020 5936179956452020142/00019 5936179956452020142/00011 5936179956452020142/00027 5936179956452020142/00002 5936179956452020142/00008 5936179956452020142/00007 5936179956452020142/00025 5936179956452020142/00005 5673096029702830518/00003 5673096029702830518/00006 5673096029702830518/00009 5673096029702830518/00024 5673096029702830518/00022 5673096029702830518/00026 5673096029702830518/00036 5673096029702830518/00001 5673096029702830518/00018 5673096029702830518/00012 5673096029702830518/00037 5673096029702830518/00017 5673096029702830518/00016 5673096029702830518/00019 5673096029702830518/00011 5673096029702830518/00002 5673096029702830518/00008 5673096029702830518/00007 5673096029702830518/00004 6001034821615084520/00029 6001034821615084520/00015 6001034821615084520/00006 6001034821615084520/00056 6001034821615084520/00032 6001034821615084520/00033 6001034821615084520/00053 6001034821615084520/00030 6001034821615084520/00013 6001034821615084520/00022 6001034821615084520/00044 6001034821615084520/00050 6001034821615084520/00036 6001034821615084520/00038 6001034821615084520/00048 6001034821615084520/00018 6001034821615084520/00012 6001034821615084520/00014 6001034821615084520/00037 6001034821615084520/00039 6001034821615084520/00020 6001034821615084520/00035 6001034821615084520/00051 6001034821615084520/00017 6001034821615084520/00016 6001034821615084520/00011 6001034821615084520/00027 6001034821615084520/00034 6001034821615084520/00002 6001034821615084520/00008 6001034821615084520/00007 6001034821615084520/00054 6001034821615084520/00043 6001034821615084520/00005 6001034821615084520/00004 6001034821615084520/00028 6076102260144974001/00015 6076102260144974001/00010 6076102260144974001/00013 6076102260144974001/00018 6076102260144974001/00012 6076102260144974001/00014 6076102260144974001/00017 6076102260144974001/00016 6076102260144974001/00011 6076102260144974001/00007 6076102260144974001/00005 6076102260144974001/00004 5742821387779565480/00001 6349947656820532043/00016 6256078569586150210/00002 6223682060769155685/00002 6277570586065754137/00029 6277570586065754137/00015 6277570586065754137/00006 6277570586065754137/00032 6277570586065754137/00009 6277570586065754137/00010 6277570586065754137/00033 6277570586065754137/00030 6277570586065754137/00031 6277570586065754137/00022 6277570586065754137/00044 6277570586065754137/00045 6277570586065754137/00038 6277570586065754137/00018 6277570586065754137/00042 6277570586065754137/00012 6277570586065754137/00021 6277570586065754137/00014 6277570586065754137/00037 6277570586065754137/00039 6277570586065754137/00020 6277570586065754137/00035 6277570586065754137/00016 6277570586065754137/00019 6277570586065754137/00027 6277570586065754137/00002 6277570586065754137/00040 6277570586065754137/00007 6277570586065754137/00025 6277570586065754137/00043 6277570586065754137/00005 6277570586065754137/00004 6277570586065754137/00028 6248426226354796871/00003 6248426226354796871/00001 6248426226354796871/00002 6248426226354796871/00004 5993669811695835782/00060 5993669811695835782/00015 5993669811695835782/00006 5993669811695835782/00046 5993669811695835782/00056 5993669811695835782/00032 5993669811695835782/00009 5993669811695835782/00010 5993669811695835782/00057 5993669811695835782/00053 5993669811695835782/00030 5993669811695835782/00071 5993669811695835782/00062 5993669811695835782/00031 5993669811695835782/00013 5993669811695835782/00069 5993669811695835782/00022 5993669811695835782/00026 5993669811695835782/00044 5993669811695835782/00050 5993669811695835782/00036 5993669811695835782/00063 5993669811695835782/00045 5993669811695835782/00064 5993669811695835782/00072 5993669811695835782/00023 5993669811695835782/00048 5993669811695835782/00018 5993669811695835782/00042 5993669811695835782/00041 5993669811695835782/00021 5993669811695835782/00075 5993669811695835782/00037 5993669811695835782/00020 5993669811695835782/00035 5993669811695835782/00051 5993669811695835782/00076 5993669811695835782/00019 5993669811695835782/00011 5993669811695835782/00027 5993669811695835782/00034 5993669811695835782/00002 5993669811695835782/00040 5993669811695835782/00025 5993669811695835782/00043 5993669811695835782/00005 5993669811695835782/00074 5993669811695835782/00004 5993669811695835782/00028 6377400228783189968/00015 6377400228783189968/00001 6222639672206413765/00029 6222639672206413765/00015 6222639672206413765/00006 6222639672206413765/00009 6222639672206413765/00010 6222639672206413765/00033 6222639672206413765/00024 6222639672206413765/00030 6222639672206413765/00013 6222639672206413765/00022 6222639672206413765/00044 6222639672206413765/00036 6222639672206413765/00049 6222639672206413765/00038 6222639672206413765/00018 6222639672206413765/00041 6222639672206413765/00021 6222639672206413765/00014 6222639672206413765/00039 6222639672206413765/00020 6222639672206413765/00017 6222639672206413765/00019 6222639672206413765/00011 6222639672206413765/00027 6222639672206413765/00034 6222639672206413765/00002 6222639672206413765/00007 6222639672206413765/00025 6222639672206413765/00043 5555840845541668299/00015 5555840845541668299/00006 5555840845541668299/00009 5555840845541668299/00010 5555840845541668299/00013 5555840845541668299/00001 5555840845541668299/00012 5555840845541668299/00014 5555840845541668299/00011 5555840845541668299/00007 5555840845541668299/00005 5555840845541668299/00004 5904227976750091269/00002 5904227976750091269/00007 5904227976750091269/00005 5904227976750091269/00004 5691544632226086607/00029 5691544632226086607/00006 5691544632226086607/00046 5691544632226086607/00024 5691544632226086607/00001 5691544632226086607/00048 5691544632226086607/00041 5691544632226086607/00040 5691544632226086607/00007 5691544632226086607/00004 5857792078835992100/00003 5857792078835992100/00007 5857792078835992100/00005 5857792078835992100/00004 5716149640871387778/00006 5716149640871387778/00009 5716149640871387778/00010 5716149640871387778/00001 5716149640871387778/00002 5716149640871387778/00008 5716149640871387778/00007 5716149640871387778/00005 6239766283926354137/00015 6239766283926354137/00006 6239766283926354137/00010 6239766283926354137/00012 6239766283926354137/00014 6239766283926354137/00020 6239766283926354137/00017 6239766283926354137/00016 6239766283926354137/00011 6239766283926354137/00002 6239766283926354137/00008 6079364717172531830/00029 6079364717172531830/00015 6079364717172531830/00003 6079364717172531830/00032 6079364717172531830/00033 6079364717172531830/00030 6079364717172531830/00031 6079364717172531830/00013 6079364717172531830/00022 6079364717172531830/00036 6079364717172531830/00038 6079364717172531830/00041 6079364717172531830/00014 6079364717172531830/00037 6079364717172531830/00039 6079364717172531830/00016 6079364717172531830/00019 6079364717172531830/00011 6079364717172531830/00027 6079364717172531830/00040 6079364717172531830/00007 6079364717172531830/00043 6079364717172531830/00028 5691271472306061030/00029 5691271472306061030/00006 5691271472306061030/00009 5691271472306061030/00010 5691271472306061030/00033 5691271472306061030/00024 5691271472306061030/00001 5691271472306061030/00023 5691271472306061030/00021 5691271472306061030/00020 5691271472306061030/00017 5691271472306061030/00016 5691271472306061030/00027 5691271472306061030/00034 5691271472306061030/00008 5691271472306061030/00025 5691271472306061030/00004 5691271472306061030/00028 5874162346684620088/00029 5874162346684620088/00015 5874162346684620088/00046 5874162346684620088/00032 5874162346684620088/00053 5874162346684620088/00030 5874162346684620088/00022 5874162346684620088/00026 5874162346684620088/00050 5874162346684620088/00049 5874162346684620088/00023 5874162346684620088/00038 5874162346684620088/00042 5874162346684620088/00041 5874162346684620088/00021 5874162346684620088/00014 5874162346684620088/00047 5874162346684620088/00051 5874162346684620088/00052 5874162346684620088/00055 5874162346684620088/00016 5874162346684620088/00059 5874162346684620088/00019 5874162346684620088/00002 5874162346684620088/00040 5874162346684620088/00025 5874162346684620088/00043 5874162346684620088/00005 5874162346684620088/00028 6206646931982954755/00003 6382189546814897943/00006 6382189546814897943/00024 6382189546814897943/00013 6382189546814897943/00026 6382189546814897943/00036 6382189546814897943/00023 6382189546814897943/00018 6382189546814897943/00014 6382189546814897943/00019 6122375808164936883/00015 6122375808164936883/00003 6122375808164936883/00006 6122375808164936883/00009 6122375808164936883/00010 6122375808164936883/00012 6122375808164936883/00014 6122375808164936883/00002 6122375808164936883/00005 5876396588671999415/00015 5876396588671999415/00003 5876396588671999415/00006 5876396588671999415/00010 5876396588671999415/00001 5876396588671999415/00014 5876396588671999415/00017 5876396588671999415/00019 5876396588671999415/00002 5876396588671999415/00008 5567209194477429365/00003 5567209194477429365/00006 5567209194477429365/00032 5567209194477429365/00033 5567209194477429365/00030 5567209194477429365/00022 5567209194477429365/00026 5567209194477429365/00001 5567209194477429365/00023 5567209194477429365/00018 5567209194477429365/00042 5567209194477429365/00012 5567209194477429365/00021 5567209194477429365/00037 5567209194477429365/00020 5567209194477429365/00016 5567209194477429365/00011 5567209194477429365/00027 5567209194477429365/00008 5567209194477429365/00025 5567209194477429365/00005 5978387029566523829/00003 5978387029566523829/00006 5978387029566523829/00012 5978387029566523829/00002 5978387029566523829/00008 5543459743317477351/00003 5543459743317477351/00009 5543459743317477351/00010 5543459743317477351/00001 5543459743317477351/00004 5863802885566688761/00171 5863802885566688761/00147 5863802885566688761/00149 5863802885566688761/00015 5863802885566688761/00140 5863802885566688761/00186 5863802885566688761/00098 5863802885566688761/00190 5863802885566688761/00056 5863802885566688761/00032 5863802885566688761/00208 5863802885566688761/00113 5863802885566688761/00122 5863802885566688761/00152 5863802885566688761/00197 5863802885566688761/00033 5863802885566688761/00195 5863802885566688761/00057 5863802885566688761/00024 5863802885566688761/00118 5863802885566688761/00078 5863802885566688761/00071 5863802885566688761/00058 5863802885566688761/00062 5863802885566688761/00167 5863802885566688761/00013 5863802885566688761/00165 5863802885566688761/00022 5863802885566688761/00026 5863802885566688761/00044 5863802885566688761/00179 5863802885566688761/00130 5863802885566688761/00189 5863802885566688761/00161 5863802885566688761/00204 5863802885566688761/00158 5863802885566688761/00099 5863802885566688761/00077 5863802885566688761/00168 5863802885566688761/00215 5863802885566688761/00117 5863802885566688761/00178 5863802885566688761/00180 5863802885566688761/00136 5863802885566688761/00049 5863802885566688761/00023 5863802885566688761/00038 5863802885566688761/00193 5863802885566688761/00145 5863802885566688761/00018 5863802885566688761/00042 5863802885566688761/00012 5863802885566688761/00213 5863802885566688761/00041 5863802885566688761/00065 5863802885566688761/00129 5863802885566688761/00144 5863802885566688761/00083 5863802885566688761/00021 5863802885566688761/00176 5863802885566688761/00160 5863802885566688761/00014 5863802885566688761/00037 5863802885566688761/00196 5863802885566688761/00127 5863802885566688761/00039 5863802885566688761/00124 5863802885566688761/00205 5863802885566688761/00198 5863802885566688761/00051 5863802885566688761/00174 5863802885566688761/00080 5863802885566688761/00052 5863802885566688761/00185 5863802885566688761/00016 5863802885566688761/00138 5863802885566688761/00184 5863802885566688761/00170 5863802885566688761/00181 5863802885566688761/00059 5863802885566688761/00146 5863802885566688761/00019 5863802885566688761/00011 5863802885566688761/00084 5863802885566688761/00027 5863802885566688761/00115 5863802885566688761/00034 5863802885566688761/00192 5863802885566688761/00081 5863802885566688761/00082 5863802885566688761/00100 5863802885566688761/00002 5863802885566688761/00092 5863802885566688761/00008 5863802885566688761/00131 5863802885566688761/00212 5863802885566688761/00203 5863802885566688761/00068 5863802885566688761/00025 5863802885566688761/00156 5863802885566688761/00139 5863802885566688761/00005 5863802885566688761/00211 5863802885566688761/00004 5863802885566688761/00028 6135444964149922082/00006 6135444964149922082/00001 6135444964149922082/00008 6135444964149922082/00007 6135444964149922082/00005 6135444964149922082/00004 6373202327748070121/00011 6339615254127026753/00015 6339615254127026753/00009 6339615254127026753/00012 6339615254127026753/00011 6334934169140712754/00070 6334934169140712754/00073 6334934169140712754/00013 6334934169140712754/00001 6334934169140712754/00059 6334934169140712754/00082 6334934169140712754/00002 6334934169140712754/00068 5971456240840925439/00029 5971456240840925439/00015 5971456240840925439/00003 5971456240840925439/00009 5971456240840925439/00010 5971456240840925439/00024 5971456240840925439/00053 5971456240840925439/00030 5971456240840925439/00026 5971456240840925439/00044 5971456240840925439/00036 5971456240840925439/00001 5971456240840925439/00045 5971456240840925439/00049 5971456240840925439/00048 5971456240840925439/00018 5971456240840925439/00021 5971456240840925439/00047 5971456240840925439/00020 5971456240840925439/00035 5971456240840925439/00017 5971456240840925439/00052 5971456240840925439/00055 5971456240840925439/00016 5971456240840925439/00011 5971456240840925439/00027 5971456240840925439/00034 5971456240840925439/00002 5971456240840925439/00040 5971456240840925439/00007 5971456240840925439/00025 5971456240840925439/00043 5971456240840925439/00005 5971456240840925439/00004 5971456240840925439/00028 6111614338108068597/00003 6111614338108068597/00002 6140640156591109469/00003 6140640156591109469/00001 6140640156591109469/00004 6243817296949521009/00009 6243817296949521009/00002 5860432195232845988/00015 5860432195232845988/00003 5860432195232845988/00046 5860432195232845988/00032 5860432195232845988/00010 5860432195232845988/00033 5860432195232845988/00024 5860432195232845988/00030 5860432195232845988/00031 5860432195232845988/00022 5860432195232845988/00026 5860432195232845988/00044 5860432195232845988/00023 5860432195232845988/00018 5860432195232845988/00042 5860432195232845988/00041 5860432195232845988/00021 5860432195232845988/00037 5860432195232845988/00047 5860432195232845988/00039 5860432195232845988/00020 5860432195232845988/00035 5860432195232845988/00017 5860432195232845988/00019 5860432195232845988/00034 5860432195232845988/00002 5860432195232845988/00008 5860432195232845988/00007 5860432195232845988/00025 5860432195232845988/00004 5860432195232845988/00028 6076045566446202767/00003 6076045566446202767/00010 6076045566446202767/00024 6076045566446202767/00013 6076045566446202767/00022 6076045566446202767/00044 6076045566446202767/00038 6076045566446202767/00018 6076045566446202767/00012 6076045566446202767/00021 6076045566446202767/00037 6076045566446202767/00039 6076045566446202767/00020 6076045566446202767/00017 6076045566446202767/00019 6076045566446202767/00027 6076045566446202767/00034 6076045566446202767/00002 6076045566446202767/00008 6076045566446202767/00040 6076045566446202767/00007 6076045566446202767/00025 6076045566446202767/00043 6332804294858562278/00009 6332804294858562278/00026 6332804294858562278/00020 6332804294858562278/00034 5933172620351292670/00003 5933172620351292670/00006 5933172620351292670/00009 5933172620351292670/00010 5933172620351292670/00001 5933172620351292670/00012 5933172620351292670/00011 5933172620351292670/00002 5933172620351292670/00008 5933172620351292670/00007 5933172620351292670/00005 5933172620351292670/00004 6059574796362754902/00003 6059574796362754902/00006 6059574796362754902/00001 6059574796362754902/00002 6059574796362754902/00005 6059574796362754902/00004 6076086798132246662/00029 6076086798132246662/00015 6076086798132246662/00003 6076086798132246662/00030 6076086798132246662/00038 6076086798132246662/00018 6076086798132246662/00012 6076086798132246662/00021 6076086798132246662/00035 6076086798132246662/00017 6076086798132246662/00016 6076086798132246662/00019 6076086798132246662/00027 6076086798132246662/00002 6058934416738940528/00060 6058934416738940528/00015 6058934416738940528/00003 6058934416738940528/00006 6058934416738940528/00046 6058934416738940528/00070 6058934416738940528/00009 6058934416738940528/00010 6058934416738940528/00057 6058934416738940528/00030 6058934416738940528/00062 6058934416738940528/00031 6058934416738940528/00013 6058934416738940528/00026 6058934416738940528/00036 6058934416738940528/00001 6058934416738940528/00045 6058934416738940528/00064 6058934416738940528/00018 6058934416738940528/00012 6058934416738940528/00061 6058934416738940528/00021 6058934416738940528/00014 6058934416738940528/00037 6058934416738940528/00047 6058934416738940528/00051 6058934416738940528/00016 6058934416738940528/00059 6058934416738940528/00011 6058934416738940528/00034 6058934416738940528/00008 6058934416738940528/00040 6058934416738940528/00007 6058934416738940528/00043 6058934416738940528/00004 5547267231825385048/00006 5547267231825385048/00032 5547267231825385048/00024 5547267231825385048/00031 5547267231825385048/00022 5547267231825385048/00026 5547267231825385048/00049 5547267231825385048/00018 5547267231825385048/00041 5547267231825385048/00021 5547267231825385048/00020 5547267231825385048/00016 5547267231825385048/00019 5547267231825385048/00011 5547267231825385048/00040 5547267231825385048/00007 5547267231825385048/00043 5547267231825385048/00005 5547267231825385048/00004 5543208487730661326/00003 5543208487730661326/00006 5543208487730661326/00009 5543208487730661326/00001 5543208487730661326/00008 5543208487730661326/00007 5543208487730661326/00005 5543208487730661326/00004 6021711223674693931/00003 6021711223674693931/00006 6021711223674693931/00009 6021711223674693931/00010 6021711223674693931/00013 6021711223674693931/00014 6021711223674693931/00017 6021711223674693931/00016 6021711223674693931/00019 6021711223674693931/00002 6021711223674693931/00008 6021711223674693931/00007 6021711223674693931/00004 6277668511320102944/00029 6277668511320102944/00015 6277668511320102944/00032 6277668511320102944/00009 6277668511320102944/00010 6277668511320102944/00030 6277668511320102944/00022 6277668511320102944/00026 6277668511320102944/00001 6277668511320102944/00023 6277668511320102944/00038 6277668511320102944/00018 6277668511320102944/00012 6277668511320102944/00021 6277668511320102944/00014 6277668511320102944/00037 6277668511320102944/00039 6277668511320102944/00020 6277668511320102944/00035 6277668511320102944/00017 6277668511320102944/00016 6277668511320102944/00019 6277668511320102944/00027 6277668511320102944/00034 6277668511320102944/00007 6277668511320102944/00025 6277668511320102944/00005 6277668511320102944/00004 6277668511320102944/00028 5990686956908753850/00010 5990686956908753850/00001 5990686956908753850/00002 5990686956908753850/00004 5990714015202722745/00015 5990714015202722745/00010 5990714015202722745/00013 5990714015202722745/00012 5990714015202722745/00014 5990714015202722745/00017 5990714015202722745/00016 5990714015202722745/00002 5990714015202722745/00008 5990714015202722745/00007 5990714015202722745/00004 6080493434577943913/00060 6080493434577943913/00003 6080493434577943913/00056 6080493434577943913/00032 6080493434577943913/00058 6080493434577943913/00013 6080493434577943913/00026 6080493434577943913/00044 6080493434577943913/00050 6080493434577943913/00036 6080493434577943913/00001 6080493434577943913/00049 6080493434577943913/00038 6080493434577943913/00048 6080493434577943913/00018 6080493434577943913/00042 6080493434577943913/00012 6080493434577943913/00041 6080493434577943913/00061 6080493434577943913/00021 6080493434577943913/00037 6080493434577943913/00047 6080493434577943913/00039 6080493434577943913/00052 6080493434577943913/00055 6080493434577943913/00019 6080493434577943913/00011 6080493434577943913/00027 6080493434577943913/00034 6080493434577943913/00008 6080493434577943913/00007 6080493434577943913/00043 6080493434577943913/00028 6242704041426331427/00003 6242704041426331427/00009 6242704041426331427/00010 6242704041426331427/00001 6242704041426331427/00012 6242704041426331427/00002 6242704041426331427/00008 6242704041426331427/00005 6120238202941714603/00015 6120238202941714603/00006 6120238202941714603/00005 6240411817380452771/00029 6240411817380452771/00003 6240411817380452771/00009 6240411817380452771/00010 6240411817380452771/00022 6240411817380452771/00026 6240411817380452771/00012 6240411817380452771/00021 6240411817380452771/00014 6240411817380452771/00017 6240411817380452771/00016 6240411817380452771/00019 6240411817380452771/00027 6240411817380452771/00002 6240411817380452771/00007 6240411817380452771/00005 6240411817380452771/00004 5582650460900024623/00029 5582650460900024623/00015 5582650460900024623/00003 5582650460900024623/00006 5582650460900024623/00046 5582650460900024623/00056 5582650460900024623/00032 5582650460900024623/00070 5582650460900024623/00009 5582650460900024623/00073 5582650460900024623/00010 5582650460900024623/00033 5582650460900024623/00057 5582650460900024623/00024 5582650460900024623/00053 5582650460900024623/00030 5582650460900024623/00071 5582650460900024623/00058 5582650460900024623/00031 5582650460900024623/00013 5582650460900024623/00022 5582650460900024623/00050 5582650460900024623/00036 5582650460900024623/00063 5582650460900024623/00001 5582650460900024623/00045 5582650460900024623/00066 5582650460900024623/00064 5582650460900024623/00049 5582650460900024623/00023 5582650460900024623/00038 5582650460900024623/00048 5582650460900024623/00018 5582650460900024623/00042 5582650460900024623/00012 5582650460900024623/00041 5582650460900024623/00065 5582650460900024623/00061 5582650460900024623/00021 5582650460900024623/00014 5582650460900024623/00037 5582650460900024623/00047 5582650460900024623/00039 5582650460900024623/00020 5582650460900024623/00035 5582650460900024623/00051 5582650460900024623/00052 5582650460900024623/00055 5582650460900024623/00016 5582650460900024623/00019 5582650460900024623/00011 5582650460900024623/00067 5582650460900024623/00034 5582650460900024623/00008 5582650460900024623/00040 5582650460900024623/00007 5582650460900024623/00025 5582650460900024623/00054 5582650460900024623/00043 5582650460900024623/00004 5582650460900024623/00028 5899419331365489951/00029 5899419331365489951/00009 5899419331365489951/00033 5899419331365489951/00024 5899419331365489951/00031 5899419331365489951/00013 5899419331365489951/00022 5899419331365489951/00023 5899419331365489951/00018 5899419331365489951/00012 5899419331365489951/00020 5899419331365489951/00016 5899419331365489951/00019 5899419331365489951/00008 6083040779681242195/00003 6083040779681242195/00001 6083040779681242195/00002 6083040779681242195/00007 6083040779681242195/00005 6083040779681242195/00004 6351826275515864748/00006 6017455340581084607/00060 6017455340581084607/00015 6017455340581084607/00032 6017455340581084607/00010 6017455340581084607/00033 6017455340581084607/00057 6017455340581084607/00030 6017455340581084607/00013 6017455340581084607/00069 6017455340581084607/00022 6017455340581084607/00026 6017455340581084607/00044 6017455340581084607/00050 6017455340581084607/00045 6017455340581084607/00049 6017455340581084607/00023 6017455340581084607/00038 6017455340581084607/00018 6017455340581084607/00042 6017455340581084607/00021 6017455340581084607/00014 6017455340581084607/00037 6017455340581084607/00047 6017455340581084607/00020 6017455340581084607/00017 6017455340581084607/00052 6017455340581084607/00055 6017455340581084607/00016 6017455340581084607/00019 6017455340581084607/00011 6017455340581084607/00027 6017455340581084607/00067 6017455340581084607/00002 6017455340581084607/00025 6017455340581084607/00043 6121622041404432590/00001 6121622041404432590/00002 6392896900283869820/00003 6131641341112521490/00003 6131641341112521490/00009 6131641341112521490/00013 6131641341112521490/00001 6131641341112521490/00007 6131641341112521490/00004 5712674582832217169/00009 5712674582832217169/00013 5712674582832217169/00001 5712674582832217169/00011 5712674582832217169/00008 5712674582832217169/00004 6265614685473467810/00006 6265614685473467810/00002 6265614685473467810/00008 6265614685473467810/00005 5903122452168105008/00009 5903122452168105008/00002 5903122452168105008/00007 5903122452168105008/00004 6255692022529444461/00003 6255692022529444461/00001 6255692022529444461/00002 5539535002202392187/00029 5539535002202392187/00003 5539535002202392187/00006 5539535002202392187/00032 5539535002202392187/00024 5539535002202392187/00053 5539535002202392187/00030 5539535002202392187/00031 5539535002202392187/00022 5539535002202392187/00044 5539535002202392187/00036 5539535002202392187/00049 5539535002202392187/00038 5539535002202392187/00041 5539535002202392187/00037 5539535002202392187/00047 5539535002202392187/00020 5539535002202392187/00051 5539535002202392187/00017 5539535002202392187/00016 5539535002202392187/00008 5539535002202392187/00040 5539535002202392187/00054 5897995549706850956/00015 5897995549706850956/00006 5897995549706850956/00046 5897995549706850956/00032 5897995549706850956/00070 5897995549706850956/00073 5897995549706850956/00033 5897995549706850956/00024 5897995549706850956/00053 5897995549706850956/00030 5897995549706850956/00071 5897995549706850956/00058 5897995549706850956/00031 5897995549706850956/00069 5897995549706850956/00022 5897995549706850956/00026 5897995549706850956/00044 5897995549706850956/00050 5897995549706850956/00036 5897995549706850956/00066 5897995549706850956/00072 5897995549706850956/00048 5897995549706850956/00018 5897995549706850956/00042 5897995549706850956/00012 5897995549706850956/00041 5897995549706850956/00065 5897995549706850956/00061 5897995549706850956/00079 5897995549706850956/00037 5897995549706850956/00047 5897995549706850956/00039 5897995549706850956/00035 5897995549706850956/00051 5897995549706850956/00076 5897995549706850956/00080 5897995549706850956/00027 5897995549706850956/00082 5897995549706850956/00040 5897995549706850956/00068 5897995549706850956/00054 5897995549706850956/00005 5897995549706850956/00074 5897995549706850956/00004 5897995549706850956/00028 6114954104677440164/00003 6114954104677440164/00006 6114954104677440164/00009 6114954104677440164/00010 6114954104677440164/00002 6114954104677440164/00008 6114954104677440164/00004 6107532401189976534/00010 6107532401189976534/00012 6107532401189976534/00007 6107532401189976534/00004 5983671127830793977/00015 5983671127830793977/00003 5983671127830793977/00056 5983671127830793977/00010 5983671127830793977/00033 5983671127830793977/00057 5983671127830793977/00031 5983671127830793977/00013 5983671127830793977/00036 5983671127830793977/00038 5983671127830793977/00018 5983671127830793977/00014 5983671127830793977/00037 5983671127830793977/00035 5983671127830793977/00016 5983671127830793977/00019 5983671127830793977/00034 5983671127830793977/00002 5983671127830793977/00040 5983671127830793977/00005 6132410569755234598/00033 6132410569755234598/00013 6132410569755234598/00038 6132410569755234598/00042 6132410569755234598/00041 6132410569755234598/00019 6132410569755234598/00027 6132410569755234598/00034 6132410569755234598/00002 6132410569755234598/00043 6132410569755234598/00028 5950564660919702552/00003 5950564660919702552/00008 5950564660919702552/00005 5950564660919702552/00004 6049666306810894725/00003 6049666306810894725/00006 6049666306810894725/00009 6049666306810894725/00013 6049666306810894725/00018 6049666306810894725/00014 6049666306810894725/00017 6049666306810894725/00016 6049666306810894725/00011 6049666306810894725/00002 6049666306810894725/00008 6049666306810894725/00005 6078216672414397917/00003 6078216672414397917/00006 6078216672414397917/00024 6078216672414397917/00018 6078216672414397917/00012 6078216672414397917/00021 6078216672414397917/00017 6078216672414397917/00002 6078216672414397917/00007 5948762063145597790/00015 5948762063145597790/00010 5948762063145597790/00024 5948762063145597790/00030 5948762063145597790/00031 5948762063145597790/00001 5948762063145597790/00020 5948762063145597790/00017 5948762063145597790/00016 5948762063145597790/00019 5948762063145597790/00011 5948762063145597790/00027 5948762063145597790/00002 5948762063145597790/00005 6259016327216616575/00015 6259016327216616575/00009 6259016327216616575/00010 6259016327216616575/00024 6259016327216616575/00030 6259016327216616575/00026 6259016327216616575/00044 6259016327216616575/00038 6259016327216616575/00018 6259016327216616575/00021 6259016327216616575/00014 6259016327216616575/00037 6259016327216616575/00020 6259016327216616575/00019 6259016327216616575/00027 6259016327216616575/00002 6259016327216616575/00040 6259016327216616575/00007 6259016327216616575/00025 6259016327216616575/00028 6006284130644196548/00003 6006284130644196548/00006 6006284130644196548/00001 6006284130644196548/00002 6006284130644196548/00007 6006284130644196548/00005 6076103548505395427/00003 6076103548505395427/00006 6076103548505395427/00046 6076103548505395427/00032 6076103548505395427/00009 6076103548505395427/00033 6076103548505395427/00022 6076103548505395427/00044 6076103548505395427/00050 6076103548505395427/00001 6076103548505395427/00049 6076103548505395427/00038 6076103548505395427/00042 6076103548505395427/00041 6076103548505395427/00014 6076103548505395427/00037 6076103548505395427/00051 6076103548505395427/00034 6076103548505395427/00025 6076103548505395427/00004 5942376305769966502/00003 5942376305769966502/00006 5942376305769966502/00009 5942376305769966502/00013 5942376305769966502/00022 5942376305769966502/00001 5942376305769966502/00018 5942376305769966502/00012 5942376305769966502/00021 5942376305769966502/00020 5942376305769966502/00017 5942376305769966502/00016 5942376305769966502/00019 5942376305769966502/00002 5942376305769966502/00007 5942376305769966502/00005 5942376305769966502/00004 5550881446804971382/00009 5550881446804971382/00010 5550881446804971382/00001 5550881446804971382/00012 5550881446804971382/00021 5550881446804971382/00014 5550881446804971382/00016 5550881446804971382/00019 5550881446804971382/00011 5550881446804971382/00002 5550881446804971382/00008 6133007140712649015/00029 6133007140712649015/00015 6133007140712649015/00006 6133007140712649015/00056 6133007140712649015/00032 6133007140712649015/00009 6133007140712649015/00010 6133007140712649015/00033 6133007140712649015/00024 6133007140712649015/00030 6133007140712649015/00071 6133007140712649015/00058 6133007140712649015/00013 6133007140712649015/00069 6133007140712649015/00022 6133007140712649015/00026 6133007140712649015/00044 6133007140712649015/00050 6133007140712649015/00036 6133007140712649015/00063 6133007140712649015/00001 6133007140712649015/00045 6133007140712649015/00049 6133007140712649015/00038 6133007140712649015/00048 6133007140712649015/00018 6133007140712649015/00042 6133007140712649015/00041 6133007140712649015/00037 6133007140712649015/00039 6133007140712649015/00035 6133007140712649015/00017 6133007140712649015/00055 6133007140712649015/00019 6133007140712649015/00034 6133007140712649015/00002 6133007140712649015/00008 6133007140712649015/00040 6133007140712649015/00054 6133007140712649015/00043 6133007140712649015/00004 6133007140712649015/00028 6384829663342218937/00003 6384829663342218937/00013 6384829663342218937/00026 6384829663342218937/00039 6384829663342218937/00011 6384829663342218937/00034 6384829663342218937/00028 5584043318794119848/00003 5584043318794119848/00002 5584043318794119848/00004 5913481913286036512/00015 5913481913286036512/00003 5913481913286036512/00006 5913481913286036512/00010 5913481913286036512/00024 5913481913286036512/00026 5913481913286036512/00001 5913481913286036512/00023 5913481913286036512/00018 5913481913286036512/00021 5913481913286036512/00014 5913481913286036512/00020 5913481913286036512/00017 5913481913286036512/00019 5913481913286036512/00027 5913481913286036512/00002 5913481913286036512/00007 5913481913286036512/00005 5913481913286036512/00004 6228950697151096740/00009 6228950697151096740/00010 6228950697151096740/00024 6228950697151096740/00022 6228950697151096740/00026 6228950697151096740/00027 6228950697151096740/00005 6341242617105082637/00032 6341242617105082637/00112 6341242617105082637/00071 6341242617105082637/00022 6341242617105082637/00110 6341242617105082637/00049 6341242617105082637/00016 6341242617105082637/00095 6359603602295467662/00003 6359603602295467662/00006 6359603602295467662/00012 6195622610058056866/00015 6195622610058056866/00003 6195622610058056866/00006 6195622610058056866/00009 6195622610058056866/00024 6195622610058056866/00030 6195622610058056866/00013 6195622610058056866/00026 6195622610058056866/00001 6195622610058056866/00023 6195622610058056866/00012 6195622610058056866/00021 6195622610058056866/00020 6195622610058056866/00016 6195622610058056866/00019 6195622610058056866/00011 6195622610058056866/00027 6195622610058056866/00002 6195622610058056866/00008 6195622610058056866/00005 6195622610058056866/00028 5561642916861807887/00015 5561642916861807887/00003 5561642916861807887/00006 5561642916861807887/00013 5561642916861807887/00001 5561642916861807887/00018 5561642916861807887/00014 5561642916861807887/00017 5561642916861807887/00004 6260025215034449124/00003 6260025215034449124/00009 6260025215034449124/00001 6260025215034449124/00014 6260025215034449124/00016 6260025215034449124/00004 5955810104478307511/00006 5955810104478307511/00010 5955810104478307511/00013 5955810104478307511/00022 5955810104478307511/00001 5955810104478307511/00023 5955810104478307511/00021 5955810104478307511/00014 5955810104478307511/00017 5955810104478307511/00019 5955810104478307511/00011 5955810104478307511/00002 5955810104478307511/00007 6351265782283739990/00032 6351265782283739990/00033 6351265782283739990/00030 6351265782283739990/00001 6351265782283739990/00008 6226739647987179825/00015 6226739647987179825/00006 6226739647987179825/00009 6226739647987179825/00001 6226739647987179825/00021 6226739647987179825/00014 6226739647987179825/00020 6226739647987179825/00016 6226739647987179825/00002 6226739647987179825/00005 6094656518733220020/00015 6094656518733220020/00024 6094656518733220020/00013 6094656518733220020/00021 6094656518733220020/00014 6094656518733220020/00017 6094656518733220020/00016 6094656518733220020/00019 6094656518733220020/00011 6094656518733220020/00007 6094656518733220020/00005 6147690774904232413/00060 6147690774904232413/00029 6147690774904232413/00003 6147690774904232413/00006 6147690774904232413/00046 6147690774904232413/00073 6147690774904232413/00033 6147690774904232413/00024 6147690774904232413/00078 6147690774904232413/00030 6147690774904232413/00058 6147690774904232413/00031 6147690774904232413/00013 6147690774904232413/00044 6147690774904232413/00077 6147690774904232413/00001 6147690774904232413/00045 6147690774904232413/00066 6147690774904232413/00018 6147690774904232413/00012 6147690774904232413/00065 6147690774904232413/00079 6147690774904232413/00017 6147690774904232413/00008 6147690774904232413/00040 6147690774904232413/00007 6225610930581725060/00003 6225610930581725060/00010 6225610930581725060/00021 6225610930581725060/00020 6225610930581725060/00011 6225610930581725060/00004 6204010681056667886/00003 6204010681056667886/00006 6204010681056667886/00009 6204010681056667886/00010 6204010681056667886/00001 6204010681056667886/00018 6204010681056667886/00012 6204010681056667886/00017 6204010681056667886/00016 6204010681056667886/00019 6204010681056667886/00007 6204010681056667886/00004 6043400379022751996/00006 6043400379022751996/00007 5940149794723717293/00015 5940149794723717293/00003 5940149794723717293/00013 5940149794723717293/00001 5940149794723717293/00018 5940149794723717293/00012 5940149794723717293/00020 5940149794723717293/00017 5940149794723717293/00016 5940149794723717293/00019 5940149794723717293/00002 5940149794723717293/00008 5940149794723717293/00007 5940149794723717293/00005 6353604391976411066/00001 6353604391976411066/00014 6290125634335003107/00006 6290125634335003107/00013 6290125634335003107/00001 6290125634335003107/00014 6290125634335003107/00017 6290125634335003107/00002 6358428499243281970/00032 6358428499243281970/00024 6358428499243281970/00022 6358428499243281970/00026 6358428499243281970/00028 6108363477361725322/00006 6108363477361725322/00009 6108363477361725322/00013 6108363477361725322/00022 6108363477361725322/00026 6108363477361725322/00021 6108363477361725322/00014 6108363477361725322/00020 6108363477361725322/00016 6108363477361725322/00019 6108363477361725322/00011 6108363477361725322/00007 6108363477361725322/00025 6108363477361725322/00004 6108363477361725322/00028 6127219242784584667/00060 6127219242784584667/00029 6127219242784584667/00015 6127219242784584667/00003 6127219242784584667/00006 6127219242784584667/00046 6127219242784584667/00032 6127219242784584667/00009 6127219242784584667/00090 6127219242784584667/00010 6127219242784584667/00057 6127219242784584667/00024 6127219242784584667/00030 6127219242784584667/00071 6127219242784584667/00058 6127219242784584667/00062 6127219242784584667/00031 6127219242784584667/00086 6127219242784584667/00013 6127219242784584667/00022 6127219242784584667/00094 6127219242784584667/00026 6127219242784584667/00044 6127219242784584667/00077 6127219242784584667/00050 6127219242784584667/00036 6127219242784584667/00001 6127219242784584667/00045 6127219242784584667/00066 6127219242784584667/00023 6127219242784584667/00038 6127219242784584667/00088 6127219242784584667/00048 6127219242784584667/00018 6127219242784584667/00085 6127219242784584667/00012 6127219242784584667/00061 6127219242784584667/00083 6127219242784584667/00021 6127219242784584667/00037 6127219242784584667/00047 6127219242784584667/00039 6127219242784584667/00020 6127219242784584667/00035 6127219242784584667/00051 6127219242784584667/00017 6127219242784584667/00080 6127219242784584667/00052 6127219242784584667/00091 6127219242784584667/00059 6127219242784584667/00019 6127219242784584667/00084 6127219242784584667/00067 6127219242784584667/00034 6127219242784584667/00082 6127219242784584667/00002 6127219242784584667/00092 6127219242784584667/00008 6127219242784584667/00040 6127219242784584667/00007 6127219242784584667/00068 6127219242784584667/00025 6127219242784584667/00054 6127219242784584667/00074 6127219242784584667/00004 6127219242784584667/00028 6197385264505878665/00003 6197385264505878665/00006 6197385264505878665/00009 6197385264505878665/00010 6197385264505878665/00007 6197385264505878665/00005 6197385264505878665/00004 5952766690652427723/00015 5952766690652427723/00003 5952766690652427723/00024 5952766690652427723/00022 5952766690652427723/00026 5952766690652427723/00001 5952766690652427723/00018 5952766690652427723/00012 5952766690652427723/00016 5952766690652427723/00019 5952766690652427723/00002 5952766690652427723/00025 5911672873060989955/00003 5911672873060989955/00001 5911672873060989955/00007 5911672873060989955/00005 5911672873060989955/00004 6105714341533489724/00001 6152433707289274075/00006 6152433707289274075/00001 6152433707289274075/00002 6152433707289274075/00008 6152433707289274075/00007 5710306337865199145/00006 5710306337865199145/00007 5710306337865199145/00005 5710306337865199145/00004 5854842724793826670/00029 5854842724793826670/00003 5854842724793826670/00006 5854842724793826670/00032 5854842724793826670/00010 5854842724793826670/00033 5854842724793826670/00013 5854842724793826670/00022 5854842724793826670/00036 5854842724793826670/00001 5854842724793826670/00023 5854842724793826670/00012 5854842724793826670/00014 5854842724793826670/00035 5854842724793826670/00017 5854842724793826670/00027 5854842724793826670/00008 5854842724793826670/00007 5854842724793826670/00025 5854842724793826670/00004 6035437509655962386/00060 6035437509655962386/00003 6035437509655962386/00006 6035437509655962386/00046 6035437509655962386/00056 6035437509655962386/00009 6035437509655962386/00010 6035437509655962386/00057 6035437509655962386/00030 6035437509655962386/00058 6035437509655962386/00062 6035437509655962386/00044 6035437509655962386/00050 6035437509655962386/00063 6035437509655962386/00066 6035437509655962386/00038 6035437509655962386/00018 6035437509655962386/00041 6035437509655962386/00065 6035437509655962386/00047 6035437509655962386/00039 6035437509655962386/00020 6035437509655962386/00017 6035437509655962386/00055 6035437509655962386/00067 6035437509655962386/00002 6035437509655962386/00008 6035437509655962386/00007 6035437509655962386/00025 6035437509655962386/00043 6035437509655962386/00005 6035437509655962386/00004 6112022789497855344/00015 6112022789497855344/00022 6112022789497855344/00026 6112022789497855344/00014 6112022789497855344/00017 6112022789497855344/00019 6112022789497855344/00011 6112022789497855344/00025 6112022789497855344/00028 6258994422883410530/00012 6258994422883410530/00011 6258994422883410530/00005 5653695232930083232/00015 5653695232930083232/00003 5653695232930083232/00009 5653695232930083232/00010 5653695232930083232/00013 5653695232930083232/00001 5653695232930083232/00012 5653695232930083232/00014 5653695232930083232/00002 5653695232930083232/00005 5653695232930083232/00004 6217721505155762065/00003 6217721505155762065/00006 6217721505155762065/00009 6217721505155762065/00001 6217721505155762065/00018 6217721505155762065/00014 6217721505155762065/00017 6217721505155762065/00007 6217721505155762065/00004 6388072793016998420/00013 6388072793016998420/00001 6388072793016998420/00007 6388072793016998420/00005 5930203938956294675/00006 5930203938956294675/00001 5930203938956294675/00018 5930203938956294675/00021 5930203938956294675/00020 5930203938956294675/00017 5930203938956294675/00011 5930203938956294675/00002 5930203938956294675/00007 5881236157821138397/00015 5881236157821138397/00003 5881236157821138397/00009 5881236157821138397/00010 5881236157821138397/00001 5881236157821138397/00014 5881236157821138397/00004 5892739798226746824/00003 5892739798226746824/00002 6326553828952690654/00015 6326553828952690654/00003 6326553828952690654/00006 6326553828952690654/00001 6326553828952690654/00023 6326553828952690654/00018 6326553828952690654/00012 6326553828952690654/00020 6326553828952690654/00017 6326553828952690654/00016 6326553828952690654/00019 6326553828952690654/00011 6326553828952690654/00002 6326553828952690654/00007 5945364314517733317/00009 5945364314517733317/00002 5945364314517733317/00008 5945364314517733317/00005 5945364314517733317/00004 5640757502944331304/00006 5640757502944331304/00009 5640757502944331304/00010 5640757502944331304/00024 5640757502944331304/00013 5640757502944331304/00022 5640757502944331304/00023 5640757502944331304/00021 5640757502944331304/00020 5640757502944331304/00016 5640757502944331304/00011 5640757502944331304/00002 5640757502944331304/00008 5640757502944331304/00007 5640757502944331304/00005 6259306237509098669/00003 6259306237509098669/00006 6259306237509098669/00009 6259306237509098669/00010 6259306237509098669/00013 6259306237509098669/00011 6259306237509098669/00002 6259306237509098669/00007 6126848157610209817/00060 6126848157610209817/00029 6126848157610209817/00006 6126848157610209817/00107 6126848157610209817/00056 6126848157610209817/00032 6126848157610209817/00113 6126848157610209817/00109 6126848157610209817/00070 6126848157610209817/00009 6126848157610209817/00073 6126848157610209817/00112 6126848157610209817/00010 6126848157610209817/00033 6126848157610209817/00024 6126848157610209817/00053 6126848157610209817/00116 6126848157610209817/00030 6126848157610209817/00071 6126848157610209817/00058 6126848157610209817/00062 6126848157610209817/00031 6126848157610209817/00022 6126848157610209817/00026 6126848157610209817/00044 6126848157610209817/00099 6126848157610209817/00093 6126848157610209817/00050 6126848157610209817/00036 6126848157610209817/00117 6126848157610209817/00063 6126848157610209817/00110 6126848157610209817/00001 6126848157610209817/00045 6126848157610209817/00066 6126848157610209817/00064 6126848157610209817/00049 6126848157610209817/00038 6126848157610209817/00048 6126848157610209817/00085 6126848157610209817/00042 6126848157610209817/00012 6126848157610209817/00061 6126848157610209817/00083 6126848157610209817/00021 6126848157610209817/00075 6126848157610209817/00079 6126848157610209817/00039 6126848157610209817/00020 6126848157610209817/00035 6126848157610209817/00017 6126848157610209817/00080 6126848157610209817/00091 6126848157610209817/00055 6126848157610209817/00016 6126848157610209817/00095 6126848157610209817/00111 6126848157610209817/00059 6126848157610209817/00027 6126848157610209817/00115 6126848157610209817/00034 6126848157610209817/00081 6126848157610209817/00100 6126848157610209817/00089 6126848157610209817/00087 6126848157610209817/00007 6126848157610209817/00068 6126848157610209817/00097 6126848157610209817/00025 6126848157610209817/00054 6126848157610209817/00028 6315050188547072188/00003 6315050188547072188/00014 6315050188547072188/00011 5668581160081270549/00002 6212928321653421884/00003 6212928321653421884/00006 6212928321653421884/00010 6212928321653421884/00013 6212928321653421884/00001 6212928321653421884/00018 6212928321653421884/00012 6212928321653421884/00017 6212928321653421884/00016 6212928321653421884/00002 6212928321653421884/00008 6212928321653421884/00007 6212928321653421884/00005 6107629037954070826/00001 6107629037954070826/00004 6116492561962806586/00029 6116492561962806586/00015 6116492561962806586/00003 6116492561962806586/00006 6116492561962806586/00032 6116492561962806586/00009 6116492561962806586/00024 6116492561962806586/00030 6116492561962806586/00031 6116492561962806586/00013 6116492561962806586/00039 6116492561962806586/00017 6116492561962806586/00019 6116492561962806586/00011 6116492561962806586/00034 6116492561962806586/00025 6116492561962806586/00004 6116492561962806586/00028 6037169240600213580/00003 6037169240600213580/00006 6037169240600213580/00009 6037169240600213580/00001 6037169240600213580/00011 6037169240600213580/00002 6037169240600213580/00008 6037169240600213580/00007 6037169240600213580/00005 6215525917874044813/00003 6215525917874044813/00010 6215525917874044813/00001 6215525917874044813/00018 6215525917874044813/00014 6215525917874044813/00017 6215525917874044813/00019 6215525917874044813/00004 6119074696301163641/00006 6119074696301163641/00010 6119074696301163641/00013 6119074696301163641/00022 6119074696301163641/00001 6119074696301163641/00014 6119074696301163641/00016 6119074696301163641/00019 6119074696301163641/00027 6119074696301163641/00008 6119074696301163641/00025 6119074696301163641/00005 6077130475185148826/00029 6077130475185148826/00015 6077130475185148826/00003 6077130475185148826/00046 6077130475185148826/00009 6077130475185148826/00033 6077130475185148826/00057 6077130475185148826/00024 6077130475185148826/00053 6077130475185148826/00058 6077130475185148826/00062 6077130475185148826/00031 6077130475185148826/00026 6077130475185148826/00044 6077130475185148826/00050 6077130475185148826/00001 6077130475185148826/00023 6077130475185148826/00038 6077130475185148826/00018 6077130475185148826/00042 6077130475185148826/00041 6077130475185148826/00061 6077130475185148826/00021 6077130475185148826/00014 6077130475185148826/00039 6077130475185148826/00035 6077130475185148826/00051 6077130475185148826/00052 6077130475185148826/00055 6077130475185148826/00019 6077130475185148826/00011 6077130475185148826/00034 6077130475185148826/00040 6077130475185148826/00007 6077130475185148826/00054 6077130475185148826/00043 6077130475185148826/00028 6232684741718215798/00015 6232684741718215798/00003 6232684741718215798/00006 6232684741718215798/00032 6232684741718215798/00009 6232684741718215798/00010 6232684741718215798/00033 6232684741718215798/00024 6232684741718215798/00030 6232684741718215798/00026 6232684741718215798/00036 6232684741718215798/00038 6232684741718215798/00018 6232684741718215798/00041 6232684741718215798/00021 6232684741718215798/00014 6232684741718215798/00037 6232684741718215798/00020 6232684741718215798/00035 6232684741718215798/00016 6232684741718215798/00019 6232684741718215798/00027 6232684741718215798/00034 6232684741718215798/00002 6232684741718215798/00007 6232684741718215798/00025 6232684741718215798/00004 6211920722325778200/00004 6361428104402746195/00007 6106160159138811173/00029 6106160159138811173/00003 6106160159138811173/00046 6106160159138811173/00056 6106160159138811173/00057 6106160159138811173/00053 6106160159138811173/00058 6106160159138811173/00050 6106160159138811173/00023 6106160159138811173/00048 6106160159138811173/00014 6106160159138811173/00020 6106160159138811173/00051 6106160159138811173/00017 6106160159138811173/00016 6106160159138811173/00011 6106160159138811173/00002 6106160159138811173/00007 6106160159138811173/00043 6106160159138811173/00028 5956172170221431085/00003 5956172170221431085/00006 5956172170221431085/00033 5956172170221431085/00024 5956172170221431085/00030 5956172170221431085/00013 5956172170221431085/00022 5956172170221431085/00044 5956172170221431085/00036 5956172170221431085/00001 5956172170221431085/00023 5956172170221431085/00038 5956172170221431085/00018 5956172170221431085/00021 5956172170221431085/00037 5956172170221431085/00020 5956172170221431085/00017 5956172170221431085/00016 5956172170221431085/00019 5956172170221431085/00002 5956172170221431085/00025 5956172170221431085/00028 6338645020884458400/00046 6338645020884458400/00032 6338645020884458400/00057 6338645020884458400/00071 6338645020884458400/00016 6092816554874091313/00060 6092816554874091313/00029 6092816554874091313/00015 6092816554874091313/00003 6092816554874091313/00006 6092816554874091313/00056 6092816554874091313/00032 6092816554874091313/00009 6092816554874091313/00078 6092816554874091313/00030 6092816554874091313/00071 6092816554874091313/00058 6092816554874091313/00031 6092816554874091313/00013 6092816554874091313/00069 6092816554874091313/00022 6092816554874091313/00044 6092816554874091313/00077 6092816554874091313/00050 6092816554874091313/00066 6092816554874091313/00049 6092816554874091313/00072 6092816554874091313/00023 6092816554874091313/00038 6092816554874091313/00018 6092816554874091313/00042 6092816554874091313/00012 6092816554874091313/00065 6092816554874091313/00061 6092816554874091313/00021 6092816554874091313/00075 6092816554874091313/00079 6092816554874091313/00047 6092816554874091313/00039 6092816554874091313/00051 6092816554874091313/00017 6092816554874091313/00076 6092816554874091313/00052 6092816554874091313/00016 6092816554874091313/00027 6092816554874091313/00067 6092816554874091313/00034 6092816554874091313/00008 6092816554874091313/00007 6092816554874091313/00068 6092816554874091313/00025 6092816554874091313/00054 6092816554874091313/00005 6092816554874091313/00074 6092816554874091313/00028 6219271558852887739/00029 6219271558852887739/00003 6219271558852887739/00006 6219271558852887739/00032 6219271558852887739/00033 6219271558852887739/00031 6219271558852887739/00022 6219271558852887739/00026 6219271558852887739/00036 6219271558852887739/00023 6219271558852887739/00038 6219271558852887739/00018 6219271558852887739/00042 6219271558852887739/00041 6219271558852887739/00021 6219271558852887739/00020 6219271558852887739/00035 6219271558852887739/00016 6219271558852887739/00002 6219271558852887739/00008 6219271558852887739/00007 6219271558852887739/00025 6219271558852887739/00005 6219271558852887739/00004 6219271558852887739/00028 5547240173531420243/00003 5547240173531420243/00006 5547240173531420243/00013 5547240173531420243/00001 5547240173531420243/00023 5547240173531420243/00018 5547240173531420243/00021 5547240173531420243/00014 5547240173531420243/00020 5547240173531420243/00017 5547240173531420243/00019 5547240173531420243/00011 5547240173531420243/00008 5547240173531420243/00004 6038135608111311624/00015 6038135608111311624/00003 6038135608111311624/00006 6038135608111311624/00032 6038135608111311624/00009 6038135608111311624/00030 6038135608111311624/00031 6038135608111311624/00022 6038135608111311624/00026 6038135608111311624/00012 6038135608111311624/00014 6038135608111311624/00017 6038135608111311624/00016 6038135608111311624/00019 6038135608111311624/00011 6038135608111311624/00002 6038135608111311624/00005 6038135608111311624/00004 6038135608111311624/00028 6219712222497458212/00015 6219712222497458212/00006 6219712222497458212/00001 6219712222497458212/00002 6219712222497458212/00007 6219712222497458212/00005 6219712222497458212/00004 6045255804894690717/00009 6045255804894690717/00010 6045255804894690717/00013 6045255804894690717/00012 6045255804894690717/00011 6045255804894690717/00005 6119163602124195536/00029 6119163602124195536/00003 6119163602124195536/00032 6119163602124195536/00024 6119163602124195536/00031 6119163602124195536/00013 6119163602124195536/00022 6119163602124195536/00018 6119163602124195536/00012 6119163602124195536/00017 6119163602124195536/00016 6119163602124195536/00019 6119163602124195536/00011 6119163602124195536/00008 6119163602124195536/00007 6107215432603437274/00003 6107215432603437274/00009 6107215432603437274/00022 6107215432603437274/00036 6107215432603437274/00001 6107215432603437274/00038 6107215432603437274/00012 6107215432603437274/00017 6107215432603437274/00011 6107215432603437274/00034 6107215432603437274/00008 6107215432603437274/00007 6107215432603437274/00005 6107215432603437274/00028 6112395163162418574/00003 6112395163162418574/00009 6112395163162418574/00010 6112395163162418574/00016 6112395163162418574/00019 6112395163162418574/00011 6112395163162418574/00002 6112395163162418574/00008 6112395163162418574/00007 6112395163162418574/00005 5902967833345446762/00029 5902967833345446762/00015 5902967833345446762/00032 5902967833345446762/00031 5902967833345446762/00013 5902967833345446762/00050 5902967833345446762/00001 5902967833345446762/00045 5902967833345446762/00023 5902967833345446762/00012 5902967833345446762/00014 5902967833345446762/00047 5902967833345446762/00002 5902967833345446762/00008 5902967833345446762/00040 5902967833345446762/00025 5902967833345446762/00004 6212851012242096738/00060 6212851012242096738/00029 6212851012242096738/00015 6212851012242096738/00006 6212851012242096738/00046 6212851012242096738/00056 6212851012242096738/00032 6212851012242096738/00009 6212851012242096738/00010 6212851012242096738/00033 6212851012242096738/00024 6212851012242096738/00053 6212851012242096738/00062 6212851012242096738/00013 6212851012242096738/00026 6212851012242096738/00050 6212851012242096738/00036 6212851012242096738/00063 6212851012242096738/00001 6212851012242096738/00045 6212851012242096738/00066 6212851012242096738/00064 6212851012242096738/00049 6212851012242096738/00023 6212851012242096738/00038 6212851012242096738/00048 6212851012242096738/00042 6212851012242096738/00041 6212851012242096738/00061 6212851012242096738/00021 6212851012242096738/00037 6212851012242096738/00047 6212851012242096738/00039 6212851012242096738/00035 6212851012242096738/00051 6212851012242096738/00017 6212851012242096738/00055 6212851012242096738/00016 6212851012242096738/00011 6212851012242096738/00027 6212851012242096738/00067 6212851012242096738/00034 6212851012242096738/00002 6212851012242096738/00040 6212851012242096738/00007 6212851012242096738/00068 6212851012242096738/00054 6212851012242096738/00043 6212851012242096738/00005 6212851012242096738/00004 6212851012242096738/00028 6123117978513686452/00003 6123117978513686452/00009 6123117978513686452/00002 6123117978513686452/00005 6123117978513686452/00004 6253825000245940557/00029 6253825000245940557/00015 6253825000245940557/00032 6253825000245940557/00024 6253825000245940557/00013 6253825000245940557/00022 6253825000245940557/00036 6253825000245940557/00023 6253825000245940557/00018 6253825000245940557/00021 6253825000245940557/00014 6253825000245940557/00039 6253825000245940557/00020 6253825000245940557/00016 6253825000245940557/00027 6253825000245940557/00034 6253825000245940557/00008 6253825000245940557/00025 6253825000245940557/00005 6253825000245940557/00028 6120126104295288991/00015 6120126104295288991/00013 6120126104295288991/00022 6120126104295288991/00001 6120126104295288991/00018 6120126104295288991/00021 6120126104295288991/00016 6120126104295288991/00019 6120126104295288991/00011 6120126104295288991/00008 6120126104295288991/00007 6120126104295288991/00025 6120126104295288991/00005 6138042560370481831/00006 6138042560370481831/00009 6138042560370481831/00010 6138042560370481831/00013 6138042560370481831/00011 6138042560370481831/00002 6138042560370481831/00008 6138042560370481831/00007 6138042560370481831/00005 6138042560370481831/00004 5720705742178988057/00003 5720705742178988057/00006 5720705742178988057/00010 5720705742178988057/00001 5720705742178988057/00012 5720705742178988057/00002 5720705742178988057/00008 5720705742178988057/00005 5720705742178988057/00004 6075966968544748758/00015 6075966968544748758/00003 6075966968544748758/00022 6075966968544748758/00023 6075966968544748758/00012 6075966968544748758/00021 6075966968544748758/00017 6075966968544748758/00016 6075966968544748758/00019 6075966968544748758/00002 6075966968544748758/00007 6075966968544748758/00025 6075966968544748758/00005 6281667984735645655/00003 6281667984735645655/00006 6281667984735645655/00010 6281667984735645655/00024 6281667984735645655/00013 6281667984735645655/00022 6281667984735645655/00023 6281667984735645655/00018 6281667984735645655/00020 6281667984735645655/00017 6281667984735645655/00019 6281667984735645655/00011 6281667984735645655/00002 6281667984735645655/00008 6281667984735645655/00005 6281667984735645655/00004 6257450811637224469/00009 6257450811637224469/00001 6257450811637224469/00011 6257450811637224469/00002 6257450811637224469/00008 6257450811637224469/00005 6257450811637224469/00004 6216395648752134556/00001 6216395648752134556/00018 6216395648752134556/00014 6216395648752134556/00016 6216395648752134556/00007 5748484302159323570/00029 5748484302159323570/00015 5748484302159323570/00006 5748484302159323570/00009 5748484302159323570/00010 5748484302159323570/00024 5748484302159323570/00022 5748484302159323570/00026 5748484302159323570/00023 5748484302159323570/00014 5748484302159323570/00016 5748484302159323570/00011 5748484302159323570/00008 5748484302159323570/00007 5748484302159323570/00025 5748484302159323570/00005 5748484302159323570/00004 6127578731547324936/00015 6127578731547324936/00003 6127578731547324936/00010 6127578731547324936/00022 6127578731547324936/00026 6127578731547324936/00023 6127578731547324936/00021 6127578731547324936/00019 6127578731547324936/00002 6127578731547324936/00007 6127578731547324936/00005 6127578731547324936/00004 5951824804324412964/00003 5951824804324412964/00010 5951824804324412964/00013 5951824804324412964/00001 5951824804324412964/00018 5951824804324412964/00012 5951824804324412964/00021 5951824804324412964/00016 5951824804324412964/00011 5951824804324412964/00002 5951824804324412964/00007 5973203433537005027/00015 5973203433537005027/00006 5973203433537005027/00009 5973203433537005027/00010 5973203433537005027/00013 5973203433537005027/00005 6112445414279844664/00003 6112445414279844664/00001 6112445414279844664/00017 6112445414279844664/00016 6112445414279844664/00019 6240106445205774561/00003 6240106445205774561/00001 5713553333140951795/00006 5713553333140951795/00001 5713553333140951795/00002 5713553333140951795/00007 6381766922032944158/00020 6381766922032944158/00011 6381766922032944158/00007 5987010894400110682/00015 5987010894400110682/00003 5987010894400110682/00006 5987010894400110682/00010 5987010894400110682/00012 5987010894400110682/00016 5987010894400110682/00002 5987010894400110682/00008 5987010894400110682/00005 5994768893826878879/00003 5994768893826878879/00009 5994768893826878879/00024 5994768893826878879/00031 5994768893826878879/00013 5994768893826878879/00022 5994768893826878879/00026 5994768893826878879/00020 5994768893826878879/00016 5994768893826878879/00011 5994768893826878879/00002 6150643994416961100/00009 6150643994416961100/00010 6150643994416961100/00014 6150643994416961100/00011 6150643994416961100/00008 6222276317973172143/00015 6222276317973172143/00032 6222276317973172143/00009 6222276317973172143/00010 6222276317973172143/00030 6222276317973172143/00031 6222276317973172143/00022 6222276317973172143/00026 6222276317973172143/00018 6222276317973172143/00041 6222276317973172143/00021 6222276317973172143/00014 6222276317973172143/00039 6222276317973172143/00035 6222276317973172143/00011 6222276317973172143/00002 6222276317973172143/00007 6222276317973172143/00005 6244922821531511558/00015 6244922821531511558/00003 6244922821531511558/00006 6244922821531511558/00022 6244922821531511558/00023 6244922821531511558/00018 6244922821531511558/00017 6244922821531511558/00016 6244922821531511558/00019 6244922821531511558/00002 6244922821531511558/00008 6244922821531511558/00007 6244922821531511558/00025 5865977857005384119/00001 5865977857005384119/00002 5865977857005384119/00005 6212897397888890680/00015 6212897397888890680/00003 6212897397888890680/00009 6212897397888890680/00010 6212897397888890680/00013 6212897397888890680/00026 6212897397888890680/00012 6212897397888890680/00021 6212897397888890680/00020 6212897397888890680/00019 6212897397888890680/00011 6212897397888890680/00027 6212897397888890680/00008 6212897397888890680/00025 6212897397888890680/00004 6212897397888890680/00028 6350264625407039025/00015 6387701707842623991/00010 6387701707842623991/00004 6086380546250615196/00011 6086380546250615196/00002 6086380546250615196/00005 6086380546250615196/00004 5954653040288765014/00015 5954653040288765014/00032 5954653040288765014/00013 5954653040288765014/00022 5954653040288765014/00036 5954653040288765014/00045 5954653040288765014/00038 5954653040288765014/00035 5954653040288765014/00016 5957264809901470946/00003 5957264809901470946/00009 5957264809901470946/00010 5957264809901470946/00001 5957264809901470946/00002 5957264809901470946/00008 5957264809901470946/00004 6209677460907011127/00003 6209677460907011127/00006 6209677460907011127/00005 5939817364255006844/00003 5939817364255006844/00006 5939817364255006844/00001 5939817364255006844/00002 6078272077492450549/00010 6078272077492450549/00018 6078272077492450549/00021 6078272077492450549/00014 6078272077492450549/00020 6078272077492450549/00019 6078272077492450549/00007 6078272077492450549/00025 6078272077492450549/00005 6078272077492450549/00028 6242070104383928750/00029 6242070104383928750/00015 6242070104383928750/00003 6242070104383928750/00006 6242070104383928750/00032 6242070104383928750/00009 6242070104383928750/00033 6242070104383928750/00030 6242070104383928750/00031 6242070104383928750/00013 6242070104383928750/00001 6242070104383928750/00023 6242070104383928750/00038 6242070104383928750/00018 6242070104383928750/00021 6242070104383928750/00037 6242070104383928750/00039 6242070104383928750/00020 6242070104383928750/00017 6242070104383928750/00016 6242070104383928750/00019 6242070104383928750/00011 6242070104383928750/00027 6242070104383928750/00002 6242070104383928750/00005 6242070104383928750/00004 6242070104383928750/00028 6362993619982210246/00002 5940967985993539576/00006 5940967985993539576/00009 5940967985993539576/00010 5940967985993539576/00013 5940967985993539576/00001 5940967985993539576/00017 5940967985993539576/00011 6171656692415966563/00029 6171656692415966563/00015 6171656692415966563/00003 6171656692415966563/00006 6171656692415966563/00070 6171656692415966563/00073 6171656692415966563/00057 6171656692415966563/00024 6171656692415966563/00053 6171656692415966563/00071 6171656692415966563/00062 6171656692415966563/00013 6171656692415966563/00069 6171656692415966563/00026 6171656692415966563/00077 6171656692415966563/00050 6171656692415966563/00036 6171656692415966563/00063 6171656692415966563/00001 6171656692415966563/00045 6171656692415966563/00066 6171656692415966563/00023 6171656692415966563/00038 6171656692415966563/00048 6171656692415966563/00042 6171656692415966563/00012 6171656692415966563/00065 6171656692415966563/00061 6171656692415966563/00083 6171656692415966563/00075 6171656692415966563/00079 6171656692415966563/00037 6171656692415966563/00047 6171656692415966563/00039 6171656692415966563/00051 6171656692415966563/00017 6171656692415966563/00076 6171656692415966563/00080 6171656692415966563/00052 6171656692415966563/00059 6171656692415966563/00019 6171656692415966563/00011 6171656692415966563/00084 6171656692415966563/00067 6171656692415966563/00082 6171656692415966563/00002 6171656692415966563/00008 6171656692415966563/00068 6171656692415966563/00025 6171656692415966563/00054 6171656692415966563/00043 6171656692415966563/00005 6171656692415966563/00004 6159499787484592707/00010 6159499787484592707/00033 6159499787484592707/00018 6159499787484592707/00012 6159499787484592707/00014 6159499787484592707/00017 6159499787484592707/00007 6159499787484592707/00005 6159499787484592707/00004 6164085524066505766/00001 6164085524066505766/00002 6102503423983080250/00003 6102503423983080250/00009 6102503423983080250/00057 6102503423983080250/00013 6102503423983080250/00022 6102503423983080250/00064 6102503423983080250/00049 6102503423983080250/00023 6102503423983080250/00042 6102503423983080250/00012 6102503423983080250/00021 6102503423983080250/00014 6102503423983080250/00051 6102503423983080250/00016 6102503423983080250/00034 6102503423983080250/00002 6102503423983080250/00008 6102503423983080250/00007 6102503423983080250/00004 6076465614247819527/00009 6076465614247819527/00010 6076465614247819527/00001 6076465614247819527/00012 6076465614247819527/00011 6076465614247819527/00002 6076465614247819527/00007 6076465614247819527/00005 6076465614247819527/00004 5931286270714889327/00029 5931286270714889327/00015 5931286270714889327/00003 5931286270714889327/00006 5931286270714889327/00032 5931286270714889327/00010 5931286270714889327/00033 5931286270714889327/00024 5931286270714889327/00030 5931286270714889327/00031 5931286270714889327/00013 5931286270714889327/00022 5931286270714889327/00026 5931286270714889327/00036 5931286270714889327/00001 5931286270714889327/00018 5931286270714889327/00021 5931286270714889327/00014 5931286270714889327/00017 5931286270714889327/00019 5931286270714889327/00011 5931286270714889327/00027 5931286270714889327/00034 5931286270714889327/00002 5931286270714889327/00007 5931286270714889327/00005 5931286270714889327/00028 6211169532545710800/00007 5950979554760561993/00006 5950979554760561993/00001 5950979554760561993/00021 5950979554760561993/00014 5950979554760561993/00011 5950979554760561993/00002 5950979554760561993/00008 5950979554760561993/00007 5950979554760561993/00005 5950979554760561993/00004 6234339163120634114/00029 6234339163120634114/00003 6234339163120634114/00009 6234339163120634114/00033 6234339163120634114/00024 6234339163120634114/00030 6234339163120634114/00013 6234339163120634114/00036 6234339163120634114/00038 6234339163120634114/00018 6234339163120634114/00042 6234339163120634114/00012 6234339163120634114/00041 6234339163120634114/00014 6234339163120634114/00037 6234339163120634114/00020 6234339163120634114/00035 6234339163120634114/00017 6234339163120634114/00019 6234339163120634114/00002 6234339163120634114/00008 6234339163120634114/00007 6234339163120634114/00043 5881931942523103543/00015 5881931942523103543/00009 5881931942523103543/00013 5881931942523103543/00018 5881931942523103543/00012 5881931942523103543/00014 5881931942523103543/00008 5881931942523103543/00007 5881931942523103543/00004 6349916733056066377/00018 6095695041825396979/00015 6095695041825396979/00003 6095695041825396979/00006 6095695041825396979/00033 6095695041825396979/00026 6095695041825396979/00023 6095695041825396979/00018 6095695041825396979/00021 6095695041825396979/00019 6095695041825396979/00034 6095695041825396979/00002 6095695041825396979/00025 6216260357281660909/00003 6216260357281660909/00010 6216260357281660909/00013 6216260357281660909/00001 6216260357281660909/00014 6216260357281660909/00011 6216260357281660909/00008 6216260357281660909/00007 6216260357281660909/00005 5928298261967059811/00003 5928298261967059811/00002 5928298261967059811/00005 5928298261967059811/00004 5943934090408162961/00019 5943934090408162961/00002 6112030520438988145/00015 6112030520438988145/00032 6112030520438988145/00024 6112030520438988145/00013 6112030520438988145/00044 6112030520438988145/00042 6112030520438988145/00037 6112030520438988145/00002 5924266576166299424/00003 5924266576166299424/00013 5924266576166299424/00012 5924266576166299424/00014 5924266576166299424/00017 5924266576166299424/00002 5924266576166299424/00005 6255266820767206150/00003 6255266820767206150/00033 6255266820767206150/00030 6255266820767206150/00022 6255266820767206150/00036 6255266820767206150/00038 6255266820767206150/00018 6255266820767206150/00021 6255266820767206150/00016 6255266820767206150/00011 6255266820767206150/00027 6217459941647439723/00006 6217459941647439723/00005 6253040309720958951/00029 6253040309720958951/00006 6253040309720958951/00046 6253040309720958951/00032 6253040309720958951/00024 6253040309720958951/00031 6253040309720958951/00026 6253040309720958951/00050 6253040309720958951/00036 6253040309720958951/00001 6253040309720958951/00049 6253040309720958951/00038 6253040309720958951/00048 6253040309720958951/00042 6253040309720958951/00041 6253040309720958951/00047 6253040309720958951/00035 6253040309720958951/00016 6253040309720958951/00011 6253040309720958951/00027 6253040309720958951/00034 6253040309720958951/00002 6253040309720958951/00040 6253040309720958951/00007 6253040309720958951/00043 6253040309720958951/00028 6113840849154316878/00001 6113840849154316878/00005 6113840849154316878/00004 5860162900783389924/00060 5860162900783389924/00029 5860162900783389924/00003 5860162900783389924/00046 5860162900783389924/00070 5860162900783389924/00073 5860162900783389924/00010 5860162900783389924/00033 5860162900783389924/00024 5860162900783389924/00053 5860162900783389924/00078 5860162900783389924/00071 5860162900783389924/00058 5860162900783389924/00086 5860162900783389924/00094 5860162900783389924/00026 5860162900783389924/00044 5860162900783389924/00077 5860162900783389924/00093 5860162900783389924/00036 5860162900783389924/00001 5860162900783389924/00066 5860162900783389924/00064 5860162900783389924/00049 5860162900783389924/00023 5860162900783389924/00038 5860162900783389924/00018 5860162900783389924/00085 5860162900783389924/00042 5860162900783389924/00012 5860162900783389924/00041 5860162900783389924/00065 5860162900783389924/00021 5860162900783389924/00075 5860162900783389924/00079 5860162900783389924/00014 5860162900783389924/00037 5860162900783389924/00039 5860162900783389924/00035 5860162900783389924/00017 5860162900783389924/00080 5860162900783389924/00091 5860162900783389924/00059 5860162900783389924/00019 5860162900783389924/00011 5860162900783389924/00084 5860162900783389924/00027 5860162900783389924/00034 5860162900783389924/00082 5860162900783389924/00092 5860162900783389924/00008 5860162900783389924/00040 5860162900783389924/00007 5860162900783389924/00068 5860162900783389924/00025 5860162900783389924/00074 5860162900783389924/00004 5860162900783389924/00028 6135089340857752013/00003 6135089340857752013/00009 6135089340857752013/00001 6135089340857752013/00011 6135089340857752013/00002 6135089340857752013/00008 6135089340857752013/00005 6135089340857752013/00004 6158390397432032345/00029 6158390397432032345/00015 6158390397432032345/00032 6158390397432032345/00009 6158390397432032345/00033 6158390397432032345/00044 6158390397432032345/00001 6158390397432032345/00023 6158390397432032345/00018 6158390397432032345/00012 6158390397432032345/00014 6158390397432032345/00019 6158390397432032345/00034 6158390397432032345/00008 6158390397432032345/00005 5978870213387284900/00015 5978870213387284900/00006 5978870213387284900/00001 5978870213387284900/00014 5978870213387284900/00002 5978870213387284900/00008 5978870213387284900/00007 5978870213387284900/00005 5978870213387284900/00004 5974022913297718701/00029 5974022913297718701/00015 5974022913297718701/00033 5974022913297718701/00024 5974022913297718701/00030 5974022913297718701/00031 5974022913297718701/00022 5974022913297718701/00026 5974022913297718701/00001 5974022913297718701/00038 5974022913297718701/00018 5974022913297718701/00014 5974022913297718701/00037 5974022913297718701/00020 5974022913297718701/00017 5974022913297718701/00016 5974022913297718701/00019 5974022913297718701/00027 5974022913297718701/00034 5974022913297718701/00002 5974022913297718701/00007 5974022913297718701/00005 5974022913297718701/00004 5974022913297718701/00028 6123608893275619492/00003 6123608893275619492/00009 6123608893275619492/00010 6123608893275619492/00013 6123608893275619492/00001 6123608893275619492/00012 6123608893275619492/00014 6123608893275619492/00011 6123608893275619492/00008 6123608893275619492/00007 6123608893275619492/00005 6239735360031335520/00003 6239735360031335520/00006 6239735360031335520/00009 6239735360031335520/00013 6239735360031335520/00001 6239735360031335520/00012 6239735360031335520/00014 6239735360031335520/00011 6239735360031335520/00002 6239735360031335520/00008 6239735360031335520/00007 6239735360031335520/00005 6239735360031335520/00004 5993284553129378964/00015 5993284553129378964/00003 5993284553129378964/00006 5993284553129378964/00020 5993284553129378964/00019 5993284553129378964/00008 5993284553129378964/00005 6077900992318076123/00015 6077900992318076123/00003 6077900992318076123/00013 6077900992318076123/00001 6077900992318076123/00018 6077900992318076123/00012 6077900992318076123/00021 6077900992318076123/00014 6077900992318076123/00011 6077900992318076123/00007 6077900992318076123/00004 6021092748384069920/00004 6213798052531513086/00015 6213798052531513086/00006 6213798052531513086/00032 6213798052531513086/00033 6213798052531513086/00031 6213798052531513086/00036 6213798052531513086/00021 6213798052531513086/00014 6213798052531513086/00020 6213798052531513086/00017 6213798052531513086/00016 6213798052531513086/00034 6213798052531513086/00007 6213798052531513086/00025 5962774393948783679/00029 5962774393948783679/00006 5962774393948783679/00009 5962774393948783679/00010 5962774393948783679/00033 5962774393948783679/00031 5962774393948783679/00022 5962774393948783679/00001 5962774393948783679/00018 5962774393948783679/00021 5962774393948783679/00020 5962774393948783679/00017 5962774393948783679/00016 5962774393948783679/00034 5962774393948783679/00008 5962774393948783679/00007 5962774393948783679/00025 5962774393948783679/00028 6370331571607430336/00003 6370331571607430336/00009 6370331571607430336/00033 6370331571607430336/00020 6370331571607430336/00016 6370331571607430336/00019 6079426564832078625/00029 6079426564832078625/00015 6079426564832078625/00003 6079426564832078625/00006 6079426564832078625/00046 6079426564832078625/00009 6079426564832078625/00010 6079426564832078625/00033 6079426564832078625/00030 6079426564832078625/00031 6079426564832078625/00013 6079426564832078625/00044 6079426564832078625/00036 6079426564832078625/00045 6079426564832078625/00023 6079426564832078625/00038 6079426564832078625/00042 6079426564832078625/00021 6079426564832078625/00014 6079426564832078625/00037 6079426564832078625/00047 6079426564832078625/00039 6079426564832078625/00020 6079426564832078625/00035 6079426564832078625/00017 6079426564832078625/00019 6079426564832078625/00011 6079426564832078625/00034 6079426564832078625/00002 6079426564832078625/00008 6079426564832078625/00040 6079426564832078625/00007 6079426564832078625/00025 6079426564832078625/00028 6260419493032221957/00015 6260419493032221957/00003 6260419493032221957/00006 6260419493032221957/00013 6260419493032221957/00012 6260419493032221957/00014 6260419493032221957/00016 6260419493032221957/00011 6260419493032221957/00007 6260419493032221957/00004 6206329963396570837/00015 6206329963396570837/00003 6206329963396570837/00010 6206329963396570837/00013 6206329963396570837/00001 6206329963396570837/00012 6206329963396570837/00014 6206329963396570837/00016 6206329963396570837/00011 6206329963396570837/00002 6206329963396570837/00005 6206329963396570837/00004 6306870852828565379/00029 6306870852828565379/00015 6306870852828565379/00006 6306870852828565379/00010 6306870852828565379/00024 6306870852828565379/00013 6306870852828565379/00022 6306870852828565379/00026 6306870852828565379/00023 6306870852828565379/00018 6306870852828565379/00021 6306870852828565379/00014 6306870852828565379/00017 6306870852828565379/00016 6306870852828565379/00019 6306870852828565379/00027 6306870852828565379/00002 6306870852828565379/00008 6306870852828565379/00007 6306870852828565379/00004 6306870852828565379/00028 6260462013208452361/00029 6260462013208452361/00015 6260462013208452361/00003 6260462013208452361/00006 6260462013208452361/00009 6260462013208452361/00033 6260462013208452361/00030 6260462013208452361/00031 6260462013208452361/00013 6260462013208452361/00022 6260462013208452361/00023 6260462013208452361/00041 6260462013208452361/00021 6260462013208452361/00037 6260462013208452361/00017 6260462013208452361/00011 6260462013208452361/00025 6260462013208452361/00028 6129151978067851442/00015 6129151978067851442/00003 6129151978067851442/00013 6129151978067851442/00022 6129151978067851442/00001 6129151978067851442/00018 6129151978067851442/00021 6129151978067851442/00017 6129151978067851442/00016 6129151978067851442/00008 6129151978067851442/00007 6221219756019003015/00006 6221219756019003015/00024 6221219756019003015/00012 6221219756019003015/00020 6221219756019003015/00017 6221219756019003015/00019 6221219756019003015/00008 6100578419641021195/00006 6100578419641021195/00009 6100578419641021195/00010 6100578419641021195/00024 6100578419641021195/00013 6100578419641021195/00022 6100578419641021195/00001 6100578419641021195/00023 6100578419641021195/00021 6100578419641021195/00019 6100578419641021195/00008 6100578419641021195/00025 6100578419641021195/00005 6120149297118687394/00009 6120149297118687394/00012 6120149297118687394/00002 6120149297118687394/00008 6120149297118687394/00007 6120149297118687394/00004 5984379797434573902/00002 5984379797434573902/00004 5955439019303933141/00015 5955439019303933141/00013 5955439019303933141/00001 5955439019303933141/00014 5955439019303933141/00016 5955439019303933141/00005 5955439019303933141/00004 6225263038230813400/00003 6225263038230813400/00010 6225263038230813400/00024 6225263038230813400/00022 6225263038230813400/00026 6225263038230813400/00001 6225263038230813400/00023 6225263038230813400/00018 6225263038230813400/00021 6225263038230813400/00020 6225263038230813400/00017 6225263038230813400/00019 6225263038230813400/00002 6225263038230813400/00008 6225263038230813400/00007 6225263038230813400/00025 6225263038230813400/00005 6225263038230813400/00004 5543830828491851790/00009 5543830828491851790/00001 5543830828491851790/00011 6079751264229168216/00029 6079751264229168216/00015 6079751264229168216/00006 6079751264229168216/00032 6079751264229168216/00010 6079751264229168216/00033 6079751264229168216/00024 6079751264229168216/00030 6079751264229168216/00031 6079751264229168216/00022 6079751264229168216/00044 6079751264229168216/00001 6079751264229168216/00023 6079751264229168216/00018 6079751264229168216/00042 6079751264229168216/00012 6079751264229168216/00041 6079751264229168216/00021 6079751264229168216/00014 6079751264229168216/00037 6079751264229168216/00039 6079751264229168216/00020 6079751264229168216/00017 6079751264229168216/00016 6079751264229168216/00019 6079751264229168216/00011 6079751264229168216/00027 6079751264229168216/00034 6079751264229168216/00002 6079751264229168216/00043 6079751264229168216/00005 6079751264229168216/00004 6079751264229168216/00028 6086848268189149635/00001 6086848268189149635/00004 6112781710219058868/00003 6112781710219058868/00001 6112781710219058868/00011 6245831207114551582/00006 6245831207114551582/00009 6245831207114551582/00010 6245831207114551582/00024 6245831207114551582/00001 6245831207114551582/00023 6245831207114551582/00018 6245831207114551582/00012 6245831207114551582/00014 6245831207114551582/00019 6245831207114551582/00011 6245831207114551582/00002 6245831207114551582/00005 6245831207114551582/00004 6332491191742745853/00014 6332491191742745853/00011 6117598086544797118/00029 6117598086544797118/00015 6117598086544797118/00006 6117598086544797118/00009 6117598086544797118/00033 6117598086544797118/00023 6117598086544797118/00038 6117598086544797118/00018 6117598086544797118/00037 6117598086544797118/00039 6117598086544797118/00016 6117598086544797118/00027 6117598086544797118/00040 6117598086544797118/00043 6117598086544797118/00004 6255256512845631976/00001 6000369960678308043/00006 6000369960678308043/00022 6000369960678308043/00044 6000369960678308043/00036 6000369960678308043/00001 6000369960678308043/00023 6000369960678308043/00042 6000369960678308043/00041 6000369960678308043/00037 6000369960678308043/00020 6000369960678308043/00017 6000369960678308043/00019 6000369960678308043/00011 6000369960678308043/00027 6000369960678308043/00034 6000369960678308043/00008 6000369960678308043/00040 6000369960678308043/00007 6000369960678308043/00025 6093101311075340834/00029 6093101311075340834/00015 6093101311075340834/00003 6093101311075340834/00006 6093101311075340834/00032 6093101311075340834/00009 6093101311075340834/00010 6093101311075340834/00033 6093101311075340834/00030 6093101311075340834/00031 6093101311075340834/00013 6093101311075340834/00022 6093101311075340834/00026 6093101311075340834/00036 6093101311075340834/00001 6093101311075340834/00023 6093101311075340834/00018 6093101311075340834/00012 6093101311075340834/00021 6093101311075340834/00014 6093101311075340834/00020 6093101311075340834/00016 6093101311075340834/00011 6093101311075340834/00027 6093101311075340834/00034 6093101311075340834/00002 6093101311075340834/00025 6093101311075340834/00005 6093101311075340834/00004 6093101311075340834/00028 6094717077772157547/00015 6094717077772157547/00003 6094717077772157547/00009 6094717077772157547/00010 6094717077772157547/00013 6094717077772157547/00026 6094717077772157547/00036 6094717077772157547/00001 6094717077772157547/00012 6094717077772157547/00037 6094717077772157547/00020 6094717077772157547/00035 6094717077772157547/00002 6094717077772157547/00008 6094717077772157547/00040 6094717077772157547/00028 6384044972686741229/00003 6384044972686741229/00013 6384044972686741229/00035 6106160159138904432/00003 6106160159138904432/00006 6106160159138904432/00002 6106160159138904432/00007 6371091780818822750/00006 6371091780818822750/00018 6371091780818822750/00005 6084258402909659419/00003 6084258402909659419/00006 6084258402909659419/00009 6084258402909659419/00010 6084258402909659419/00013 6084258402909659419/00001 6084258402909659419/00011 6084258402909659419/00002 6084258402909659419/00007 6084258402909659419/00005 5955897721941637066/00060 5955897721941637066/00029 5955897721941637066/00015 5955897721941637066/00003 5955897721941637066/00006 5955897721941637066/00046 5955897721941637066/00056 5955897721941637066/00032 5955897721941637066/00033 5955897721941637066/00057 5955897721941637066/00053 5955897721941637066/00030 5955897721941637066/00058 5955897721941637066/00013 5955897721941637066/00022 5955897721941637066/00026 5955897721941637066/00044 5955897721941637066/00050 5955897721941637066/00036 5955897721941637066/00063 5955897721941637066/00001 5955897721941637066/00045 5955897721941637066/00064 5955897721941637066/00049 5955897721941637066/00048 5955897721941637066/00018 5955897721941637066/00042 5955897721941637066/00021 5955897721941637066/00014 5955897721941637066/00037 5955897721941637066/00020 5955897721941637066/00035 5955897721941637066/00017 5955897721941637066/00055 5955897721941637066/00016 5955897721941637066/00059 5955897721941637066/00019 5955897721941637066/00011 5955897721941637066/00027 5955897721941637066/00067 5955897721941637066/00034 5955897721941637066/00008 5955897721941637066/00040 5955897721941637066/00007 5955897721941637066/00025 5955897721941637066/00054 5955897721941637066/00004 5955897721941637066/00028 5645952695385576008/00009 5645952695385576008/00010 5645952695385576008/00033 5645952695385576008/00024 5645952695385576008/00030 5645952695385576008/00031 5645952695385576008/00013 5645952695385576008/00022 5645952695385576008/00026 5645952695385576008/00001 5645952695385576008/00023 5645952695385576008/00038 5645952695385576008/00018 5645952695385576008/00042 5645952695385576008/00041 5645952695385576008/00021 5645952695385576008/00014 5645952695385576008/00039 5645952695385576008/00020 5645952695385576008/00035 5645952695385576008/00017 5645952695385576008/00016 5645952695385576008/00019 5645952695385576008/00011 5645952695385576008/00002 5645952695385576008/00008 5645952695385576008/00007 5645952695385576008/00025 5645952695385576008/00005 5645952695385576008/00004 6129434157419197933/00003 6129434157419197933/00012 6129434157419197933/00014 6129434157419197933/00005 6129434157419197933/00004 6220786823314854317/00009 6220786823314854317/00024 6220786823314854317/00001 6220786823314854317/00018 6220786823314854317/00014 6220786823314854317/00020 6220786823314854317/00002 6220786823314854317/00025 6220786823314854317/00005 5578955071038543747/00002 5984784383353860191/00003 5984784383353860191/00009 5984784383353860191/00010 5984784383353860191/00013 5984784383353860191/00018 5984784383353860191/00012 5984784383353860191/00014 5984784383353860191/00016 5984784383353860191/00008 5984784383353860191/00004 6086508106909724915/00006 6086508106909724915/00005 6368494184598133861/00046 6368494184598133861/00030 6368494184598133861/00041 6368494184598133861/00017 6368494184598133861/00007 5674548158145608475/00003 5674548158145608475/00046 5674548158145608475/00056 5674548158145608475/00032 5674548158145608475/00010 5674548158145608475/00033 5674548158145608475/00057 5674548158145608475/00053 5674548158145608475/00030 5674548158145608475/00058 5674548158145608475/00031 5674548158145608475/00013 5674548158145608475/00022 5674548158145608475/00026 5674548158145608475/00044 5674548158145608475/00050 5674548158145608475/00001 5674548158145608475/00023 5674548158145608475/00038 5674548158145608475/00048 5674548158145608475/00018 5674548158145608475/00042 5674548158145608475/00012 5674548158145608475/00021 5674548158145608475/00039 5674548158145608475/00051 5674548158145608475/00055 5674548158145608475/00016 5674548158145608475/00059 5674548158145608475/00019 5674548158145608475/00034 5674548158145608475/00008 5674548158145608475/00040 5674548158145608475/00007 5674548158145608475/00054 5674548158145608475/00043 5674548158145608475/00005 6193542986762875521/00003 6193542986762875521/00006 6193542986762875521/00001 6193542986762875521/00002 6193542986762875521/00007 6193542986762875521/00004 6106531244313278861/00003 6106531244313278861/00007 6106531244313278861/00005 6349174562707247076/00010 6349174562707247076/00019 6349174562707247076/00008 5718090107095720942/00010 5718090107095720942/00024 5718090107095720942/00013 5718090107095720942/00022 5718090107095720942/00001 5718090107095720942/00023 5718090107095720942/00018 5718090107095720942/00012 5718090107095720942/00021 5718090107095720942/00002 5718090107095720942/00007 5718090107095720942/00025 5718090107095720942/00005 5718090107095720942/00004 6118398238952043608/00003 6118398238952043608/00006 6118398238952043608/00011 6118398238952043608/00008 6118398238952043608/00007 6204424286407333494/00003 6204424286407333494/00009 6204424286407333494/00001 6204424286407333494/00008 6204424286407333494/00005 6155468101683834865/00003 6155468101683834865/00006 6155468101683834865/00001 6155468101683834865/00008 6155468101683834865/00007 6155468101683834865/00004 6234169082415778641/00029 6234169082415778641/00015 6234169082415778641/00003 6234169082415778641/00009 6234169082415778641/00026 6234169082415778641/00001 6234169082415778641/00018 6234169082415778641/00021 6234169082415778641/00017 6234169082415778641/00016 6234169082415778641/00019 6234169082415778641/00011 6234169082415778641/00027 6234169082415778641/00002 6234169082415778641/00007 6234169082415778641/00025 6234169082415778641/00004 6234169082415778641/00028 6252255619195978409/00003 6252255619195978409/00002 6252255619195978409/00004 5551615886212587457/00006 5551615886212587457/00009 5551615886212587457/00010 5551615886212587457/00033 5551615886212587457/00031 5551615886212587457/00022 5551615886212587457/00023 5551615886212587457/00018 5551615886212587457/00035 5551615886212587457/00016 5551615886212587457/00002 5551615886212587457/00004 5551615886212587457/00028 6203709174352483308/00006 6203709174352483308/00001 6203709174352483308/00007 6203709174352483308/00004 5559045320641216018/00003 5559045320641216018/00010 5559045320641216018/00012 5559045320641216018/00016 5559045320641216018/00011 5559045320641216018/00002 5559045320641216018/00005 5559045320641216018/00004 6363997353839279323/00010 6363997353839279323/00023 6128030991603588260/00006 6128030991603588260/00013 6128030991603588260/00001 6128030991603588260/00012 6128030991603588260/00014 6128030991603588260/00002 5953206065806812291/00015 5953206065806812291/00013 5953206065806812291/00012 5953206065806812291/00019 5953206065806812291/00011 5953206065806812291/00005 6058554312133246129/00003 6058554312133246129/00006 6058554312133246129/00046 6058554312133246129/00056 6058554312133246129/00032 6058554312133246129/00009 6058554312133246129/00010 6058554312133246129/00053 6058554312133246129/00078 6058554312133246129/00030 6058554312133246129/00071 6058554312133246129/00062 6058554312133246129/00013 6058554312133246129/00022 6058554312133246129/00026 6058554312133246129/00050 6058554312133246129/00036 6058554312133246129/00063 6058554312133246129/00066 6058554312133246129/00064 6058554312133246129/00049 6058554312133246129/00023 6058554312133246129/00038 6058554312133246129/00018 6058554312133246129/00042 6058554312133246129/00012 6058554312133246129/00065 6058554312133246129/00061 6058554312133246129/00079 6058554312133246129/00047 6058554312133246129/00051 6058554312133246129/00017 6058554312133246129/00076 6058554312133246129/00052 6058554312133246129/00019 6058554312133246129/00011 6058554312133246129/00067 6058554312133246129/00040 6058554312133246129/00007 6058554312133246129/00068 6058554312133246129/00025 6058554312133246129/00054 6058554312133246129/00043 6058554312133246129/00005 6058554312133246129/00004 6231103764256587696/00003 6231103764256587696/00004 6278683841458446331/00010 6278683841458446331/00001 6278683841458446331/00012 6278683841458446331/00011 6278683841458446331/00002 5854800204617596265/00009 5854800204617596265/00010 5854800204617596265/00002 5854800204617596265/00005 6055646189777119936/00003 6055646189777119936/00001 6055646189777119936/00004 6175135615925731054/00003 6175135615925731054/00010 6175135615925731054/00012 6175135615925731054/00011 6175135615925731054/00005 6175135615925731054/00004 6207037344510227148/00003 6207037344510227148/00009 6207037344510227148/00013 6207037344510227148/00001 6207037344510227148/00012 6207037344510227148/00014 6207037344510227148/00011 6207037344510227148/00002 6207037344510227148/00008 6207037344510227148/00007 6207037344510227148/00004 5693089531962435126/00029 5693089531962435126/00003 5693089531962435126/00009 5693089531962435126/00024 5693089531962435126/00022 5693089531962435126/00026 5693089531962435126/00001 5693089531962435126/00012 5693089531962435126/00014 5693089531962435126/00020 5693089531962435126/00027 5693089531962435126/00008 5693089531962435126/00005 5693089531962435126/00004 6382138007207318567/00010 6277199500760946671/00029 6277199500760946671/00015 6277199500760946671/00006 6277199500760946671/00024 6277199500760946671/00036 6277199500760946671/00001 6277199500760946671/00018 6277199500760946671/00041 6277199500760946671/00021 6277199500760946671/00014 6277199500760946671/00037 6277199500760946671/00039 6277199500760946671/00035 6277199500760946671/00016 6277199500760946671/00019 6277199500760946671/00040 6277199500760946671/00007 6277199500760946671/00005 6277199500760946671/00028 5768433995752531057/00015 5768433995752531057/00006 5768433995752531057/00009 5768433995752531057/00013 5768433995752531057/00001 5768433995752531057/00011 5768433995752531057/00002 5768433995752531057/00004 6370997721034975856/00008 6215189621934767949/00003 6215189621934767949/00006 6215189621934767949/00009 6215189621934767949/00010 6215189621934767949/00030 6215189621934767949/00031 6215189621934767949/00013 6215189621934767949/00050 6215189621934767949/00001 6215189621934767949/00045 6215189621934767949/00049 6215189621934767949/00038 6215189621934767949/00048 6215189621934767949/00012 6215189621934767949/00041 6215189621934767949/00047 6215189621934767949/00039 6215189621934767949/00035 6215189621934767949/00019 6215189621934767949/00027 6215189621934767949/00034 6215189621934767949/00002 6215189621934767949/00043 6215189621934767949/00005 5987662870435640046/00015 5987662870435640046/00010 5987662870435640046/00001 5987662870435640046/00018 5987662870435640046/00012 5987662870435640046/00017 5987662870435640046/00016 5987662870435640046/00011 5987662870435640046/00008 5987662870435640046/00007 5987662870435640046/00004 6238243288392768613/00015 6238243288392768613/00003 6238243288392768613/00006 6238243288392768613/00009 6238243288392768613/00010 6238243288392768613/00013 6238243288392768613/00012 6238243288392768613/00014 6238243288392768613/00017 6238243288392768613/00016 6238243288392768613/00002 6238243288392768613/00008 6238243288392768613/00007 6238243288392768613/00005 6238243288392768613/00004 5871201396230780116/00015 5871201396230780116/00003 5871201396230780116/00006 5871201396230780116/00009 5871201396230780116/00013 5871201396230780116/00022 5871201396230780116/00001 5871201396230780116/00018 5871201396230780116/00012 5871201396230780116/00021 5871201396230780116/00016 5871201396230780116/00011 5871201396230780116/00007 5871201396230780116/00005 5871201396230780116/00004 5551115952019334286/00029 5551115952019334286/00006 5551115952019334286/00009 5551115952019334286/00010 5551115952019334286/00033 5551115952019334286/00031 5551115952019334286/00013 5551115952019334286/00023 5551115952019334286/00018 5551115952019334286/00012 5551115952019334286/00041 5551115952019334286/00014 5551115952019334286/00037 5551115952019334286/00039 5551115952019334286/00020 5551115952019334286/00017 5551115952019334286/00019 5551115952019334286/00011 5551115952019334286/00034 5551115952019334286/00002 5551115952019334286/00040 5551115952019334286/00025 5551115952019334286/00004 5551115952019334286/00028 6096728410956881089/00006 6096728410956881089/00010 6096728410956881089/00022 6096728410956881089/00036 6096728410956881089/00021 6096728410956881089/00035 6096728410956881089/00016 6096728410956881089/00019 6096728410956881089/00034 6096728410956881089/00025 6202967004003734455/00009 6202967004003734455/00013 6202967004003734455/00014 6202967004003734455/00011 6202967004003734455/00008 6202967004003734455/00007 6104911612145955230/00015 6104911612145955230/00009 6104911612145955230/00010 6104911612145955230/00033 6104911612145955230/00024 6104911612145955230/00030 6104911612145955230/00031 6104911612145955230/00026 6104911612145955230/00036 6104911612145955230/00023 6104911612145955230/00018 6104911612145955230/00021 6104911612145955230/00014 6104911612145955230/00020 6104911612145955230/00035 6104911612145955230/00017 6104911612145955230/00019 6104911612145955230/00011 6104911612145955230/00027 6104911612145955230/00034 6104911612145955230/00002 6104911612145955230/00007 6104911612145955230/00005 6104911612145955230/00004 5987003163458974917/00003 5987003163458974917/00009 5987003163458974917/00010 5987003163458974917/00001 5987003163458974917/00011 5987003163458974917/00008 5987003163458974917/00007 5987003163458974917/00005 6247037233931334234/00006 6247037233931334234/00009 6247037233931334234/00010 6247037233931334234/00013 6247037233931334234/00012 6247037233931334234/00014 6247037233931334234/00016 6247037233931334234/00019 6247037233931334234/00011 6247037233931334234/00007 6257122246639080445/00015 6257122246639080445/00009 6257122246639080445/00024 6257122246639080445/00031 6257122246639080445/00013 6257122246639080445/00022 6257122246639080445/00026 6257122246639080445/00045 6257122246639080445/00023 6257122246639080445/00038 6257122246639080445/00012 6257122246639080445/00041 6257122246639080445/00014 6257122246639080445/00037 6257122246639080445/00039 6257122246639080445/00020 6257122246639080445/00016 6257122246639080445/00019 6257122246639080445/00034 6257122246639080445/00040 6257122246639080445/00025 5860420598821146787/00010 5860420598821146787/00007 5861955190636009843/00005 5861955190636009843/00004 5993553847578843781/00015 5993553847578843781/00009 5993553847578843781/00012 5993553847578843781/00011 5993553847578843781/00008 5993553847578843781/00007 5993553847578843781/00005 5993553847578843781/00004 5976898823398399652/00003 5976898823398399652/00009 5976898823398399652/00001 5976898823398399652/00002 5641515135175344601/00001 6239321754680735209/00029 6239321754680735209/00015 6239321754680735209/00046 6239321754680735209/00033 6239321754680735209/00024 6239321754680735209/00031 6239321754680735209/00001 6239321754680735209/00023 6239321754680735209/00038 6239321754680735209/00048 6239321754680735209/00018 6239321754680735209/00021 6239321754680735209/00014 6239321754680735209/00047 6239321754680735209/00039 6239321754680735209/00017 6239321754680735209/00011 6239321754680735209/00027 6239321754680735209/00002 6239321754680735209/00007 6239321754680735209/00025 6239321754680735209/00028 6236411055344294154/00003 6236411055344294154/00006 6236411055344294154/00001 6236411055344294154/00008 6236411055344294154/00005 6236411055344294154/00004 5993601521715894881/00003 5993601521715894881/00009 5993601521715894881/00001 5993601521715894881/00007 5993601521715894881/00004 6247512686810938641/00003 6247512686810938641/00009 6247512686810938641/00016 5957679703742325326/00029 5957679703742325326/00015 5957679703742325326/00003 5957679703742325326/00032 5957679703742325326/00009 5957679703742325326/00033 5957679703742325326/00024 5957679703742325326/00031 5957679703742325326/00013 5957679703742325326/00026 5957679703742325326/00036 5957679703742325326/00001 5957679703742325326/00045 5957679703742325326/00023 5957679703742325326/00018 5957679703742325326/00012 5957679703742325326/00041 5957679703742325326/00037 5957679703742325326/00047 5957679703742325326/00039 5957679703742325326/00020 5957679703742325326/00034 5957679703742325326/00002 5957679703742325326/00040 5957679703742325326/00007 5957679703742325326/00025 5957679703742325326/00043 5957679703742325326/00004 5957679703742325326/00028 5687865992737034522/00015 5687865992737034522/00003 5687865992737034522/00010 5687865992737034522/00013 5687865992737034522/00018 5687865992737034522/00012 5687865992737034522/00017 5687865992737034522/00016 5687865992737034522/00019 5687865992737034522/00011 5687865992737034522/00008 5687865992737034522/00007 5687865992737034522/00005 5687865992737034522/00004 6191849910654854274/00003 6191849910654854274/00006 6191849910654854274/00012 6300370419826092098/00003 6300370419826092098/00006 6300370419826092098/00010 6300370419826092098/00024 6300370419826092098/00013 6300370419826092098/00001 6300370419826092098/00018 6300370419826092098/00012 6300370419826092098/00014 6300370419826092098/00020 6300370419826092098/00016 6300370419826092098/00002 6300370419826092098/00007 6300370419826092098/00025 6300370419826092098/00004 6258622049218779913/00003 6258622049218779913/00009 6258622049218779913/00001 6258622049218779913/00023 6258622049218779913/00014 6258622049218779913/00016 6258622049218779913/00019 6258622049218779913/00008 6226353100930473904/00003 6226353100930473904/00009 6226353100930473904/00001 6226353100930473904/00014 6226353100930473904/00020 6226353100930473904/00008 6226353100930473904/00007 6226353100930473904/00005 6092432584667412606/00015 6092432584667412606/00006 6092432584667412606/00009 6092432584667412606/00011 6092432584667412606/00007 5723896043886464789/00013 5723896043886464789/00022 5723896043886464789/00026 5723896043886464789/00023 5723896043886464789/00018 5723896043886464789/00017 5723896043886464789/00019 5723896043886464789/00011 5723896043886464789/00002 5723896043886464789/00025 5723896043886464789/00005 5723896043886464789/00004 5859681005452709124/00001 5859681005452709124/00002 5860767202681934019/00003 5860767202681934019/00046 5860767202681934019/00032 5860767202681934019/00009 5860767202681934019/00010 5860767202681934019/00053 5860767202681934019/00030 5860767202681934019/00031 5860767202681934019/00013 5860767202681934019/00022 5860767202681934019/00026 5860767202681934019/00050 5860767202681934019/00036 5860767202681934019/00045 5860767202681934019/00049 5860767202681934019/00023 5860767202681934019/00038 5860767202681934019/00048 5860767202681934019/00018 5860767202681934019/00012 5860767202681934019/00037 5860767202681934019/00039 5860767202681934019/00020 5860767202681934019/00035 5860767202681934019/00051 5860767202681934019/00017 5860767202681934019/00011 5860767202681934019/00027 5860767202681934019/00034 5860767202681934019/00002 5860767202681934019/00008 5860767202681934019/00007 5860767202681934019/00025 5860767202681934019/00043 5860767202681934019/00005 5860767202681934019/00004 5860767202681934019/00028 6306811582279909115/00015 6306811582279909115/00003 6306811582279909115/00006 6306811582279909115/00009 6306811582279909115/00010 6306811582279909115/00033 6306811582279909115/00030 6306811582279909115/00013 6306811582279909115/00022 6306811582279909115/00026 6306811582279909115/00001 6306811582279909115/00023 6306811582279909115/00018 6306811582279909115/00012 6306811582279909115/00021 6306811582279909115/00014 6306811582279909115/00035 6306811582279909115/00019 6306811582279909115/00011 6306811582279909115/00027 6306811582279909115/00034 6306811582279909115/00007 6306811582279909115/00025 6306811582279909115/00005 6306811582279909115/00004 6002640280520743957/00015 6002640280520743957/00003 6002640280520743957/00010 6002640280520743957/00022 6002640280520743957/00012 6002640280520743957/00021 6002640280520743957/00014 6002640280520743957/00017 6002640280520743957/00019 6002640280520743957/00007 6002640280520743957/00025 6002640280520743957/00004 6160323132715208202/00060 6160323132715208202/00029 6160323132715208202/00015 6160323132715208202/00003 6160323132715208202/00006 6160323132715208202/00046 6160323132715208202/00056 6160323132715208202/00032 6160323132715208202/00070 6160323132715208202/00009 6160323132715208202/00090 6160323132715208202/00073 6160323132715208202/00010 6160323132715208202/00033 6160323132715208202/00057 6160323132715208202/00053 6160323132715208202/00078 6160323132715208202/00030 6160323132715208202/00031 6160323132715208202/00086 6160323132715208202/00013 6160323132715208202/00069 6160323132715208202/00026 6160323132715208202/00044 6160323132715208202/00077 6160323132715208202/00050 6160323132715208202/00036 6160323132715208202/00001 6160323132715208202/00066 6160323132715208202/00064 6160323132715208202/00049 6160323132715208202/00072 6160323132715208202/00023 6160323132715208202/00038 6160323132715208202/00088 6160323132715208202/00018 6160323132715208202/00085 6160323132715208202/00042 6160323132715208202/00012 6160323132715208202/00065 6160323132715208202/00083 6160323132715208202/00021 6160323132715208202/00075 6160323132715208202/00079 6160323132715208202/00014 6160323132715208202/00047 6160323132715208202/00039 6160323132715208202/00020 6160323132715208202/00035 6160323132715208202/00051 6160323132715208202/00017 6160323132715208202/00076 6160323132715208202/00052 6160323132715208202/00091 6160323132715208202/00055 6160323132715208202/00016 6160323132715208202/00059 6160323132715208202/00019 6160323132715208202/00011 6160323132715208202/00084 6160323132715208202/00027 6160323132715208202/00067 6160323132715208202/00034 6160323132715208202/00082 6160323132715208202/00002 6160323132715208202/00089 6160323132715208202/00092 6160323132715208202/00008 6160323132715208202/00087 6160323132715208202/00007 6160323132715208202/00068 6160323132715208202/00054 6160323132715208202/00005 6160323132715208202/00074 6160323132715208202/00028 6188865767378227249/00010 6188865767378227249/00001 6188865767378227249/00021 6188865767378227249/00017 6188865767378227249/00004 6121981530167163556/00003 6121981530167163556/00010 6121981530167163556/00008 6121981530167163556/00007 6121981530167163556/00005 6121981530167163556/00004 5960922833547543357/00015 5960922833547543357/00009 5960922833547543357/00013 5960922833547543357/00001 5960922833547543357/00012 5960922833547543357/00019 5960922833547543357/00027 5960922833547543357/00007 5960922833547543357/00025 5960922833547543357/00004 5552430212011911237/00003 5552430212011911237/00006 5552430212011911237/00009 5552430212011911237/00010 5552430212011911237/00013 5552430212011911237/00001 5552430212011911237/00012 5552430212011911237/00011 5552430212011911237/00008 5552430212011911237/00007 6100593881523194452/00003 6100593881523194452/00006 6100593881523194452/00010 6100593881523194452/00002 6100593881523194452/00004 6076481076130017200/00003 6076481076130017200/00006 6076481076130017200/00009 6076481076130017200/00010 6076481076130017200/00013 6076481076130017200/00018 6076481076130017200/00014 6076481076130017200/00017 6076481076130017200/00011 6076481076130017200/00008 6076481076130017200/00004 6392568335285725796/00003 6392568335285725796/00013 6392568335285725796/00017 6392568335285725796/00016 6392568335285725796/00011 6160231649911868423/00015 6160231649911868423/00010 6160231649911868423/00024 6160231649911868423/00022 6160231649911868423/00023 6160231649911868423/00018 6160231649911868423/00021 6160231649911868423/00014 6160231649911868423/00020 6160231649911868423/00016 6160231649911868423/00005 6160231649911868423/00004 5585141112434977480/00029 5585141112434977480/00006 5585141112434977480/00010 5585141112434977480/00036 5585141112434977480/00038 5585141112434977480/00021 5585141112434977480/00037 5585141112434977480/00020 5585141112434977480/00035 5585141112434977480/00017 5585141112434977480/00011 5585141112434977480/00027 5585141112434977480/00007 5585141112434977480/00025 6359541754766405254/00018 6359541754766405254/00020 6083411864855617006/00001 6083411864855617006/00002 6083411864855617006/00005 5540119976748105533/00012 5540119976748105533/00017 5540119976748105533/00011 5540119976748105533/00008 5540119976748105533/00007 5944573181541875466/00015 5944573181541875466/00003 5944573181541875466/00032 5944573181541875466/00033 5944573181541875466/00013 5944573181541875466/00012 5944573181541875466/00021 5944573181541875466/00014 5944573181541875466/00017 5944573181541875466/00034 5944573181541875466/00005 5944573181541875466/00004 5944573181541875466/00028 5984363047062182334/00010 5984363047062182334/00018 5984363047062182334/00017 5984363047062182334/00016 5984363047062182334/00019 5984363047062182334/00011 5984363047062182334/00008 6364798794736649079/00001 5922271993354037562/00003 5922271993354037562/00001 5922271993354037562/00008 5922271993354037562/00007 5922271993354037562/00005 5922271993354037562/00004 5859276419533492246/00002 5859276419533492246/00004 5941293974011371817/00001 5941293974011371817/00011 5941293974011371817/00008 5941293974011371817/00005 5941293974011371817/00004 6375915888085690147/00015 6375915888085690147/00033 6375915888085690147/00022 6375915888085690147/00045 6375915888085690147/00023 6375915888085690147/00048 6375915888085690147/00041 6375915888085690147/00047 6375915888085690147/00005 6232000553428027692/00015 6232000553428027692/00003 6232000553428027692/00006 6232000553428027692/00009 6232000553428027692/00010 6232000553428027692/00013 6232000553428027692/00001 6232000553428027692/00011 6232000553428027692/00002 6232000553428027692/00008 6232000553428027692/00007 6232000553428027692/00005 5560900746513059020/00009 5560900746513059020/00013 5560900746513059020/00001 5560900746513059020/00012 5968674390523305100/00029 5968674390523305100/00006 5968674390523305100/00009 5968674390523305100/00010 5968674390523305100/00013 5968674390523305100/00012 5968674390523305100/00014 5968674390523305100/00020 5968674390523305100/00017 5968674390523305100/00027 5968674390523305100/00002 5968674390523305100/00008 5968674390523305100/00007 5968674390523305100/00025 5968674390523305100/00028 5586238906075836169/00029 5586238906075836169/00015 5586238906075836169/00032 5586238906075836169/00009 5586238906075836169/00010 5586238906075836169/00024 5586238906075836169/00030 5586238906075836169/00022 5586238906075836169/00026 5586238906075836169/00036 5586238906075836169/00023 5586238906075836169/00018 5586238906075836169/00021 5586238906075836169/00014 5586238906075836169/00035 5586238906075836169/00017 5586238906075836169/00011 5586238906075836169/00027 5586238906075836169/00008 5586238906075836169/00007 5586238906075836169/00025 6214861056936627737/00009 6214861056936627737/00010 6214861056936627737/00013 6214861056936627737/00019 6214861056936627737/00002 6214861056936627737/00008 6214861056936627737/00007 6128417538660165058/00015 6128417538660165058/00009 6128417538660165058/00033 6128417538660165058/00024 6128417538660165058/00030 6128417538660165058/00031 6128417538660165058/00013 6128417538660165058/00022 6128417538660165058/00023 6128417538660165058/00012 6128417538660165058/00021 6128417538660165058/00014 6128417538660165058/00011 6128417538660165058/00007 6128417538660165058/00005 6128417538660165058/00004 6128417538660165058/00028 5966369281575538206/00003 5966369281575538206/00006 5966369281575538206/00001 5966369281575538206/00005 5966369281575538206/00004 6239244445269465643/00006 6239244445269465643/00024 6239244445269465643/00001 6239244445269465643/00018 6239244445269465643/00012 6239244445269465643/00017 6239244445269465643/00016 6239244445269465643/00019 6239244445269465643/00008 6239244445269465643/00007 6239244445269465643/00005 6239244445269465643/00004 5949563504043097417/00008 5949563504043097417/00004 6210025353257987152/00003 6210025353257987152/00010 6210025353257987152/00033 6210025353257987152/00024 6210025353257987152/00030 6210025353257987152/00026 6210025353257987152/00011 6210025353257987152/00027 6210025353257987152/00034 6210025353257987152/00002 6210025353257987152/00025 6210025353257987152/00005 6210025353257987152/00004 6335305254315087182/00032 6335305254315087182/00057 6335305254315087182/00058 6335305254315087182/00036 6335305254315087182/00012 6335305254315087182/00014 6335305254315087182/00035 6335305254315087182/00017 6335305254315087182/00011 6335305254315087182/00028 5997030194108225012/00003 5997030194108225012/00006 5997030194108225012/00010 5997030194108225012/00001 5997030194108225012/00012 5997030194108225012/00014 5997030194108225012/00011 5997030194108225012/00002 5997030194108225012/00008 5997030194108225012/00005 6213736205001733563/00003 6213736205001733563/00009 6213736205001733563/00013 6213736205001733563/00012 6213736205001733563/00007 6213736205001733563/00004 6201842152068976314/00029 6201842152068976314/00015 6201842152068976314/00006 6201842152068976314/00009 6201842152068976314/00010 6201842152068976314/00033 6201842152068976314/00024 6201842152068976314/00031 6201842152068976314/00022 6201842152068976314/00026 6201842152068976314/00023 6201842152068976314/00018 6201842152068976314/00012 6201842152068976314/00021 6201842152068976314/00014 6201842152068976314/00020 6201842152068976314/00035 6201842152068976314/00017 6201842152068976314/00016 6201842152068976314/00019 6201842152068976314/00011 6201842152068976314/00034 6201842152068976314/00002 6201842152068976314/00008 6201842152068976314/00028 6214153675822970798/00006 6214153675822970798/00005 6214153675822970798/00004 5988777414449021379/00006 5988777414449021379/00009 5988777414449021379/00012 5988777414449021379/00014 5988777414449021379/00017 5988777414449021379/00011 5988777414449021379/00002 5988777414449021379/00008 5988777414449021379/00007 5988777414449021379/00005 6076684657579848844/00006 6076684657579848844/00001 6076684657579848844/00008 6076684657579848844/00005 6076684657579848844/00004 6077555676948173368/00015 6077555676948173368/00006 6077555676948173368/00010 6077555676948173368/00001 6077555676948173368/00018 6077555676948173368/00020 6077555676948173368/00019 6077555676948173368/00008 6077555676948173368/00007 6077555676948173368/00025 6077555676948173368/00004 5921313356653631779/00029 5921313356653631779/00015 5921313356653631779/00006 5921313356653631779/00032 5921313356653631779/00009 5921313356653631779/00033 5921313356653631779/00024 5921313356653631779/00030 5921313356653631779/00022 5921313356653631779/00036 5921313356653631779/00001 5921313356653631779/00023 5921313356653631779/00038 5921313356653631779/00018 5921313356653631779/00042 5921313356653631779/00041 5921313356653631779/00021 5921313356653631779/00014 5921313356653631779/00037 5921313356653631779/00039 5921313356653631779/00020 5921313356653631779/00035 5921313356653631779/00017 5921313356653631779/00016 5921313356653631779/00019 5921313356653631779/00011 5921313356653631779/00034 5921313356653631779/00002 5921313356653631779/00007 5921313356653631779/00025 5921313356653631779/00043 5921313356653631779/00005 5921313356653631779/00004 5921313356653631779/00028 6114250589034291808/00003 6114250589034291808/00023 6114250589034291808/00018 6114250589034291808/00017 6114250589034291808/00008 6114250589034291808/00025 6204451344701237513/00003 6204451344701237513/00006 6204451344701237513/00009 6204451344701237513/00010 6204451344701237513/00030 6204451344701237513/00013 6204451344701237513/00001 6204451344701237513/00012 6204451344701237513/00019 6204451344701237513/00011 6204451344701237513/00008 6204451344701237513/00025 6204451344701237513/00004 6204451344701237513/00028 6134347170509004222/00015 6134347170509004222/00003 6134347170509004222/00006 6134347170509004222/00032 6134347170509004222/00009 6134347170509004222/00024 6134347170509004222/00030 6134347170509004222/00022 6134347170509004222/00026 6134347170509004222/00044 6134347170509004222/00001 6134347170509004222/00045 6134347170509004222/00038 6134347170509004222/00042 6134347170509004222/00041 6134347170509004222/00021 6134347170509004222/00014 6134347170509004222/00037 6134347170509004222/00035 6134347170509004222/00017 6134347170509004222/00016 6134347170509004222/00019 6134347170509004222/00034 6134347170509004222/00002 6134347170509004222/00008 6134347170509004222/00040 6134347170509004222/00007 6134347170509004222/00025 6134347170509004222/00043 6134347170509004222/00005 6134347170509004222/00004 6134347170509004222/00028 6039488522809549809/00015 6039488522809549809/00006 6039488522809549809/00056 6039488522809549809/00032 6039488522809549809/00070 6039488522809549809/00073 6039488522809549809/00010 6039488522809549809/00033 6039488522809549809/00057 6039488522809549809/00053 6039488522809549809/00030 6039488522809549809/00058 6039488522809549809/00013 6039488522809549809/00069 6039488522809549809/00022 6039488522809549809/00026 6039488522809549809/00036 6039488522809549809/00001 6039488522809549809/00066 6039488522809549809/00064 6039488522809549809/00049 6039488522809549809/00038 6039488522809549809/00042 6039488522809549809/00012 6039488522809549809/00021 6039488522809549809/00079 6039488522809549809/00014 6039488522809549809/00037 6039488522809549809/00047 6039488522809549809/00039 6039488522809549809/00020 6039488522809549809/00035 6039488522809549809/00080 6039488522809549809/00019 6039488522809549809/00011 6039488522809549809/00008 6039488522809549809/00007 6039488522809549809/00068 6039488522809549809/00025 6039488522809549809/00054 6039488522809549809/00005 6039488522809549809/00004 6226256464166379785/00003 6226256464166379785/00006 6226256464166379785/00024 6226256464166379785/00013 6226256464166379785/00022 6226256464166379785/00026 6226256464166379785/00001 6226256464166379785/00023 6226256464166379785/00012 6226256464166379785/00021 6226256464166379785/00020 6226256464166379785/00017 6226256464166379785/00016 6226256464166379785/00002 6226256464166379785/00025 6226256464166379785/00005 6226256464166379785/00004 5964019075471165468/00029 5964019075471165468/00015 5964019075471165468/00003 5964019075471165468/00006 5964019075471165468/00009 5964019075471165468/00010 5964019075471165468/00013 5964019075471165468/00022 5964019075471165468/00001 5964019075471165468/00018 5964019075471165468/00021 5964019075471165468/00014 5964019075471165468/00020 5964019075471165468/00016 5964019075471165468/00019 5964019075471165468/00011 5964019075471165468/00002 5964019075471165468/00008 5964019075471165468/00007 5964019075471165468/00025 5964019075471165468/00004 5964019075471165468/00028 6218115783153534905/00003 6218115783153534905/00001 6218115783153534905/00002 5565334441252725193/00029 5565334441252725193/00006 5565334441252725193/00046 5565334441252725193/00009 5565334441252725193/00010 5565334441252725193/00024 5565334441252725193/00030 5565334441252725193/00031 5565334441252725193/00044 5565334441252725193/00050 5565334441252725193/00001 5565334441252725193/00045 5565334441252725193/00023 5565334441252725193/00048 5565334441252725193/00042 5565334441252725193/00041 5565334441252725193/00021 5565334441252725193/00037 5565334441252725193/00020 5565334441252725193/00051 5565334441252725193/00052 5565334441252725193/00019 5565334441252725193/00027 5565334441252725193/00034 5565334441252725193/00054 5565334441252725193/00043 5565334441252725193/00005 5565334441252725193/00028 6085773667502109095/00060 6085773667502109095/00029 6085773667502109095/00003 6085773667502109095/00046 6085773667502109095/00032 6085773667502109095/00009 6085773667502109095/00010 6085773667502109095/00033 6085773667502109095/00057 6085773667502109095/00024 6085773667502109095/00078 6085773667502109095/00030 6085773667502109095/00058 6085773667502109095/00031 6085773667502109095/00022 6085773667502109095/00026 6085773667502109095/00044 6085773667502109095/00077 6085773667502109095/00050 6085773667502109095/00036 6085773667502109095/00063 6085773667502109095/00001 6085773667502109095/00045 6085773667502109095/00049 6085773667502109095/00038 6085773667502109095/00042 6085773667502109095/00012 6085773667502109095/00041 6085773667502109095/00061 6085773667502109095/00075 6085773667502109095/00037 6085773667502109095/00047 6085773667502109095/00035 6085773667502109095/00051 6085773667502109095/00017 6085773667502109095/00052 6085773667502109095/00016 6085773667502109095/00011 6085773667502109095/00027 6085773667502109095/00067 6085773667502109095/00034 6085773667502109095/00002 6085773667502109095/00008 6085773667502109095/00040 6085773667502109095/00025 6085773667502109095/00074 6085773667502109095/00004 6315405811839181004/00029 6315405811839181004/00003 6315405811839181004/00006 6315405811839181004/00046 6315405811839181004/00009 6315405811839181004/00010 6315405811839181004/00033 6315405811839181004/00053 6315405811839181004/00030 6315405811839181004/00031 6315405811839181004/00022 6315405811839181004/00026 6315405811839181004/00044 6315405811839181004/00050 6315405811839181004/00036 6315405811839181004/00045 6315405811839181004/00049 6315405811839181004/00023 6315405811839181004/00018 6315405811839181004/00042 6315405811839181004/00012 6315405811839181004/00041 6315405811839181004/00021 6315405811839181004/00037 6315405811839181004/00047 6315405811839181004/00035 6315405811839181004/00051 6315405811839181004/00052 6315405811839181004/00019 6315405811839181004/00011 6315405811839181004/00027 6315405811839181004/00034 6315405811839181004/00002 6315405811839181004/00008 6315405811839181004/00007 6315405811839181004/00054 6315405811839181004/00043 6315405811839181004/00005 6315405811839181004/00004 6343252661930009508/00006 6343252661930009508/00032 6343252661930009508/00113 6343252661930009508/00073 6343252661930009508/00030 6343252661930009508/00121 6343252661930009508/00094 6343252661930009508/00117 6343252661930009508/00061 6343252661930009508/00021 6343252661930009508/00020 6343252661930009508/00035 6343252661930009508/00051 6343252661930009508/00055 6343252661930009508/00095 6343252661930009508/00111 6343252661930009508/00067 6343252661930009508/00092 6343252661930009508/00008 6261629385319443193/00003 6261629385319443193/00010 6261629385319443193/00001 6261629385319443193/00012 6261629385319443193/00011 6261629385319443193/00008 6261629385319443193/00007 6261629385319443193/00005 6261629385319443193/00004 6252286542960445791/00003 6252286542960445791/00009 6252286542960445791/00013 6252286542960445791/00012 6252286542960445791/00014 6252286542960445791/00007 6252286542960445791/00004 6017061062583311696/00060 6017061062583311696/00029 6017061062583311696/00015 6017061062583311696/00006 6017061062583311696/00046 6017061062583311696/00032 6017061062583311696/00010 6017061062583311696/00033 6017061062583311696/00057 6017061062583311696/00024 6017061062583311696/00053 6017061062583311696/00030 6017061062583311696/00058 6017061062583311696/00062 6017061062583311696/00031 6017061062583311696/00013 6017061062583311696/00022 6017061062583311696/00026 6017061062583311696/00050 6017061062583311696/00036 6017061062583311696/00063 6017061062583311696/00045 6017061062583311696/00049 6017061062583311696/00023 6017061062583311696/00038 6017061062583311696/00042 6017061062583311696/00012 6017061062583311696/00061 6017061062583311696/00021 6017061062583311696/00037 6017061062583311696/00047 6017061062583311696/00039 6017061062583311696/00020 6017061062583311696/00035 6017061062583311696/00051 6017061062583311696/00052 6017061062583311696/00016 6017061062583311696/00059 6017061062583311696/00019 6017061062583311696/00011 6017061062583311696/00027 6017061062583311696/00002 6017061062583311696/00008 6017061062583311696/00040 6017061062583311696/00007 6017061062583311696/00025 6017061062583311696/00054 6017061062583311696/00043 6017061062583311696/00004 6017061062583311696/00028 5555098675192919442/00006 5555098675192919442/00009 5555098675192919442/00010 5555098675192919442/00024 5555098675192919442/00030 5555098675192919442/00031 5555098675192919442/00013 5555098675192919442/00023 5555098675192919442/00014 5555098675192919442/00020 5555098675192919442/00019 5555098675192919442/00027 5555098675192919442/00002 5555098675192919442/00007 5555098675192919442/00005 5555098675192919442/00028 6246043807995703594/00015 6246043807995703594/00003 6246043807995703594/00006 6246043807995703594/00010 6246043807995703594/00001 6246043807995703594/00012 6246043807995703594/00014 6246043807995703594/00017 6246043807995703594/00019 6246043807995703594/00011 6246043807995703594/00007 6246043807995703594/00005 6246043807995703594/00004 6046314943829888402/00001 6046314943829888402/00002 6046314943829888402/00005 5970009266358964962/00003 5970009266358964962/00006 5970009266358964962/00046 5970009266358964962/00032 5970009266358964962/00033 5970009266358964962/00013 5970009266358964962/00044 5970009266358964962/00001 5970009266358964962/00049 5970009266358964962/00021 5970009266358964962/00052 5970009266358964962/00002 5970009266358964962/00008 5569273355759889659/00029 5569273355759889659/00015 5569273355759889659/00003 5569273355759889659/00032 5569273355759889659/00024 5569273355759889659/00030 5569273355759889659/00031 5569273355759889659/00022 5569273355759889659/00001 5569273355759889659/00023 5569273355759889659/00018 5569273355759889659/00021 5569273355759889659/00014 5569273355759889659/00017 5569273355759889659/00002 5569273355759889659/00025 5569273355759889659/00005 5569273355759889659/00004 5569273355759889659/00028 6114621674208666253/00015 6114621674208666253/00003 6114621674208666253/00010 6114621674208666253/00021 6114621674208666253/00014 6114621674208666253/00020 6114621674208666253/00017 6040430409137566393/00003 6040430409137566393/00001 6040430409137566393/00005 5944003668878421038/00015 5944003668878421038/00003 5944003668878421038/00006 5944003668878421038/00009 5944003668878421038/00010 5944003668878421038/00013 5944003668878421038/00001 5944003668878421038/00012 5944003668878421038/00014 5944003668878421038/00017 5944003668878421038/00016 5944003668878421038/00007 5944003668878421038/00005 5923910952874190600/00009 5923910952874190600/00010 5923910952874190600/00011 5923910952874190600/00002 5923910952874190600/00007 5923910952874190600/00005 5923910952874190600/00004 6239727629090265682/00015 6239727629090265682/00003 6239727629090265682/00013 6239727629090265682/00021 6239727629090265682/00014 6239727629090265682/00020 6239727629090265682/00017 6239727629090265682/00016 6239727629090265682/00011 6239727629090265682/00002 6239727629090265682/00008 6234169082415713539/00006 6234169082415713539/00009 6234169082415713539/00024 6234169082415713539/00013 6234169082415713539/00022 6234169082415713539/00026 6234169082415713539/00023 6234169082415713539/00018 6234169082415713539/00021 6234169082415713539/00014 6234169082415713539/00020 6234169082415713539/00017 6234169082415713539/00016 6234169082415713539/00011 6234169082415713539/00027 6234169082415713539/00002 6234169082415713539/00008 6234169082415713539/00007 6234169082415713539/00025 6213017227476386439/00003 6213017227476386439/00032 6213017227476386439/00033 6213017227476386439/00013 6213017227476386439/00022 6213017227476386439/00023 6213017227476386439/00018 6213017227476386439/00012 6213017227476386439/00020 6213017227476386439/00019 6213017227476386439/00011 6213017227476386439/00027 6213017227476386439/00008 6092275388864315203/00001 6092275388864315203/00002 6111710974872228608/00001 6097876455715097212/00010 6097876455715097212/00001 6097876455715097212/00012 6097876455715097212/00016 6097876455715097212/00008 6097876455715097212/00004 5713530140317553392/00003 5713530140317553392/00046 5713530140317553392/00009 5713530140317553392/00010 5713530140317553392/00030 5713530140317553392/00031 5713530140317553392/00044 5713530140317553392/00001 5713530140317553392/00038 5713530140317553392/00048 5713530140317553392/00018 5713530140317553392/00042 5713530140317553392/00041 5713530140317553392/00039 5713530140317553392/00035 5713530140317553392/00011 5713530140317553392/00034 5713530140317553392/00043 5713530140317553392/00004 6226279656989778188/00001 6226279656989778188/00002 6226279656989778188/00008 6226279656989778188/00007 5869376894123413630/00006 5869376894123413630/00009 5869376894123413630/00010 5869376894123413630/00024 5869376894123413630/00001 5869376894123413630/00023 5869376894123413630/00012 5869376894123413630/00021 5869376894123413630/00014 5869376894123413630/00020 5869376894123413630/00017 5869376894123413630/00019 5869376894123413630/00011 5869376894123413630/00002 5869376894123413630/00008 5869376894123413630/00005 5941390610775469756/00060 5941390610775469756/00015 5941390610775469756/00056 5941390610775469756/00070 5941390610775469756/00073 5941390610775469756/00057 5941390610775469756/00024 5941390610775469756/00053 5941390610775469756/00022 5941390610775469756/00044 5941390610775469756/00036 5941390610775469756/00066 5941390610775469756/00072 5941390610775469756/00023 5941390610775469756/00048 5941390610775469756/00041 5941390610775469756/00061 5941390610775469756/00047 5941390610775469756/00020 5941390610775469756/00055 5941390610775469756/00059 5941390610775469756/00067 5941390610775469756/00008 5941390610775469756/00007 5941390610775469756/00043 6051100396391031519/00015 6051100396391031519/00003 6051100396391031519/00009 6051100396391031519/00001 6051100396391031519/00016 6051100396391031519/00019 6051100396391031519/00011 6051100396391031519/00008 6051100396391031519/00007 6051100396391031519/00004 6363948391212041701/00004 5969956438261157881/00003 5969956438261157881/00002 5969956438261157881/00008 5969956438261157881/00005 5969956438261157881/00004 5946860251626900397/00003 5946860251626900397/00006 5946860251626900397/00010 5946860251626900397/00018 5946860251626900397/00014 5946860251626900397/00008 5946860251626900397/00004 6223817352239624350/00029 6223817352239624350/00006 6223817352239624350/00026 6223817352239624350/00020 6223817352239624350/00016 6223817352239624350/00019 6223817352239624350/00027 6223817352239624350/00034 6223817352239624350/00007 6223817352239624350/00004 6223817352239624350/00028 5710962179371273442/00003 5710962179371273442/00006 5710962179371273442/00009 5710962179371273442/00002 5710962179371273442/00007 5954700714425765123/00003 5954700714425765123/00006 5954700714425765123/00001 5954700714425765123/00005 5954700714425765123/00004 6094995391652879450/00149 6094995391652879450/00125 6094995391652879450/00029 6094995391652879450/00015 6094995391652879450/00003 6094995391652879450/00006 6094995391652879450/00140 6094995391652879450/00098 6094995391652879450/00056 6094995391652879450/00032 6094995391652879450/00128 6094995391652879450/00163 6094995391652879450/00113 6094995391652879450/00109 6094995391652879450/00159 6094995391652879450/00073 6094995391652879450/00033 6094995391652879450/00057 6094995391652879450/00141 6094995391652879450/00118 6094995391652879450/00116 6094995391652879450/00071 6094995391652879450/00058 6094995391652879450/00121 6094995391652879450/00062 6094995391652879450/00167 6094995391652879450/00086 6094995391652879450/00165 6094995391652879450/00094 6094995391652879450/00026 6094995391652879450/00093 6094995391652879450/00166 6094995391652879450/00103 6094995391652879450/00117 6094995391652879450/00064 6094995391652879450/00049 6094995391652879450/00157 6094995391652879450/00154 6094995391652879450/00023 6094995391652879450/00088 6094995391652879450/00048 6094995391652879450/00108 6094995391652879450/00042 6094995391652879450/00041 6094995391652879450/00126 6094995391652879450/00065 6094995391652879450/00083 6094995391652879450/00075 6094995391652879450/00079 6094995391652879450/00160 6094995391652879450/00127 6094995391652879450/00101 6094995391652879450/00047 6094995391652879450/00124 6094995391652879450/00020 6094995391652879450/00051 6094995391652879450/00052 6094995391652879450/00055 6094995391652879450/00111 6094995391652879450/00027 6094995391652879450/00067 6094995391652879450/00153 6094995391652879450/00034 6094995391652879450/00081 6094995391652879450/00082 6094995391652879450/00133 6094995391652879450/00008 6094995391652879450/00068 6094995391652879450/00132 6094995391652879450/00025 6094995391652879450/00156 6094995391652879450/00139 6094995391652879450/00028 6076416651620577194/00006 6076416651620577194/00009 6076416651620577194/00012 6076416651620577194/00014 6076416651620577194/00019 5536915501648559593/00001 5536915501648559593/00002 6357353898425821669/00030 6357353898425821669/00042 6357353898425821669/00021 6357353898425821669/00020 6357353898425821669/00040 6357353898425821669/00007 6357353898425821669/00043 6251610085611389562/00003 6251610085611389562/00006 6251610085611389562/00001 6251610085611389562/00004 6149109402602100125/00029 6149109402602100125/00032 6149109402602100125/00030 6149109402602100125/00031 6149109402602100125/00022 6149109402602100125/00018 6149109402602100125/00020 6149109402602100125/00019 6149109402602100125/00002 6149109402602100125/00025 6149864457852804213/00003 6149864457852804213/00009 6149864457852804213/00010 6149864457852804213/00022 6149864457852804213/00001 6149864457852804213/00018 6149864457852804213/00012 6149864457852804213/00021 6149864457852804213/00014 6149864457852804213/00020 6149864457852804213/00016 6149864457852804213/00011 6149864457852804213/00002 6149864457852804213/00008 6149864457852804213/00007 6149864457852804213/00005 6149864457852804213/00004 6127246301078545774/00018 6127246301078545774/00020 6127246301078545774/00019 6127246301078545774/00002 6127246301078545774/00025 5989631683574616055/00015 5989631683574616055/00006 5989631683574616055/00009 5989631683574616055/00001 5989631683574616055/00012 5989631683574616055/00014 5989631683574616055/00011 5989631683574616055/00008 5989631683574616055/00007 5989631683574616055/00005 6148061860078606843/00046 6148061860078606843/00009 6148061860078606843/00010 6148061860078606843/00033 6148061860078606843/00031 6148061860078606843/00044 6148061860078606843/00036 6148061860078606843/00001 6148061860078606843/00045 6148061860078606843/00049 6148061860078606843/00023 6148061860078606843/00038 6148061860078606843/00042 6148061860078606843/00012 6148061860078606843/00041 6148061860078606843/00037 6148061860078606843/00047 6148061860078606843/00039 6148061860078606843/00017 6148061860078606843/00016 6148061860078606843/00011 6148061860078606843/00027 6148061860078606843/00002 6148061860078606843/00008 6148061860078606843/00040 6148061860078606843/00007 6103562562918283228/00003 6103562562918283228/00006 6250400193324104423/00006 6250400193324104423/00001 6250400193324104423/00002 6250400193324104423/00007 6250400193324104423/00004 6237896684532003355/00003 6237896684532003355/00006 6237896684532003355/00001 6076457883306621063/00060 6076457883306621063/00015 6076457883306621063/00107 6076457883306621063/00109 6076457883306621063/00073 6076457883306621063/00057 6076457883306621063/00053 6076457883306621063/00118 6076457883306621063/00078 6076457883306621063/00071 6076457883306621063/00121 6076457883306621063/00062 6076457883306621063/00086 6076457883306621063/00069 6076457883306621063/00026 6076457883306621063/00103 6076457883306621063/00050 6076457883306621063/00105 6076457883306621063/00064 6076457883306621063/00049 6076457883306621063/00038 6076457883306621063/00085 6076457883306621063/00075 6076457883306621063/00080 6076457883306621063/00119 6076457883306621063/00081 6076457883306621063/00106 6076457883306621063/00089 6076457883306621063/00040 6076457883306621063/00068 6076457883306621063/00043 5544628403918724157/00003 5544628403918724157/00006 5544628403918724157/00009 5544628403918724157/00013 5544628403918724157/00001 5544628403918724157/00021 5544628403918724157/00011 5544628403918724157/00008 5544628403918724157/00007 5963647990296791053/00015 5963647990296791053/00003 5963647990296791053/00006 5963647990296791053/00009 5963647990296791053/00010 5963647990296791053/00026 5963647990296791053/00001 5963647990296791053/00018 5963647990296791053/00012 5963647990296791053/00021 5963647990296791053/00020 5963647990296791053/00017 5963647990296791053/00016 5963647990296791053/00019 5963647990296791053/00002 5963647990296791053/00008 5963647990296791053/00007 5963647990296791053/00025 5963647990296791053/00005 5963647990296791053/00028 6369986256236764320/00003 6369986256236764320/00006 6369986256236764320/00031 6369986256236764320/00022 6369986256236764320/00026 6369986256236764320/00018 6369986256236764320/00042 6369986256236764320/00041 6369986256236764320/00008 6369986256236764320/00025 6369986256236764320/00005 6351636867458114391/00010 6351636867458114391/00033 6351636867458114391/00037 6351636867458114391/00002 6351636867458114391/00040 6351636867458114391/00005 6351636867458114391/00004 5965163254758822214/00006 5965163254758822214/00046 5965163254758822214/00073 5965163254758822214/00010 5965163254758822214/00033 5965163254758822214/00057 5965163254758822214/00062 5965163254758822214/00031 5965163254758822214/00013 5965163254758822214/00069 5965163254758822214/00094 5965163254758822214/00044 5965163254758822214/00077 5965163254758822214/00050 5965163254758822214/00036 5965163254758822214/00063 5965163254758822214/00045 5965163254758822214/00023 5965163254758822214/00042 5965163254758822214/00012 5965163254758822214/00041 5965163254758822214/00075 5965163254758822214/00104 5965163254758822214/00101 5965163254758822214/00035 5965163254758822214/00051 5965163254758822214/00095 5965163254758822214/00059 5965163254758822214/00019 5965163254758822214/00084 5965163254758822214/00092 5965163254758822214/00008 5965163254758822214/00025 5965163254758822214/00005 6117219270429289878/00015 6117219270429289878/00019 6226929056044870474/00060 6226929056044870474/00015 6226929056044870474/00056 6226929056044870474/00032 6226929056044870474/00010 6226929056044870474/00033 6226929056044870474/00024 6226929056044870474/00030 6226929056044870474/00058 6226929056044870474/00062 6226929056044870474/00031 6226929056044870474/00013 6226929056044870474/00044 6226929056044870474/00050 6226929056044870474/00036 6226929056044870474/00063 6226929056044870474/00001 6226929056044870474/00045 6226929056044870474/00023 6226929056044870474/00048 6226929056044870474/00042 6226929056044870474/00041 6226929056044870474/00061 6226929056044870474/00037 6226929056044870474/00047 6226929056044870474/00039 6226929056044870474/00020 6226929056044870474/00051 6226929056044870474/00019 6226929056044870474/00027 6226929056044870474/00034 6226929056044870474/00002 6226929056044870474/00008 6226929056044870474/00040 6226929056044870474/00007 6226929056044870474/00054 6226929056044870474/00005 6226929056044870474/00004 6226929056044870474/00028 5941212799129413819/00060 5941212799129413819/00029 5941212799129413819/00015 5941212799129413819/00003 5941212799129413819/00098 5941212799129413819/00046 5941212799129413819/00107 5941212799129413819/00056 5941212799129413819/00070 5941212799129413819/00009 5941212799129413819/00090 5941212799129413819/00073 5941212799129413819/00033 5941212799129413819/00057 5941212799129413819/00024 5941212799129413819/00053 5941212799129413819/00078 5941212799129413819/00030 5941212799129413819/00071 5941212799129413819/00058 5941212799129413819/00086 5941212799129413819/00069 5941212799129413819/00022 5941212799129413819/00094 5941212799129413819/00099 5941212799129413819/00077 5941212799129413819/00103 5941212799129413819/00050 5941212799129413819/00105 5941212799129413819/00063 5941212799129413819/00110 5941212799129413819/00001 5941212799129413819/00045 5941212799129413819/00066 5941212799129413819/00064 5941212799129413819/00023 5941212799129413819/00038 5941212799129413819/00088 5941212799129413819/00048 5941212799129413819/00108 5941212799129413819/00018 5941212799129413819/00085 5941212799129413819/00012 5941212799129413819/00041 5941212799129413819/00065 5941212799129413819/00061 5941212799129413819/00083 5941212799129413819/00021 5941212799129413819/00014 5941212799129413819/00101 5941212799129413819/00039 5941212799129413819/00020 5941212799129413819/00035 5941212799129413819/00017 5941212799129413819/00052 5941212799129413819/00016 5941212799129413819/00095 5941212799129413819/00059 5941212799129413819/00019 5941212799129413819/00011 5941212799129413819/00027 5941212799129413819/00067 5941212799129413819/00034 5941212799129413819/00081 5941212799129413819/00082 5941212799129413819/00002 5941212799129413819/00106 5941212799129413819/00089 5941212799129413819/00008 5941212799129413819/00040 5941212799129413819/00007 5941212799129413819/00102 5941212799129413819/00068 5941212799129413819/00097 5941212799129413819/00054 5941212799129413819/00043 5941212799129413819/00074 5941212799129413819/00004 6257493331813454873/00029 6257493331813454873/00003 6257493331813454873/00010 6257493331813454873/00013 6257493331813454873/00026 6257493331813454873/00023 6257493331813454873/00018 6257493331813454873/00021 6257493331813454873/00014 6257493331813454873/00020 6257493331813454873/00017 6257493331813454873/00019 6257493331813454873/00011 6257493331813454873/00027 6257493331813454873/00002 6257493331813454873/00008 6257493331813454873/00007 6218189227094230392/00006 6218189227094230392/00009 6218189227094230392/00010 6218189227094230392/00013 6218189227094230392/00022 6218189227094230392/00001 6218189227094230392/00012 6218189227094230392/00021 6218189227094230392/00017 6218189227094230392/00016 6218189227094230392/00011 6218189227094230392/00007 6218189227094230392/00028 6215931792283516867/00003 6215931792283516867/00009 6215931792283516867/00024 6215931792283516867/00030 6215931792283516867/00031 6215931792283516867/00013 6215931792283516867/00022 6215931792283516867/00036 6215931792283516867/00023 6215931792283516867/00018 6215931792283516867/00021 6215931792283516867/00014 6215931792283516867/00020 6215931792283516867/00017 6215931792283516867/00016 6215931792283516867/00019 6215931792283516867/00034 6215931792283516867/00008 6215931792283516867/00040 6215931792283516867/00007 6215931792283516867/00025 6215931792283516867/00005 5985031773470172340/00003 5985031773470172340/00001 5985031773470172340/00002 5985031773470172340/00008 5985031773470172340/00004 5975909262933420011/00015 5975909262933420011/00003 5975909262933420011/00006 5975909262933420011/00032 5975909262933420011/00009 5975909262933420011/00010 5975909262933420011/00024 5975909262933420011/00031 5975909262933420011/00013 5975909262933420011/00026 5975909262933420011/00036 5975909262933420011/00001 5975909262933420011/00023 5975909262933420011/00038 5975909262933420011/00018 5975909262933420011/00012 5975909262933420011/00021 5975909262933420011/00014 5975909262933420011/00037 5975909262933420011/00039 5975909262933420011/00020 5975909262933420011/00035 5975909262933420011/00016 5975909262933420011/00019 5975909262933420011/00011 5975909262933420011/00034 5975909262933420011/00002 5975909262933420011/00008 5975909262933420011/00025 5975909262933420011/00005 5975909262933420011/00028 6095738850491884556/00015 6095738850491884556/00006 6095738850491884556/00013 6095738850491884556/00018 6095738850491884556/00012 6095738850491884556/00014 6095738850491884556/00016 6095738850491884556/00008 6095738850491884556/00007 6095738850491884556/00004 6227126195043819856/00015 6227126195043819856/00006 6227126195043819856/00009 6227126195043819856/00013 6227126195043819856/00001 6227126195043819856/00018 6227126195043819856/00017 6227126195043819856/00016 6227126195043819856/00019 6227126195043819856/00002 6227126195043819856/00004 6313656042293295351/00003 6313656042293295351/00009 6313656042293295351/00001 6313656042293295351/00018 6313656042293295351/00012 6313656042293295351/00014 6313656042293295351/00016 6313656042293295351/00008 6313656042293295351/00007 6313656042293295351/00004 6105092000772387251/00003 6105092000772387251/00006 6105092000772387251/00012 6105092000772387251/00011 6176241140507654875/00003 6176241140507654875/00001 6176241140507654875/00018 6176241140507654875/00014 6176241140507654875/00019 6176241140507654875/00002 6176241140507654875/00004 5941434419441951036/00006 5941434419441951036/00009 5941434419441951036/00001 5941434419441951036/00011 5941434419441951036/00002 5941434419441951036/00007 5941434419441951036/00005 5941434419441951036/00004 6001432965083360032/00003 6001432965083360032/00001 6001432965083360032/00002 5693869068526681544/00009 5693869068526681544/00010 5693869068526681544/00001 5693869068526681544/00012 5693869068526681544/00014 5693869068526681544/00011 5693869068526681544/00002 5693869068526681544/00008 5693869068526681544/00007 5883331242868129547/00003 5883331242868129547/00009 5883331242868129547/00024 5883331242868129547/00022 5883331242868129547/00001 5883331242868129547/00021 5883331242868129547/00020 5883331242868129547/00017 5883331242868129547/00016 5883331242868129547/00019 5883331242868129547/00011 5883331242868129547/00002 5883331242868129547/00007 5883331242868129547/00025 5883331242868129547/00005 5949227208103821121/00001 5949227208103821121/00002 5949227208103821121/00005 5949227208103821121/00004 6150570550476266645/00015 6150570550476266645/00003 6150570550476266645/00006 6150570550476266645/00046 6150570550476266645/00056 6150570550476266645/00009 6150570550476266645/00033 6150570550476266645/00057 6150570550476266645/00024 6150570550476266645/00053 6150570550476266645/00031 6150570550476266645/00013 6150570550476266645/00022 6150570550476266645/00026 6150570550476266645/00050 6150570550476266645/00036 6150570550476266645/00001 6150570550476266645/00045 6150570550476266645/00049 6150570550476266645/00023 6150570550476266645/00048 6150570550476266645/00018 6150570550476266645/00012 6150570550476266645/00017 6150570550476266645/00055 6150570550476266645/00016 6150570550476266645/00019 6150570550476266645/00011 6150570550476266645/00002 6150570550476266645/00008 6150570550476266645/00025 6150570550476266645/00054 6150570550476266645/00005 6150570550476266645/00028 6096492617382738688/00001 6096492617382738688/00002 6234184544428471564/00060 6234184544428471564/00029 6234184544428471564/00015 6234184544428471564/00107 6234184544428471564/00113 6234184544428471564/00109 6234184544428471564/00070 6234184544428471564/00009 6234184544428471564/00073 6234184544428471564/00112 6234184544428471564/00033 6234184544428471564/00024 6234184544428471564/00053 6234184544428471564/00078 6234184544428471564/00071 6234184544428471564/00058 6234184544428471564/00062 6234184544428471564/00031 6234184544428471564/00013 6234184544428471564/00022 6234184544428471564/00096 6234184544428471564/00094 6234184544428471564/00026 6234184544428471564/00044 6234184544428471564/00099 6234184544428471564/00077 6234184544428471564/00093 6234184544428471564/00103 6234184544428471564/00050 6234184544428471564/00105 6234184544428471564/00036 6234184544428471564/00063 6234184544428471564/00001 6234184544428471564/00045 6234184544428471564/00066 6234184544428471564/00064 6234184544428471564/00038 6234184544428471564/00088 6234184544428471564/00048 6234184544428471564/00108 6234184544428471564/00085 6234184544428471564/00012 6234184544428471564/00041 6234184544428471564/00065 6234184544428471564/00061 6234184544428471564/00083 6234184544428471564/00021 6234184544428471564/00079 6234184544428471564/00101 6234184544428471564/00047 6234184544428471564/00039 6234184544428471564/00020 6234184544428471564/00051 6234184544428471564/00017 6234184544428471564/00076 6234184544428471564/00080 6234184544428471564/00052 6234184544428471564/00091 6234184544428471564/00055 6234184544428471564/00016 6234184544428471564/00111 6234184544428471564/00011 6234184544428471564/00084 6234184544428471564/00027 6234184544428471564/00067 6234184544428471564/00081 6234184544428471564/00082 6234184544428471564/00100 6234184544428471564/00106 6234184544428471564/00089 6234184544428471564/00092 6234184544428471564/00008 6234184544428471564/00040 6234184544428471564/00102 6234184544428471564/00068 6234184544428471564/00097 6234184544428471564/00025 6234184544428471564/00043 6234184544428471564/00005 6234184544428471564/00074 6234184544428471564/00004 6234184544428471564/00028 5974365651687235724/00029 5974365651687235724/00024 5974365651687235724/00030 5974365651687235724/00031 5974365651687235724/00013 5974365651687235724/00022 5974365651687235724/00044 5974365651687235724/00036 5974365651687235724/00023 5974365651687235724/00012 5974365651687235724/00041 5974365651687235724/00037 5974365651687235724/00052 5974365651687235724/00027 5974365651687235724/00034 5974365651687235724/00005 5974365651687235724/00028 6202769865004848037/00006 6202769865004848037/00009 6202769865004848037/00033 6202769865004848037/00031 6202769865004848037/00013 6202769865004848037/00022 6202769865004848037/00050 6202769865004848037/00036 6202769865004848037/00001 6202769865004848037/00045 6202769865004848037/00023 6202769865004848037/00048 6202769865004848037/00018 6202769865004848037/00042 6202769865004848037/00021 6202769865004848037/00014 6202769865004848037/00037 6202769865004848037/00035 6202769865004848037/00051 6202769865004848037/00017 6202769865004848037/00016 6202769865004848037/00011 6202769865004848037/00007 6202769865004848037/00005 6202769865004848037/00004 6202769865004848037/00028 6169801266544093076/00003 6169801266544093076/00006 6169801266544093076/00032 6169801266544093076/00010 6169801266544093076/00024 6169801266544093076/00022 6169801266544093076/00026 6169801266544093076/00050 6169801266544093076/00045 6169801266544093076/00049 6169801266544093076/00023 6169801266544093076/00018 6169801266544093076/00042 6169801266544093076/00039 6169801266544093076/00035 6169801266544093076/00017 6169801266544093076/00016 6169801266544093076/00034 6169801266544093076/00040 6169801266544093076/00043 6169801266544093076/00005 6115066203323803776/00003 6115066203323803776/00033 6115066203323803776/00024 6115066203323803776/00035 6115066203323803776/00034 6115066203323803776/00002 6115066203323803776/00007 6115066203323803776/00005 6078958842763146773/00003 6078958842763146773/00010 6078958842763146773/00024 6078958842763146773/00022 6078958842763146773/00026 6078958842763146773/00018 6078958842763146773/00012 6078958842763146773/00021 6078958842763146773/00020 6078958842763146773/00017 6078958842763146773/00019 6078958842763146773/00027 6078958842763146773/00002 6078958842763146773/00007 6078958842763146773/00005 6078958842763146773/00004 6078958842763146773/00028 6327941532886024424/00006 6327941532886024424/00001 6327941532886024424/00002 6164018522576757375/00015 6164018522576757375/00006 6164018522576757375/00009 6164018522576757375/00010 6164018522576757375/00013 6164018522576757375/00021 6164018522576757375/00016 6164018522576757375/00019 6164018522576757375/00007 6164018522576757375/00005 6164018522576757375/00004 6239379736739226711/00060 6239379736739226711/00029 6239379736739226711/00006 6239379736739226711/00070 6239379736739226711/00009 6239379736739226711/00073 6239379736739226711/00030 6239379736739226711/00071 6239379736739226711/00086 6239379736739226711/00069 6239379736739226711/00044 6239379736739226711/00077 6239379736739226711/00063 6239379736739226711/00038 6239379736739226711/00042 6239379736739226711/00012 6239379736739226711/00041 6239379736739226711/00083 6239379736739226711/00075 6239379736739226711/00014 6239379736739226711/00039 6239379736739226711/00076 6239379736739226711/00084 6239379736739226711/00067 6239379736739226711/00034 6239379736739226711/00081 6239379736739226711/00008 6239379736739226711/00087 6239379736739226711/00040 6239379736739226711/00068 6239379736739226711/00054 6239379736739226711/00043 6239379736739226711/00004 6239379736739226711/00028 6383993433079191521/00008 5663385967640050709/00001 5912778397642980929/00029 5912778397642980929/00015 5912778397642980929/00003 5912778397642980929/00006 5912778397642980929/00009 5912778397642980929/00010 5912778397642980929/00024 5912778397642980929/00030 5912778397642980929/00031 5912778397642980929/00001 5912778397642980929/00012 5912778397642980929/00021 5912778397642980929/00014 5912778397642980929/00016 5912778397642980929/00027 5912778397642980929/00002 5912778397642980929/00008 5912778397642980929/00025 5912778397642980929/00005 5912778397642980929/00028 6095360034376377355/00009 6095360034376377355/00001 6095360034376377355/00012 6095360034376377355/00014 6095360034376377355/00019 6095360034376377355/00002 6095360034376377355/00004 6120972642349273878/00003 6120972642349273878/00012 6120972642349273878/00002 5975507253994516655/00015 5975507253994516655/00003 5975507253994516655/00010 5975507253994516655/00001 5975507253994516655/00018 5975507253994516655/00012 5975507253994516655/00007 5975507253994516655/00004 6092681263273854039/00003 6092681263273854039/00006 6092681263273854039/00010 6092681263273854039/00018 6092681263273854039/00012 6092681263273854039/00021 6092681263273854039/00014 6092681263273854039/00020 6092681263273854039/00017 6092681263273854039/00016 6092681263273854039/00019 6092681263273854039/00002 6092681263273854039/00007 6092681263273854039/00005 6092681263273854039/00004 6351810813633601326/00006 6351810813633601326/00013 6351810813633601326/00001 6351810813633601326/00014 6351810813633601326/00020 6351810813633601326/00016 6351810813633601326/00002 6351810813633601326/00007 5928756964474340806/00003 5928756964474340806/00006 5928756964474340806/00007 5928756964474340806/00005 5928756964474340806/00004 6074401452965293845/00006 6074401452965293845/00009 6074401452965293845/00007 6074401452965293845/00004 6096542868370334952/00003 6096542868370334952/00002 6257153170403549003/00009 6257153170403549003/00033 6257153170403549003/00030 6257153170403549003/00031 6257153170403549003/00022 6257153170403549003/00038 6257153170403549003/00018 6257153170403549003/00042 6257153170403549003/00012 6257153170403549003/00041 6257153170403549003/00021 6257153170403549003/00014 6257153170403549003/00039 6257153170403549003/00020 6257153170403549003/00035 6257153170403549003/00016 6257153170403549003/00027 6257153170403549003/00002 6257153170403549003/00004 5571662216569927372/00001 5571662216569927372/00007 5571662216569927372/00005 5571662216569927372/00004 5998506803864589933/00003 5998506803864589933/00009 5998506803864589933/00001 5998506803864589933/00012 5998506803864589933/00002 5998506803864589933/00007 5998506803864589933/00004 6166832585149095289/00060 6166832585149095289/00015 6166832585149095289/00056 6166832585149095289/00090 6166832585149095289/00073 6166832585149095289/00024 6166832585149095289/00118 6166832585149095289/00078 6166832585149095289/00058 6166832585149095289/00062 6166832585149095289/00069 6166832585149095289/00026 6166832585149095289/00044 6166832585149095289/00099 6166832585149095289/00036 6166832585149095289/00110 6166832585149095289/00001 6166832585149095289/00049 6166832585149095289/00072 6166832585149095289/00108 6166832585149095289/00018 6166832585149095289/00085 6166832585149095289/00041 6166832585149095289/00065 6166832585149095289/00061 6166832585149095289/00021 6166832585149095289/00014 6166832585149095289/00037 6166832585149095289/00039 6166832585149095289/00035 6166832585149095289/00051 6166832585149095289/00017 6166832585149095289/00080 6166832585149095289/00091 6166832585149095289/00055 6166832585149095289/00016 6166832585149095289/00095 6166832585149095289/00119 6166832585149095289/00084 6166832585149095289/00067 6166832585149095289/00115 6166832585149095289/00034 6166832585149095289/00082 6166832585149095289/00002 6166832585149095289/00106 6166832585149095289/00089 6166832585149095289/00008 6166832585149095289/00087 6166832585149095289/00040 6166832585149095289/00097 6166832585149095289/00054 6166832585149095289/00005 6166832585149095289/00004 6166832585149095289/00028 5946407991570661288/00029 5946407991570661288/00003 5946407991570661288/00056 5946407991570661288/00032 5946407991570661288/00113 5946407991570661288/00109 5946407991570661288/00090 5946407991570661288/00073 5946407991570661288/00024 5946407991570661288/00053 5946407991570661288/00116 5946407991570661288/00078 5946407991570661288/00030 5946407991570661288/00058 5946407991570661288/00121 5946407991570661288/00022 5946407991570661288/00096 5946407991570661288/00094 5946407991570661288/00026 5946407991570661288/00099 5946407991570661288/00077 5946407991570661288/00093 5946407991570661288/00120 5946407991570661288/00103 5946407991570661288/00050 5946407991570661288/00105 5946407991570661288/00117 5946407991570661288/00063 5946407991570661288/00001 5946407991570661288/00066 5946407991570661288/00049 5946407991570661288/00072 5946407991570661288/00088 5946407991570661288/00048 5946407991570661288/00042 5946407991570661288/00041 5946407991570661288/00065 5946407991570661288/00061 5946407991570661288/00021 5946407991570661288/00104 5946407991570661288/00079 5946407991570661288/00014 5946407991570661288/00047 5946407991570661288/00020 5946407991570661288/00080 5946407991570661288/00052 5946407991570661288/00091 5946407991570661288/00095 5946407991570661288/00111 5946407991570661288/00011 5946407991570661288/00084 5946407991570661288/00027 5946407991570661288/00081 5946407991570661288/00082 5946407991570661288/00100 5946407991570661288/00106 5946407991570661288/00089 5946407991570661288/00092 5946407991570661288/00008 5946407991570661288/00087 5946407991570661288/00040 5946407991570661288/00102 5946407991570661288/00025 5946407991570661288/00005 5946407991570661288/00074 5946407991570661288/00028 6216690713004657292/00015 6216690713004657292/00003 6216690713004657292/00010 6216690713004657292/00013 6216690713004657292/00001 6216690713004657292/00023 6216690713004657292/00018 6216690713004657292/00014 6216690713004657292/00020 6216690713004657292/00016 6216690713004657292/00011 6216690713004657292/00008 6216690713004657292/00007 6216690713004657292/00004 6091946823866234970/00001 6091946823866234970/00005 6336917155541276097/00022 6336917155541276097/00037 6336917155541276097/00007 6336917155541276097/00005 6336917155541276097/00004 6202398779830473612/00015 6202398779830473612/00006 6202398779830473612/00046 6202398779830473612/00032 6202398779830473612/00013 6202398779830473612/00001 6202398779830473612/00049 6202398779830473612/00023 6202398779830473612/00048 6202398779830473612/00018 6202398779830473612/00042 6202398779830473612/00041 6202398779830473612/00014 6202398779830473612/00039 6202398779830473612/00020 6202398779830473612/00019 6202398779830473612/00027 6202398779830473612/00034 6202398779830473612/00002 6202398779830473612/00068 6202398779830473612/00004 6202398779830473612/00028 5957621721683829319/00009 5957621721683829319/00010 5957621721683829319/00011 5957621721683829319/00002 5957621721683829319/00007 6006299592526433230/00003 6006299592526433230/00009 6006299592526433230/00010 6006299592526433230/00024 6006299592526433230/00022 6006299592526433230/00001 6006299592526433230/00018 6006299592526433230/00012 6006299592526433230/00021 6006299592526433230/00014 6006299592526433230/00020 6006299592526433230/00017 6006299592526433230/00016 6006299592526433230/00019 6006299592526433230/00002 6006299592526433230/00007 6006299592526433230/00005 6006299592526433230/00004 6244203844136582320/00015 6244203844136582320/00003 6244203844136582320/00022 6244203844136582320/00001 6244203844136582320/00012 6244203844136582320/00021 6244203844136582320/00014 6244203844136582320/00020 6244203844136582320/00016 6244203844136582320/00011 6244203844136582320/00002 6244203844136582320/00008 6368111503012125648/00018 6368111503012125648/00051 6368111503012125648/00025 6368111503012125648/00004 6155267097214379931/00060 6155267097214379931/00029 6155267097214379931/00015 6155267097214379931/00032 6155267097214379931/00009 6155267097214379931/00057 6155267097214379931/00030 6155267097214379931/00013 6155267097214379931/00026 6155267097214379931/00044 6155267097214379931/00050 6155267097214379931/00063 6155267097214379931/00066 6155267097214379931/00049 6155267097214379931/00038 6155267097214379931/00048 6155267097214379931/00042 6155267097214379931/00041 6155267097214379931/00021 6155267097214379931/00014 6155267097214379931/00047 6155267097214379931/00035 6155267097214379931/00051 6155267097214379931/00055 6155267097214379931/00019 6155267097214379931/00034 6155267097214379931/00008 6155267097214379931/00043 6155267097214379931/00005 6155267097214379931/00028 6139511439185779655/00009 6139511439185779655/00010 6139511439185779655/00001 6139511439185779655/00012 6139511439185779655/00017 6139511439185779655/00016 6139511439185779655/00011 6139511439185779655/00007 6139511439185779655/00005 6119407126769938356/00003 6119407126769938356/00009 6119407126769938356/00010 6119407126769938356/00013 6119407126769938356/00012 6119407126769938356/00014 6119407126769938356/00016 6119407126769938356/00011 6119407126769938356/00005 5587325103304994842/00009 5587325103304994842/00010 5587325103304994842/00013 5587325103304994842/00001 5587325103304994842/00012 5587325103304994842/00011 5587325103304994842/00008 6037826370466003867/00003 6037826370466003867/00006 6037826370466003867/00001 6037826370466003867/00002 6037826370466003867/00008 6037826370466003867/00005 6037826370466003867/00004 5691248279482636221/00015 5691248279482636221/00006 5691248279482636221/00010 5691248279482636221/00024 5691248279482636221/00022 5691248279482636221/00001 5691248279482636221/00023 5691248279482636221/00018 5691248279482636221/00021 5691248279482636221/00017 5691248279482636221/00019 5691248279482636221/00027 5691248279482636221/00002 5691248279482636221/00007 5691248279482636221/00025 5691248279482636221/00005 5973033352832720088/00006 5973033352832720088/00009 5973033352832720088/00010 5973033352832720088/00001 5973033352832720088/00011 5973033352832720088/00005 5982565603248803498/00003 5982565603248803498/00001 5982565603248803498/00002 5982565603248803498/00005 6065302135382448125/00003 6065302135382448125/00002 6065302135382448125/00004 6244188382123832795/00015 6244188382123832795/00032 6244188382123832795/00010 6244188382123832795/00033 6244188382123832795/00030 6244188382123832795/00038 6244188382123832795/00018 6244188382123832795/00012 6244188382123832795/00021 6244188382123832795/00039 6244188382123832795/00035 6244188382123832795/00016 6244188382123832795/00002 6244188382123832795/00040 6134988838623116859/00029 6134988838623116859/00003 6134988838623116859/00006 6134988838623116859/00024 6134988838623116859/00018 6134988838623116859/00012 6134988838623116859/00021 6134988838623116859/00014 6134988838623116859/00020 6134988838623116859/00017 6134988838623116859/00019 6134988838623116859/00011 6134988838623116859/00027 6134988838623116859/00002 6134988838623116859/00007 6134988838623116859/00005 6134988838623116859/00004 6134988838623116859/00028 5994011261595932033/00003 5994011261595932033/00006 5994011261595932033/00009 5994011261595932033/00001 5994011261595932033/00002 5994011261595932033/00008 5994011261595932033/00007 6013292228781058874/00003 6013292228781058874/00006 6013292228781058874/00010 6013292228781058874/00013 6013292228781058874/00022 6013292228781058874/00001 6013292228781058874/00018 6013292228781058874/00012 6013292228781058874/00014 6013292228781058874/00017 6013292228781058874/00007 6013292228781058874/00005 6013292228781058874/00004 6098715262828006127/00002 6166028567271216255/00029 6166028567271216255/00015 6166028567271216255/00046 6166028567271216255/00032 6166028567271216255/00009 6166028567271216255/00024 6166028567271216255/00044 6166028567271216255/00023 6166028567271216255/00048 6166028567271216255/00042 6166028567271216255/00047 6166028567271216255/00035 6166028567271216255/00017 6166028567271216255/00016 6166028567271216255/00019 6166028567271216255/00002 6166028567271216255/00025 6166028567271216255/00043 6213662761061037956/00006 6213662761061037956/00001 6213662761061037956/00002 5926122002038176664/00029 5926122002038176664/00015 5926122002038176664/00006 5926122002038176664/00046 5926122002038176664/00009 5926122002038176664/00010 5926122002038176664/00024 5926122002038176664/00031 5926122002038176664/00013 5926122002038176664/00044 5926122002038176664/00050 5926122002038176664/00036 5926122002038176664/00001 5926122002038176664/00049 5926122002038176664/00023 5926122002038176664/00038 5926122002038176664/00048 5926122002038176664/00018 5926122002038176664/00042 5926122002038176664/00012 5926122002038176664/00041 5926122002038176664/00047 5926122002038176664/00039 5926122002038176664/00020 5926122002038176664/00035 5926122002038176664/00017 5926122002038176664/00016 5926122002038176664/00019 5926122002038176664/00011 5926122002038176664/00027 5926122002038176664/00002 5926122002038176664/00007 5926122002038176664/00025 5926122002038176664/00005 5926122002038176664/00004 5859017433005545514/00006 5859017433005545514/00009 5859017433005545514/00010 5859017433005545514/00014 5859017433005545514/00016 5859017433005545514/00002 5859017433005545514/00008 5859017433005545514/00007 5989149788113519527/00015 5989149788113519527/00006 5989149788113519527/00009 5989149788113519527/00012 5989149788113519527/00016 5989149788113519527/00019 5989149788113519527/00011 5989149788113519527/00008 5989149788113519527/00005 5989149788113519527/00004 6214845595054356438/00060 6214845595054356438/00015 6214845595054356438/00056 6214845595054356438/00032 6214845595054356438/00009 6214845595054356438/00010 6214845595054356438/00033 6214845595054356438/00053 6214845595054356438/00030 6214845595054356438/00058 6214845595054356438/00062 6214845595054356438/00031 6214845595054356438/00013 6214845595054356438/00044 6214845595054356438/00050 6214845595054356438/00036 6214845595054356438/00063 6214845595054356438/00045 6214845595054356438/00064 6214845595054356438/00018 6214845595054356438/00042 6214845595054356438/00012 6214845595054356438/00041 6214845595054356438/00065 6214845595054356438/00014 6214845595054356438/00047 6214845595054356438/00020 6214845595054356438/00051 6214845595054356438/00052 6214845595054356438/00055 6214845595054356438/00016 6214845595054356438/00059 6214845595054356438/00011 6214845595054356438/00027 6214845595054356438/00067 6214845595054356438/00034 6214845595054356438/00002 6214845595054356438/00007 6214845595054356438/00068 6214845595054356438/00025 6214845595054356438/00054 6214845595054356438/00043 6214845595054356438/00005 6214845595054356438/00004 6214845595054356438/00028 5698329821560288465/00003 5698329821560288465/00006 5698329821560288465/00010 5698329821560288465/00012 5698329821560288465/00021 5698329821560288465/00016 5698329821560288465/00011 5698329821560288465/00007 5698329821560288465/00005 6202982466016484390/00015 6202982466016484390/00006 6202982466016484390/00009 6202982466016484390/00010 6202982466016484390/00013 6202982466016484390/00018 6202982466016484390/00014 6202982466016484390/00016 6202982466016484390/00019 6202982466016484390/00002 6202982466016484390/00007 6202982466016484390/00004 5691286934188298910/00003 5691286934188298910/00002 5691286934188298910/00007 5691286934188298910/00005 5860778799093633220/00015 5860778799093633220/00018 5860778799093633220/00016 5860778799093633220/00007 6356201988197034394/00031 6356201988197034394/00026 6356201988197034394/00044 6356201988197034394/00018 6356201988197034394/00034 6356201988197034394/00007 5940595612328976341/00011 5940595612328976341/00005 5940595612328976341/00004 6366259942610819561/00025 6366259942610819561/00005 5963602893140182120/00015 5963602893140182120/00046 5963602893140182120/00009 5963602893140182120/00024 5963602893140182120/00031 5963602893140182120/00022 5963602893140182120/00044 5963602893140182120/00001 5963602893140182120/00023 5963602893140182120/00038 5963602893140182120/00014 5963602893140182120/00039 5963602893140182120/00017 5963602893140182120/00016 5963602893140182120/00034 5963602893140182120/00005 6035576666596412318/00006 6035576666596412318/00009 6035576666596412318/00010 6035576666596412318/00014 6035576666596412318/00016 6035576666596412318/00002 6035576666596412318/00007 6035576666596412318/00005 5972434204894288165/00009 5972434204894288165/00010 5972434204894288165/00024 5972434204894288165/00023 5972434204894288165/00018 5972434204894288165/00020 5972434204894288165/00004 6229337244207802529/00007 6229337244207802529/00005 5715020923465995537/00003 5715020923465995537/00006 5715020923465995537/00009 5715020923465995537/00013 5715020923465995537/00001 5715020923465995537/00012 5715020923465995537/00014 5715020923465995537/00017 5715020923465995537/00011 5715020923465995537/00008 5715020923465995537/00005 5715020923465995537/00004 6264226981540067468/00029 6264226981540067468/00015 6264226981540067468/00003 6264226981540067468/00006 6264226981540067468/00032 6264226981540067468/00009 6264226981540067468/00010 6264226981540067468/00033 6264226981540067468/00024 6264226981540067468/00030 6264226981540067468/00031 6264226981540067468/00013 6264226981540067468/00022 6264226981540067468/00026 6264226981540067468/00036 6264226981540067468/00001 6264226981540067468/00023 6264226981540067468/00038 6264226981540067468/00042 6264226981540067468/00012 6264226981540067468/00041 6264226981540067468/00021 6264226981540067468/00014 6264226981540067468/00037 6264226981540067468/00020 6264226981540067468/00035 6264226981540067468/00019 6264226981540067468/00011 6264226981540067468/00027 6264226981540067468/00034 6264226981540067468/00002 6264226981540067468/00008 6264226981540067468/00040 6264226981540067468/00007 6264226981540067468/00025 6264226981540067468/00004 6264226981540067468/00028 6371462865993190004/00012 6131687726759406681/00003 6131687726759406681/00006 6131687726759406681/00009 6131687726759406681/00010 6131687726759406681/00024 6131687726759406681/00013 6131687726759406681/00026 6131687726759406681/00023 6131687726759406681/00018 6131687726759406681/00012 6131687726759406681/00021 6131687726759406681/00014 6131687726759406681/00020 6131687726759406681/00017 6131687726759406681/00019 6131687726759406681/00027 6131687726759406681/00002 6131687726759406681/00008 6131687726759406681/00007 6131687726759406681/00025 6131687726759406681/00005 6131687726759406681/00004 6131687726759406681/00028 5873103207749426948/00003 5873103207749426948/00006 5873103207749426948/00009 5873103207749426948/00001 5873103207749426948/00008 6248625942334124748/00015 6248625942334124748/00003 6248625942334124748/00032 6248625942334124748/00030 6248625942334124748/00031 6248625942334124748/00022 6248625942334124748/00012 6248625942334124748/00021 6248625942334124748/00014 6248625942334124748/00020 6248625942334124748/00019 6248625942334124748/00002 6248625942334124748/00008 6248625942334124748/00025 6248625942334124748/00004 6248625942334124748/00028 6228595073859053674/00015 6228595073859053674/00003 6228595073859053674/00006 6228595073859053674/00009 6228595073859053674/00010 6228595073859053674/00014 6228595073859053674/00011 6228595073859053674/00002 6208177658457727210/00006 6208177658457727210/00010 6208177658457727210/00013 6208177658457727210/00001 6208177658457727210/00007 6101942930750952198/00003 6101942930750952198/00009 6101942930750952198/00007 6101942930750952198/00005 6337230258657094880/00029 5568071194413739140/00015 5568071194413739140/00010 5568071194413739140/00024 5568071194413739140/00001 5568071194413739140/00023 5568071194413739140/00018 5568071194413739140/00021 5568071194413739140/00020 5568071194413739140/00017 5568071194413739140/00019 5568071194413739140/00011 5568071194413739140/00027 5568071194413739140/00002 5568071194413739140/00008 5568071194413739140/00007 5568071194413739140/00005 6073094924044313551/00009 6073094924044313551/00001 6050172683455818432/00015 6050172683455818432/00006 6050172683455818432/00009 6050172683455818432/00010 6050172683455818432/00024 6050172683455818432/00030 6050172683455818432/00013 6050172683455818432/00022 6050172683455818432/00026 6050172683455818432/00001 6050172683455818432/00023 6050172683455818432/00018 6050172683455818432/00020 6050172683455818432/00017 6050172683455818432/00019 6050172683455818432/00011 6050172683455818432/00027 6050172683455818432/00002 6050172683455818432/00008 6050172683455818432/00007 6050172683455818432/00025 6050172683455818432/00004 6050172683455818432/00028 6256782085229174589/00010 6256782085229174589/00033 6256782085229174589/00024 6256782085229174589/00013 6256782085229174589/00012 6256782085229174589/00039 6256782085229174589/00052 6256782085229174589/00011 6256782085229174589/00040 6256782085229174589/00025 6256782085229174589/00043 6256782085229174589/00005 6253741248383668547/00003 6253741248383668547/00006 6253741248383668547/00001 6253741248383668547/00002 6253741248383668547/00007 6253741248383668547/00005 6253741248383668547/00004 6134613887978151380/00015 6134613887978151380/00003 6134613887978151380/00006 6134613887978151380/00032 6134613887978151380/00013 6134613887978151380/00022 6134613887978151380/00023 6134613887978151380/00012 6134613887978151380/00014 6134613887978151380/00037 6134613887978151380/00020 6134613887978151380/00035 6134613887978151380/00017 6134613887978151380/00016 6134613887978151380/00011 6134613887978151380/00002 6134613887978151380/00008 6134613887978151380/00025 6134613887978151380/00005 6134613887978151380/00004 6048116253113768240/00001 6239750821913601121/00029 6239750821913601121/00015 6239750821913601121/00056 6239750821913601121/00032 6239750821913601121/00057 6239750821913601121/00024 6239750821913601121/00030 6239750821913601121/00031 6239750821913601121/00022 6239750821913601121/00026 6239750821913601121/00044 6239750821913601121/00001 6239750821913601121/00045 6239750821913601121/00049 6239750821913601121/00023 6239750821913601121/00038 6239750821913601121/00014 6239750821913601121/00037 6239750821913601121/00047 6239750821913601121/00011 6239750821913601121/00027 6239750821913601121/00025 6239750821913601121/00054 6239750821913601121/00004 6250110283031561626/00003 6250110283031561626/00009 6250110283031561626/00010 6250110283031561626/00012 6250110283031561626/00002 5943563005233788560/00015 5943563005233788560/00013 5943563005233788560/00001 5943563005233788560/00012 5943563005233788560/00016 5943563005233788560/00011 5943563005233788560/00008 5943563005233788560/00007 5943563005233788560/00005 5986589558108432370/00006 5986589558108432370/00009 5986589558108432370/00001 5986589558108432370/00012 5986589558108432370/00011 5986589558108432370/00002 5986589558108432370/00008 5986589558108432370/00004 5994463521652136519/00060 5994463521652136519/00029 5994463521652136519/00015 5994463521652136519/00006 5994463521652136519/00046 5994463521652136519/00056 5994463521652136519/00032 5994463521652136519/00009 5994463521652136519/00010 5994463521652136519/00033 5994463521652136519/00057 5994463521652136519/00024 5994463521652136519/00053 5994463521652136519/00058 5994463521652136519/00031 5994463521652136519/00013 5994463521652136519/00022 5994463521652136519/00026 5994463521652136519/00044 5994463521652136519/00050 5994463521652136519/00036 5994463521652136519/00045 5994463521652136519/00049 5994463521652136519/00023 5994463521652136519/00038 5994463521652136519/00018 5994463521652136519/00014 5994463521652136519/00047 5994463521652136519/00039 5994463521652136519/00020 5994463521652136519/00035 5994463521652136519/00051 5994463521652136519/00017 5994463521652136519/00052 5994463521652136519/00055 5994463521652136519/00016 5994463521652136519/00059 5994463521652136519/00019 5994463521652136519/00011 5994463521652136519/00027 5994463521652136519/00002 5994463521652136519/00008 5994463521652136519/00040 5994463521652136519/00007 5994463521652136519/00025 5994463521652136519/00054 5994463521652136519/00005 5994463521652136519/00004 5995197961190233380/00029 5995197961190233380/00003 5995197961190233380/00006 5995197961190233380/00032 5995197961190233380/00009 5995197961190233380/00010 5995197961190233380/00024 5995197961190233380/00031 5995197961190233380/00022 5995197961190233380/00026 5995197961190233380/00001 5995197961190233380/00023 5995197961190233380/00018 5995197961190233380/00012 5995197961190233380/00021 5995197961190233380/00014 5995197961190233380/00016 5995197961190233380/00019 5995197961190233380/00011 5995197961190233380/00027 5995197961190233380/00002 5995197961190233380/00008 5995197961190233380/00007 5995197961190233380/00025 5995197961190233380/00005 5995197961190233380/00004 5995197961190233380/00028 6026330461001545469/00003 6026330461001545469/00004 6119778211944312883/00029 6119778211944312883/00015 6119778211944312883/00006 6119778211944312883/00032 6119778211944312883/00009 6119778211944312883/00010 6119778211944312883/00024 6119778211944312883/00030 6119778211944312883/00013 6119778211944312883/00022 6119778211944312883/00023 6119778211944312883/00012 6119778211944312883/00020 6119778211944312883/00017 6119778211944312883/00016 6119778211944312883/00019 6119778211944312883/00027 6119778211944312883/00007 6119778211944312883/00005 6119778211944312883/00028 6002526893253718481/00006 6002526893253718481/00024 6002526893253718481/00030 6002526893253718481/00013 6002526893253718481/00022 6002526893253718481/00026 6002526893253718481/00018 6002526893253718481/00014 6002526893253718481/00017 6002526893253718481/00011 6002526893253718481/00027 6002526893253718481/00002 6002526893253718481/00025 6106886867605294393/00006 6106886867605294393/00056 6106886867605294393/00009 6106886867605294393/00010 6106886867605294393/00057 6106886867605294393/00024 6106886867605294393/00053 6106886867605294393/00022 6106886867605294393/00026 6106886867605294393/00023 6106886867605294393/00041 6106886867605294393/00061 6106886867605294393/00014 6106886867605294393/00035 6106886867605294393/00017 6106886867605294393/00055 6106886867605294393/00059 6106886867605294393/00011 6106886867605294393/00027 6106886867605294393/00008 6106886867605294393/00040 6106886867605294393/00007 6106886867605294393/00054 6106886867605294393/00043 6106886867605294393/00005 6106886867605294393/00028 6375181448678076214/00002 6080771748458761670/00003 6080771748458761670/00009 6080771748458761670/00010 6080771748458761670/00018 6080771748458761670/00021 6080771748458761670/00014 6080771748458761670/00027 6080771748458761670/00002 6080771748458761670/00007 6076361246542521589/00012 6076361246542521589/00014 6076361246542521589/00002 6076361246542521589/00005 6076361246542521589/00004 6003269063602467289/00006 6003269063602467289/00001 6003269063602467289/00014 6003269063602467289/00020 6003269063602467289/00017 6003269063602467289/00016 6003269063602467289/00019 6003269063602467289/00011 6003269063602467289/00008 6003269063602467289/00007 6003269063602467289/00004 6234911252764553546/00002 6234911252764553546/00004 5643355099164953039/00029 5643355099164953039/00015 5643355099164953039/00032 5643355099164953039/00009 5643355099164953039/00010 5643355099164953039/00033 5643355099164953039/00024 5643355099164953039/00030 5643355099164953039/00031 5643355099164953039/00013 5643355099164953039/00022 5643355099164953039/00026 5643355099164953039/00036 5643355099164953039/00001 5643355099164953039/00023 5643355099164953039/00018 5643355099164953039/00021 5643355099164953039/00014 5643355099164953039/00037 5643355099164953039/00020 5643355099164953039/00035 5643355099164953039/00017 5643355099164953039/00016 5643355099164953039/00019 5643355099164953039/00027 5643355099164953039/00034 5643355099164953039/00002 5643355099164953039/00008 5643355099164953039/00007 5643355099164953039/00025 5643355099164953039/00004 6127667637370286637/00029 6127667637370286637/00006 6127667637370286637/00046 6127667637370286637/00032 6127667637370286637/00009 6127667637370286637/00024 6127667637370286637/00026 6127667637370286637/00050 6127667637370286637/00036 6127667637370286637/00001 6127667637370286637/00045 6127667637370286637/00049 6127667637370286637/00048 6127667637370286637/00018 6127667637370286637/00042 6127667637370286637/00041 6127667637370286637/00047 6127667637370286637/00020 6127667637370286637/00017 6127667637370286637/00016 6127667637370286637/00019 6127667637370286637/00027 6127667637370286637/00040 6127667637370286637/00007 6127667637370286637/00025 6127667637370286637/00054 6127667637370286637/00028 6378795663657663776/00003 6378795663657663776/00006 6378795663657663776/00004 5939442413610002071/00029 5939442413610002071/00003 5939442413610002071/00033 5939442413610002071/00030 5939442413610002071/00031 5939442413610002071/00044 5939442413610002071/00036 5939442413610002071/00001 5939442413610002071/00023 5939442413610002071/00038 5939442413610002071/00018 5939442413610002071/00042 5939442413610002071/00012 5939442413610002071/00014 5939442413610002071/00037 5939442413610002071/00047 5939442413610002071/00039 5939442413610002071/00035 5939442413610002071/00027 5939442413610002071/00040 5939442413610002071/00025 5939442413610002071/00043 5939442413610002071/00005 5939442413610002071/00004 5939442413610002071/00028 6114583019503065736/00003 6114583019503065736/00006 6114583019503065736/00010 6114583019503065736/00012 6114583019503065736/00002 6114583019503065736/00005 6351714176869448803/00010 6351714176869448803/00001 6351714176869448803/00004 6240898866802309834/00029 6240898866802309834/00003 6240898866802309834/00006 6240898866802309834/00032 6240898866802309834/00009 6240898866802309834/00010 6240898866802309834/00033 6240898866802309834/00024 6240898866802309834/00013 6240898866802309834/00022 6240898866802309834/00026 6240898866802309834/00036 6240898866802309834/00001 6240898866802309834/00023 6240898866802309834/00018 6240898866802309834/00012 6240898866802309834/00021 6240898866802309834/00014 6240898866802309834/00037 6240898866802309834/00020 6240898866802309834/00035 6240898866802309834/00017 6240898866802309834/00016 6240898866802309834/00019 6240898866802309834/00011 6240898866802309834/00034 6240898866802309834/00002 6240898866802309834/00008 6240898866802309834/00007 6240898866802309834/00025 6240898866802309834/00005 6240898866802309834/00004 6240898866802309834/00028 5690863020916184999/00006 5690863020916184999/00009 5690863020916184999/00010 5690863020916184999/00001 5690863020916184999/00002 5690863020916184999/00004 5966203066341182911/00009 5966203066341182911/00010 5966203066341182911/00024 5966203066341182911/00013 5966203066341182911/00026 5966203066341182911/00018 5966203066341182911/00014 5966203066341182911/00017 5966203066341182911/00019 5966203066341182911/00002 5966203066341182911/00007 5966203066341182911/00028 5656312156503537004/00060 5656312156503537004/00029 5656312156503537004/00015 5656312156503537004/00003 5656312156503537004/00056 5656312156503537004/00032 5656312156503537004/00073 5656312156503537004/00010 5656312156503537004/00024 5656312156503537004/00053 5656312156503537004/00078 5656312156503537004/00030 5656312156503537004/00058 5656312156503537004/00062 5656312156503537004/00031 5656312156503537004/00069 5656312156503537004/00026 5656312156503537004/00044 5656312156503537004/00077 5656312156503537004/00036 5656312156503537004/00001 5656312156503537004/00066 5656312156503537004/00049 5656312156503537004/00072 5656312156503537004/00048 5656312156503537004/00085 5656312156503537004/00042 5656312156503537004/00041 5656312156503537004/00065 5656312156503537004/00061 5656312156503537004/00021 5656312156503537004/00075 5656312156503537004/00079 5656312156503537004/00037 5656312156503537004/00047 5656312156503537004/00039 5656312156503537004/00020 5656312156503537004/00051 5656312156503537004/00076 5656312156503537004/00080 5656312156503537004/00016 5656312156503537004/00019 5656312156503537004/00084 5656312156503537004/00027 5656312156503537004/00034 5656312156503537004/00081 5656312156503537004/00082 5656312156503537004/00002 5656312156503537004/00040 5656312156503537004/00007 5656312156503537004/00068 5656312156503537004/00025 5656312156503537004/00054 5656312156503537004/00043 5656312156503537004/00005 5656312156503537004/00074 5656312156503537004/00004 5656312156503537004/00028 6374083655037216420/00004 5975544620210053721/00004 5917402788930555245/00060 5917402788930555245/00015 5917402788930555245/00003 5917402788930555245/00006 5917402788930555245/00056 5917402788930555245/00032 5917402788930555245/00113 5917402788930555245/00009 5917402788930555245/00112 5917402788930555245/00010 5917402788930555245/00033 5917402788930555245/00057 5917402788930555245/00053 5917402788930555245/00078 5917402788930555245/00030 5917402788930555245/00071 5917402788930555245/00058 5917402788930555245/00062 5917402788930555245/00013 5917402788930555245/00022 5917402788930555245/00096 5917402788930555245/00094 5917402788930555245/00026 5917402788930555245/00093 5917402788930555245/00050 5917402788930555245/00045 5917402788930555245/00064 5917402788930555245/00048 5917402788930555245/00108 5917402788930555245/00085 5917402788930555245/00083 5917402788930555245/00021 5917402788930555245/00104 5917402788930555245/00047 5917402788930555245/00051 5917402788930555245/00052 5917402788930555245/00055 5917402788930555245/00095 5917402788930555245/00011 5917402788930555245/00119 5917402788930555245/00084 5917402788930555245/00027 5917402788930555245/00115 5917402788930555245/00034 5917402788930555245/00081 5917402788930555245/00082 5917402788930555245/00100 5917402788930555245/00092 5917402788930555245/00087 5917402788930555245/00040 5917402788930555245/00007 5917402788930555245/00102 5917402788930555245/00068 5917402788930555245/00097 5917402788930555245/00025 5917402788930555245/00054 5917402788930555245/00043 5917402788930555245/00005 5917402788930555245/00074 5917402788930555245/00004 5917402788930555245/00028 5871959028461862698/00029 5871959028461862698/00015 5871959028461862698/00003 5871959028461862698/00006 5871959028461862698/00009 5871959028461862698/00010 5871959028461862698/00033 5871959028461862698/00031 5871959028461862698/00013 5871959028461862698/00022 5871959028461862698/00036 5871959028461862698/00001 5871959028461862698/00018 5871959028461862698/00012 5871959028461862698/00021 5871959028461862698/00014 5871959028461862698/00037 5871959028461862698/00020 5871959028461862698/00035 5871959028461862698/00017 5871959028461862698/00016 5871959028461862698/00019 5871959028461862698/00011 5871959028461862698/00002 5871959028461862698/00007 5871959028461862698/00004 5867044726881712737/00029 5867044726881712737/00003 5867044726881712737/00009 5867044726881712737/00010 5867044726881712737/00033 5867044726881712737/00024 5867044726881712737/00030 5867044726881712737/00031 5867044726881712737/00013 5867044726881712737/00022 5867044726881712737/00026 5867044726881712737/00036 5867044726881712737/00023 5867044726881712737/00018 5867044726881712737/00012 5867044726881712737/00021 5867044726881712737/00014 5867044726881712737/00037 5867044726881712737/00039 5867044726881712737/00017 5867044726881712737/00019 5867044726881712737/00011 5867044726881712737/00027 5867044726881712737/00034 5867044726881712737/00002 5867044726881712737/00007 5867044726881712737/00025 5867044726881712737/00028 6353932956974555090/00007 6213017227476449094/00009 6213017227476449094/00013 6213017227476449094/00001 6213017227476449094/00014 6213017227476449094/00020 6213017227476449094/00017 6213017227476449094/00016 6213017227476449094/00019 6213017227476449094/00002 6213017227476449094/00007 6246028346113502065/00003 6246028346113502065/00012 6246028346113502065/00011 6246028346113502065/00002 6246028346113502065/00008 6246028346113502065/00007 6246028346113502065/00004 5586205405330927614/00003 5586205405330927614/00001 5586205405330927614/00004 6375516456127164915/00006 6375516456127164915/00014 6375516456127164915/00004 6218931397442979251/00009 6218931397442979251/00010 6218931397442979251/00013 6218931397442979251/00026 6218931397442979251/00001 6218931397442979251/00012 6218931397442979251/00020 6218931397442979251/00011 6218931397442979251/00008 6218931397442979251/00007 6218931397442979251/00005 6329835613463566698/00015 6329835613463566698/00024 6329835613463566698/00022 6329835613463566698/00026 6329835613463566698/00001 6329835613463566698/00023 6329835613463566698/00018 6329835613463566698/00021 6329835613463566698/00014 6329835613463566698/00020 6329835613463566698/00017 6329835613463566698/00011 6329835613463566698/00027 6329835613463566698/00002 6329835613463566698/00007 6329835613463566698/00025 6329835613463566698/00005 6347195441777342774/00194 6347195441777342774/00098 6347195441777342774/00010 6347195441777342774/00130 6347195441777342774/00188 6347195441777342774/00103 6347195441777342774/00105 6347195441777342774/00036 6347195441777342774/00180 6347195441777342774/00023 6347195441777342774/00129 6347195441777342774/00083 6347195441777342774/00160 6347195441777342774/00052 6347195441777342774/00139 6347195441777342774/00054 6347195441777342774/00074 5680019087487259747/00015 5680019087487259747/00003 5680019087487259747/00006 5680019087487259747/00010 5680019087487259747/00024 5680019087487259747/00023 5680019087487259747/00018 5680019087487259747/00012 5680019087487259747/00021 5680019087487259747/00017 5680019087487259747/00019 5680019087487259747/00011 5680019087487259747/00005 5680019087487259747/00004 6214138213940707009/00003 6214138213940707009/00006 6214138213940707009/00010 6214138213940707009/00001 6214138213940707009/00012 6214138213940707009/00011 6214138213940707009/00008 6214138213940707009/00007 6285378836479394950/00006 6285378836479394950/00001 6285378836479394950/00005 6285378836479394950/00004 6127288821254837887/00006 6127288821254837887/00009 6127288821254837887/00013 6127288821254837887/00012 6127288821254837887/00011 6127288821254837887/00005 6210330725432798883/00015 6210330725432798883/00003 6210330725432798883/00006 6210330725432798883/00013 6210330725432798883/00022 6210330725432798883/00001 6210330725432798883/00023 6210330725432798883/00020 6210330725432798883/00019 6210330725432798883/00008 6210330725432798883/00005 6210330725432798883/00004 5990397046616993057/00003 5990397046616993057/00004 5992905737013938957/00015 5992905737013938957/00003 5992905737013938957/00006 5992905737013938957/00098 5992905737013938957/00046 5992905737013938957/00107 5992905737013938957/00056 5992905737013938957/00032 5992905737013938957/00113 5992905737013938957/00109 5992905737013938957/00070 5992905737013938957/00073 5992905737013938957/00010 5992905737013938957/00057 5992905737013938957/00053 5992905737013938957/00071 5992905737013938957/00031 5992905737013938957/00086 5992905737013938957/00013 5992905737013938957/00069 5992905737013938957/00022 5992905737013938957/00096 5992905737013938957/00094 5992905737013938957/00044 5992905737013938957/00077 5992905737013938957/00103 5992905737013938957/00050 5992905737013938957/00105 5992905737013938957/00036 5992905737013938957/00063 5992905737013938957/00110 5992905737013938957/00066 5992905737013938957/00064 5992905737013938957/00072 5992905737013938957/00023 5992905737013938957/00038 5992905737013938957/00088 5992905737013938957/00108 5992905737013938957/00018 5992905737013938957/00085 5992905737013938957/00012 5992905737013938957/00041 5992905737013938957/00083 5992905737013938957/00021 5992905737013938957/00075 5992905737013938957/00104 5992905737013938957/00037 5992905737013938957/00101 5992905737013938957/00039 5992905737013938957/00035 5992905737013938957/00017 5992905737013938957/00076 5992905737013938957/00080 5992905737013938957/00055 5992905737013938957/00016 5992905737013938957/00111 5992905737013938957/00019 5992905737013938957/00011 5992905737013938957/00084 5992905737013938957/00027 5992905737013938957/00067 5992905737013938957/00034 5992905737013938957/00081 5992905737013938957/00082 5992905737013938957/00002 5992905737013938957/00089 5992905737013938957/00092 5992905737013938957/00040 5992905737013938957/00007 5992905737013938957/00068 5992905737013938957/00097 5992905737013938957/00025 5992905737013938957/00043 5992905737013938957/00005 5992905737013938957/00074 6251239000436952414/00015 6251239000436952414/00006 6251239000436952414/00001 6251239000436952414/00018 6251239000436952414/00012 6251239000436952414/00017 6251239000436952414/00016 6251239000436952414/00019 6251239000436952414/00011 6251239000436952414/00008 6251239000436952414/00007 6251239000436952414/00005 6251239000436952414/00004 5691619364657010634/00009 5691619364657010634/00010 5691619364657010634/00013 5691619364657010634/00001 5691619364657010634/00018 5691619364657010634/00012 5691619364657010634/00014 5691619364657010634/00020 5691619364657010634/00008 6381853250875656673/00019 6381853250875656673/00027 5977335621572421710/00010 5977335621572421710/00007 5977335621572421710/00005 5977335621572421710/00004 6015518739827306440/00015 6015518739827306440/00003 6015518739827306440/00006 6015518739827306440/00009 6015518739827306440/00013 6015518739827306440/00022 6015518739827306440/00001 6015518739827306440/00023 6015518739827306440/00012 6015518739827306440/00021 6015518739827306440/00016 6015518739827306440/00019 6015518739827306440/00011 6015518739827306440/00008 6015518739827306440/00007 6015518739827306440/00005 6015518739827306440/00004 5857080832251776605/00006 5857080832251776605/00009 5857080832251776605/00010 5857080832251776605/00013 5857080832251776605/00011 5857080832251776605/00002 5857080832251776605/00008 5857080832251776605/00007 5857080832251776605/00005 6153983760986336672/00003 6153983760986336672/00006 6153983760986336672/00008 6153983760986336672/00005 6153983760986336672/00004 6022650533023043591/00060 6022650533023043591/00029 6022650533023043591/00003 6022650533023043591/00006 6022650533023043591/00056 6022650533023043591/00070 6022650533023043591/00057 6022650533023043591/00030 6022650533023043591/00031 6022650533023043591/00013 6022650533023043591/00069 6022650533023043591/00026 6022650533023043591/00049 6022650533023043591/00048 6022650533023043591/00065 6022650533023043591/00021 6022650533023043591/00014 6022650533023043591/00039 6022650533023043591/00020 6022650533023043591/00051 6022650533023043591/00052 6022650533023043591/00016 6022650533023043591/00059 6022650533023043591/00027 6022650533023043591/00067 5548411411113039571/00001 5548411411113039571/00002 5548411411113039571/00005 5548411411113039571/00004 6090810375519713283/00015 6090810375519713283/00006 6090810375519713283/00010 6090810375519713283/00013 6090810375519713283/00012 6090810375519713283/00014 6090810375519713283/00005 6090810375519713283/00004 5625996559341423918/00001 6252298139372210135/00060 6252298139372210135/00029 6252298139372210135/00015 6252298139372210135/00046 6252298139372210135/00056 6252298139372210135/00009 6252298139372210135/00010 6252298139372210135/00033 6252298139372210135/00057 6252298139372210135/00053 6252298139372210135/00030 6252298139372210135/00058 6252298139372210135/00031 6252298139372210135/00013 6252298139372210135/00044 6252298139372210135/00036 6252298139372210135/00001 6252298139372210135/00038 6252298139372210135/00042 6252298139372210135/00012 6252298139372210135/00014 6252298139372210135/00037 6252298139372210135/00047 6252298139372210135/00039 6252298139372210135/00020 6252298139372210135/00035 6252298139372210135/00051 6252298139372210135/00017 6252298139372210135/00059 6252298139372210135/00019 6252298139372210135/00011 6252298139372210135/00040 6252298139372210135/00054 6252298139372210135/00043 6252298139372210135/00005 6252298139372210135/00004 6158757617135840375/00010 6158757617135840375/00013 6158757617135840375/00023 6158757617135840375/00012 6158757617135840375/00014 6158757617135840375/00020 6158757617135840375/00017 6158757617135840375/00016 6158757617135840375/00011 6158757617135840375/00002 6158757617135840375/00007 6158757617135840375/00005 6158757617135840375/00004 6237851587375375409/00003 6237851587375375409/00010 6237851587375375409/00001 6237851587375375409/00018 6237851587375375409/00012 6237851587375375409/00014 6237851587375375409/00017 6237851587375375409/00011 6237851587375375409/00008 6237851587375375409/00007 6127176722608412895/00015 6127176722608412895/00003 6127176722608412895/00010 6127176722608412895/00001 6127176722608412895/00018 6127176722608412895/00012 6127176722608412895/00017 6127176722608412895/00011 6127176722608412895/00008 6127176722608412895/00007 6127176722608412895/00005 6094173334912483900/00003 6094173334912483900/00008 6094173334912483900/00007 5677145754366232029/00006 5677145754366232029/00024 5677145754366232029/00030 5677145754366232029/00031 5677145754366232029/00001 5677145754366232029/00023 5677145754366232029/00018 5677145754366232029/00020 5677145754366232029/00017 5677145754366232029/00027 5677145754366232029/00002 5677145754366232029/00008 5677145754366232029/00007 5677145754366232029/00005 5677145754366232029/00028 6219325675440753994/00003 6219325675440753994/00001 6219325675440753994/00002 6219325675440753994/00004 5576621615306624475/00006 5576621615306624475/00009 5576621615306624475/00010 5576621615306624475/00011 5576621615306624475/00002 5576621615306624475/00008 5576621615306624475/00007 5576621615306624475/00005 5945406834693962355/00003 5945406834693962355/00010 5945406834693962355/00013 5945406834693962355/00022 5945406834693962355/00001 5945406834693962355/00018 5945406834693962355/00012 5945406834693962355/00021 5945406834693962355/00014 5945406834693962355/00017 5945406834693962355/00019 5945406834693962355/00002 5945406834693962355/00025 5945406834693962355/00005 5945406834693962355/00004 5718716313327480457/00029 5718716313327480457/00003 5718716313327480457/00006 5718716313327480457/00024 5718716313327480457/00030 5718716313327480457/00036 5718716313327480457/00018 5718716313327480457/00012 5718716313327480457/00035 5718716313327480457/00017 5718716313327480457/00016 5718716313327480457/00007 5718716313327480457/00025 5718716313327480457/00005 5718716313327480457/00028 5990679225967691418/00029 5990679225967691418/00046 5990679225967691418/00056 5990679225967691418/00032 5990679225967691418/00009 5990679225967691418/00033 5990679225967691418/00057 5990679225967691418/00030 5990679225967691418/00022 5990679225967691418/00044 5990679225967691418/00036 5990679225967691418/00045 5990679225967691418/00023 5990679225967691418/00018 5990679225967691418/00042 5990679225967691418/00012 5990679225967691418/00021 5990679225967691418/00014 5990679225967691418/00037 5990679225967691418/00047 5990679225967691418/00039 5990679225967691418/00020 5990679225967691418/00017 5990679225967691418/00052 5990679225967691418/00055 5990679225967691418/00016 5990679225967691418/00059 5990679225967691418/00019 5990679225967691418/00002 5990679225967691418/00008 5990679225967691418/00040 5990679225967691418/00007 5990679225967691418/00025 5990679225967691418/00005 5990679225967691418/00004 6353635315740877357/00003 6353635315740877357/00006 5854471639619452240/00003 5854471639619452240/00010 5854471639619452240/00024 5854471639619452240/00030 5854471639619452240/00013 5854471639619452240/00022 5854471639619452240/00001 5854471639619452240/00023 5854471639619452240/00012 5854471639619452240/00021 5854471639619452240/00014 5854471639619452240/00016 5854471639619452240/00019 5854471639619452240/00011 5854471639619452240/00027 5854471639619452240/00002 5854471639619452240/00008 5854471639619452240/00007 5854471639619452240/00005 5854471639619452240/00004 6245681742252650771/00015 6245681742252650771/00006 6245681742252650771/00039 6245681742252650771/00016 6245681742252650771/00019 6245681742252650771/00027 5964374698763338798/00015 5964374698763338798/00003 5964374698763338798/00009 5964374698763338798/00014 5964374698763338798/00017 5964374698763338798/00011 5964374698763338798/00008 5964374698763338798/00007 6082368187802711629/00015 6082368187802711629/00006 6082368187802711629/00010 6082368187802711629/00022 6082368187802711629/00021 6082368187802711629/00014 6082368187802711629/00016 6082368187802711629/00002 6082368187802711629/00008 6082368187802711629/00007 6082368187802711629/00005 5679628674960052101/00029 5679628674960052101/00010 5679628674960052101/00030 5679628674960052101/00036 5679628674960052101/00001 5679628674960052101/00038 5679628674960052101/00020 5679628674960052101/00019 5679628674960052101/00008 5679628674960052101/00040 6129894148416596960/00015 6129894148416596960/00003 6129894148416596960/00010 6129894148416596960/00012 6129894148416596960/00011 6129894148416596960/00002 6129894148416596960/00008 6129894148416596960/00007 6129894148416596960/00005 6128038722544661047/00015 6128038722544661047/00003 6128038722544661047/00046 6128038722544661047/00009 6128038722544661047/00010 6128038722544661047/00031 6128038722544661047/00050 6128038722544661047/00049 6128038722544661047/00018 6128038722544661047/00021 6128038722544661047/00047 6128038722544661047/00008 6128038722544661047/00040 6128038722544661047/00025 6128038722544661047/00004 6128038722544661047/00028 6099712554234137399/00029 6099712554234137399/00003 6099712554234137399/00006 6099712554234137399/00009 6099712554234137399/00010 6099712554234137399/00013 6099712554234137399/00022 6099712554234137399/00001 6099712554234137399/00023 6099712554234137399/00018 6099712554234137399/00012 6099712554234137399/00021 6099712554234137399/00020 6099712554234137399/00016 6099712554234137399/00019 6099712554234137399/00027 6099712554234137399/00034 6099712554234137399/00002 6099712554234137399/00008 6099712554234137399/00007 6099712554234137399/00005 6099712554234137399/00028 6359982418410974886/00003 6359982418410974886/00001 6135444964149858851/00008 6211501963014352066/00015 6211501963014352066/00003 6211501963014352066/00010 6211501963014352066/00024 6211501963014352066/00013 6211501963014352066/00022 6211501963014352066/00001 6211501963014352066/00012 6211501963014352066/00021 6211501963014352066/00020 6211501963014352066/00008 5966245586647891373/00015 5966245586647891373/00006 5966245586647891373/00010 5966245586647891373/00030 5966245586647891373/00013 5966245586647891373/00022 5966245586647891373/00026 5966245586647891373/00036 5966245586647891373/00001 5966245586647891373/00041 5966245586647891373/00021 5966245586647891373/00014 5966245586647891373/00037 5966245586647891373/00039 5966245586647891373/00035 5966245586647891373/00016 5966245586647891373/00019 5966245586647891373/00011 5966245586647891373/00008 5966245586647891373/00040 5966245586647891373/00007 5966245586647891373/00025 5966245586647891373/00005 5966245586647891373/00004 5966245586647891373/00028 5569435705523678468/00015 5569435705523678468/00006 5569435705523678468/00001 5569435705523678468/00012 5569435705523678468/00014 5569435705523678468/00002 5569435705523678468/00005 5569435705523678468/00004 5967699003450380185/00029 5967699003450380185/00015 5967699003450380185/00003 5967699003450380185/00006 5967699003450380185/00010 5967699003450380185/00024 5967699003450380185/00026 5967699003450380185/00001 5967699003450380185/00023 5967699003450380185/00018 5967699003450380185/00021 5967699003450380185/00014 5967699003450380185/00019 5967699003450380185/00011 5967699003450380185/00027 5967699003450380185/00002 5967699003450380185/00025 5967699003450380185/00028 5958808421278136677/00029 5958808421278136677/00015 5958808421278136677/00032 5958808421278136677/00033 5958808421278136677/00024 5958808421278136677/00031 5958808421278136677/00013 5958808421278136677/00022 5958808421278136677/00026 5958808421278136677/00036 5958808421278136677/00001 5958808421278136677/00038 5958808421278136677/00018 5958808421278136677/00012 5958808421278136677/00014 5958808421278136677/00037 5958808421278136677/00039 5958808421278136677/00017 5958808421278136677/00016 5958808421278136677/00019 5958808421278136677/00027 5958808421278136677/00034 5958808421278136677/00002 5958808421278136677/00008 5958808421278136677/00040 5958808421278136677/00007 5958808421278136677/00004 5958808421278136677/00028 6155499025578847086/00006 6155499025578847086/00010 6155499025578847086/00001 6155499025578847086/00023 6155499025578847086/00021 6155499025578847086/00014 6155499025578847086/00020 6155499025578847086/00017 6155499025578847086/00019 6155499025578847086/00002 6155499025578847086/00007 6155499025578847086/00025 6155499025578847086/00005 6044513634545876291/00003 6218622159798381559/00010 6218622159798381559/00017 6218622159798381559/00011 6218622159798381559/00002 6218622159798381559/00008 6218622159798381559/00007 6218622159798381559/00005 6218622159798381559/00028 6023361779606549030/00006 6023361779606549030/00001 6023361779606549030/00005 5986670732990264511/00003 5986670732990264511/00006 5986670732990264511/00046 5986670732990264511/00032 5986670732990264511/00009 5986670732990264511/00024 5986670732990264511/00022 5986670732990264511/00044 5986670732990264511/00036 5986670732990264511/00045 5986670732990264511/00023 5986670732990264511/00038 5986670732990264511/00021 5986670732990264511/00047 5986670732990264511/00039 5986670732990264511/00020 5986670732990264511/00035 5986670732990264511/00017 5986670732990264511/00016 5986670732990264511/00011 5986670732990264511/00027 5986670732990264511/00034 5986670732990264511/00002 5986670732990264511/00040 5986670732990264511/00007 5986670732990264511/00005 5986670732990264511/00004 5986670732990264511/00028 5861429486638980975/00003 5861429486638980975/00006 5861429486638980975/00009 5861429486638980975/00011 5861429486638980975/00002 5861429486638980975/00008 5861429486638980975/00007 6105031441733445767/00006 6105031441733445767/00001 6105031441733445767/00004 6229147836149985269/00029 6229147836149985269/00006 6229147836149985269/00046 6229147836149985269/00010 6229147836149985269/00030 6229147836149985269/00031 6229147836149985269/00026 6229147836149985269/00050 6229147836149985269/00036 6229147836149985269/00001 6229147836149985269/00048 6229147836149985269/00018 6229147836149985269/00012 6229147836149985269/00041 6229147836149985269/00014 6229147836149985269/00037 6229147836149985269/00047 6229147836149985269/00039 6229147836149985269/00020 6229147836149985269/00035 6229147836149985269/00017 6229147836149985269/00052 6229147836149985269/00016 6229147836149985269/00019 6229147836149985269/00027 6229147836149985269/00034 6229147836149985269/00002 6229147836149985269/00008 6229147836149985269/00040 6229147836149985269/00007 6229147836149985269/00005 6229147836149985269/00004 6229147836149985269/00028 6129090130538720903/00006 6129090130538720903/00018 6129090130538720903/00017 6129090130538720903/00008 6129090130538720903/00004 6114559826679667333/00006 6114559826679667333/00009 6114559826679667333/00024 6114559826679667333/00031 6114559826679667333/00013 6114559826679667333/00001 6114559826679667333/00023 6114559826679667333/00018 6114559826679667333/00021 6114559826679667333/00014 6114559826679667333/00020 6114559826679667333/00017 6114559826679667333/00019 6114559826679667333/00027 6114559826679667333/00002 6114559826679667333/00008 6114559826679667333/00007 6114559826679667333/00025 6114559826679667333/00005 6114559826679667333/00028 6204625290876722120/00060 6204625290876722120/00003 6204625290876722120/00056 6204625290876722120/00113 6204625290876722120/00009 6204625290876722120/00090 6204625290876722120/00073 6204625290876722120/00010 6204625290876722120/00033 6204625290876722120/00123 6204625290876722120/00057 6204625290876722120/00024 6204625290876722120/00053 6204625290876722120/00118 6204625290876722120/00030 6204625290876722120/00071 6204625290876722120/00058 6204625290876722120/00062 6204625290876722120/00086 6204625290876722120/00013 6204625290876722120/00022 6204625290876722120/00096 6204625290876722120/00094 6204625290876722120/00026 6204625290876722120/00036 6204625290876722120/00063 6204625290876722120/00110 6204625290876722120/00038 6204625290876722120/00088 6204625290876722120/00018 6204625290876722120/00041 6204625290876722120/00065 6204625290876722120/00061 6204625290876722120/00104 6204625290876722120/00037 6204625290876722120/00039 6204625290876722120/00124 6204625290876722120/00035 6204625290876722120/00051 6204625290876722120/00076 6204625290876722120/00052 6204625290876722120/00055 6204625290876722120/00016 6204625290876722120/00095 6204625290876722120/00119 6204625290876722120/00027 6204625290876722120/00067 6204625290876722120/00115 6204625290876722120/00081 6204625290876722120/00100 6204625290876722120/00002 6204625290876722120/00106 6204625290876722120/00092 6204625290876722120/00087 6204625290876722120/00102 6204625290876722120/00068 6204625290876722120/00025 6204625290876722120/00005 6113204335000986382/00013 6113204335000986382/00012 6113204335000986382/00017 6113204335000986382/00016 6113204335000986382/00002 6113204335000986382/00008 6113204335000986382/00005 6012615771431997583/00003 5972801424598032433/00006 5972801424598032433/00010 5972801424598032433/00023 5972801424598032433/00018 5972801424598032433/00021 5972801424598032433/00020 5972801424598032433/00016 5972801424598032433/00019 5972801424598032433/00011 5972801424598032433/00002 5972801424598032433/00008 5972801424598032433/00005 5972801424598032433/00004 6226320888675819792/00006 6226320888675819792/00009 6226320888675819792/00010 6226320888675819792/00013 6226320888675819792/00001 6226320888675819792/00012 6226320888675819792/00016 6226320888675819792/00008 6226320888675819792/00007 6226320888675819792/00004 6131703188641672284/00003 6131703188641672284/00002 6131703188641672284/00004 5991881387314491641/00029 5991881387314491641/00015 5991881387314491641/00046 5991881387314491641/00032 5991881387314491641/00070 5991881387314491641/00009 5991881387314491641/00073 5991881387314491641/00024 5991881387314491641/00069 5991881387314491641/00077 5991881387314491641/00050 5991881387314491641/00064 5991881387314491641/00023 5991881387314491641/00038 5991881387314491641/00061 5991881387314491641/00021 5991881387314491641/00035 5991881387314491641/00017 5991881387314491641/00076 5991881387314491641/00052 5991881387314491641/00067 5991881387314491641/00034 5991881387314491641/00007 5991881387314491641/00068 5991881387314491641/00025 5991881387314491641/00054 5991881387314491641/00004 5971440779089133573/00029 5971440779089133573/00015 5971440779089133573/00006 5971440779089133573/00046 5971440779089133573/00010 5971440779089133573/00024 5971440779089133573/00030 5971440779089133573/00031 5971440779089133573/00013 5971440779089133573/00022 5971440779089133573/00026 5971440779089133573/00001 5971440779089133573/00023 5971440779089133573/00042 5971440779089133573/00012 5971440779089133573/00014 5971440779089133573/00037 5971440779089133573/00047 5971440779089133573/00039 5971440779089133573/00020 5971440779089133573/00017 5971440779089133573/00016 5971440779089133573/00019 5971440779089133573/00034 5971440779089133573/00002 5971440779089133573/00008 5971440779089133573/00007 5971440779089133573/00043 5971440779089133573/00005 5971440779089133573/00004 6152499420288837276/00006 6152499420288837276/00010 6152499420288837276/00013 6152499420288837276/00023 6152499420288837276/00012 6152499420288837276/00017 6152499420288837276/00016 6152499420288837276/00011 6152499420288837276/00008 6152499420288837276/00005 5589563210762942607/00001 5589563210762942607/00002 5589563210762942607/00005 6381381663466492945/00032 6381381663466492945/00031 6381381663466492945/00005 6219317944499686919/00006 6219317944499686919/00009 6219317944499686919/00033 6219317944499686919/00024 6219317944499686919/00013 6219317944499686919/00022 6219317944499686919/00026 6219317944499686919/00036 6219317944499686919/00001 6219317944499686919/00023 6219317944499686919/00018 6219317944499686919/00012 6219317944499686919/00021 6219317944499686919/00014 6219317944499686919/00020 6219317944499686919/00035 6219317944499686919/00017 6219317944499686919/00011 6219317944499686919/00027 6219317944499686919/00034 6219317944499686919/00008 6219317944499686919/00007 6219317944499686919/00025 6219317944499686919/00005 6130586067647917810/00015 6130586067647917810/00010 6130586067647917810/00020 6130586067647917810/00017 6130586067647917810/00019 5553830800847136746/00015 5553830800847136746/00003 5553830800847136746/00009 5553830800847136746/00010 5553830800847136746/00013 5553830800847136746/00008 6212456734244258440/00029 6212456734244258440/00015 6212456734244258440/00009 6212456734244258440/00010 6212456734244258440/00024 6212456734244258440/00030 6212456734244258440/00031 6212456734244258440/00013 6212456734244258440/00022 6212456734244258440/00026 6212456734244258440/00036 6212456734244258440/00001 6212456734244258440/00023 6212456734244258440/00038 6212456734244258440/00021 6212456734244258440/00014 6212456734244258440/00039 6212456734244258440/00035 6212456734244258440/00017 6212456734244258440/00016 6212456734244258440/00011 6212456734244258440/00034 6212456734244258440/00002 6212456734244258440/00008 6212456734244258440/00040 6212456734244258440/00005 6212456734244258440/00028 5991800212431881241/00015 5991800212431881241/00009 5991800212431881241/00013 5991800212431881241/00004 6134161627921882572/00060 6134161627921882572/00003 6134161627921882572/00006 6134161627921882572/00046 6134161627921882572/00056 6134161627921882572/00032 6134161627921882572/00070 6134161627921882572/00073 6134161627921882572/00010 6134161627921882572/00033 6134161627921882572/00057 6134161627921882572/00024 6134161627921882572/00053 6134161627921882572/00058 6134161627921882572/00062 6134161627921882572/00031 6134161627921882572/00086 6134161627921882572/00069 6134161627921882572/00022 6134161627921882572/00026 6134161627921882572/00044 6134161627921882572/00050 6134161627921882572/00036 6134161627921882572/00063 6134161627921882572/00001 6134161627921882572/00045 6134161627921882572/00066 6134161627921882572/00064 6134161627921882572/00049 6134161627921882572/00072 6134161627921882572/00023 6134161627921882572/00038 6134161627921882572/00048 6134161627921882572/00085 6134161627921882572/00042 6134161627921882572/00012 6134161627921882572/00061 6134161627921882572/00083 6134161627921882572/00021 6134161627921882572/00075 6134161627921882572/00079 6134161627921882572/00014 6134161627921882572/00037 6134161627921882572/00047 6134161627921882572/00039 6134161627921882572/00035 6134161627921882572/00051 6134161627921882572/00076 6134161627921882572/00052 6134161627921882572/00055 6134161627921882572/00059 6134161627921882572/00084 6134161627921882572/00067 6134161627921882572/00034 6134161627921882572/00081 6134161627921882572/00002 6134161627921882572/00040 6134161627921882572/00068 6134161627921882572/00025 6134161627921882572/00054 6134161627921882572/00043 6134161627921882572/00005 6134161627921882572/00074 6134161627921882572/00004 6134161627921882572/00028 5553243249321047271/00006 5553243249321047271/00009 5553243249321047271/00010 5553243249321047271/00013 5553243249321047271/00011 5553243249321047271/00002 5553243249321047271/00008 5553243249321047271/00005 5553243249321047271/00004 6116469369139408183/00015 6116469369139408183/00003 6116469369139408183/00006 6116469369139408183/00032 6116469369139408183/00033 6116469369139408183/00024 6116469369139408183/00031 6116469369139408183/00013 6116469369139408183/00001 6116469369139408183/00023 6116469369139408183/00038 6116469369139408183/00012 6116469369139408183/00020 6116469369139408183/00035 6116469369139408183/00017 6116469369139408183/00016 6116469369139408183/00034 6116469369139408183/00002 6116469369139408183/00008 6116469369139408183/00007 6116469369139408183/00028 6103210805096647260/00003 6103210805096647260/00014 6103210805096647260/00011 6103210805096647260/00008 6103210805096647260/00005 6103210805096647260/00004 6118695880185727002/00029 6118695880185727002/00015 6118695880185727002/00006 6118695880185727002/00032 6118695880185727002/00010 6118695880185727002/00030 6118695880185727002/00031 6118695880185727002/00013 6118695880185727002/00026 6118695880185727002/00001 6118695880185727002/00023 6118695880185727002/00018 6118695880185727002/00012 6118695880185727002/00021 6118695880185727002/00014 6118695880185727002/00020 6118695880185727002/00017 6118695880185727002/00016 6118695880185727002/00019 6118695880185727002/00011 6118695880185727002/00027 6118695880185727002/00002 6118695880185727002/00007 6118695880185727002/00004 6118695880185727002/00028 5539702505926936192/00015 5539702505926936192/00010 5539702505926936192/00001 5539702505926936192/00014 5539702505926936192/00017 5539702505926936192/00016 5539702505926936192/00002 5539702505926936192/00008 5539702505926936192/00007 5539702505926936192/00005 6045997975243374960/00001 6045997975243374960/00002 6045997975243374960/00007 6045997975243374960/00005 6045997975243374960/00004 6081274259632394021/00003 6081274259632394021/00009 6081274259632394021/00010 6081274259632394021/00013 6081274259632394021/00018 6081274259632394021/00021 6081274259632394021/00019 6081274259632394021/00011 6081274259632394021/00008 6310166810731517953/00015 6310166810731517953/00009 6310166810731517953/00026 6310166810731517953/00014 6310166810731517953/00017 6310166810731517953/00016 6310166810731517953/00011 6310166810731517953/00002 6310166810731517953/00007 6310166810731517953/00025 6310166810731517953/00005 5940946081660329974/00006 5940946081660329974/00009 5940946081660329974/00001 5940946081660329974/00005 5940946081660329974/00004 6358757064241425994/00003 6048595571463995931/00003 6048595571463995931/00007 6048595571463995931/00004 5857451917426151011/00003 5857451917426151011/00009 5857451917426151011/00010 5857451917426151011/00016 5857451917426151011/00011 5857451917426151011/00002 5857451917426151011/00008 5857451917426151011/00007 5857451917426151011/00005 6227497280218194279/00003 6227497280218194279/00006 6227497280218194279/00001 6227497280218194279/00002 6230709486258876435/00015 6230709486258876435/00003 6230709486258876435/00032 6230709486258876435/00009 6230709486258876435/00010 6230709486258876435/00033 6230709486258876435/00024 6230709486258876435/00030 6230709486258876435/00031 6230709486258876435/00013 6230709486258876435/00026 6230709486258876435/00001 6230709486258876435/00023 6230709486258876435/00018 6230709486258876435/00012 6230709486258876435/00011 6230709486258876435/00034 6230709486258876435/00002 6230709486258876435/00008 6230709486258876435/00025 6230709486258876435/00005 6115000490324173496/00029 6115000490324173496/00006 6115000490324173496/00024 6115000490324173496/00030 6115000490324173496/00023 6115000490324173496/00018 6115000490324173496/00037 6115000490324173496/00020 6115000490324173496/00017 6115000490324173496/00008 6115000490324173496/00025 5579903399817499316/00003 5991417530845874855/00015 5991417530845874855/00006 5991417530845874855/00009 5991417530845874855/00010 5991417530845874855/00001 5991417530845874855/00018 5991417530845874855/00019 5991417530845874855/00011 5991417530845874855/00002 5991417530845874855/00008 5991417530845874855/00007 5991417530845874855/00005 5991417530845874855/00004 5729184007621308321/00002 5856046174630165961/00010 5856046174630165961/00002 5856046174630165961/00008 6118730669420824795/00009 6118730669420824795/00010 6118730669420824795/00001 6118730669420824795/00002 6118730669420824795/00005 5913350487286807643/00015 5913350487286807643/00006 5913350487286807643/00001 5913350487286807643/00014 5913350487286807643/00016 5913350487286807643/00011 5913350487286807643/00002 5913350487286807643/00005 5913350487286807643/00004 6353909764151156687/00001 6353909764151156687/00005 6051193167684691541/00003 6051193167684691541/00006 6051193167684691541/00004 6180616853188825835/00003 6180616853188825835/00009 6180616853188825835/00001 6180616853188825835/00002 6180616853188825835/00008 5756180454057044724/00003 5756180454057044724/00004 5995503333234494936/00003 5995503333234494936/00004 5555060020487251939/00015 5555060020487251939/00003 5555060020487251939/00024 5555060020487251939/00022 5555060020487251939/00001 5555060020487251939/00018 5555060020487251939/00021 5555060020487251939/00014 5555060020487251939/00017 5555060020487251939/00011 5555060020487251939/00002 6053048593556497163/00015 6053048593556497163/00003 6053048593556497163/00026 6053048593556497163/00020 6053048593556497163/00017 6053048593556497163/00002 6053048593556497163/00004 5721313909548102980/00003 5721313909548102980/00032 5721313909548102980/00010 5721313909548102980/00024 5721313909548102980/00013 5721313909548102980/00022 5721313909548102980/00026 5721313909548102980/00036 5721313909548102980/00038 5721313909548102980/00042 5721313909548102980/00037 5721313909548102980/00017 5721313909548102980/00016 5721313909548102980/00019 5721313909548102980/00034 5721313909548102980/00002 5721313909548102980/00008 5721313909548102980/00007 5721313909548102980/00025 5721313909548102980/00005 5721313909548102980/00004 5721313909548102980/00028 6131022865821923394/00015 6131022865821923394/00003 6131022865821923394/00009 6131022865821923394/00010 6131022865821923394/00013 6131022865821923394/00001 6131022865821923394/00018 6131022865821923394/00012 6131022865821923394/00020 6131022865821923394/00017 6131022865821923394/00016 6131022865821923394/00019 6131022865821923394/00011 6131022865821923394/00002 6131022865821923394/00008 6131022865821923394/00007 6254165161655718796/00003 6254165161655718796/00006 6254165161655718796/00009 6254165161655718796/00010 6254165161655718796/00013 6254165161655718796/00001 6254165161655718796/00012 6254165161655718796/00014 6254165161655718796/00017 6254165161655718796/00019 6254165161655718796/00011 6254165161655718796/00002 6254165161655718796/00007 6254165161655718796/00004 5958284005640811681/00029 5958284005640811681/00015 5958284005640811681/00009 5958284005640811681/00030 5958284005640811681/00031 5958284005640811681/00023 5958284005640811681/00038 5958284005640811681/00037 5958284005640811681/00020 5958284005640811681/00035 5958284005640811681/00011 5958284005640811681/00027 5958284005640811681/00007 5958284005640811681/00005 5958284005640811681/00004 5958284005640811681/00028 6045982513361112706/00003 6045982513361112706/00009 6045982513361112706/00011 6045982513361112706/00004 5665983563860646489/00001 5657100712499082677/00003 5657100712499082677/00010 5657100712499082677/00001 5657100712499082677/00012 5657100712499082677/00014 5657100712499082677/00011 5657100712499082677/00002 5657100712499082677/00008 5657100712499082677/00005 5657100712499082677/00004 6127988471427294627/00015 6127988471427294627/00003 6127988471427294627/00010 6127988471427294627/00013 6127988471427294627/00018 6127988471427294627/00016 6127988471427294627/00002 6127988471427294627/00005 6257524255577923420/00060 6257524255577923420/00029 6257524255577923420/00070 6257524255577923420/00009 6257524255577923420/00073 6257524255577923420/00010 6257524255577923420/00071 6257524255577923420/00058 6257524255577923420/00069 6257524255577923420/00022 6257524255577923420/00050 6257524255577923420/00036 6257524255577923420/00063 6257524255577923420/00066 6257524255577923420/00064 6257524255577923420/00049 6257524255577923420/00072 6257524255577923420/00038 6257524255577923420/00061 6257524255577923420/00014 6257524255577923420/00047 6257524255577923420/00039 6257524255577923420/00051 6257524255577923420/00017 6257524255577923420/00052 6257524255577923420/00016 6257524255577923420/00007 6257524255577923420/00068 6251022534085230589/00029 6251022534085230589/00003 6251022534085230589/00006 6251022534085230589/00009 6251022534085230589/00013 6251022534085230589/00016 6251022534085230589/00027 6251022534085230589/00008 6251022534085230589/00007 6122093628813589168/00009 6122093628813589168/00010 6122093628813589168/00012 6122093628813589168/00011 6122093628813589168/00002 6122093628813589168/00004 6314308018198387664/00006 6314308018198387664/00009 6314308018198387664/00001 6314308018198387664/00002 6314308018198387664/00008 6314308018198387664/00007 6314308018198387664/00005 6339758276407584924/00015 6339758276407584924/00098 6339758276407584924/00030 6339758276407584924/00062 6339758276407584924/00036 6339758276407584924/00038 6339758276407584924/00065 6339758276407584924/00081 6339758276407584924/00082 6339758276407584924/00089 6059372503403113376/00015 6059372503403113376/00006 6059372503403113376/00010 6059372503403113376/00001 6059372503403113376/00018 6059372503403113376/00017 6059372503403113376/00016 6059372503403113376/00019 6059372503403113376/00002 6059372503403113376/00008 6059372503403113376/00007 6059372503403113376/00005 6231474849430962116/00003 6231474849430962116/00002 6231474849430962116/00007 6231474849430962116/00004 6297964808643602343/00003 6297964808643602343/00006 6297964808643602343/00001 6297964808643602343/00007 6297964808643602343/00004 6198142896736865730/00003 6198142896736865730/00001 6198142896736865730/00005 6198142896736865730/00004 5558407517997730882/00003 5558407517997730882/00001 5558407517997730882/00002 5558407517997730882/00004 6107900909383881137/00003 6107900909383881137/00006 6107900909383881137/00010 6107900909383881137/00013 6107900909383881137/00014 6107900909383881137/00016 6107900909383881137/00002 6107900909383881137/00008 6261266031086199857/00003 6261266031086199857/00006 6261266031086199857/00021 5996643647051589460/00001 5996643647051589460/00002 6280152720273683696/00029 6280152720273683696/00006 6280152720273683696/00009 6280152720273683696/00030 6280152720273683696/00031 6280152720273683696/00018 6280152720273683696/00020 6280152720273683696/00017 6280152720273683696/00019 6280152720273683696/00011 6280152720273683696/00007 6280152720273683696/00005 6280152720273683696/00004 6240825422731123355/00029 6240825422731123355/00015 6240825422731123355/00003 6240825422731123355/00010 6240825422731123355/00024 6240825422731123355/00013 6240825422731123355/00022 6240825422731123355/00026 6240825422731123355/00023 6240825422731123355/00014 6240825422731123355/00020 6240825422731123355/00017 6240825422731123355/00011 6240825422731123355/00027 6240825422731123355/00002 6240825422731123355/00008 6240825422731123355/00007 6240825422731123355/00025 6240825422731123355/00004 6240825422731123355/00028 6103918186210389421/00015 6103918186210389421/00006 6103918186210389421/00009 6103918186210389421/00013 6103918186210389421/00001 6103918186210389421/00018 6103918186210389421/00021 6103918186210389421/00016 6103918186210389421/00019 6103918186210389421/00008 5726578680459550328/00006 5726578680459550328/00010 5726578680459550328/00002 5726578680459550328/00005 5546428424712474479/00029 5546428424712474479/00015 5546428424712474479/00006 5546428424712474479/00032 5546428424712474479/00031 5546428424712474479/00026 5546428424712474479/00001 5546428424712474479/00012 5546428424712474479/00014 5546428424712474479/00020 5546428424712474479/00035 5546428424712474479/00027 5546428424712474479/00025 5546428424712474479/00005 5546428424712474479/00004 6262317439080326505/00003 6262317439080326505/00032 6262317439080326505/00033 6262317439080326505/00024 6262317439080326505/00022 6262317439080326505/00026 6262317439080326505/00036 6262317439080326505/00048 6262317439080326505/00018 6262317439080326505/00042 6262317439080326505/00041 6262317439080326505/00039 6262317439080326505/00020 6262317439080326505/00035 6262317439080326505/00017 6262317439080326505/00016 6262317439080326505/00019 6262317439080326505/00027 6262317439080326505/00034 6262317439080326505/00025 6262317439080326505/00043 5984088598782397299/00029 5984088598782397299/00015 5984088598782397299/00006 5984088598782397299/00032 5984088598782397299/00010 5984088598782397299/00030 5984088598782397299/00031 5984088598782397299/00044 5984088598782397299/00036 5984088598782397299/00045 5984088598782397299/00023 5984088598782397299/00041 5984088598782397299/00021 5984088598782397299/00020 5984088598782397299/00035 5984088598782397299/00017 5984088598782397299/00016 5984088598782397299/00019 5984088598782397299/00027 5984088598782397299/00034 5984088598782397299/00002 5984088598782397299/00008 5984088598782397299/00040 5984088598782397299/00004 6033012571120703145/00029 6033012571120703145/00006 6033012571120703145/00009 6033012571120703145/00010 6033012571120703145/00024 6033012571120703145/00031 6033012571120703145/00013 6033012571120703145/00022 6033012571120703145/00026 6033012571120703145/00001 6033012571120703145/00045 6033012571120703145/00023 6033012571120703145/00042 6033012571120703145/00012 6033012571120703145/00041 6033012571120703145/00035 6033012571120703145/00017 6033012571120703145/00016 6033012571120703145/00011 6033012571120703145/00027 6033012571120703145/00008 6033012571120703145/00040 6033012571120703145/00007 6033012571120703145/00025 6033012571120703145/00005 6033012571120703145/00004 6033012571120703145/00028 6120520382293061876/00009 6120520382293061876/00002 5948684753734335751/00006 5948684753734335751/00009 5948684753734335751/00010 5948684753734335751/00011 5948684753734335751/00002 5948684753734335751/00007 5948684753734335751/00005 5948684753734335751/00004 5995932400467368660/00015 5995932400467368660/00006 5995932400467368660/00009 5995932400467368660/00010 5995932400467368660/00024 5995932400467368660/00013 5995932400467368660/00026 5995932400467368660/00001 5995932400467368660/00023 5995932400467368660/00018 5995932400467368660/00012 5995932400467368660/00014 5995932400467368660/00017 5995932400467368660/00019 5995932400467368660/00011 5995932400467368660/00027 5995932400467368660/00002 5995932400467368660/00008 5995932400467368660/00025 5995932400467368660/00005 5995932400467368660/00028 6094300895571588822/00003 6094300895571588822/00006 6094300895571588822/00008 6094300895571588822/00007 6223287782771382853/00009 6223287782771382853/00001 6223287782771382853/00002 6223287782771382853/00008 6223287782771382853/00007 6223287782771382853/00005 6117590355603664317/00010 6349228679295241171/00016 6061599014449425173/00003 6061599014449425173/00009 6061599014449425173/00001 6061599014449425173/00014 6061599014449425173/00017 6061599014449425173/00016 6061599014449425173/00011 6061599014449425173/00002 6061599014449425173/00008 6061599014449425173/00005 6061599014449425173/00004 6022650533152812423/00060 6022650533152812423/00029 6022650533152812423/00003 6022650533152812423/00006 6022650533152812423/00046 6022650533152812423/00056 6022650533152812423/00070 6022650533152812423/00009 6022650533152812423/00057 6022650533152812423/00024 6022650533152812423/00053 6022650533152812423/00078 6022650533152812423/00030 6022650533152812423/00071 6022650533152812423/00062 6022650533152812423/00086 6022650533152812423/00069 6022650533152812423/00094 6022650533152812423/00026 6022650533152812423/00077 6022650533152812423/00063 6022650533152812423/00001 6022650533152812423/00049 6022650533152812423/00023 6022650533152812423/00088 6022650533152812423/00048 6022650533152812423/00041 6022650533152812423/00061 6022650533152812423/00021 6022650533152812423/00075 6022650533152812423/00079 6022650533152812423/00037 6022650533152812423/00047 6022650533152812423/00020 6022650533152812423/00035 6022650533152812423/00017 6022650533152812423/00076 6022650533152812423/00080 6022650533152812423/00055 6022650533152812423/00016 6022650533152812423/00095 6022650533152812423/00019 6022650533152812423/00011 6022650533152812423/00034 6022650533152812423/00082 6022650533152812423/00089 6022650533152812423/00008 6022650533152812423/00040 6022650533152812423/00007 6022650533152812423/00097 6022650533152812423/00054 6022650533152812423/00005 6022650533152812423/00074 6090833568343111686/00003 6090833568343111686/00006 6090833568343111686/00009 6090833568343111686/00010 6090833568343111686/00013 6090833568343111686/00001 6090833568343111686/00008 6090833568343111686/00004 6190721193249401618/00015 6190721193249401618/00006 6190721193249401618/00009 6190721193249401618/00013 6190721193249401618/00001 6190721193249401618/00012 6190721193249401618/00014 6190721193249401618/00017 6190721193249401618/00016 6190721193249401618/00011 6190721193249401618/00008 6190721193249401618/00007 6190721193249401618/00004 6260121851798546398/00015 6260121851798546398/00009 6260121851798546398/00036 6260121851798546398/00020 6260121851798546398/00016 6260121851798546398/00034 6260121851798546398/00040 6260121851798546398/00025 6260121851798546398/00005 5543080927201970107/00013 5543080927201970107/00022 5543080927201970107/00018 5543080927201970107/00012 5543080927201970107/00014 5543080927201970107/00020 5543080927201970107/00017 5543080927201970107/00011 5543080927201970107/00004 6382877600575782419/00001 6125012059091161576/00003 6125012059091161576/00006 6125012059091161576/00001 6125012059091161576/00012 6125012059091161576/00008 6125012059091161576/00007 5953948236155561104/00029 5953948236155561104/00003 5953948236155561104/00010 5953948236155561104/00030 5953948236155561104/00031 5953948236155561104/00026 5953948236155561104/00044 5953948236155561104/00036 5953948236155561104/00001 5953948236155561104/00038 5953948236155561104/00048 5953948236155561104/00018 5953948236155561104/00012 5953948236155561104/00014 5953948236155561104/00047 5953948236155561104/00017 5953948236155561104/00016 5953948236155561104/00019 5953948236155561104/00027 5953948236155561104/00040 5953948236155561104/00043 5953948236155561104/00028 6125715574734309899/00010 6125715574734309899/00007 6125715574734309899/00004 6214903577243264901/00015 6214903577243264901/00032 6214903577243264901/00010 6214903577243264901/00033 6214903577243264901/00024 6214903577243264901/00030 6214903577243264901/00031 6214903577243264901/00013 6214903577243264901/00022 6214903577243264901/00026 6214903577243264901/00001 6214903577243264901/00023 6214903577243264901/00018 6214903577243264901/00042 6214903577243264901/00012 6214903577243264901/00037 6214903577243264901/00035 6214903577243264901/00017 6214903577243264901/00016 6214903577243264901/00019 6214903577243264901/00011 6214903577243264901/00027 6214903577243264901/00034 6214903577243264901/00008 6214903577243264901/00007 6214903577243264901/00025 6214903577243264901/00043 6214903577243264901/00005 6214903577243264901/00004 6214903577243264901/00028 6212275057127634257/00003 6212275057127634257/00001 6212275057127634257/00002 6212275057127634257/00008 6212275057127634257/00004 6102314015925326626/00015 6102314015925326626/00003 6102314015925326626/00009 6102314015925326626/00010 6102314015925326626/00013 6102314015925326626/00018 6102314015925326626/00012 6102314015925326626/00016 6102314015925326626/00019 6102314015925326626/00005 6364319476386415444/00009 6364319476386415444/00005 6358057414068907495/00013 6358057414068907495/00002 6115325189851814592/00003 6115325189851814592/00006 6115325189851814592/00001 6115325189851814592/00002 6115325189851814592/00008 6115325189851814592/00007 6115325189851814592/00005 6115325189851814592/00004 6110226634174728971/00009 6110226634174728971/00010 6110226634174728971/00013 6110226634174728971/00012 6110226634174728971/00011 5978893406341154860/00029 5978893406341154860/00003 5978893406341154860/00006 5978893406341154860/00046 5978893406341154860/00032 5978893406341154860/00009 5978893406341154860/00010 5978893406341154860/00057 5978893406341154860/00030 5978893406341154860/00031 5978893406341154860/00022 5978893406341154860/00044 5978893406341154860/00036 5978893406341154860/00045 5978893406341154860/00018 5978893406341154860/00014 5978893406341154860/00037 5978893406341154860/00047 5978893406341154860/00039 5978893406341154860/00020 5978893406341154860/00035 5978893406341154860/00051 5978893406341154860/00017 5978893406341154860/00016 5978893406341154860/00019 5978893406341154860/00007 5978893406341154860/00054 5978893406341154860/00043 6017597074501852508/00003 6017597074501852508/00006 6017597074501852508/00046 6017597074501852508/00009 6017597074501852508/00073 6017597074501852508/00010 6017597074501852508/00033 6017597074501852508/00053 6017597074501852508/00030 6017597074501852508/00071 6017597074501852508/00062 6017597074501852508/00069 6017597074501852508/00022 6017597074501852508/00077 6017597074501852508/00045 6017597074501852508/00064 6017597074501852508/00049 6017597074501852508/00023 6017597074501852508/00038 6017597074501852508/00088 6017597074501852508/00018 6017597074501852508/00085 6017597074501852508/00042 6017597074501852508/00065 6017597074501852508/00037 6017597074501852508/00047 6017597074501852508/00051 6017597074501852508/00017 6017597074501852508/00052 6017597074501852508/00016 6017597074501852508/00019 6017597074501852508/00011 6017597074501852508/00067 6017597074501852508/00082 6017597074501852508/00002 6017597074501852508/00040 6017597074501852508/00007 6017597074501852508/00074 6017597074501852508/00004 5995882149350002168/00010 5995882149350002168/00013 5995882149350002168/00001 5995882149350002168/00012 5995882149350002168/00011 5995882149350002168/00008 5918715760432946552/00003 5918715760432946552/00001 6229723791264442560/00003 6229723791264442560/00006 6229723791264442560/00002 6229723791264442560/00005 6229723791264442560/00004 6363210086333922442/00011 6228042311567995537/00029 6228042311567995537/00015 6228042311567995537/00046 6228042311567995537/00032 6228042311567995537/00033 6228042311567995537/00031 6228042311567995537/00013 6228042311567995537/00022 6228042311567995537/00026 6228042311567995537/00044 6228042311567995537/00036 6228042311567995537/00049 6228042311567995537/00038 6228042311567995537/00048 6228042311567995537/00042 6228042311567995537/00012 6228042311567995537/00021 6228042311567995537/00014 6228042311567995537/00047 6228042311567995537/00035 6228042311567995537/00017 6228042311567995537/00016 6228042311567995537/00019 6228042311567995537/00027 6228042311567995537/00007 6228042311567995537/00025 6228042311567995537/00043 6228042311567995537/00004 6228042311567995537/00028 6290574028920640730/00015 6290574028920640730/00003 6290574028920640730/00006 6290574028920640730/00001 6290574028920640730/00012 6290574028920640730/00002 6290574028920640730/00008 6290574028920640730/00007 6290574028920640730/00005 6290574028920640730/00004 5939809633313874043/00003 5939809633313874043/00009 5939809633313874043/00008 6302978323968228875/00015 6302978323968228875/00010 6302978323968228875/00013 6302978323968228875/00022 6302978323968228875/00023 6302978323968228875/00012 6302978323968228875/00021 6302978323968228875/00020 6302978323968228875/00017 6302978323968228875/00016 6302978323968228875/00019 6302978323968228875/00011 6302978323968228875/00008 6302978323968228875/00007 6302978323968228875/00005 5987799450396371577/00005 5987799450396371577/00004 5975878339168891066/00006 5975878339168891066/00032 5975878339168891066/00009 5975878339168891066/00010 5975878339168891066/00033 5975878339168891066/00024 5975878339168891066/00053 5975878339168891066/00030 5975878339168891066/00022 5975878339168891066/00026 5975878339168891066/00063 5975878339168891066/00049 5975878339168891066/00023 5975878339168891066/00038 5975878339168891066/00048 5975878339168891066/00018 5975878339168891066/00041 5975878339168891066/00065 5975878339168891066/00061 5975878339168891066/00021 5975878339168891066/00035 5975878339168891066/00051 5975878339168891066/00052 5975878339168891066/00019 5975878339168891066/00011 5975878339168891066/00002 5975878339168891066/00008 5975878339168891066/00007 5975878339168891066/00068 5975878339168891066/00025 6124714417857553936/00029 6124714417857553936/00015 6124714417857553936/00003 6124714417857553936/00032 6124714417857553936/00010 6124714417857553936/00033 6124714417857553936/00024 6124714417857553936/00030 6124714417857553936/00031 6124714417857553936/00013 6124714417857553936/00022 6124714417857553936/00026 6124714417857553936/00036 6124714417857553936/00001 6124714417857553936/00023 6124714417857553936/00018 6124714417857553936/00037 6124714417857553936/00020 6124714417857553936/00035 6124714417857553936/00016 6124714417857553936/00034 6124714417857553936/00002 6124714417857553936/00008 6124714417857553936/00025 6124714417857553936/00004 6124714417857553936/00028 6393267985458244248/00006 6393267985458244248/00017 6324698403080875597/00006 6324698403080875597/00007 6210322994491666082/00006 6210322994491666082/00009 6210322994491666082/00001 6060099211870336260/00009 6060099211870336260/00010 6060099211870336260/00001 6060099211870336260/00018 6060099211870336260/00021 6060099211870336260/00014 6060099211870336260/00020 6060099211870336260/00017 6060099211870336260/00019 6060099211870336260/00011 6060099211870336260/00008 6060099211870336260/00007 6060099211870336260/00004 6210048546081451664/00001 6210048546081451664/00007 6210048546081451664/00005 6210048546081451664/00004 6075205470843171913/00015 6075205470843171913/00006 6075205470843171913/00014 6075205470843171913/00017 6075205470843171913/00008 6075205470843171913/00005 5993334804246742169/00002 6137976847370853023/00015 6137976847370853023/00012 6137976847370853023/00021 6137976847370853023/00017 6137976847370853023/00011 6137976847370853023/00002 6137976847370853023/00008 6137976847370853023/00007 6284992289422815772/00029 6284992289422815772/00006 6284992289422815772/00046 6284992289422815772/00032 6284992289422815772/00033 6284992289422815772/00053 6284992289422815772/00030 6284992289422815772/00031 6284992289422815772/00013 6284992289422815772/00026 6284992289422815772/00050 6284992289422815772/00001 6284992289422815772/00045 6284992289422815772/00049 6284992289422815772/00023 6284992289422815772/00038 6284992289422815772/00048 6284992289422815772/00018 6284992289422815772/00037 6284992289422815772/00047 6284992289422815772/00020 6284992289422815772/00035 6284992289422815772/00051 6284992289422815772/00017 6284992289422815772/00055 6284992289422815772/00019 6284992289422815772/00011 6284992289422815772/00027 6284992289422815772/00002 6284992289422815772/00008 6284992289422815772/00007 6284992289422815772/00054 5623331961631013243/00003 5923443230935656172/00003 5923443230935656172/00002 5923443230935656172/00004 6034920825090317230/00015 6034920825090317230/00006 6034920825090317230/00009 6034920825090317230/00073 6034920825090317230/00010 6034920825090317230/00033 6034920825090317230/00071 6034920825090317230/00058 6034920825090317230/00062 6034920825090317230/00013 6034920825090317230/00069 6034920825090317230/00044 6034920825090317230/00077 6034920825090317230/00072 6034920825090317230/00018 6034920825090317230/00012 6034920825090317230/00061 6034920825090317230/00035 6034920825090317230/00017 6034920825090317230/00076 6034920825090317230/00016 6034920825090317230/00059 6034920825090317230/00027 6034920825090317230/00040 6034920825090317230/00025 6034920825090317230/00005 5966574151515557336/00015 5966574151515557336/00003 5966574151515557336/00006 5966574151515557336/00009 5966574151515557336/00021 5966574151515557336/00014 5966574151515557336/00019 5966574151515557336/00007 5966574151515557336/00004 6242325225310888467/00001 6242325225310888467/00012 6242325225310888467/00016 6242325225310888467/00011 6242325225310888467/00002 6242325225310888467/00005 6242325225310888467/00004 6124602319211186573/00015 6124602319211186573/00003 6124602319211186573/00010 6124602319211186573/00014 6124602319211186573/00002 6124602319211186573/00007 6124602319211186573/00004 6225050437349598381/00015 6225050437349598381/00009 6225050437349598381/00010 6225050437349598381/00013 6225050437349598381/00001 6225050437349598381/00018 6225050437349598381/00017 6225050437349598381/00019 6225050437349598381/00011 6225050437349598381/00005 6225050437349598381/00004 5555469760367293857/00006 5555469760367293857/00009 5555469760367293857/00010 5555469760367293857/00012 5555469760367293857/00016 5555469760367293857/00011 5555469760367293857/00002 5555469760367293857/00008 5555469760367293857/00005 6251555969023461325/00015 6251555969023461325/00030 6251555969023461325/00026 6251555969023461325/00001 6251555969023461325/00018 6251555969023461325/00017 6251555969023461325/00019 6251555969023461325/00007 6251555969023461325/00005 6119496032592965564/00006 6119496032592965564/00016 6119496032592965564/00008 6119496032592965564/00007 5860130688528668735/00003 5860130688528668735/00006 5860130688528668735/00009 5860130688528668735/00001 5860130688528668735/00005 5860130688528668735/00004 6214795343936996358/00003 6214795343936996358/00009 6214795343936996358/00024 6214795343936996358/00013 6214795343936996358/00022 6214795343936996358/00026 6214795343936996358/00001 6214795343936996358/00023 6214795343936996358/00018 6214795343936996358/00012 6214795343936996358/00021 6214795343936996358/00020 6214795343936996358/00017 6214795343936996358/00016 6214795343936996358/00019 6214795343936996358/00011 6214795343936996358/00027 6214795343936996358/00002 6214795343936996358/00008 6214795343936996358/00007 6214795343936996358/00025 6214795343936996358/00005 6214795343936996358/00004 6214795343936996358/00028 6211138608781110438/00015 6211138608781110438/00006 6211138608781110438/00010 6211138608781110438/00024 6211138608781110438/00013 6211138608781110438/00001 6211138608781110438/00018 6211138608781110438/00012 6211138608781110438/00014 6211138608781110438/00017 6211138608781110438/00016 6211138608781110438/00019 6211138608781110438/00008 6211138608781110438/00005 6211138608781110438/00004 6211138608781110438/00028 6211540617720084930/00003 6211540617720084930/00005 6281223455620510645/00010 6281223455620510645/00001 6281223455620510645/00002 5553969957787531171/00001 5553969957787531171/00002 5553969957787531171/00004 5562860540090226466/00015 5562860540090226466/00003 5562860540090226466/00006 5562860540090226466/00009 5562860540090226466/00010 5562860540090226466/00013 5562860540090226466/00022 5562860540090226466/00026 5562860540090226466/00001 5562860540090226466/00023 5562860540090226466/00038 5562860540090226466/00012 5562860540090226466/00021 5562860540090226466/00037 5562860540090226466/00035 5562860540090226466/00016 5562860540090226466/00019 5562860540090226466/00011 5562860540090226466/00034 5562860540090226466/00002 5562860540090226466/00008 5562860540090226466/00007 5562860540090226466/00005 5562860540090226466/00028 6215867367774076860/00015 6215867367774076860/00003 6215867367774076860/00006 6215867367774076860/00009 6215867367774076860/00010 6215867367774076860/00024 6215867367774076860/00013 6215867367774076860/00001 6215867367774076860/00023 6215867367774076860/00018 6215867367774076860/00012 6215867367774076860/00020 6215867367774076860/00011 6215867367774076860/00002 6215867367774076860/00008 6215867367774076860/00004 6351772158927869467/00029 6351772158927869467/00035 5987648697043627198/00015 5987648697043627198/00003 5987648697043627198/00001 5987648697043627198/00018 5987648697043627198/00016 5987648697043627198/00008 5987648697043627198/00005 5987648697043627198/00004 5984750882608948307/00003 6346600159310117136/00014 5707885264800445808/00029 5707885264800445808/00015 5707885264800445808/00003 5707885264800445808/00009 5707885264800445808/00033 5707885264800445808/00013 5707885264800445808/00026 5707885264800445808/00044 5707885264800445808/00036 5707885264800445808/00001 5707885264800445808/00018 5707885264800445808/00014 5707885264800445808/00047 5707885264800445808/00039 5707885264800445808/00020 5707885264800445808/00017 5707885264800445808/00019 5707885264800445808/00011 5707885264800445808/00027 5707885264800445808/00002 5707885264800445808/00008 5707885264800445808/00043 5707885264800445808/00005 5993350266129010638/00029 5993350266129010638/00015 5993350266129010638/00006 5993350266129010638/00046 5993350266129010638/00032 5993350266129010638/00010 5993350266129010638/00033 5993350266129010638/00024 5993350266129010638/00030 5993350266129010638/00031 5993350266129010638/00013 5993350266129010638/00044 5993350266129010638/00036 5993350266129010638/00001 5993350266129010638/00045 5993350266129010638/00023 5993350266129010638/00018 5993350266129010638/00012 5993350266129010638/00041 5993350266129010638/00021 5993350266129010638/00014 5993350266129010638/00039 5993350266129010638/00020 5993350266129010638/00035 5993350266129010638/00017 5993350266129010638/00016 5993350266129010638/00019 5993350266129010638/00011 5993350266129010638/00027 5993350266129010638/00025 5993350266129010638/00043 5993350266129010638/00005 6133589538277987850/00006 6133589538277987850/00009 6133589538277987850/00001 6133589538277987850/00011 6133589538277987850/00002 6133589538277987850/00008 6133589538277987850/00005 5886044803205743284/00029 5886044803205743284/00010 5886044803205743284/00024 5886044803205743284/00030 5886044803205743284/00013 5886044803205743284/00001 5886044803205743284/00023 5886044803205743284/00018 5886044803205743284/00021 5886044803205743284/00014 5886044803205743284/00020 5886044803205743284/00017 5886044803205743284/00016 5886044803205743284/00019 5886044803205743284/00027 5886044803205743284/00002 5886044803205743284/00008 5886044803205743284/00025 5886044803205743284/00005 5886044803205743284/00004 5886044803205743284/00028 6292421723851442807/00006 6292421723851442807/00004 6323956232732126743/00029 6323956232732126743/00003 6323956232732126743/00006 6323956232732126743/00032 6323956232732126743/00009 6323956232732126743/00010 6323956232732126743/00024 6323956232732126743/00030 6323956232732126743/00013 6323956232732126743/00018 6323956232732126743/00012 6323956232732126743/00014 6323956232732126743/00020 6323956232732126743/00017 6323956232732126743/00016 6323956232732126743/00019 6323956232732126743/00027 6323956232732126743/00034 6323956232732126743/00002 6323956232732126743/00008 6323956232732126743/00007 6323956232732126743/00025 6323956232732126743/00005 6323956232732126743/00004 6323956232732126743/00028 6121664561580658930/00010 6121664561580658930/00012 6121664561580658930/00014 6121664561580658930/00020 6216333801222356458/00029 6216333801222356458/00003 6216333801222356458/00032 6216333801222356458/00009 6216333801222356458/00010 6216333801222356458/00033 6216333801222356458/00030 6216333801222356458/00026 6216333801222356458/00036 6216333801222356458/00001 6216333801222356458/00018 6216333801222356458/00042 6216333801222356458/00021 6216333801222356458/00014 6216333801222356458/00039 6216333801222356458/00020 6216333801222356458/00035 6216333801222356458/00017 6216333801222356458/00027 6216333801222356458/00007 6216333801222356458/00004 6216333801222356458/00028 6214076366411644242/00029 6214076366411644242/00006 6214076366411644242/00046 6214076366411644242/00009 6214076366411644242/00024 6214076366411644242/00030 6214076366411644242/00022 6214076366411644242/00026 6214076366411644242/00001 6214076366411644242/00049 6214076366411644242/00023 6214076366411644242/00038 6214076366411644242/00037 6214076366411644242/00017 6214076366411644242/00027 6214076366411644242/00008 6214076366411644242/00040 6214076366411644242/00028 5609528366238387914/00003 5609528366238387914/00010 5609528366238387914/00001 5609528366238387914/00023 5609528366238387914/00018 5609528366238387914/00021 5609528366238387914/00020 5609528366238387914/00017 5609528366238387914/00011 5609528366238387914/00007 5609528366238387914/00004 6012476614491614088/00015 6012476614491614088/00006 6012476614491614088/00010 6012476614491614088/00013 6012476614491614088/00001 6012476614491614088/00012 6012476614491614088/00014 6012476614491614088/00016 6012476614491614088/00011 6012476614491614088/00008 6012476614491614088/00007 6012476614491614088/00005 6232325252955631761/00006 6232325252955631761/00001 6232325252955631761/00002 6232325252955631761/00005 5679743350586855665/00015 5679743350586855665/00009 5679743350586855665/00010 5679743350586855665/00024 5679743350586855665/00031 5679743350586855665/00013 5679743350586855665/00022 5679743350586855665/00026 5679743350586855665/00001 5679743350586855665/00023 5679743350586855665/00018 5679743350586855665/00012 5679743350586855665/00021 5679743350586855665/00016 5679743350586855665/00011 5679743350586855665/00027 5679743350586855665/00008 5679743350586855665/00007 5679743350586855665/00004 6144513358098645637/00029 6144513358098645637/00015 6144513358098645637/00006 6144513358098645637/00032 6144513358098645637/00024 6144513358098645637/00030 6144513358098645637/00031 6144513358098645637/00026 6144513358098645637/00001 6144513358098645637/00023 6144513358098645637/00018 6144513358098645637/00021 6144513358098645637/00014 6144513358098645637/00020 6144513358098645637/00035 6144513358098645637/00016 6144513358098645637/00019 6144513358098645637/00027 6144513358098645637/00034 6144513358098645637/00002 6144513358098645637/00007 6144513358098645637/00005 6144513358098645637/00004 6107257952779668800/00029 6107257952779668800/00003 6107257952779668800/00032 6107257952779668800/00073 6107257952779668800/00030 6107257952779668800/00071 6107257952779668800/00058 6107257952779668800/00031 6107257952779668800/00013 6107257952779668800/00044 6107257952779668800/00050 6107257952779668800/00063 6107257952779668800/00023 6107257952779668800/00048 6107257952779668800/00042 6107257952779668800/00041 6107257952779668800/00079 6107257952779668800/00055 6107257952779668800/00011 6107257952779668800/00067 6107257952779668800/00054 6107257952779668800/00043 6107257952779668800/00074 6026548215843453712/00029 6026548215843453712/00006 6026548215843453712/00032 6026548215843453712/00024 6026548215843453712/00030 6026548215843453712/00031 6026548215843453712/00013 6026548215843453712/00022 6026548215843453712/00026 6026548215843453712/00001 6026548215843453712/00012 6026548215843453712/00021 6026548215843453712/00020 6026548215843453712/00016 6026548215843453712/00019 6026548215843453712/00011 6026548215843453712/00027 6026548215843453712/00008 6026548215843453712/00004 6026548215843453712/00028 5978015944392149397/00015 5978015944392149397/00006 5978015944392149397/00013 5978015944392149397/00018 5978015944392149397/00012 5978015944392149397/00021 5978015944392149397/00020 5978015944392149397/00017 5978015944392149397/00016 5978015944392149397/00019 5978015944392149397/00011 5978015944392149397/00002 6151386164765709961/00003 6151386164765709961/00006 6151386164765709961/00004 6085986268252842365/00006 6085986268252842365/00010 6085986268252842365/00024 6085986268252842365/00026 6085986268252842365/00001 6085986268252842365/00023 6085986268252842365/00018 6085986268252842365/00021 6085986268252842365/00017 6085986268252842365/00027 6085986268252842365/00008 6085986268252842365/00007 6085986268252842365/00005 5967562423490367339/00003 5967562423490367339/00010 5967562423490367339/00012 5967562423490367339/00002 5967562423490367339/00008 5967562423490367339/00005 5967562423490367339/00004 6134316246744472906/00029 6134316246744472906/00015 6134316246744472906/00003 6134316246744472906/00046 6134316246744472906/00056 6134316246744472906/00070 6134316246744472906/00073 6134316246744472906/00057 6134316246744472906/00030 6134316246744472906/00058 6134316246744472906/00031 6134316246744472906/00013 6134316246744472906/00022 6134316246744472906/00077 6134316246744472906/00050 6134316246744472906/00036 6134316246744472906/00063 6134316246744472906/00001 6134316246744472906/00066 6134316246744472906/00049 6134316246744472906/00072 6134316246744472906/00023 6134316246744472906/00038 6134316246744472906/00018 6134316246744472906/00042 6134316246744472906/00012 6134316246744472906/00041 6134316246744472906/00065 6134316246744472906/00061 6134316246744472906/00083 6134316246744472906/00021 6134316246744472906/00075 6134316246744472906/00079 6134316246744472906/00014 6134316246744472906/00037 6134316246744472906/00047 6134316246744472906/00020 6134316246744472906/00035 6134316246744472906/00051 6134316246744472906/00017 6134316246744472906/00076 6134316246744472906/00016 6134316246744472906/00059 6134316246744472906/00027 6134316246744472906/00067 6134316246744472906/00081 6134316246744472906/00082 6134316246744472906/00002 6134316246744472906/00008 6134316246744472906/00007 6134316246744472906/00043 6134316246744472906/00074 6143624299868372496/00003 6143624299868372496/00006 6143624299868372496/00011 6143624299868372496/00002 6143624299868372496/00008 6143624299868372496/00007 6143624299868372496/00004 6125441126324102670/00015 6125441126324102670/00032 6125441126324102670/00009 6125441126324102670/00033 6125441126324102670/00013 6125441126324102670/00027 6125441126324102670/00034 6125441126324102670/00002 6125441126324102670/00008 6125441126324102670/00007 6155112478391723923/00024 6155112478391723923/00001 6155112478391723923/00018 6155112478391723923/00021 6155112478391723923/00020 6155112478391723923/00007 6155112478391723923/00025 5925723858569834509/00010 5925723858569834509/00013 5925723858569834509/00001 5925723858569834509/00014 5925723858569834509/00017 5925723858569834509/00016 5925723858569834509/00002 6213268483063265117/00003 6213268483063265117/00033 6213268483063265117/00031 6213268483063265117/00013 6213268483063265117/00022 6213268483063265117/00026 6213268483063265117/00001 6213268483063265117/00018 6213268483063265117/00012 6213268483063265117/00014 6213268483063265117/00035 6213268483063265117/00019 6213268483063265117/00011 6213268483063265117/00007 6213268483063265117/00025 6213268483063265117/00004 5654132031104085226/00002 6076442421424354390/00003 6076442421424354390/00006 6076442421424354390/00009 6076442421424354390/00008 6076442421424354390/00005 6360393446781206759/00015 6360393446781206759/00013 6360393446781206759/00017 6360393446781206759/00011 6360393446781206759/00004 6120195682765419711/00006 6120195682765419711/00032 6120195682765419711/00009 6120195682765419711/00010 6120195682765419711/00026 6120195682765419711/00023 6120195682765419711/00012 6120195682765419711/00021 6120195682765419711/00014 6120195682765419711/00011 6120195682765419711/00034 6120195682765419711/00002 6120195682765419711/00008 6120195682765419711/00007 6221559917428199292/00003 6221559917428199292/00001 6221559917428199292/00002 6221559917428199292/00008 5568172985138654348/00009 5568172985138654348/00011 5568172985138654348/00008 5568172985138654348/00004 6131749574288381036/00029 6131749574288381036/00006 6131749574288381036/00032 6131749574288381036/00009 6131749574288381036/00030 6131749574288381036/00031 6131749574288381036/00026 6131749574288381036/00001 6131749574288381036/00018 6131749574288381036/00012 6131749574288381036/00021 6131749574288381036/00020 6131749574288381036/00011 6131749574288381036/00002 6131749574288381036/00008 6382506515401378320/00001 5981034876904509969/00003 5981034876904509969/00001 5981034876904509969/00002 5981034876904509969/00004 6111243252933694167/00003 6111243252933694167/00009 6111243252933694167/00001 6111243252933694167/00005 6111243252933694167/00004 6091618258868090946/00029 6091618258868090946/00015 6091618258868090946/00003 6091618258868090946/00006 6091618258868090946/00046 6091618258868090946/00009 6091618258868090946/00010 6091618258868090946/00024 6091618258868090946/00030 6091618258868090946/00013 6091618258868090946/00001 6091618258868090946/00045 6091618258868090946/00023 6091618258868090946/00048 6091618258868090946/00012 6091618258868090946/00014 6091618258868090946/00016 6091618258868090946/00011 6091618258868090946/00027 6091618258868090946/00034 6091618258868090946/00008 6091618258868090946/00007 6091618258868090946/00025 6091618258868090946/00028 6134679600977711589/00006 6134679600977711589/00009 6134679600977711589/00001 6134679600977711589/00007 6134679600977711589/00005 6097309520032025236/00029 6097309520032025236/00010 6097309520032025236/00024 6097309520032025236/00022 6097309520032025236/00018 6097309520032025236/00012 6097309520032025236/00016 6097309520032025236/00019 6097309520032025236/00011 6097309520032025236/00027 6097309520032025236/00002 6097309520032025236/00025 6097309520032025236/00005 6097309520032025236/00028 5984444222074506422/00003 5984444222074506422/00006 5984444222074506422/00009 5984444222074506422/00010 5984444222074506422/00024 5984444222074506422/00030 5984444222074506422/00013 5984444222074506422/00026 5984444222074506422/00012 5984444222074506422/00021 5984444222074506422/00014 5984444222074506422/00020 5984444222074506422/00016 5984444222074506422/00011 5984444222074506422/00027 5984444222074506422/00002 5984444222074506422/00007 5984444222074506422/00005 5984444222074506422/00004 5984444222074506422/00028 6386700550965861901/00030 6386700550965861901/00013 6386700550965861901/00001 6386700550965861901/00019 6236766678636402957/00010 6236766678636402957/00013 6236766678636402957/00018 6236766678636402957/00012 6236766678636402957/00017 6236766678636402957/00002 6236766678636402957/00008 6236766678636402957/00007 6236766678636402957/00005 6093172178035724539/00015 6093172178035724539/00006 6093172178035724539/00010 6093172178035724539/00024 6093172178035724539/00013 6093172178035724539/00023 6093172178035724539/00018 6093172178035724539/00012 6093172178035724539/00014 6093172178035724539/00017 6093172178035724539/00016 6093172178035724539/00019 6093172178035724539/00011 6093172178035724539/00008 6093172178035724539/00005 6284976827540550170/00009 6284976827540550170/00010 6284976827540550170/00007 6284976827540550170/00005 5963663452179121142/00006 5963663452179121142/00009 5963663452179121142/00013 5963663452179121142/00018 5963663452179121142/00012 5963663452179121142/00014 5963663452179121142/00020 5963663452179121142/00007 5963663452179121142/00004 6384787143035490080/00011 6384787143035490080/00002 6384787143035490080/00008 6289980034943602890/00029 6289980034943602890/00015 6289980034943602890/00003 6289980034943602890/00006 6289980034943602890/00009 6289980034943602890/00010 6289980034943602890/00013 6289980034943602890/00026 6289980034943602890/00001 6289980034943602890/00023 6289980034943602890/00018 6289980034943602890/00012 6289980034943602890/00014 6289980034943602890/00016 6289980034943602890/00019 6289980034943602890/00002 6289980034943602890/00025 6289980034943602890/00005 6025209474537289413/00015 6025209474537289413/00006 6025209474537289413/00010 6025209474537289413/00013 6025209474537289413/00001 6025209474537289413/00012 6025209474537289413/00016 6025209474537289413/00011 6025209474537289413/00002 6025209474537289413/00008 6025209474537289413/00005 6209488052849259712/00003 6209488052849259712/00006 6209488052849259712/00009 6209488052849259712/00010 6209488052849259712/00001 6209488052849259712/00012 6209488052849259712/00014 6209488052849259712/00011 6209488052849259712/00002 6209488052849259712/00008 6209488052849259712/00007 6209488052849259712/00004 6384102954745239874/00014 6384102954745239874/00019 6384102954745239874/00007 6117157422900290536/00003 6117157422900290536/00009 6117157422900290536/00010 6117157422900290536/00013 6117157422900290536/00002 6117157422900290536/00008 5559416405815590454/00010 5559416405815590454/00001 5559416405815590454/00012 5559416405815590454/00016 5559416405815590454/00002 5559416405815590454/00004 5586115211017711361/00003 5586115211017711361/00032 5586115211017711361/00033 5586115211017711361/00024 5586115211017711361/00030 5586115211017711361/00031 5586115211017711361/00036 5586115211017711361/00001 5586115211017711361/00023 5586115211017711361/00021 5586115211017711361/00020 5586115211017711361/00035 5586115211017711361/00027 5586115211017711361/00025 5586115211017711361/00028 6219673567791731055/00029 6219673567791731055/00015 6219673567791731055/00003 6219673567791731055/00006 6219673567791731055/00009 6219673567791731055/00010 6219673567791731055/00033 6219673567791731055/00024 6219673567791731055/00031 6219673567791731055/00049 6219673567791731055/00038 6219673567791731055/00018 6219673567791731055/00012 6219673567791731055/00014 6219673567791731055/00047 6219673567791731055/00011 6219673567791731055/00034 6219673567791731055/00002 6219673567791731055/00008 6219673567791731055/00040 6219673567791731055/00007 6219673567791731055/00025 6219673567791731055/00043 6219673567791731055/00005 6219673567791731055/00004 6249317861565449483/00006 6249317861565449483/00009 6249317861565449483/00010 6249317861565449483/00001 6249317861565449483/00002 6249317861565449483/00008 6249317861565449483/00007 5965754671755540013/00029 5965754671755540013/00032 5965754671755540013/00030 5965754671755540013/00031 5965754671755540013/00022 5965754671755540013/00026 5965754671755540013/00044 5965754671755540013/00036 5965754671755540013/00001 5965754671755540013/00023 5965754671755540013/00042 5965754671755540013/00014 5965754671755540013/00035 5965754671755540013/00011 5965754671755540013/00027 5965754671755540013/00002 5965754671755540013/00040 5965754671755540013/00025 5965754671755540013/00043 5965754671755540013/00005 5965754671755540013/00028 6361814651459450364/00025 6290624280168490143/00015 6290624280168490143/00006 6290624280168490143/00098 6290624280168490143/00046 6290624280168490143/00056 6290624280168490143/00128 6290624280168490143/00113 6290624280168490143/00122 6290624280168490143/00070 6290624280168490143/00090 6290624280168490143/00073 6290624280168490143/00112 6290624280168490143/00123 6290624280168490143/00057 6290624280168490143/00024 6290624280168490143/00141 6290624280168490143/00053 6290624280168490143/00118 6290624280168490143/00116 6290624280168490143/00078 6290624280168490143/00071 6290624280168490143/00121 6290624280168490143/00013 6290624280168490143/00137 6290624280168490143/00022 6290624280168490143/00094 6290624280168490143/00026 6290624280168490143/00130 6290624280168490143/00099 6290624280168490143/00093 6290624280168490143/00120 6290624280168490143/00103 6290624280168490143/00050 6290624280168490143/00105 6290624280168490143/00036 6290624280168490143/00110 6290624280168490143/00001 6290624280168490143/00045 6290624280168490143/00066 6290624280168490143/00136 6290624280168490143/00049 6290624280168490143/00072 6290624280168490143/00114 6290624280168490143/00038 6290624280168490143/00088 6290624280168490143/00048 6290624280168490143/00134 6290624280168490143/00108 6290624280168490143/00018 6290624280168490143/00085 6290624280168490143/00042 6290624280168490143/00135 6290624280168490143/00041 6290624280168490143/00126 6290624280168490143/00065 6290624280168490143/00129 6290624280168490143/00083 6290624280168490143/00021 6290624280168490143/00075 6290624280168490143/00104 6290624280168490143/00014 6290624280168490143/00037 6290624280168490143/00127 6290624280168490143/00047 6290624280168490143/00039 6290624280168490143/00124 6290624280168490143/00035 6290624280168490143/00051 6290624280168490143/00080 6290624280168490143/00052 6290624280168490143/00091 6290624280168490143/00055 6290624280168490143/00095 6290624280168490143/00111 6290624280168490143/00059 6290624280168490143/00019 6290624280168490143/00084 6290624280168490143/00115 6290624280168490143/00081 6290624280168490143/00082 6290624280168490143/00100 6290624280168490143/00002 6290624280168490143/00106 6290624280168490143/00087 6290624280168490143/00131 6290624280168490143/00040 6290624280168490143/00007 6290624280168490143/00102 6290624280168490143/00068 6290624280168490143/00132 6290624280168490143/00097 6290624280168490143/00139 6290624280168490143/00054 6290624280168490143/00005 6092631012156491804/00149 6092631012156491804/00125 6092631012156491804/00060 6092631012156491804/00029 6092631012156491804/00006 6092631012156491804/00098 6092631012156491804/00046 6092631012156491804/00107 6092631012156491804/00056 6092631012156491804/00032 6092631012156491804/00128 6092631012156491804/00113 6092631012156491804/00109 6092631012156491804/00070 6092631012156491804/00009 6092631012156491804/00090 6092631012156491804/00152 6092631012156491804/00073 6092631012156491804/00112 6092631012156491804/00010 6092631012156491804/00033 6092631012156491804/00141 6092631012156491804/00058 6092631012156491804/00121 6092631012156491804/00062 6092631012156491804/00031 6092631012156491804/00013 6092631012156491804/00137 6092631012156491804/00150 6092631012156491804/00069 6092631012156491804/00026 6092631012156491804/00099 6092631012156491804/00103 6092631012156491804/00105 6092631012156491804/00110 6092631012156491804/00001 6092631012156491804/00045 6092631012156491804/00064 6092631012156491804/00136 6092631012156491804/00072 6092631012156491804/00023 6092631012156491804/00114 6092631012156491804/00038 6092631012156491804/00088 6092631012156491804/00108 6092631012156491804/00018 6092631012156491804/00126 6092631012156491804/00065 6092631012156491804/00129 6092631012156491804/00144 6092631012156491804/00061 6092631012156491804/00075 6092631012156491804/00151 6092631012156491804/00079 6092631012156491804/00014 6092631012156491804/00037 6092631012156491804/00127 6092631012156491804/00020 6092631012156491804/00035 6092631012156491804/00051 6092631012156491804/00080 6092631012156491804/00091 6092631012156491804/00055 6092631012156491804/00016 6092631012156491804/00111 6092631012156491804/00059 6092631012156491804/00146 6092631012156491804/00019 6092631012156491804/00027 6092631012156491804/00067 6092631012156491804/00153 6092631012156491804/00034 6092631012156491804/00082 6092631012156491804/00002 6092631012156491804/00133 6092631012156491804/00106 6092631012156491804/00092 6092631012156491804/00008 6092631012156491804/00087 6092631012156491804/00131 6092631012156491804/00007 6092631012156491804/00068 6092631012156491804/00143 6092631012156491804/00132 6092631012156491804/00097 6092631012156491804/00025 6092631012156491804/00005 6092631012156491804/00074 6082348860449793067/00029 6082348860449793067/00009 6082348860449793067/00010 6082348860449793067/00030 6082348860449793067/00031 6082348860449793067/00013 6082348860449793067/00026 6082348860449793067/00001 6082348860449793067/00018 6082348860449793067/00035 6082348860449793067/00017 6082348860449793067/00007 6082348860449793067/00005 6082348860449793067/00028 5985201854175750422/00002 6179311612627566991/00003 6179311612627566991/00006 6179311612627566991/00009 6179311612627566991/00010 6179311612627566991/00022 6179311612627566991/00026 6179311612627566991/00001 6179311612627566991/00018 6179311612627566991/00012 6179311612627566991/00017 6179311612627566991/00016 6179311612627566991/00002 6179311612627566991/00008 6179311612627566991/00007 6179311612627566991/00005 6179311612627566991/00004 6265286120475323787/00029 6265286120475323787/00015 6265286120475323787/00006 6265286120475323787/00032 6265286120475323787/00024 6265286120475323787/00031 6265286120475323787/00022 6265286120475323787/00044 6265286120475323787/00048 6265286120475323787/00047 6265286120475323787/00035 6265286120475323787/00016 6265286120475323787/00002 6265286120475323787/00040 6265286120475323787/00025 5974738025351798949/00029 5974738025351798949/00003 5974738025351798949/00010 5974738025351798949/00031 5974738025351798949/00013 5974738025351798949/00023 5974738025351798949/00042 5974738025351798949/00041 5974738025351798949/00039 5974738025351798949/00035 5974738025351798949/00011 5974738025351798949/00007 5974738025351798949/00043 5974738025351798949/00005 5974738025351798949/00028 6115429557557045385/00003 6115429557557045385/00009 6115429557557045385/00013 6115429557557045385/00002 6115429557557045385/00005 6115429557557045385/00004 6227087540338089946/00003 6227087540338089946/00006 6227087540338089946/00046 6227087540338089946/00032 6227087540338089946/00024 6227087540338089946/00053 6227087540338089946/00013 6227087540338089946/00026 6227087540338089946/00001 6227087540338089946/00049 6227087540338089946/00048 6227087540338089946/00042 6227087540338089946/00012 6227087540338089946/00014 6227087540338089946/00047 6227087540338089946/00051 6227087540338089946/00027 6227087540338089946/00002 6227087540338089946/00040 6227087540338089946/00028 6125193736207787550/00015 6125193736207787550/00032 6125193736207787550/00010 6125193736207787550/00033 6125193736207787550/00024 6125193736207787550/00030 6125193736207787550/00013 6125193736207787550/00022 6125193736207787550/00026 6125193736207787550/00044 6125193736207787550/00023 6125193736207787550/00014 6125193736207787550/00039 6125193736207787550/00020 6125193736207787550/00019 6125193736207787550/00011 6125193736207787550/00034 6125193736207787550/00008 6125193736207787550/00040 6125193736207787550/00025 6125193736207787550/00028 6340871531930708209/00073 6340871531930708209/00057 6340871531930708209/00058 6340871531930708209/00031 6340871531930708209/00094 6340871531930708209/00037 6340871531930708209/00106 6340871531930708209/00092 6340871531930708209/00102 6340871531930708209/00025 6083825470206222479/00029 6083825470206222479/00015 6083825470206222479/00006 6083825470206222479/00046 6083825470206222479/00032 6083825470206222479/00010 6083825470206222479/00030 6083825470206222479/00031 6083825470206222479/00022 6083825470206222479/00045 6083825470206222479/00049 6083825470206222479/00023 6083825470206222479/00038 6083825470206222479/00012 6083825470206222479/00021 6083825470206222479/00014 6083825470206222479/00037 6083825470206222479/00035 6083825470206222479/00051 6083825470206222479/00017 6083825470206222479/00052 6083825470206222479/00034 6083825470206222479/00040 6083825470206222479/00028 5965495685227591328/00003 5965495685227591328/00024 5965495685227591328/00026 5965495685227591328/00036 5965495685227591328/00038 5965495685227591328/00012 5965495685227591328/00041 5965495685227591328/00014 5965495685227591328/00037 5965495685227591328/00039 5965495685227591328/00017 5965495685227591328/00016 5965495685227591328/00027 5965495685227591328/00034 5965495685227591328/00025 5965495685227591328/00005 5965495685227591328/00028 6125769691322180759/00029 6125769691322180759/00015 6125769691322180759/00003 6125769691322180759/00006 6125769691322180759/00009 6125769691322180759/00030 6125769691322180759/00022 6125769691322180759/00026 6125769691322180759/00001 6125769691322180759/00023 6125769691322180759/00042 6125769691322180759/00021 6125769691322180759/00014 6125769691322180759/00037 6125769691322180759/00047 6125769691322180759/00020 6125769691322180759/00035 6125769691322180759/00027 6125769691322180759/00002 6125769691322180759/00008 6125769691322180759/00025 6125769691322180759/00005 6125769691322180759/00004 6125769691322180759/00028 6259031789098821587/00003 5946848655215229657/00015 5946848655215229657/00003 5946848655215229657/00006 5946848655215229657/00009 5946848655215229657/00013 5946848655215229657/00012 5946848655215229657/00021 5946848655215229657/00014 5946848655215229657/00020 5946848655215229657/00017 5946848655215229657/00016 5946848655215229657/00019 5946848655215229657/00011 5946848655215229657/00002 5946848655215229657/00008 6261903833729721671/00003 6261903833729721671/00006 6261903833729721671/00001 6261903833729721671/00005 6261903833729721671/00004 5560262943869602943/00029 5560262943869602943/00032 5560262943869602943/00030 5560262943869602943/00031 5560262943869602943/00044 5560262943869602943/00036 5560262943869602943/00001 5560262943869602943/00049 5560262943869602943/00014 5560262943869602943/00037 5560262943869602943/00047 5560262943869602943/00039 5560262943869602943/00035 5560262943869602943/00017 5560262943869602943/00016 5560262943869602943/00011 5560262943869602943/00027 5560262943869602943/00034 5560262943869602943/00043 5560262943869602943/00004 6137234677022104166/00014 6137234677022104166/00007 5705995049693470612/00015 5705995049693470612/00006 5705995049693470612/00009 5705995049693470612/00010 5705995049693470612/00011 5705995049693470612/00005 5968070088624821576/00029 5968070088624821576/00003 5968070088624821576/00006 5968070088624821576/00046 5968070088624821576/00010 5968070088624821576/00053 5968070088624821576/00030 5968070088624821576/00058 5968070088624821576/00031 5968070088624821576/00026 5968070088624821576/00044 5968070088624821576/00050 5968070088624821576/00036 5968070088624821576/00063 5968070088624821576/00064 5968070088624821576/00049 5968070088624821576/00023 5968070088624821576/00038 5968070088624821576/00048 5968070088624821576/00012 5968070088624821576/00061 5968070088624821576/00021 5968070088624821576/00037 5968070088624821576/00047 5968070088624821576/00039 5968070088624821576/00051 5968070088624821576/00017 5968070088624821576/00052 5968070088624821576/00055 5968070088624821576/00016 5968070088624821576/00019 5968070088624821576/00011 5968070088624821576/00027 5968070088624821576/00034 5968070088624821576/00002 5968070088624821576/00025 5968070088624821576/00054 5968070088624821576/00043 5968070088624821576/00005 5968070088624821576/00004 5968070088624821576/00028 6005936238423694687/00015 6005936238423694687/00006 6005936238423694687/00009 6005936238423694687/00010 6005936238423694687/00013 6005936238423694687/00022 6005936238423694687/00026 6005936238423694687/00001 6005936238423694687/00023 6005936238423694687/00012 6005936238423694687/00021 6005936238423694687/00014 6005936238423694687/00020 6005936238423694687/00017 6005936238423694687/00016 6005936238423694687/00019 6005936238423694687/00011 6005936238423694687/00008 6005936238423694687/00025 6005936238423694687/00005 6005936238423694687/00004 5929461768607545810/00015 5929461768607545810/00003 5929461768607545810/00009 5929461768607545810/00010 5929461768607545810/00013 5929461768607545810/00001 5929461768607545810/00012 5929461768607545810/00017 5929461768607545810/00016 5929461768607545810/00008 5929461768607545810/00005 5574337122201878384/00003 5574337122201878384/00001 5574337122201878384/00012 5574337122201878384/00014 5574337122201878384/00016 5574337122201878384/00019 5574337122201878384/00011 5574337122201878384/00008 5574337122201878384/00007 5574337122201878384/00004 5599145712297029189/00003 5599145712297029189/00006 5599145712297029189/00009 5599145712297029189/00010 5599145712297029189/00012 5599145712297029189/00014 5599145712297029189/00002 5599145712297029189/00005 6254853215416601318/00003 6254853215416601318/00006 6254853215416601318/00002 6254853215416601318/00005 6254853215416601318/00004 5565550907604443612/00024 5565550907604443612/00022 5565550907604443612/00021 5565550907604443612/00014 5565550907604443612/00020 5565550907604443612/00011 5565550907604443612/00007 5565550907604443612/00025 6358088337833374405/00015 6358088337833374405/00011 6130448199197719090/00029 6130448199197719090/00015 6130448199197719090/00006 6130448199197719090/00046 6130448199197719090/00056 6130448199197719090/00032 6130448199197719090/00009 6130448199197719090/00024 6130448199197719090/00013 6130448199197719090/00022 6130448199197719090/00044 6130448199197719090/00050 6130448199197719090/00036 6130448199197719090/00001 6130448199197719090/00049 6130448199197719090/00038 6130448199197719090/00048 6130448199197719090/00018 6130448199197719090/00012 6130448199197719090/00041 6130448199197719090/00014 6130448199197719090/00037 6130448199197719090/00047 6130448199197719090/00035 6130448199197719090/00051 6130448199197719090/00052 6130448199197719090/00055 6130448199197719090/00016 6130448199197719090/00019 6130448199197719090/00011 6130448199197719090/00002 6130448199197719090/00008 6130448199197719090/00040 6130448199197719090/00007 6130448199197719090/00054 6130448199197719090/00043 6130448199197719090/00005 6130448199197719090/00004 6114992759383040695/00015 6114992759383040695/00023 6114992759383040695/00018 6114992759383040695/00020 6114992759383040695/00019 6114992759383040695/00025 5558778603172105284/00003 5558778603172105284/00006 5558778603172105284/00001 5558778603172105284/00011 5558778603172105284/00002 5558778603172105284/00008 5558778603172105284/00007 5558778603172105284/00004 6131333391957423879/00029 6131333391957423879/00056 6131333391957423879/00032 6131333391957423879/00010 6131333391957423879/00033 6131333391957423879/00057 6131333391957423879/00058 6131333391957423879/00031 6131333391957423879/00013 6131333391957423879/00026 6131333391957423879/00036 6131333391957423879/00038 6131333391957423879/00012 6131333391957423879/00021 6131333391957423879/00047 6131333391957423879/00039 6131333391957423879/00035 6131333391957423879/00016 6131333391957423879/00059 6131333391957423879/00019 6131333391957423879/00034 6131333391957423879/00040 6131333391957423879/00007 6131333391957423879/00005 6350921755403330389/00056 6350921755403330389/00030 6350921755403330389/00058 6350921755403330389/00062 6350921755403330389/00041 6350921755403330389/00027 6204439748289599098/00029 6204439748289599098/00006 6204439748289599098/00032 6204439748289599098/00009 6204439748289599098/00010 6204439748289599098/00033 6204439748289599098/00024 6204439748289599098/00031 6204439748289599098/00013 6204439748289599098/00026 6204439748289599098/00036 6204439748289599098/00001 6204439748289599098/00049 6204439748289599098/00023 6204439748289599098/00038 6204439748289599098/00018 6204439748289599098/00042 6204439748289599098/00012 6204439748289599098/00041 6204439748289599098/00021 6204439748289599098/00037 6204439748289599098/00047 6204439748289599098/00039 6204439748289599098/00020 6204439748289599098/00035 6204439748289599098/00051 6204439748289599098/00017 6204439748289599098/00052 6204439748289599098/00055 6204439748289599098/00016 6204439748289599098/00019 6204439748289599098/00034 6204439748289599098/00008 6204439748289599098/00040 6204439748289599098/00007 6204439748289599098/00025 6204439748289599098/00043 6138042560370547560/00015 6138042560370547560/00003 6138042560370547560/00006 6138042560370547560/00009 6138042560370547560/00010 6138042560370547560/00018 6138042560370547560/00021 6138042560370547560/00020 6138042560370547560/00017 6138042560370547560/00016 6138042560370547560/00008 6138042560370547560/00007 6138042560370547560/00004 6132634767048085803/00060 6132634767048085803/00029 6132634767048085803/00015 6132634767048085803/00003 6132634767048085803/00006 6132634767048085803/00046 6132634767048085803/00032 6132634767048085803/00009 6132634767048085803/00010 6132634767048085803/00033 6132634767048085803/00057 6132634767048085803/00024 6132634767048085803/00053 6132634767048085803/00030 6132634767048085803/00062 6132634767048085803/00013 6132634767048085803/00026 6132634767048085803/00050 6132634767048085803/00063 6132634767048085803/00001 6132634767048085803/00045 6132634767048085803/00066 6132634767048085803/00049 6132634767048085803/00023 6132634767048085803/00038 6132634767048085803/00048 6132634767048085803/00012 6132634767048085803/00041 6132634767048085803/00065 6132634767048085803/00021 6132634767048085803/00014 6132634767048085803/00047 6132634767048085803/00039 6132634767048085803/00020 6132634767048085803/00035 6132634767048085803/00055 6132634767048085803/00019 6132634767048085803/00011 6132634767048085803/00067 6132634767048085803/00002 6132634767048085803/00025 6132634767048085803/00005 6017826425755458919/00029 6017826425755458919/00015 6017826425755458919/00003 6017826425755458919/00006 6017826425755458919/00032 6017826425755458919/00033 6017826425755458919/00024 6017826425755458919/00030 6017826425755458919/00031 6017826425755458919/00013 6017826425755458919/00026 6017826425755458919/00001 6017826425755458919/00012 6017826425755458919/00021 6017826425755458919/00014 6017826425755458919/00020 6017826425755458919/00019 6017826425755458919/00027 6017826425755458919/00005 6017826425755458919/00004 6017826425755458919/00028 6001784722904905156/00001 5971440778958659808/00015 5971440778958659808/00032 5971440778958659808/00073 5971440778958659808/00010 5971440778958659808/00013 5971440778958659808/00069 5971440778958659808/00026 5971440778958659808/00077 5971440778958659808/00036 5971440778958659808/00063 5971440778958659808/00066 5971440778958659808/00072 5971440778958659808/00038 5971440778958659808/00048 5971440778958659808/00018 5971440778958659808/00042 5971440778958659808/00041 5971440778958659808/00065 5971440778958659808/00061 5971440778958659808/00014 5971440778958659808/00047 5971440778958659808/00039 5971440778958659808/00051 5971440778958659808/00080 5971440778958659808/00019 5971440778958659808/00067 5971440778958659808/00081 5971440778958659808/00002 5971440778958659808/00040 5971440778958659808/00005 5990800344045436439/00029 5990800344045436439/00015 5990800344045436439/00056 5990800344045436439/00010 5990800344045436439/00053 5990800344045436439/00030 5990800344045436439/00058 5990800344045436439/00026 5990800344045436439/00063 5990800344045436439/00045 5990800344045436439/00066 5990800344045436439/00049 5990800344045436439/00048 5990800344045436439/00012 5990800344045436439/00041 5990800344045436439/00065 5990800344045436439/00061 5990800344045436439/00047 5990800344045436439/00020 5990800344045436439/00051 5990800344045436439/00059 5990800344045436439/00027 5990800344045436439/00007 5990800344045436439/00054 5990800344045436439/00074 6232677010777147805/00009 6232677010777147805/00002 6232677010777147805/00008 6232677010777147805/00007 5677085195327362770/00015 5677085195327362770/00003 5677085195327362770/00006 5677085195327362770/00013 5677085195327362770/00011 5677085195327362770/00002 5677085195327362770/00007 5677085195327362770/00005 5971092886607683837/00006 5971092886607683837/00009 5971092886607683837/00010 5971092886607683837/00002 5971092886607683837/00008 5957710627637279200/00060 5957710627637279200/00029 5957710627637279200/00015 5957710627637279200/00003 5957710627637279200/00006 5957710627637279200/00046 5957710627637279200/00032 5957710627637279200/00009 5957710627637279200/00073 5957710627637279200/00010 5957710627637279200/00057 5957710627637279200/00053 5957710627637279200/00030 5957710627637279200/00058 5957710627637279200/00062 5957710627637279200/00031 5957710627637279200/00069 5957710627637279200/00022 5957710627637279200/00026 5957710627637279200/00036 5957710627637279200/00001 5957710627637279200/00045 5957710627637279200/00066 5957710627637279200/00072 5957710627637279200/00023 5957710627637279200/00038 5957710627637279200/00048 5957710627637279200/00041 5957710627637279200/00065 5957710627637279200/00021 5957710627637279200/00014 5957710627637279200/00047 5957710627637279200/00039 5957710627637279200/00020 5957710627637279200/00035 5957710627637279200/00051 5957710627637279200/00017 5957710627637279200/00016 5957710627637279200/00019 5957710627637279200/00011 5957710627637279200/00027 5957710627637279200/00034 5957710627637279200/00002 5957710627637279200/00040 5957710627637279200/00007 5957710627637279200/00025 5957710627637279200/00005 5957710627637279200/00074 5957710627637279200/00004 5929987472604579145/00006 5929987472604579145/00009 5929987472604579145/00010 5929987472604579145/00013 5929987472604579145/00022 5929987472604579145/00001 5929987472604579145/00018 5929987472604579145/00012 5929987472604579145/00021 5929987472604579145/00017 5929987472604579145/00016 5929987472604579145/00011 5929987472604579145/00002 5929987472604579145/00005 5887129711944727206/00003 5887129711944727206/00002 5887129711944727206/00005 5887129711944727206/00004 6095383227199770806/00029 6095383227199770806/00006 6095383227199770806/00046 6095383227199770806/00056 6095383227199770806/00009 6095383227199770806/00073 6095383227199770806/00010 6095383227199770806/00024 6095383227199770806/00053 6095383227199770806/00071 6095383227199770806/00058 6095383227199770806/00062 6095383227199770806/00031 6095383227199770806/00013 6095383227199770806/00069 6095383227199770806/00022 6095383227199770806/00026 6095383227199770806/00050 6095383227199770806/00036 6095383227199770806/00063 6095383227199770806/00001 6095383227199770806/00045 6095383227199770806/00066 6095383227199770806/00049 6095383227199770806/00042 6095383227199770806/00041 6095383227199770806/00021 6095383227199770806/00047 6095383227199770806/00020 6095383227199770806/00035 6095383227199770806/00051 6095383227199770806/00055 6095383227199770806/00016 6095383227199770806/00059 6095383227199770806/00011 6095383227199770806/00034 6095383227199770806/00002 6095383227199770806/00008 6095383227199770806/00040 6095383227199770806/00007 6095383227199770806/00025 6095383227199770806/00043 6095383227199770806/00005 6095383227199770806/00028 6214872653348257156/00009 5923737006698702589/00002 5923737006698702589/00008 5923737006698702589/00007 5923737006698702589/00004 5581816807747869545/00003 5581816807747869545/00009 5581816807747869545/00010 5581816807747869545/00011 5581816807747869545/00008 6124277619683545525/00003 6124277619683545525/00046 6124277619683545525/00032 6124277619683545525/00009 6124277619683545525/00010 6124277619683545525/00058 6124277619683545525/00001 6124277619683545525/00045 6124277619683545525/00023 6124277619683545525/00038 6124277619683545525/00039 6124277619683545525/00035 6124277619683545525/00059 6124277619683545525/00019 6124277619683545525/00011 6124277619683545525/00034 6124277619683545525/00008 6124277619683545525/00007 6124277619683545525/00005 5978862482576623786/00060 5978862482576623786/00029 5978862482576623786/00015 5978862482576623786/00003 5978862482576623786/00006 5978862482576623786/00032 5978862482576623786/00070 5978862482576623786/00073 5978862482576623786/00057 5978862482576623786/00078 5978862482576623786/00030 5978862482576623786/00071 5978862482576623786/00031 5978862482576623786/00086 5978862482576623786/00013 5978862482576623786/00069 5978862482576623786/00036 5978862482576623786/00063 5978862482576623786/00045 5978862482576623786/00064 5978862482576623786/00038 5978862482576623786/00088 5978862482576623786/00085 5978862482576623786/00012 5978862482576623786/00083 5978862482576623786/00021 5978862482576623786/00075 5978862482576623786/00079 5978862482576623786/00014 5978862482576623786/00039 5978862482576623786/00020 5978862482576623786/00035 5978862482576623786/00017 5978862482576623786/00076 5978862482576623786/00080 5978862482576623786/00059 5978862482576623786/00019 5978862482576623786/00027 5978862482576623786/00067 5978862482576623786/00002 5978862482576623786/00008 5978862482576623786/00007 5978862482576623786/00068 5978862482576623786/00074 6348409199535164855/00022 6348409199535164855/00011 6348409199535164855/00054 6105046903615779246/00003 6105046903615779246/00001 6105046903615779246/00002 5859666832060698700/00029 5859666832060698700/00003 5859666832060698700/00006 5859666832060698700/00009 5859666832060698700/00010 5859666832060698700/00024 5859666832060698700/00030 5859666832060698700/00013 5859666832060698700/00022 5859666832060698700/00026 5859666832060698700/00036 5859666832060698700/00001 5859666832060698700/00049 5859666832060698700/00048 5859666832060698700/00012 5859666832060698700/00041 5859666832060698700/00014 5859666832060698700/00037 5859666832060698700/00047 5859666832060698700/00039 5859666832060698700/00051 5859666832060698700/00052 5859666832060698700/00055 5859666832060698700/00027 5859666832060698700/00002 5859666832060698700/00008 5859666832060698700/00007 5859666832060698700/00025 5859666832060698700/00005 5859666832060698700/00004 5859666832060698700/00028 6084130842380967939/00029 6084130842380967939/00003 6084130842380967939/00009 6084130842380967939/00010 6084130842380967939/00013 6084130842380967939/00022 6084130842380967939/00026 6084130842380967939/00001 6084130842380967939/00021 6084130842380967939/00014 6084130842380967939/00020 6084130842380967939/00016 6084130842380967939/00002 6084130842380967939/00025 6084130842380967939/00028 6220713379374157627/00003 6220713379374157627/00010 6220713379374157627/00013 6220713379374157627/00001 6220713379374157627/00016 6220713379374157627/00011 6220713379374157627/00005 6371114973642221152/00010 6371114973642221152/00004 5904970147098843855/00015 5904970147098843855/00003 5904970147098843855/00006 5904970147098843855/00009 5904970147098843855/00001 5904970147098843855/00018 5904970147098843855/00021 5904970147098843855/00014 5904970147098843855/00020 5904970147098843855/00017 5904970147098843855/00019 5904970147098843855/00007 5904970147098843855/00005 5904970147098843855/00004 6237102974575619905/00015 6237102974575619905/00009 6237102974575619905/00010 6237102974575619905/00001 6237102974575619905/00014 6237102974575619905/00016 6237102974575619905/00011 6237102974575619905/00002 6237102974575619905/00005 5860236344724086094/00006 5860236344724086094/00009 5860236344724086094/00010 5860236344724086094/00002 5860236344724086094/00007 5860236344724086094/00004 5862666437220161189/00003 5862666437220161189/00010 5862666437220161189/00002 5862666437220161189/00007 5862666437220161189/00005 5862666437220161189/00004 6205193515049986329/00003 6205193515049986329/00006 6205193515049986329/00010 6205193515049986329/00001 6205193515049986329/00002 6205193515049986329/00008 6205193515049986329/00004 6296109382771726376/00006 6296109382771726376/00001 6296109382771726376/00012 6296109382771726376/00002 6170670997421536978/00003 6170670997421536978/00032 6170670997421536978/00010 6170670997421536978/00024 6170670997421536978/00031 6170670997421536978/00013 6170670997421536978/00026 6170670997421536978/00023 6170670997421536978/00038 6170670997421536978/00018 6170670997421536978/00012 6170670997421536978/00021 6170670997421536978/00037 6170670997421536978/00039 6170670997421536978/00020 6170670997421536978/00035 6170670997421536978/00017 6170670997421536978/00027 6170670997421536978/00007 6170670997421536978/00025 6170670997421536978/00005 6170670997421536978/00028 6353233306802036640/00024 6353233306802036640/00038 6353233306802036640/00037 6353233306802036640/00039 6353233306802036640/00017 6353233306802036640/00019 6353233306802036640/00005 5908680998842594835/00015 5908680998842594835/00003 5908680998842594835/00006 5908680998842594835/00010 5908680998842594835/00024 5908680998842594835/00026 5908680998842594835/00023 5908680998842594835/00021 5908680998842594835/00020 5908680998842594835/00017 5908680998842594835/00016 5908680998842594835/00011 5908680998842594835/00002 5908680998842594835/00008 5908680998842594835/00025 5908680998842594835/00005 5975893801051157211/00032 5975893801051157211/00013 5975893801051157211/00022 5975893801051157211/00018 5975893801051157211/00042 5975893801051157211/00012 5975893801051157211/00041 5975893801051157211/00021 5975893801051157211/00037 5975893801051157211/00020 5975893801051157211/00035 5975893801051157211/00019 5975893801051157211/00034 5975893801051157211/00002 5975893801051157211/00008 5975893801051157211/00040 5975893801051157211/00007 5975893801051157211/00043 5975893801051157211/00005 5975893801051157211/00004 5975893801051157211/00028 6254141968832317959/00003 6254141968832317959/00006 6143608837986107506/00006 6143608837986107506/00009 6143608837986107506/00010 6143608837986107506/00001 6143608837986107506/00005 6143608837986107506/00004 5932001382769673366/00003 5932001382769673366/00001 6262000470493881682/00002 6151312720825015447/00015 6151312720825015447/00003 6151312720825015447/00006 6151312720825015447/00010 6151312720825015447/00033 6151312720825015447/00030 6151312720825015447/00013 6151312720825015447/00022 6151312720825015447/00044 6151312720825015447/00036 6151312720825015447/00001 6151312720825015447/00045 6151312720825015447/00038 6151312720825015447/00048 6151312720825015447/00018 6151312720825015447/00039 6151312720825015447/00020 6151312720825015447/00035 6151312720825015447/00016 6151312720825015447/00019 6151312720825015447/00007 6151312720825015447/00004 6342440912980576694/00002 5981765450841559994/00015 5981765450841559994/00006 5981765450841559994/00009 5981765450841559994/00001 5981765450841559994/00017 5981765450841559994/00016 5981765450841559994/00002 5981765450841559994/00008 5981765450841559994/00007 6116113745847299314/00015 6116113745847299314/00003 6116113745847299314/00056 6116113745847299314/00032 6116113745847299314/00009 6116113745847299314/00057 6116113745847299314/00024 6116113745847299314/00058 6116113745847299314/00031 6116113745847299314/00013 6116113745847299314/00022 6116113745847299314/00026 6116113745847299314/00036 6116113745847299314/00001 6116113745847299314/00023 6116113745847299314/00038 6116113745847299314/00048 6116113745847299314/00018 6116113745847299314/00021 6116113745847299314/00047 6116113745847299314/00039 6116113745847299314/00020 6116113745847299314/00035 6116113745847299314/00017 6116113745847299314/00052 6116113745847299314/00055 6116113745847299314/00016 6116113745847299314/00019 6116113745847299314/00011 6116113745847299314/00027 6116113745847299314/00002 6116113745847299314/00008 6116113745847299314/00007 6116113745847299314/00025 6116113745847299314/00043 6116113745847299314/00004 6101336051872035625/00003 6101336051872035625/00002 6101336051872035625/00005 5711190242134719280/00015 5711190242134719280/00013 5711190242134719280/00001 5711190242134719280/00014 5711190242134719280/00017 6076720735305202434/00003 6076720735305202434/00006 6076720735305202434/00009 6076720735305202434/00010 6076720735305202434/00031 6076720735305202434/00013 6076720735305202434/00022 6076720735305202434/00018 6076720735305202434/00012 6076720735305202434/00020 6076720735305202434/00017 6076720735305202434/00016 6076720735305202434/00019 6076720735305202434/00011 6076720735305202434/00008 6076720735305202434/00007 6076720735305202434/00005 6076720735305202434/00004 5543088658143102908/00003 5543088658143102908/00006 5543088658143102908/00009 5543088658143102908/00010 5543088658143102908/00023 5543088658143102908/00021 5543088658143102908/00020 5543088658143102908/00019 5543088658143102908/00011 5543088658143102908/00002 5543088658143102908/00008 5543088658143102908/00007 5543088658143102908/00005 5543088658143102908/00004 6251915457786071376/00003 6251915457786071376/00006 6251915457786071376/00013 6251915457786071376/00012 6251915457786071376/00011 6251915457786071376/00007 6368177216011755289/00003 6368177216011755289/00013 6368177216011755289/00012 6368177216011755289/00016 6368177216011755289/00005 5925766378746064555/00010 5925766378746064555/00013 5925766378746064555/00008 5925766378746064555/00007 5925766378746064555/00005 5925766378746064555/00004 6289112881177026921/00029 6289112881177026921/00030 6289112881177026921/00013 6289112881177026921/00026 6289112881177026921/00001 6289112881177026921/00034 6289112881177026921/00007 6289112881177026921/00028 6247172525401095427/00029 6247172525401095427/00015 6247172525401095427/00003 6247172525401095427/00032 6247172525401095427/00009 6247172525401095427/00010 6247172525401095427/00024 6247172525401095427/00030 6247172525401095427/00031 6247172525401095427/00022 6247172525401095427/00001 6247172525401095427/00023 6247172525401095427/00018 6247172525401095427/00012 6247172525401095427/00021 6247172525401095427/00014 6247172525401095427/00020 6247172525401095427/00017 6247172525401095427/00016 6247172525401095427/00019 6247172525401095427/00027 6247172525401095427/00002 6247172525401095427/00008 6247172525401095427/00007 6247172525401095427/00005 6199232959436684504/00003 6199232959436684504/00006 6199232959436684504/00009 6199232959436684504/00002 6199232959436684504/00008 6199232959436684504/00007 6199232959436684504/00004 5959179506452511090/00029 5959179506452511090/00032 5959179506452511090/00010 5959179506452511090/00024 5959179506452511090/00030 5959179506452511090/00031 5959179506452511090/00013 5959179506452511090/00022 5959179506452511090/00001 5959179506452511090/00023 5959179506452511090/00018 5959179506452511090/00012 5959179506452511090/00021 5959179506452511090/00014 5959179506452511090/00017 5959179506452511090/00019 5959179506452511090/00011 5959179506452511090/00027 5959179506452511090/00034 5959179506452511090/00008 5959179506452511090/00007 5959179506452511090/00004 6258632357140358416/00004 6334563083966338309/00057 6334563083966338309/00024 6334563083966338309/00103 6334563083966338309/00081 6334563083966338309/00106 6334563083966338309/00089 6334563083966338309/00004 6212244133363172196/00006 6212244133363172196/00030 6212244133363172196/00013 6212244133363172196/00022 6212244133363172196/00026 6212244133363172196/00001 6212244133363172196/00018 6212244133363172196/00014 6212244133363172196/00017 6212244133363172196/00019 6212244133363172196/00011 6212244133363172196/00027 6212244133363172196/00007 6212244133363172196/00025 6212244133363172196/00028 6314990917998387385/00003 6314990917998387385/00006 6314990917998387385/00007 6314990917998387385/00004 5987374248633349325/00003 5987374248633349325/00004 5941301704952504618/00006 5941301704952504618/00009 5941301704952504618/00001 5941301704952504618/00008 5941301704952504618/00005 5941301704952504618/00004 5543452012376344550/00029 5543452012376344550/00015 5543452012376344550/00003 5543452012376344550/00009 5543452012376344550/00024 5543452012376344550/00030 5543452012376344550/00031 5543452012376344550/00026 5543452012376344550/00036 5543452012376344550/00001 5543452012376344550/00023 5543452012376344550/00038 5543452012376344550/00018 5543452012376344550/00012 5543452012376344550/00037 5543452012376344550/00039 5543452012376344550/00017 5543452012376344550/00016 5543452012376344550/00019 5543452012376344550/00011 5543452012376344550/00027 5543452012376344550/00008 5543452012376344550/00040 5543452012376344550/00007 5543452012376344550/00005 5543452012376344550/00004 5543452012376344550/00028 6142843474814022296/00001 6142843474814022296/00002 6142843474814022296/00005 6105421854260720175/00006 6105421854260720175/00009 6105421854260720175/00001 6105421854260720175/00007 6099843980233334135/00003 6099843980233334135/00009 6099843980233334135/00010 6099843980233334135/00011 6099843980233334135/00007 6099843980233334135/00005 6099843980233334135/00004 6151683805999389848/00029 6151683805999389848/00015 6151683805999389848/00003 6151683805999389848/00006 6151683805999389848/00009 6151683805999389848/00024 6151683805999389848/00030 6151683805999389848/00013 6151683805999389848/00022 6151683805999389848/00012 6151683805999389848/00014 6151683805999389848/00017 6151683805999389848/00016 6151683805999389848/00019 6151683805999389848/00002 6151683805999389848/00025 6151683805999389848/00005 6151683805999389848/00004 6109113378651605686/00006 6109113378651605686/00010 6109113378651605686/00002 6109113378651605686/00008 6109113378651605686/00004 6101571845576577770/00006 6101571845576577770/00010 6101571845576577770/00012 6101571845576577770/00014 6043384917140487572/00029 6043384917140487572/00015 6043384917140487572/00003 6043384917140487572/00032 6043384917140487572/00010 6043384917140487572/00033 6043384917140487572/00024 6043384917140487572/00030 6043384917140487572/00022 6043384917140487572/00044 6043384917140487572/00036 6043384917140487572/00023 6043384917140487572/00038 6043384917140487572/00048 6043384917140487572/00042 6043384917140487572/00021 6043384917140487572/00014 6043384917140487572/00037 6043384917140487572/00039 6043384917140487572/00020 6043384917140487572/00035 6043384917140487572/00019 6043384917140487572/00011 6043384917140487572/00027 6043384917140487572/00034 6043384917140487572/00002 6043384917140487572/00008 6043384917140487572/00040 6043384917140487572/00007 6043384917140487572/00025 6043384917140487572/00028 5544553671487770303/00029 5544553671487770303/00006 5544553671487770303/00032 5544553671487770303/00009 5544553671487770303/00010 5544553671487770303/00013 5544553671487770303/00022 5544553671487770303/00026 5544553671487770303/00036 5544553671487770303/00045 5544553671487770303/00038 5544553671487770303/00018 5544553671487770303/00042 5544553671487770303/00012 5544553671487770303/00041 5544553671487770303/00021 5544553671487770303/00037 5544553671487770303/00047 5544553671487770303/00035 5544553671487770303/00017 5544553671487770303/00011 5544553671487770303/00002 5544553671487770303/00008 5544553671487770303/00007 5544553671487770303/00043 5544553671487770303/00005 5544553671487770303/00028 6389970739065104229/00029 6336047424663836038/00006 6336047424663836038/00001 6336047424663836038/00061 6336047424663836038/00076 6336047424663836038/00008 6327570447711650000/00005 6327570447711650000/00004 6180949283657598036/00015 6180949283657598036/00046 6180949283657598036/00056 6180949283657598036/00009 6180949283657598036/00010 6180949283657598036/00033 6180949283657598036/00013 6180949283657598036/00026 6180949283657598036/00044 6180949283657598036/00036 6180949283657598036/00023 6180949283657598036/00048 6180949283657598036/00018 6180949283657598036/00012 6180949283657598036/00061 6180949283657598036/00014 6180949283657598036/00037 6180949283657598036/00047 6180949283657598036/00051 6180949283657598036/00017 6180949283657598036/00011 6180949283657598036/00040 6180949283657598036/00007 6180949283657598036/00025 6180949283657598036/00004 6180949283657598036/00028 6102812661628337162/00018 6102812661628337162/00008 6102812661628337162/00004 5978475935389578147/00029 5978475935389578147/00003 5978475935389578147/00032 5978475935389578147/00010 5978475935389578147/00033 5978475935389578147/00013 5978475935389578147/00026 5978475935389578147/00001 5978475935389578147/00038 5978475935389578147/00018 5978475935389578147/00012 5978475935389578147/00021 5978475935389578147/00014 5978475935389578147/00017 5978475935389578147/00027 5978475935389578147/00008 5978475935389578147/00007 5978475935389578147/00005 5940269624311213744/00015 5940269624311213744/00003 5940269624311213744/00006 5940269624311213744/00032 5940269624311213744/00024 5940269624311213744/00053 5940269624311213744/00030 5940269624311213744/00058 5940269624311213744/00062 5940269624311213744/00086 5940269624311213744/00049 5940269624311213744/00072 5940269624311213744/00023 5940269624311213744/00085 5940269624311213744/00012 5940269624311213744/00061 5940269624311213744/00075 5940269624311213744/00079 5940269624311213744/00047 5940269624311213744/00017 5940269624311213744/00080 5940269624311213744/00016 5940269624311213744/00059 5940269624311213744/00019 5940269624311213744/00084 5940269624311213744/00007 5940269624311213744/00025 5940269624311213744/00005 5954370860937417979/00003 5954370860937417979/00001 5954370860937417979/00002 6356232911961499649/00026 6356232911961499649/00017 6115421826615975108/00003 6115421826615975108/00002 6115421826615975108/00004 5898290613960100635/00015 5898290613960100635/00009 5898290613960100635/00001 5898290613960100635/00020 5898290613960100635/00016 5898290613960100635/00011 5898290613960100635/00002 5898290613960100635/00007 5898290613960100635/00005 5898290613960100635/00004 6004451897595693665/00015 6004451897595693665/00032 6004451897595693665/00009 6004451897595693665/00010 6004451897595693665/00033 6004451897595693665/00024 6004451897595693665/00030 6004451897595693665/00013 6004451897595693665/00022 6004451897595693665/00026 6004451897595693665/00036 6004451897595693665/00001 6004451897595693665/00012 6004451897595693665/00014 6004451897595693665/00037 6004451897595693665/00020 6004451897595693665/00035 6004451897595693665/00016 6004451897595693665/00019 6004451897595693665/00011 6004451897595693665/00027 6004451897595693665/00002 6004451897595693665/00008 6004451897595693665/00007 6004451897595693665/00004 6004451897595693665/00028 6368903924478172740/00007 6204482268596248183/00060 6204482268596248183/00029 6204482268596248183/00015 6204482268596248183/00006 6204482268596248183/00046 6204482268596248183/00056 6204482268596248183/00032 6204482268596248183/00070 6204482268596248183/00009 6204482268596248183/00073 6204482268596248183/00010 6204482268596248183/00033 6204482268596248183/00024 6204482268596248183/00053 6204482268596248183/00078 6204482268596248183/00071 6204482268596248183/00058 6204482268596248183/00062 6204482268596248183/00031 6204482268596248183/00013 6204482268596248183/00069 6204482268596248183/00022 6204482268596248183/00044 6204482268596248183/00077 6204482268596248183/00050 6204482268596248183/00036 6204482268596248183/00063 6204482268596248183/00001 6204482268596248183/00045 6204482268596248183/00064 6204482268596248183/00023 6204482268596248183/00038 6204482268596248183/00048 6204482268596248183/00042 6204482268596248183/00012 6204482268596248183/00041 6204482268596248183/00065 6204482268596248183/00061 6204482268596248183/00021 6204482268596248183/00075 6204482268596248183/00079 6204482268596248183/00014 6204482268596248183/00037 6204482268596248183/00047 6204482268596248183/00020 6204482268596248183/00051 6204482268596248183/00076 6204482268596248183/00080 6204482268596248183/00055 6204482268596248183/00016 6204482268596248183/00059 6204482268596248183/00019 6204482268596248183/00011 6204482268596248183/00027 6204482268596248183/00067 6204482268596248183/00034 6204482268596248183/00081 6204482268596248183/00082 6204482268596248183/00002 6204482268596248183/00008 6204482268596248183/00040 6204482268596248183/00007 6204482268596248183/00068 6204482268596248183/00025 6204482268596248183/00054 6204482268596248183/00043 6204482268596248183/00005 6204482268596248183/00074 6204482268596248183/00004 6204482268596248183/00028 6044359015723220282/00009 6044359015723220282/00010 6044359015723220282/00013 6044359015723220282/00012 6044359015723220282/00011 6044359015723220282/00002 6044359015723220282/00008 6044359015723220282/00004 5547151267708393038/00029 5547151267708393038/00006 5547151267708393038/00009 5547151267708393038/00010 5547151267708393038/00024 5547151267708393038/00030 5547151267708393038/00031 5547151267708393038/00022 5547151267708393038/00026 5547151267708393038/00018 5547151267708393038/00042 5547151267708393038/00021 5547151267708393038/00014 5547151267708393038/00039 5547151267708393038/00017 5547151267708393038/00011 5547151267708393038/00027 5547151267708393038/00034 5547151267708393038/00002 5547151267708393038/00007 5547151267708393038/00025 5547151267708393038/00043 5547151267708393038/00005 5547151267708393038/00004 5547151267708393038/00028 6047908806193434026/00029 6047908806193434026/00015 6047908806193434026/00032 6047908806193434026/00010 6047908806193434026/00033 6047908806193434026/00024 6047908806193434026/00031 6047908806193434026/00013 6047908806193434026/00026 6047908806193434026/00049 6047908806193434026/00023 6047908806193434026/00048 6047908806193434026/00018 6047908806193434026/00017 6047908806193434026/00011 6047908806193434026/00040 6047908806193434026/00054 6040968998036482979/00029 6040968998036482979/00015 6040968998036482979/00003 6040968998036482979/00098 6040968998036482979/00032 6040968998036482979/00109 6040968998036482979/00009 6040968998036482979/00112 6040968998036482979/00033 6040968998036482979/00057 6040968998036482979/00053 6040968998036482979/00030 6040968998036482979/00071 6040968998036482979/00058 6040968998036482979/00031 6040968998036482979/00013 6040968998036482979/00069 6040968998036482979/00022 6040968998036482979/00096 6040968998036482979/00026 6040968998036482979/00044 6040968998036482979/00077 6040968998036482979/00036 6040968998036482979/00045 6040968998036482979/00066 6040968998036482979/00064 6040968998036482979/00049 6040968998036482979/00023 6040968998036482979/00038 6040968998036482979/00048 6040968998036482979/00018 6040968998036482979/00042 6040968998036482979/00041 6040968998036482979/00079 6040968998036482979/00014 6040968998036482979/00037 6040968998036482979/00047 6040968998036482979/00039 6040968998036482979/00020 6040968998036482979/00035 6040968998036482979/00051 6040968998036482979/00091 6040968998036482979/00055 6040968998036482979/00016 6040968998036482979/00111 6040968998036482979/00084 6040968998036482979/00027 6040968998036482979/00067 6040968998036482979/00034 6040968998036482979/00002 6040968998036482979/00106 6040968998036482979/00008 6040968998036482979/00068 6040968998036482979/00097 6040968998036482979/00025 6040968998036482979/00054 6040968998036482979/00043 6040968998036482979/00005 6040968998036482979/00004 6219294751676220875/00015 6219294751676220875/00006 6219294751676220875/00046 6219294751676220875/00056 6219294751676220875/00010 6219294751676220875/00033 6219294751676220875/00024 6219294751676220875/00053 6219294751676220875/00031 6219294751676220875/00013 6219294751676220875/00044 6219294751676220875/00049 6219294751676220875/00023 6219294751676220875/00038 6219294751676220875/00048 6219294751676220875/00017 6219294751676220875/00052 6219294751676220875/00055 6219294751676220875/00016 6219294751676220875/00019 6219294751676220875/00011 6219294751676220875/00027 6219294751676220875/00034 6219294751676220875/00002 6219294751676220875/00008 6219294751676220875/00040 6219294751676220875/00025 6219294751676220875/00054 5551001276392529802/00001 5551001276392529802/00012 5551001276392529802/00014 5551001276392529802/00011 5551001276392529802/00002 5551001276392529802/00008 5551001276392529802/00007 6103195343214410766/00003 6103195343214410766/00001 6103195343214410766/00002 6103195343214410766/00004 6378853645716094465/00007 6378853645716094465/00004 5883601825807778208/00015 5883601825807778208/00006 5883601825807778208/00032 5883601825807778208/00009 5883601825807778208/00010 5883601825807778208/00033 5883601825807778208/00024 5883601825807778208/00030 5883601825807778208/00031 5883601825807778208/00013 5883601825807778208/00026 5883601825807778208/00036 5883601825807778208/00001 5883601825807778208/00023 5883601825807778208/00038 5883601825807778208/00014 5883601825807778208/00037 5883601825807778208/00039 5883601825807778208/00035 5883601825807778208/00019 5883601825807778208/00011 5883601825807778208/00027 5883601825807778208/00002 5883601825807778208/00007 5883601825807778208/00025 6105379334084398442/00015 6105379334084398442/00013 6105379334084398442/00014 6105379334084398442/00020 6105379334084398442/00017 6105379334084398442/00007 6105379334084398442/00005 6081533246160343048/00015 6081533246160343048/00006 6081533246160343048/00013 6081533246160343048/00026 6081533246160343048/00021 6081533246160343048/00014 6081533246160343048/00020 6081533246160343048/00017 6081533246160343048/00019 6081533246160343048/00002 6081533246160343048/00008 6081533246160343048/00005 6129706028848970263/00029 6129706028848970263/00015 6129706028848970263/00032 6129706028848970263/00009 6129706028848970263/00010 6129706028848970263/00033 6129706028848970263/00022 6129706028848970263/00036 6129706028848970263/00001 6129706028848970263/00018 6129706028848970263/00042 6129706028848970263/00041 6129706028848970263/00039 6129706028848970263/00016 6129706028848970263/00019 6129706028848970263/00011 6129706028848970263/00002 6129706028848970263/00008 6129706028848970263/00040 6129706028848970263/00025 6129706028848970263/00043 6129706028848970263/00004 6130168596826811377/00003 6130168596826811377/00001 6130168596826811377/00002 6130168596826811377/00005 5536968329746298779/00003 5536968329746298779/00006 5536968329746298779/00010 5536968329746298779/00013 5536968329746298779/00001 5536968329746298779/00011 5536968329746298779/00002 5536968329746298779/00008 5536968329746298779/00007 5536968329746298779/00004 6101649154987842231/00029 6101649154987842231/00015 6101649154987842231/00010 6101649154987842231/00001 6101649154987842231/00017 6101649154987842231/00028 5989886804501514449/00003 5989886804501514449/00002 5989886804501514449/00008 5989886804501514449/00005 5565458136310850003/00060 5565458136310850003/00015 5565458136310850003/00056 5565458136310850003/00009 5565458136310850003/00010 5565458136310850003/00033 5565458136310850003/00057 5565458136310850003/00053 5565458136310850003/00058 5565458136310850003/00050 5565458136310850003/00036 5565458136310850003/00001 5565458136310850003/00049 5565458136310850003/00048 5565458136310850003/00018 5565458136310850003/00042 5565458136310850003/00012 5565458136310850003/00041 5565458136310850003/00065 5565458136310850003/00061 5565458136310850003/00014 5565458136310850003/00039 5565458136310850003/00051 5565458136310850003/00017 5565458136310850003/00055 5565458136310850003/00019 5565458136310850003/00011 5565458136310850003/00027 5565458136310850003/00034 5565458136310850003/00008 5565458136310850003/00040 5565458136310850003/00007 5565458136310850003/00043 5565458136310850003/00005 5565458136310850003/00004 5565458136310850003/00028 6053094979204017840/00029 6053094979204017840/00003 6053094979204017840/00006 6053094979204017840/00010 6053094979204017840/00022 6053094979204017840/00026 6053094979204017840/00044 6053094979204017840/00001 6053094979204017840/00023 6053094979204017840/00018 6053094979204017840/00012 6053094979204017840/00020 6053094979204017840/00027 6053094979204017840/00043 6389684694243125765/00017 5984065405828502341/00015 5984065405828502341/00006 5984065405828502341/00013 5984065405828502341/00018 5984065405828502341/00021 5984065405828502341/00014 5984065405828502341/00020 5984065405828502341/00008 5984065405828502341/00007 5984065405828502341/00005 5984065405828502341/00004 5984830769000649571/00003 5984830769000649571/00001 5984830769000649571/00008 5984830769000649571/00007 5984830769000649571/00005 5984830769000649571/00004 6130957152822292237/00020 6130957152822292237/00017 6130957152822292237/00019 6130957152822292237/00002 6130957152822292237/00004 6380280004355161382/00018 6380280004355161382/00011 6095367765317509779/00029 6095367765317509779/00006 6095367765317509779/00032 6095367765317509779/00009 6095367765317509779/00033 6095367765317509779/00024 6095367765317509779/00030 6095367765317509779/00013 6095367765317509779/00036 6095367765317509779/00001 6095367765317509779/00018 6095367765317509779/00041 6095367765317509779/00014 6095367765317509779/00039 6095367765317509779/00020 6095367765317509779/00035 6095367765317509779/00017 6095367765317509779/00019 6095367765317509779/00027 6095367765317509779/00034 6095367765317509779/00008 6095367765317509779/00040 6095367765317509779/00007 6095367765317509779/00005 6095367765317509779/00004 6095367765317509779/00028 6228877253210400893/00001 6228877253210400893/00002 6228877253210400893/00007 6228877253210400893/00004 5537751731781090844/00029 5537751731781090844/00015 5537751731781090844/00003 5537751731781090844/00032 5537751731781090844/00009 5537751731781090844/00013 5537751731781090844/00022 5537751731781090844/00026 5537751731781090844/00001 5537751731781090844/00023 5537751731781090844/00018 5537751731781090844/00042 5537751731781090844/00021 5537751731781090844/00039 5537751731781090844/00017 5537751731781090844/00016 5537751731781090844/00019 5537751731781090844/00011 5537751731781090844/00034 5537751731781090844/00002 5537751731781090844/00040 5537751731781090844/00025 6284806746835564579/00029 6284806746835564579/00015 6284806746835564579/00003 6284806746835564579/00006 6284806746835564579/00009 6284806746835564579/00010 6284806746835564579/00030 6284806746835564579/00013 6284806746835564579/00018 6284806746835564579/00021 6284806746835564579/00014 6284806746835564579/00020 6284806746835564579/00016 6284806746835564579/00019 6284806746835564579/00007 6284806746835564579/00025 6284806746835564579/00004 6284806746835564579/00028 6367813861908922495/00003 6367813861908922495/00010 6367813861908922495/00035 6367813861908922495/00004 5982136536015934617/00003 5982136536015934617/00009 5982136536015934617/00010 5982136536015934617/00011 5982136536015934617/00002 5982136536015934617/00008 5982136536015934617/00007 5982136536015934617/00005 6007652507224768034/00015 6007652507224768034/00003 6007652507224768034/00006 6007652507224768034/00010 6007652507224768034/00033 6007652507224768034/00024 6007652507224768034/00030 6007652507224768034/00031 6007652507224768034/00022 6007652507224768034/00026 6007652507224768034/00045 6007652507224768034/00023 6007652507224768034/00048 6007652507224768034/00018 6007652507224768034/00039 6007652507224768034/00020 6007652507224768034/00035 6007652507224768034/00016 6007652507224768034/00019 6007652507224768034/00027 6007652507224768034/00025 6007652507224768034/00005 6007652507224768034/00004 5956106457221800240/00015 5956106457221800240/00009 5956106457221800240/00024 5956106457221800240/00022 5956106457221800240/00012 5956106457221800240/00021 5956106457221800240/00019 5956106457221800240/00011 5956106457221800240/00027 5956106457221800240/00025 5956106457221800240/00004 6107161316015602106/00003 6107161316015602106/00006 6107161316015602106/00005 6107161316015602106/00004 5995812570879872736/00003 5995812570879872736/00006 5995812570879872736/00001 5995812570879872736/00004 6251034130496929790/00029 6251034130496929790/00003 6251034130496929790/00032 6251034130496929790/00009 6251034130496929790/00010 6251034130496929790/00030 6251034130496929790/00013 6251034130496929790/00022 6251034130496929790/00026 6251034130496929790/00023 6251034130496929790/00018 6251034130496929790/00012 6251034130496929790/00021 6251034130496929790/00020 6251034130496929790/00035 6251034130496929790/00017 6251034130496929790/00016 6251034130496929790/00011 6251034130496929790/00027 6251034130496929790/00034 6251034130496929790/00002 6251034130496929790/00008 6251034130496929790/00025 6251034130496929790/00005 6251034130496929790/00004 6251034130496929790/00028 5973675020946041157/00015 5973675020946041157/00003 5973675020946041157/00006 5973675020946041157/00009 5973675020946041157/00010 5973675020946041157/00013 5973675020946041157/00012 5973675020946041157/00014 5973675020946041157/00011 5973675020946041157/00002 5973675020946041157/00008 5973675020946041157/00007 5973675020946041157/00005 5926137463920439333/00019 5926137463920439333/00002 5926137463920439333/00005 5555052289546122641/00002 6350523611934991188/00060 6350523611934991188/00015 6350523611934991188/00013 6350523611934991188/00061 6350523611934991188/00021 6350523611934991188/00016 6350523611934991188/00027 6350523611934991188/00067 6350523611934991188/00008 6338273935710083967/00003 6338273935710083967/00038 6338273935710083967/00021 6338273935710083967/00047 6338273935710083967/00076 6338273935710083967/00059 6338273935710083967/00004 5989573701385630559/00015 5989573701385630559/00003 5989573701385630559/00009 5989573701385630559/00010 5989573701385630559/00013 5989573701385630559/00018 5989573701385630559/00017 5989573701385630559/00002 5989573701385630559/00005 5669352965704363542/00029 5669352965704363542/00032 5669352965704363542/00010 5669352965704363542/00033 5669352965704363542/00024 5669352965704363542/00030 5669352965704363542/00031 5669352965704363542/00013 5669352965704363542/00022 5669352965704363542/00026 5669352965704363542/00036 5669352965704363542/00012 5669352965704363542/00021 5669352965704363542/00014 5669352965704363542/00016 5669352965704363542/00019 5669352965704363542/00011 5669352965704363542/00034 5669352965704363542/00025 6230424729927149803/00029 6230424729927149803/00015 6230424729927149803/00003 6230424729927149803/00033 6230424729927149803/00024 6230424729927149803/00022 6230424729927149803/00026 6230424729927149803/00036 6230424729927149803/00001 6230424729927149803/00018 6230424729927149803/00021 6230424729927149803/00037 6230424729927149803/00017 6230424729927149803/00034 6230424729927149803/00007 6230424729927149803/00005 6230424729927149803/00004 6230424729927149803/00028 6093431164563735044/00003 6093431164563735044/00001 5992101719136126266/00015 5992101719136126266/00032 5992101719136126266/00010 5992101719136126266/00031 5992101719136126266/00022 5992101719136126266/00026 5992101719136126266/00036 5992101719136126266/00001 5992101719136126266/00023 5992101719136126266/00012 5992101719136126266/00027 5992101719136126266/00025 5972511514305551863/00029 5972511514305551863/00015 5972511514305551863/00003 5972511514305551863/00010 5972511514305551863/00030 5972511514305551863/00026 5972511514305551863/00020 5972511514305551863/00017 5972511514305551863/00027 5972511514305551863/00002 6159178953427582567/00029 6159178953427582567/00015 6159178953427582567/00003 6159178953427582567/00006 6159178953427582567/00032 6159178953427582567/00009 6159178953427582567/00033 6159178953427582567/00024 6159178953427582567/00030 6159178953427582567/00031 6159178953427582567/00013 6159178953427582567/00022 6159178953427582567/00036 6159178953427582567/00001 6159178953427582567/00023 6159178953427582567/00018 6159178953427582567/00012 6159178953427582567/00021 6159178953427582567/00020 6159178953427582567/00017 6159178953427582567/00016 6159178953427582567/00019 6159178953427582567/00011 6159178953427582567/00027 6159178953427582567/00034 6159178953427582567/00002 6159178953427582567/00008 6159178953427582567/00007 6159178953427582567/00025 6159178953427582567/00004 6159178953427582567/00028 6213593182590845540/00015 6213593182590845540/00003 6213593182590845540/00006 6213593182590845540/00046 6213593182590845540/00056 6213593182590845540/00057 6213593182590845540/00053 6213593182590845540/00030 6213593182590845540/00062 6213593182590845540/00031 6213593182590845540/00013 6213593182590845540/00022 6213593182590845540/00026 6213593182590845540/00044 6213593182590845540/00050 6213593182590845540/00045 6213593182590845540/00038 6213593182590845540/00048 6213593182590845540/00018 6213593182590845540/00012 6213593182590845540/00065 6213593182590845540/00021 6213593182590845540/00020 6213593182590845540/00035 6213593182590845540/00051 6213593182590845540/00017 6213593182590845540/00052 6213593182590845540/00055 6213593182590845540/00016 6213593182590845540/00059 6213593182590845540/00019 6213593182590845540/00011 6213593182590845540/00027 6213593182590845540/00002 6213593182590845540/00025 6213593182590845540/00054 6213593182590845540/00043 6213593182590845540/00005 6213593182590845540/00028 5581758825689373538/00006 5581758825689373538/00013 5581758825689373538/00026 5581758825689373538/00021 5581758825689373538/00014 5581758825689373538/00020 5581758825689373538/00017 5581758825689373538/00007 5581758825689373538/00004 5989971844853973943/00001 5989971844853973943/00002 5989971844853973943/00004 5902699827386178597/00006 5902699827386178597/00009 5902699827386178597/00001 5902699827386178597/00002 5902699827386178597/00007 5902699827386178597/00005 5902699827386178597/00004 5968093281448216715/00024 5968093281448216715/00013 5968093281448216715/00022 5968093281448216715/00001 5968093281448216715/00018 5968093281448216715/00020 5968093281448216715/00016 5968093281448216715/00019 5968093281448216715/00011 5968093281448216715/00002 5968093281448216715/00025 5968093281448216715/00005 5969906187143803448/00003 6113887234801050153/00030 6113887234801050153/00031 6113887234801050153/00026 6113887234801050153/00021 6113887234801050153/00016 6113887234801050153/00007 6113887234801050153/00004 6250802202262948139/00003 6250802202262948139/00031 6250802202262948139/00013 6250802202262948139/00026 6250802202262948139/00023 6250802202262948139/00012 6250802202262948139/00021 6250802202262948139/00020 6250802202262948139/00019 6250802202262948139/00011 6250802202262948139/00002 6250802202262948139/00008 6250802202262948139/00007 6250802202262948139/00005 6295496061441860305/00015 6295496061441860305/00003 6295496061441860305/00009 6295496061441860305/00010 6295496061441860305/00012 6295496061441860305/00014 6295496061441860305/00016 6295496061441860305/00019 6295496061441860305/00008 6295496061441860305/00005 6220438930963943209/00001 6220438930963943209/00005 6220438930963943209/00004 6188776861554568312/00060 6188776861554568312/00056 6188776861554568312/00032 6188776861554568312/00009 6188776861554568312/00033 6188776861554568312/00057 6188776861554568312/00024 6188776861554568312/00053 6188776861554568312/00078 6188776861554568312/00071 6188776861554568312/00058 6188776861554568312/00062 6188776861554568312/00031 6188776861554568312/00013 6188776861554568312/00044 6188776861554568312/00050 6188776861554568312/00036 6188776861554568312/00001 6188776861554568312/00049 6188776861554568312/00072 6188776861554568312/00038 6188776861554568312/00018 6188776861554568312/00042 6188776861554568312/00012 6188776861554568312/00041 6188776861554568312/00065 6188776861554568312/00061 6188776861554568312/00075 6188776861554568312/00079 6188776861554568312/00037 6188776861554568312/00047 6188776861554568312/00039 6188776861554568312/00020 6188776861554568312/00035 6188776861554568312/00051 6188776861554568312/00017 6188776861554568312/00052 6188776861554568312/00055 6188776861554568312/00016 6188776861554568312/00059 6188776861554568312/00019 6188776861554568312/00011 6188776861554568312/00067 6188776861554568312/00034 6188776861554568312/00008 6188776861554568312/00040 6188776861554568312/00007 6188776861554568312/00025 6188776861554568312/00054 6188776861554568312/00043 6188776861554568312/00004 6052772856786554322/00060 6052772856786554322/00029 6052772856786554322/00015 6052772856786554322/00003 6052772856786554322/00006 6052772856786554322/00140 6052772856786554322/00098 6052772856786554322/00056 6052772856786554322/00128 6052772856786554322/00113 6052772856786554322/00109 6052772856786554322/00070 6052772856786554322/00090 6052772856786554322/00112 6052772856786554322/00033 6052772856786554322/00123 6052772856786554322/00057 6052772856786554322/00024 6052772856786554322/00141 6052772856786554322/00053 6052772856786554322/00116 6052772856786554322/00030 6052772856786554322/00071 6052772856786554322/00058 6052772856786554322/00121 6052772856786554322/00062 6052772856786554322/00031 6052772856786554322/00086 6052772856786554322/00013 6052772856786554322/00137 6052772856786554322/00069 6052772856786554322/00022 6052772856786554322/00130 6052772856786554322/00099 6052772856786554322/00036 6052772856786554322/00117 6052772856786554322/00063 6052772856786554322/00110 6052772856786554322/00001 6052772856786554322/00023 6052772856786554322/00038 6052772856786554322/00048 6052772856786554322/00145 6052772856786554322/00085 6052772856786554322/00042 6052772856786554322/00135 6052772856786554322/00012 6052772856786554322/00041 6052772856786554322/00126 6052772856786554322/00021 6052772856786554322/00104 6052772856786554322/00079 6052772856786554322/00014 6052772856786554322/00037 6052772856786554322/00127 6052772856786554322/00101 6052772856786554322/00039 6052772856786554322/00124 6052772856786554322/00035 6052772856786554322/00051 6052772856786554322/00017 6052772856786554322/00052 6052772856786554322/00091 6052772856786554322/00055 6052772856786554322/00016 6052772856786554322/00095 6052772856786554322/00111 6052772856786554322/00059 6052772856786554322/00119 6052772856786554322/00034 6052772856786554322/00081 6052772856786554322/00100 6052772856786554322/00089 6052772856786554322/00008 6052772856786554322/00087 6052772856786554322/00131 6052772856786554322/00007 6052772856786554322/00102 6052772856786554322/00068 6052772856786554322/00132 6052772856786554322/00097 6052772856786554322/00025 6052772856786554322/00139 6052772856786554322/00054 6052772856786554322/00043 6052772856786554322/00004 6052772856786554322/00028 5987057280047622650/00006 5987057280047622650/00010 5987057280047622650/00014 5987057280047622650/00011 5987057280047622650/00008 6123275174316720688/00013 6123275174316720688/00016 6123275174316720688/00005 6377794506780964609/00009 6377794506780964609/00010 6377794506780964609/00013 6377794506780964609/00012 6377794506780964609/00004 6155483563566161878/00003 6155483563566161878/00006 6155483563566161878/00013 6155483563566161878/00014 6155483563566161878/00011 6155483563566161878/00008 6155483563566161878/00004 5965116869112731031/00009 5965116869112731031/00010 5965116869112731031/00007 5965116869112731031/00004 6378096013485054233/00006 6194787668285255750/00003 6194787668285255750/00006 6194787668285255750/00013 6194787668285255750/00023 6194787668285255750/00018 6194787668285255750/00012 6194787668285255750/00014 6194787668285255750/00020 6194787668285255750/00019 6194787668285255750/00002 6194787668285255750/00005 6194787668285255750/00004 6364025700623369025/00022 6364025700623369025/00016 5854494832442852591/00029 5854494832442852591/00003 5854494832442852591/00009 5854494832442852591/00024 5854494832442852591/00030 5854494832442852591/00001 5854494832442852591/00023 5854494832442852591/00038 5854494832442852591/00012 5854494832442852591/00041 5854494832442852591/00014 5854494832442852591/00037 5854494832442852591/00035 5854494832442852591/00017 5854494832442852591/00016 5854494832442852591/00027 5854494832442852591/00034 5854494832442852591/00005 5854494832442852591/00004 5854494832442852591/00028 6263430694603449790/00003 6263430694603449790/00006 6263430694603449790/00046 6263430694603449790/00032 6263430694603449790/00009 6263430694603449790/00033 6263430694603449790/00024 6263430694603449790/00053 6263430694603449790/00031 6263430694603449790/00044 6263430694603449790/00001 6263430694603449790/00049 6263430694603449790/00018 6263430694603449790/00012 6263430694603449790/00021 6263430694603449790/00014 6263430694603449790/00047 6263430694603449790/00039 6263430694603449790/00020 6263430694603449790/00051 6263430694603449790/00017 6263430694603449790/00016 6263430694603449790/00019 6263430694603449790/00011 6263430694603449790/00025 6263430694603449790/00005 6263430694603449790/00004 6263430694603449790/00028 5995995536486684322/00060 5995995536486684322/00015 5995995536486684322/00009 5995995536486684322/00024 5995995536486684322/00058 5995995536486684322/00044 5995995536486684322/00049 5995995536486684322/00023 5995995536486684322/00042 5995995536486684322/00041 5995995536486684322/00021 5995995536486684322/00047 5995995536486684322/00035 5995995536486684322/00052 5995995536486684322/00027 5995995536486684322/00008 6349190024589512678/00006 5991842732608177415/00015 5991842732608177415/00009 5991842732608177415/00013 5991842732608177415/00001 5991842732608177415/00018 5991842732608177415/00012 5991842732608177415/00021 5991842732608177415/00014 5991842732608177415/00020 5991842732608177415/00016 5991842732608177415/00011 5991842732608177415/00002 5991842732608177415/00008 5991842732608177415/00007 5991842732608177415/00005 5991842732608177415/00004 6080532089283644449/00015 6080532089283644449/00010 6080532089283644449/00013 6080532089283644449/00014 6080532089283644449/00017 6080532089283644449/00016 6080532089283644449/00011 6080532089283644449/00025 6080532089283644449/00028 6248915852626606699/00006 6248915852626606699/00001 5976728742694198746/00006 5976728742694198746/00009 5976728742694198746/00001 5976728742694198746/00018 5976728742694198746/00012 5976728742694198746/00014 5976728742694198746/00011 5976728742694198746/00008 5976728742694198746/00005 5976728742694198746/00004 6135603448443081259/00029 6135603448443081259/00006 6135603448443081259/00098 6135603448443081259/00046 6135603448443081259/00056 6135603448443081259/00032 6135603448443081259/00090 6135603448443081259/00073 6135603448443081259/00033 6135603448443081259/00057 6135603448443081259/00030 6135603448443081259/00058 6135603448443081259/00031 6135603448443081259/00086 6135603448443081259/00069 6135603448443081259/00096 6135603448443081259/00044 6135603448443081259/00077 6135603448443081259/00050 6135603448443081259/00036 6135603448443081259/00045 6135603448443081259/00049 6135603448443081259/00072 6135603448443081259/00023 6135603448443081259/00088 6135603448443081259/00048 6135603448443081259/00085 6135603448443081259/00042 6135603448443081259/00041 6135603448443081259/00061 6135603448443081259/00083 6135603448443081259/00021 6135603448443081259/00075 6135603448443081259/00014 6135603448443081259/00047 6135603448443081259/00039 6135603448443081259/00020 6135603448443081259/00035 6135603448443081259/00051 6135603448443081259/00076 6135603448443081259/00080 6135603448443081259/00052 6135603448443081259/00091 6135603448443081259/00059 6135603448443081259/00019 6135603448443081259/00084 6135603448443081259/00027 6135603448443081259/00034 6135603448443081259/00081 6135603448443081259/00002 6135603448443081259/00092 6135603448443081259/00008 6135603448443081259/00087 6135603448443081259/00068 6135603448443081259/00005 6135603448443081259/00074 6135603448443081259/00028 6135974533617455571/00029 6135974533617455571/00015 6135974533617455571/00006 6135974533617455571/00056 6135974533617455571/00010 6135974533617455571/00024 6135974533617455571/00053 6135974533617455571/00030 6135974533617455571/00013 6135974533617455571/00022 6135974533617455571/00026 6135974533617455571/00044 6135974533617455571/00001 6135974533617455571/00045 6135974533617455571/00049 6135974533617455571/00023 6135974533617455571/00018 6135974533617455571/00012 6135974533617455571/00041 6135974533617455571/00021 6135974533617455571/00014 6135974533617455571/00039 6135974533617455571/00020 6135974533617455571/00051 6135974533617455571/00017 6135974533617455571/00052 6135974533617455571/00055 6135974533617455571/00016 6135974533617455571/00011 6135974533617455571/00027 6135974533617455571/00002 6135974533617455571/00040 6135974533617455571/00007 6135974533617455571/00025 6135974533617455571/00043 6135974533617455571/00004 5946458242688087127/00003 5946458242688087127/00009 5946458242688087127/00013 5946458242688087127/00001 5946458242688087127/00002 6030308030214410853/00003 6030308030214410853/00006 6030308030214410853/00010 6030308030214410853/00013 6030308030214410853/00011 6030308030214410853/00002 6030308030214410853/00008 6030308030214410853/00005 6030308030214410853/00004 6368525108362665063/00029 6368525108362665063/00053 6368525108362665063/00069 6368525108362665063/00045 6368525108362665063/00064 6368525108362665063/00061 6368525108362665063/00017 6368525108362665063/00055 6368525108362665063/00019 6368525108362665063/00067 6368525108362665063/00068 5953854176371720851/00001 5953854176371720851/00002 6236353073285731063/00015 6236353073285731063/00006 6236353073285731063/00046 6236353073285731063/00010 6236353073285731063/00030 6236353073285731063/00013 6236353073285731063/00022 6236353073285731063/00026 6236353073285731063/00044 6236353073285731063/00049 6236353073285731063/00038 6236353073285731063/00018 6236353073285731063/00021 6236353073285731063/00037 6236353073285731063/00020 6236353073285731063/00019 6236353073285731063/00011 6236353073285731063/00027 6236353073285731063/00008 6236353073285731063/00040 6236353073285731063/00025 6236353073285731063/00043 6236353073285731063/00028 6125085503031993292/00029 6125085503031993292/00006 6125085503031993292/00046 6125085503031993292/00032 6125085503031993292/00010 6125085503031993292/00057 6125085503031993292/00024 6125085503031993292/00053 6125085503031993292/00031 6125085503031993292/00022 6125085503031993292/00044 6125085503031993292/00036 6125085503031993292/00045 6125085503031993292/00049 6125085503031993292/00023 6125085503031993292/00048 6125085503031993292/00020 6125085503031993292/00051 6125085503031993292/00052 6125085503031993292/00019 6125085503031993292/00011 6125085503031993292/00040 6125085503031993292/00043 6125085503031993292/00028 6131901616130658582/00125 6131901616130658582/00060 6131901616130658582/00029 6131901616130658582/00006 6131901616130658582/00113 6131901616130658582/00122 6131901616130658582/00152 6131901616130658582/00073 6131901616130658582/00010 6131901616130658582/00033 6131901616130658582/00123 6131901616130658582/00024 6131901616130658582/00078 6131901616130658582/00030 6131901616130658582/00071 6131901616130658582/00062 6131901616130658582/00142 6131901616130658582/00086 6131901616130658582/00069 6131901616130658582/00022 6131901616130658582/00026 6131901616130658582/00077 6131901616130658582/00093 6131901616130658582/00120 6131901616130658582/00050 6131901616130658582/00117 6131901616130658582/00063 6131901616130658582/00110 6131901616130658582/00045 6131901616130658582/00064 6131901616130658582/00049 6131901616130658582/00157 6131901616130658582/00072 6131901616130658582/00023 6131901616130658582/00038 6131901616130658582/00088 6131901616130658582/00048 6131901616130658582/00134 6131901616130658582/00145 6131901616130658582/00085 6131901616130658582/00012 6131901616130658582/00065 6131901616130658582/00061 6131901616130658582/00083 6131901616130658582/00021 6131901616130658582/00151 6131901616130658582/00037 6131901616130658582/00127 6131901616130658582/00047 6131901616130658582/00039 6131901616130658582/00051 6131901616130658582/00076 6131901616130658582/00052 6131901616130658582/00016 6131901616130658582/00138 6131901616130658582/00111 6131901616130658582/00059 6131901616130658582/00011 6131901616130658582/00027 6131901616130658582/00034 6131901616130658582/00081 6131901616130658582/00082 6131901616130658582/00100 6131901616130658582/00002 6131901616130658582/00106 6131901616130658582/00089 6131901616130658582/00008 6131901616130658582/00087 6131901616130658582/00131 6131901616130658582/00132 6131901616130658582/00054 6131901616130658582/00043 6131901616130658582/00004 6131901616130658582/00028 6015889825001680841/00029 6015889825001680841/00015 6015889825001680841/00003 6015889825001680841/00006 6015889825001680841/00046 6015889825001680841/00032 6015889825001680841/00024 6015889825001680841/00031 6015889825001680841/00013 6015889825001680841/00022 6015889825001680841/00026 6015889825001680841/00044 6015889825001680841/00036 6015889825001680841/00001 6015889825001680841/00045 6015889825001680841/00023 6015889825001680841/00038 6015889825001680841/00018 6015889825001680841/00042 6015889825001680841/00012 6015889825001680841/00041 6015889825001680841/00021 6015889825001680841/00014 6015889825001680841/00020 6015889825001680841/00035 6015889825001680841/00017 6015889825001680841/00016 6015889825001680841/00011 6015889825001680841/00008 6015889825001680841/00025 6015889825001680841/00043 6015889825001680841/00005 6015889825001680841/00004 6215607092755939221/00015 6215607092755939221/00010 6215607092755939221/00013 6215607092755939221/00001 6215607092755939221/00018 6215607092755939221/00012 6215607092755939221/00021 6215607092755939221/00014 6215607092755939221/00020 6215607092755939221/00019 6215607092755939221/00011 6215607092755939221/00005 6215607092755939221/00004 5854451023776431438/00006 5854451023776431438/00001 5854451023776431438/00007 6109016741887445675/00015 6109016741887445675/00003 6109016741887445675/00013 6109016741887445675/00014 6109016741887445675/00017 6109016741887445675/00016 6109016741887445675/00019 6109016741887445675/00011 6109016741887445675/00002 6109016741887445675/00007 6109016741887445675/00004 6091204653517486115/00001 5904042434162906029/00046 5904042434162906029/00073 5904042434162906029/00010 5904042434162906029/00024 5904042434162906029/00030 5904042434162906029/00071 5904042434162906029/00013 5904042434162906029/00022 5904042434162906029/00026 5904042434162906029/00044 5904042434162906029/00050 5904042434162906029/00036 5904042434162906029/00001 5904042434162906029/00045 5904042434162906029/00049 5904042434162906029/00072 5904042434162906029/00038 5904042434162906029/00048 5904042434162906029/00018 5904042434162906029/00042 5904042434162906029/00065 5904042434162906029/00014 5904042434162906029/00047 5904042434162906029/00020 5904042434162906029/00051 5904042434162906029/00017 5904042434162906029/00080 5904042434162906029/00055 5904042434162906029/00016 5904042434162906029/00095 5904042434162906029/00084 5904042434162906029/00027 5904042434162906029/00067 5904042434162906029/00081 5904042434162906029/00082 5904042434162906029/00008 5904042434162906029/00087 5904042434162906029/00007 5904042434162906029/00025 5904042434162906029/00005 5904042434162906029/00004 6386959537493875163/00003 6386959537493875163/00006 6386959537493875163/00014 6386959537493875163/00004 5925789571569527356/00015 5925789571569527356/00003 5925789571569527356/00006 5925789571569527356/00009 5925789571569527356/00010 5925789571569527356/00001 5925789571569527356/00016 5925789571569527356/00002 5925789571569527356/00005 5925789571569527356/00004 6243057087738130259/00015 6243057087738130259/00013 6243057087738130259/00014 6243057087738130259/00020 6243057087738130259/00004 6378907762304088259/00008 6378907762304088259/00004 5994819144944245408/00032 5994819144944245408/00009 5994819144944245408/00024 5994819144944245408/00030 5994819144944245408/00022 5994819144944245408/00036 5994819144944245408/00001 5994819144944245408/00018 5994819144944245408/00021 5994819144944245408/00020 5994819144944245408/00035 5994819144944245408/00027 5994819144944245408/00002 5994819144944245408/00008 5994819144944245408/00025 5994819144944245408/00005 5994819144944245408/00028 6371470597064737331/00015 6371470597064737331/00032 6371470597064737331/00018 6371470597064737331/00017 6371470597064737331/00027 6371470597064737331/00028 5859784084667878498/00029 5859784084667878498/00003 5859784084667878498/00032 5859784084667878498/00010 5859784084667878498/00033 5859784084667878498/00030 5859784084667878498/00013 5859784084667878498/00050 5859784084667878498/00036 5859784084667878498/00038 5859784084667878498/00048 5859784084667878498/00018 5859784084667878498/00042 5859784084667878498/00041 5859784084667878498/00014 5859784084667878498/00047 5859784084667878498/00020 5859784084667878498/00017 5859784084667878498/00016 5859784084667878498/00019 5859784084667878498/00027 5859784084667878498/00034 5859784084667878498/00040 5859784084667878498/00007 5859784084667878498/00054 5859784084667878498/00043 5859784084667878498/00005 6315421273721446605/00003 6315421273721446605/00006 6315421273721446605/00002 6174795454515819101/00015 6174795454515819101/00003 6174795454515819101/00006 6174795454515819101/00010 6174795454515819101/00013 6174795454515819101/00014 6174795454515819101/00016 6174795454515819101/00002 6174795454515819101/00008 6174795454515819101/00007 6174795454515819101/00005 6103450464271854468/00006 6103450464271854468/00001 6103450464271854468/00002 6103450464271854468/00005 6103450464271854468/00004 5581043713634589465/00015 5581043713634589465/00003 5581043713634589465/00006 5581043713634589465/00009 5581043713634589465/00010 5581043713634589465/00001 5581043713634589465/00012 5581043713634589465/00021 5581043713634589465/00014 5581043713634589465/00011 5581043713634589465/00002 5581043713634589465/00008 5581043713634589465/00007 5581043713634589465/00005 5581043713634589465/00004 5982878706364629395/00006 5982878706364629395/00009 5982878706364629395/00010 5982878706364629395/00011 5982878706364629395/00007 6229716060323243990/00010 6229716060323243990/00001 6229716060323243990/00002 6229716060323243990/00008 6229716060323243990/00007 6229716060323243990/00005 6229716060323243990/00004 6233032634069283005/00015 6233032634069283005/00003 6233032634069283005/00009 6233032634069283005/00013 6233032634069283005/00014 6233032634069283005/00020 6233032634069283005/00016 6233032634069283005/00011 6233032634069283005/00002 6233032634069283005/00008 6233032634069283005/00007 6260928446656802780/00029 6260928446656802780/00015 6260928446656802780/00003 6260928446656802780/00046 6260928446656802780/00009 6260928446656802780/00010 6260928446656802780/00033 6260928446656802780/00024 6260928446656802780/00030 6260928446656802780/00031 6260928446656802780/00013 6260928446656802780/00022 6260928446656802780/00026 6260928446656802780/00044 6260928446656802780/00001 6260928446656802780/00023 6260928446656802780/00038 6260928446656802780/00042 6260928446656802780/00012 6260928446656802780/00041 6260928446656802780/00021 6260928446656802780/00014 6260928446656802780/00039 6260928446656802780/00035 6260928446656802780/00011 6260928446656802780/00027 6260928446656802780/00034 6260928446656802780/00002 6260928446656802780/00008 6260928446656802780/00040 6260928446656802780/00007 6260928446656802780/00025 6260928446656802780/00028 5542072039384139495/00003 5542072039384139495/00006 5542072039384139495/00046 5542072039384139495/00056 5542072039384139495/00010 5542072039384139495/00033 5542072039384139495/00024 5542072039384139495/00026 5542072039384139495/00050 5542072039384139495/00036 5542072039384139495/00001 5542072039384139495/00045 5542072039384139495/00049 5542072039384139495/00023 5542072039384139495/00038 5542072039384139495/00048 5542072039384139495/00018 5542072039384139495/00042 5542072039384139495/00012 5542072039384139495/00041 5542072039384139495/00047 5542072039384139495/00020 5542072039384139495/00051 5542072039384139495/00017 5542072039384139495/00052 5542072039384139495/00016 5542072039384139495/00019 5542072039384139495/00011 5542072039384139495/00027 5542072039384139495/00034 5542072039384139495/00002 5542072039384139495/00040 5542072039384139495/00025 5542072039384139495/00043 5542072039384139495/00005 6064196610670046058/00015 6064196610670046058/00003 6064196610670046058/00009 6064196610670046058/00012 6064196610670046058/00014 6064196610670046058/00011 6064196610670046058/00002 6064196610670046058/00008 6064196610670046058/00007 6074540609905748436/00015 6074540609905748436/00003 6074540609905748436/00009 6074540609905748436/00010 6074540609905748436/00001 6074540609905748436/00012 6074540609905748436/00021 6074540609905748436/00020 6074540609905748436/00016 6074540609905748436/00019 6074540609905748436/00011 6074540609905748436/00002 6074540609905748436/00007 6074540609905748436/00004 6284320986034388153/00147 6284320986034388153/00194 6284320986034388153/00149 6284320986034388153/00060 6284320986034388153/00029 6284320986034388153/00015 6284320986034388153/00006 6284320986034388153/00186 6284320986034388153/00098 6284320986034388153/00046 6284320986034388153/00190 6284320986034388153/00107 6284320986034388153/00122 6284320986034388153/00070 6284320986034388153/00159 6284320986034388153/00009 6284320986034388153/00090 6284320986034388153/00164 6284320986034388153/00024 6284320986034388153/00053 6284320986034388153/00116 6284320986034388153/00078 6284320986034388153/00030 6284320986034388153/00177 6284320986034388153/00200 6284320986034388153/00167 6284320986034388153/00031 6284320986034388153/00086 6284320986034388153/00187 6284320986034388153/00013 6284320986034388153/00165 6284320986034388153/00137 6284320986034388153/00150 6284320986034388153/00148 6284320986034388153/00022 6284320986034388153/00096 6284320986034388153/00044 6284320986034388153/00179 6284320986034388153/00189 6284320986034388153/00161 6284320986034388153/00204 6284320986034388153/00158 6284320986034388153/00077 6284320986034388153/00188 6284320986034388153/00050 6284320986034388153/00202 6284320986034388153/00036 6284320986034388153/00178 6284320986034388153/00063 6284320986034388153/00110 6284320986034388153/00001 6284320986034388153/00136 6284320986034388153/00049 6284320986034388153/00157 6284320986034388153/00209 6284320986034388153/00072 6284320986034388153/00154 6284320986034388153/00023 6284320986034388153/00114 6284320986034388153/00038 6284320986034388153/00193 6284320986034388153/00210 6284320986034388153/00191 6284320986034388153/00088 6284320986034388153/00048 6284320986034388153/00134 6284320986034388153/00108 6284320986034388153/00018 6284320986034388153/00085 6284320986034388153/00042 6284320986034388153/00135 6284320986034388153/00012 6284320986034388153/00213 6284320986034388153/00041 6284320986034388153/00162 6284320986034388153/00061 6284320986034388153/00083 6284320986034388153/00021 6284320986034388153/00214 6284320986034388153/00075 6284320986034388153/00104 6284320986034388153/00176 6284320986034388153/00151 6284320986034388153/00079 6284320986034388153/00014 6284320986034388153/00037 6284320986034388153/00196 6284320986034388153/00206 6284320986034388153/00101 6284320986034388153/00039 6284320986034388153/00124 6284320986034388153/00020 6284320986034388153/00035 6284320986034388153/00205 6284320986034388153/00174 6284320986034388153/00080 6284320986034388153/00052 6284320986034388153/00091 6284320986034388153/00055 6284320986034388153/00016 6284320986034388153/00207 6284320986034388153/00184 6284320986034388153/00181 6284320986034388153/00146 6284320986034388153/00019 6284320986034388153/00011 6284320986034388153/00119 6284320986034388153/00084 6284320986034388153/00027 6284320986034388153/00081 6284320986034388153/00182 6284320986034388153/00002 6284320986034388153/00106 6284320986034388153/00089 6284320986034388153/00092 6284320986034388153/00008 6284320986034388153/00087 6284320986034388153/00131 6284320986034388153/00183 6284320986034388153/00212 6284320986034388153/00040 6284320986034388153/00102 6284320986034388153/00132 6284320986034388153/00156 6284320986034388153/00175 6284320986034388153/00054 6284320986034388153/00074 6284320986034388153/00004 6284320986034388153/00155 6064769988804004613/00001 6064769988804004613/00002 5560171461066199736/00003 6389545537302735360/00003 6058630333055103311/00006 6058630333055103311/00032 6058630333055103311/00033 6058630333055103311/00024 6058630333055103311/00030 6058630333055103311/00031 6058630333055103311/00022 6058630333055103311/00026 6058630333055103311/00001 6058630333055103311/00023 6058630333055103311/00038 6058630333055103311/00018 6058630333055103311/00012 6058630333055103311/00041 6058630333055103311/00021 6058630333055103311/00020 6058630333055103311/00017 6058630333055103311/00011 6058630333055103311/00005 6058630333055103311/00004 6085615183078467937/00015 6085615183078467937/00009 6085615183078467937/00010 6085615183078467937/00033 6085615183078467937/00030 6085615183078467937/00031 6085615183078467937/00001 6085615183078467937/00023 6085615183078467937/00012 6085615183078467937/00014 6085615183078467937/00020 6085615183078467937/00035 6085615183078467937/00017 6085615183078467937/00011 6085615183078467937/00027 6085615183078467937/00034 6085615183078467937/00008 6085615183078467937/00007 6085615183078467937/00025 6085615183078467937/00005 6085615183078467937/00028 5542044981090174822/00003 5542044981090174822/00006 5542044981090174822/00009 5542044981090174822/00013 5542044981090174822/00026 5542044981090174822/00001 5542044981090174822/00023 5542044981090174822/00018 5542044981090174822/00012 5542044981090174822/00021 5542044981090174822/00014 5542044981090174822/00020 5542044981090174822/00017 5542044981090174822/00016 5542044981090174822/00011 5542044981090174822/00027 5542044981090174822/00002 5542044981090174822/00008 5542044981090174822/00007 5542044981090174822/00005 5542044981090174822/00004 5542044981090174822/00028 5557959123412028206/00006 5557959123412028206/00001 5557959123412028206/00002 5557959123412028206/00004 5961077452370133893/00029 5961077452370133893/00015 5961077452370133893/00098 5961077452370133893/00107 5961077452370133893/00109 5961077452370133893/00122 5961077452370133893/00009 5961077452370133893/00090 5961077452370133893/00073 5961077452370133893/00033 5961077452370133893/00053 5961077452370133893/00078 5961077452370133893/00030 5961077452370133893/00121 5961077452370133893/00062 5961077452370133893/00086 5961077452370133893/00013 5961077452370133893/00137 5961077452370133893/00069 5961077452370133893/00022 5961077452370133893/00026 5961077452370133893/00130 5961077452370133893/00093 5961077452370133893/00120 5961077452370133893/00050 5961077452370133893/00105 5961077452370133893/00036 5961077452370133893/00063 5961077452370133893/00001 5961077452370133893/00136 5961077452370133893/00049 5961077452370133893/00048 5961077452370133893/00108 5961077452370133893/00018 5961077452370133893/00085 5961077452370133893/00126 5961077452370133893/00129 5961077452370133893/00021 5961077452370133893/00079 5961077452370133893/00014 5961077452370133893/00037 5961077452370133893/00020 5961077452370133893/00035 5961077452370133893/00051 5961077452370133893/00017 5961077452370133893/00076 5961077452370133893/00080 5961077452370133893/00052 5961077452370133893/00055 5961077452370133893/00016 5961077452370133893/00111 5961077452370133893/00059 5961077452370133893/00119 5961077452370133893/00084 5961077452370133893/00067 5961077452370133893/00034 5961077452370133893/00081 5961077452370133893/00002 5961077452370133893/00106 5961077452370133893/00089 5961077452370133893/00008 5961077452370133893/00131 5961077452370133893/00102 5961077452370133893/00132 5961077452370133893/00025 5961077452370133893/00043 5961077452370133893/00005 5961077452370133893/00074 5961077452370133893/00028 5695464219380391015/00015 5695464219380391015/00003 5695464219380391015/00009 5695464219380391015/00010 5695464219380391015/00007 5695464219380391015/00005 6223051989066833707/00015 6223051989066833707/00006 6223051989066833707/00009 6223051989066833707/00013 6223051989066833707/00011 6223051989066833707/00008 6223051989066833707/00007 6223051989066833707/00005 6357701790776745251/00013 6357701790776745251/00021 6357701790776745251/00017 6357701790776745251/00016 6357701790776745251/00011 6357701790776745251/00005 5952360816242957424/00003 5952360816242957424/00056 5952360816242957424/00032 5952360816242957424/00009 5952360816242957424/00010 5952360816242957424/00057 5952360816242957424/00030 5952360816242957424/00058 5952360816242957424/00062 5952360816242957424/00031 5952360816242957424/00022 5952360816242957424/00026 5952360816242957424/00044 5952360816242957424/00050 5952360816242957424/00001 5952360816242957424/00045 5952360816242957424/00023 5952360816242957424/00048 5952360816242957424/00041 5952360816242957424/00061 5952360816242957424/00021 5952360816242957424/00047 5952360816242957424/00039 5952360816242957424/00020 5952360816242957424/00035 5952360816242957424/00051 5952360816242957424/00052 5952360816242957424/00055 5952360816242957424/00016 5952360816242957424/00059 5952360816242957424/00011 5952360816242957424/00002 5952360816242957424/00008 5952360816242957424/00068 5952360816242957424/00025 5952360816242957424/00054 5952360816242957424/00043 5952360816242957424/00005 6240494280752601735/00003 6240494280752601735/00002 6240494280752601735/00007 6240494280752601735/00004 6347350060599908703/00007 6347350060599908703/00005 6096109935666258957/00003 6096109935666258957/00006 6096109935666258957/00013 6096109935666258957/00001 6096109935666258957/00018 6096109935666258957/00012 6096109935666258957/00014 6096109935666258957/00020 6096109935666258957/00008 6096109935666258957/00007 6096109935666258957/00005 6116906167313474521/00001 6116906167313474521/00004 5539474443163516678/00015 5539474443163516678/00010 5539474443163516678/00024 5539474443163516678/00036 5539474443163516678/00001 5539474443163516678/00021 5539474443163516678/00047 5539474443163516678/00052 5539474443163516678/00007 5539474443163516678/00054 5677031078739428224/00029 5677031078739428224/00003 5677031078739428224/00006 5677031078739428224/00046 5677031078739428224/00031 5677031078739428224/00013 5677031078739428224/00026 5677031078739428224/00044 5677031078739428224/00001 5677031078739428224/00014 5677031078739428224/00037 5677031078739428224/00047 5677031078739428224/00039 5677031078739428224/00020 5677031078739428224/00027 5677031078739428224/00002 5677031078739428224/00040 5677031078739428224/00005 6086740035013227587/00003 6086740035013227587/00009 6086740035013227587/00008 6086740035013227587/00007 6086740035013227587/00005 6086740035013227587/00004 5936533002763689364/00006 5936533002763689364/00002 5936533002763689364/00005 6352157417494386368/00030 6352157417494386368/00050 6352157417494386368/00051 6352157417494386368/00027 6352157417494386368/00043 6098738455651409018/00001 6098738455651409018/00002 6098738455651409018/00004 5940922888836997383/00015 5940922888836997383/00003 5940922888836997383/00009 5940922888836997383/00010 5940922888836997383/00013 5940922888836997383/00001 5940922888836997383/00014 5940922888836997383/00017 5940922888836997383/00016 5940922888836997383/00008 5940922888836997383/00007 5940922888836997383/00005 6112764959846604197/00006 6112764959846604197/00022 6112764959846604197/00019 6112764959846604197/00002 6223310975594781256/00003 6223310975594781256/00006 6223310975594781256/00009 6223310975594781256/00011 6223310975594781256/00004 6019650927862802894/00032 6019650927862802894/00024 6019650927862802894/00030 6019650927862802894/00031 6019650927862802894/00013 6019650927862802894/00036 6019650927862802894/00038 6019650927862802894/00012 6019650927862802894/00014 6019650927862802894/00037 6019650927862802894/00039 6019650927862802894/00020 6019650927862802894/00016 6019650927862802894/00019 6019650927862802894/00027 6019650927862802894/00002 6019650927862802894/00040 6019650927862802894/00007 6019650927862802894/00025 6019650927862802894/00005 6325796196721673967/00009 6325796196721673967/00010 6325796196721673967/00011 6325796196721673967/00007 6325796196721673967/00005 6048611033346267475/00029 6048611033346267475/00015 6048611033346267475/00003 6048611033346267475/00009 6048611033346267475/00024 6048611033346267475/00030 6048611033346267475/00031 6048611033346267475/00022 6048611033346267475/00001 6048611033346267475/00023 6048611033346267475/00018 6048611033346267475/00012 6048611033346267475/00021 6048611033346267475/00014 6048611033346267475/00039 6048611033346267475/00035 6048611033346267475/00016 6048611033346267475/00019 6048611033346267475/00011 6048611033346267475/00002 6048611033346267475/00040 6048611033346267475/00005 6048611033346267475/00028 5547912765409973907/00007 5547912765409973907/00005 5547912765409973907/00004 6092043460630331186/00003 6092043460630331186/00006 6092043460630331186/00009 6092043460630331186/00001 6092043460630331186/00002 6092043460630331186/00007 6092043460630331186/00005 6092043460630331186/00004 5910180801422358015/00009 5910180801422358015/00014 5910180801422358015/00019 5910180801422358015/00002 5910180801422358015/00008 5983918517947051698/00003 5983918517947051698/00002 5983918517947051698/00005 6329893595522122781/00006 6329893595522122781/00010 6329893595522122781/00011 6329893595522122781/00002 6329893595522122781/00008 6329893595522122781/00007 6329893595522122781/00005 5564611598256805827/00015 5564611598256805827/00003 5564611598256805827/00013 5564611598256805827/00012 5564611598256805827/00017 5564611598256805827/00002 5564611598256805827/00005 5564611598256805827/00004 6248290934885036728/00015 6248290934885036728/00006 6248290934885036728/00010 6248290934885036728/00013 6248290934885036728/00001 6248290934885036728/00012 6248290934885036728/00014 6248290934885036728/00011 6248290934885036728/00002 6248290934885036728/00004 6251223538554747680/00029 6251223538554747680/00015 6251223538554747680/00006 6251223538554747680/00032 6251223538554747680/00009 6251223538554747680/00010 6251223538554747680/00033 6251223538554747680/00030 6251223538554747680/00036 6251223538554747680/00001 6251223538554747680/00045 6251223538554747680/00049 6251223538554747680/00048 6251223538554747680/00012 6251223538554747680/00014 6251223538554747680/00037 6251223538554747680/00035 6251223538554747680/00016 6251223538554747680/00011 6251223538554747680/00027 6251223538554747680/00002 6251223538554747680/00008 6251223538554747680/00028 6009631628154765125/00006 6009631628154765125/00009 6009631628154765125/00010 6009631628154765125/00024 6009631628154765125/00022 6009631628154765125/00001 6009631628154765125/00012 6009631628154765125/00014 6009631628154765125/00016 6009631628154765125/00002 6009631628154765125/00007 5582052601452419961/00006 5582052601452419961/00032 5582052601452419961/00009 5582052601452419961/00010 5582052601452419961/00033 5582052601452419961/00030 5582052601452419961/00026 5582052601452419961/00001 5582052601452419961/00021 5582052601452419961/00017 5582052601452419961/00016 5582052601452419961/00019 5582052601452419961/00025 5582052601452419961/00005 5582052601452419961/00028 6223013334361101823/00006 6223013334361101823/00009 6223013334361101823/00010 6223013334361101823/00013 6223013334361101823/00023 6223013334361101823/00012 6223013334361101823/00021 6223013334361101823/00020 6223013334361101823/00017 6223013334361101823/00019 6223013334361101823/00002 6223013334361101823/00005 6090505003344967660/00003 6090505003344967660/00046 6090505003344967660/00032 6090505003344967660/00009 6090505003344967660/00010 6090505003344967660/00033 6090505003344967660/00024 6090505003344967660/00031 6090505003344967660/00013 6090505003344967660/00022 6090505003344967660/00036 6090505003344967660/00001 6090505003344967660/00023 6090505003344967660/00038 6090505003344967660/00048 6090505003344967660/00018 6090505003344967660/00012 6090505003344967660/00041 6090505003344967660/00021 6090505003344967660/00037 6090505003344967660/00047 6090505003344967660/00039 6090505003344967660/00020 6090505003344967660/00017 6090505003344967660/00016 6090505003344967660/00019 6090505003344967660/00011 6090505003344967660/00034 6090505003344967660/00002 6090505003344967660/00008 6090505003344967660/00040 6090505003344967660/00025 6090505003344967660/00004 6090505003344967660/00028 6001104400085216578/00001 6001104400085216578/00002 5970750148347937094/00029 5970750148347937094/00003 5970750148347937094/00006 5970750148347937094/00032 5970750148347937094/00010 5970750148347937094/00024 5970750148347937094/00030 5970750148347937094/00031 5970750148347937094/00013 5970750148347937094/00026 5970750148347937094/00023 5970750148347937094/00018 5970750148347937094/00012 5970750148347937094/00035 5970750148347937094/00016 5970750148347937094/00011 5970750148347937094/00027 5970750148347937094/00034 5970750148347937094/00002 5970750148347937094/00007 5970750148347937094/00005 5970750148347937094/00028 6214041577176545185/00003 6214041577176545185/00006 6214041577176545185/00013 6214041577176545185/00018 6214041577176545185/00012 6214041577176545185/00021 6214041577176545185/00020 6214041577176545185/00017 6214041577176545185/00016 6214041577176545185/00002 6214041577176545185/00007 6214041577176545185/00005 6214041577176545185/00004 5994351423005710583/00003 5994351423005710583/00006 5994351423005710583/00009 5994351423005710583/00010 5994351423005710583/00001 5994351423005710583/00011 5994351423005710583/00002 5994351423005710583/00005 5994351423005710583/00004 5992913467955004536/00015 5992913467955004536/00006 5992913467955004536/00009 5992913467955004536/00010 5992913467955004536/00024 5992913467955004536/00001 5992913467955004536/00018 5992913467955004536/00012 5992913467955004536/00021 5992913467955004536/00014 5992913467955004536/00016 5992913467955004536/00019 5992913467955004536/00008 5992913467955004536/00025 6238251019333837876/00015 6238251019333837876/00003 6238251019333837876/00006 6238251019333837876/00001 6238251019333837876/00023 6238251019333837876/00018 6238251019333837876/00021 6238251019333837876/00020 6238251019333837876/00016 6238251019333837876/00019 6238251019333837876/00011 6238251019333837876/00027 6238251019333837876/00002 6238251019333837876/00008 6238251019333837876/00025 6238251019333837876/00004 6238251019333837876/00028 5572110611155629822/00015 5572110611155629822/00006 5572110611155629822/00022 5572110611155629822/00026 5572110611155629822/00001 5572110611155629822/00018 5572110611155629822/00021 5572110611155629822/00014 5572110611155629822/00016 5572110611155629822/00019 5572110611155629822/00002 5572110611155629822/00007 5572110611155629822/00005 6047549317430693138/00006 6047549317430693138/00009 6047549317430693138/00024 6047549317430693138/00013 6047549317430693138/00026 6047549317430693138/00001 6047549317430693138/00018 6047549317430693138/00012 6047549317430693138/00014 6047549317430693138/00020 6047549317430693138/00016 6047549317430693138/00011 6047549317430693138/00008 6047549317430693138/00007 6047549317430693138/00005 6047549317430693138/00004 6221528993663603162/00015 6221528993663603162/00006 6221528993663603162/00032 6221528993663603162/00024 6221528993663603162/00026 6221528993663603162/00023 6221528993663603162/00018 6221528993663603162/00012 6221528993663603162/00016 6221528993663603162/00019 6221528993663603162/00011 6221528993663603162/00027 6221528993663603162/00002 6221528993663603162/00025 6221528993663603162/00005 6028572434060538276/00003 6028572434060538276/00006 6028572434060538276/00009 6028572434060538276/00010 6028572434060538276/00013 6028572434060538276/00001 6028572434060538276/00012 6028572434060538276/00020 6028572434060538276/00017 6028572434060538276/00016 6028572434060538276/00019 6028572434060538276/00011 6028572434060538276/00008 6028572434060538276/00007 6028572434060538276/00004 5694618969816540249/00032 5694618969816540249/00022 5694618969816540249/00023 5694618969816540249/00018 5694618969816540249/00021 5694618969816540249/00020 5694618969816540249/00011 5694618969816540249/00008 5694618969816540249/00005 5694618969816540249/00028 6378324076248495598/00012 6232370350112213362/00001 6246785978474938171/00006 6246785978474938171/00022 6246785978474938171/00001 6246785978474938171/00023 6246785978474938171/00012 6246785978474938171/00021 6246785978474938171/00014 6246785978474938171/00020 6246785978474938171/00008 6246785978474938171/00005 6246785978474938171/00004 5570920046221178499/00015 5570920046221178499/00003 5570920046221178499/00018 5570920046221178499/00014 5570920046221178499/00017 5570920046221178499/00011 5570920046221178499/00002 5570920046221178499/00004 6375181448678007969/00005 6354755013715009552/00005 5958765900971485676/00015 5958765900971485676/00009 5958765900971485676/00010 5958765900971485676/00033 5958765900971485676/00030 5958765900971485676/00031 5958765900971485676/00026 5958765900971485676/00036 5958765900971485676/00023 5958765900971485676/00021 5958765900971485676/00014 5958765900971485676/00011 6124262157801279923/00003 6124262157801279923/00006 6124262157801279923/00009 6124262157801279923/00010 6124262157801279923/00011 6124262157801279923/00008 6124262157801279923/00007 6124262157801279923/00004 6351841737398064668/00004 5686084010805947326/00029 5686084010805947326/00046 5686084010805947326/00009 5686084010805947326/00024 5686084010805947326/00030 5686084010805947326/00031 5686084010805947326/00022 5686084010805947326/00044 5686084010805947326/00036 5686084010805947326/00045 5686084010805947326/00023 5686084010805947326/00038 5686084010805947326/00037 5686084010805947326/00047 5686084010805947326/00039 5686084010805947326/00035 5686084010805947326/00019 5686084010805947326/00027 5686084010805947326/00002 5686084010805947326/00043 5686084010805947326/00028 5947942583385586867/00015 5947942583385586867/00003 5947942583385586867/00006 5947942583385586867/00009 5947942583385586867/00013 5947942583385586867/00012 5947942583385586867/00017 5947942583385586867/00019 5947942583385586867/00011 5947942583385586867/00002 5947942583385586867/00007 6104245462718256848/00015 6104245462718256848/00003 6104245462718256848/00010 6104245462718256848/00026 6104245462718256848/00023 6104245462718256848/00012 6104245462718256848/00014 6104245462718256848/00017 6104245462718256848/00016 6104245462718256848/00011 6104245462718256848/00027 6104245462718256848/00008 6104245462718256848/00005 6104245462718256848/00004 5539741160632598296/00029 5539741160632598296/00015 5539741160632598296/00006 5539741160632598296/00032 5539741160632598296/00010 5539741160632598296/00033 5539741160632598296/00031 5539741160632598296/00026 5539741160632598296/00001 5539741160632598296/00021 5539741160632598296/00016 5539741160632598296/00019 5539741160632598296/00034 5539741160632598296/00002 5539741160632598296/00007 5539741160632598296/00025 5539741160632598296/00005 5539741160632598296/00004 6119066965360030840/00022 6119066965360030840/00001 6119066965360030840/00011 6119066965360030840/00008 6259677322683473099/00003 6259677322683473099/00010 6259677322683473099/00001 6259677322683473099/00008 6259677322683473099/00005 6259677322683473099/00004 6347338464188272871/00011 6148881339839405256/00013 6148881339839405256/00011 6148881339839405256/00002 6148881339839405256/00008 6148881339839405256/00007 6148881339839405256/00005 6148881339839405256/00004 6098599298711014115/00029 6098599298711014115/00015 6098599298711014115/00003 6098599298711014115/00006 6098599298711014115/00032 6098599298711014115/00009 6098599298711014115/00033 6098599298711014115/00024 6098599298711014115/00031 6098599298711014115/00013 6098599298711014115/00026 6098599298711014115/00001 6098599298711014115/00018 6098599298711014115/00012 6098599298711014115/00014 6098599298711014115/00047 6098599298711014115/00020 6098599298711014115/00035 6098599298711014115/00017 6098599298711014115/00019 6098599298711014115/00011 6098599298711014115/00034 6098599298711014115/00008 6098599298711014115/00007 6098599298711014115/00004 6098599298711014115/00028 6301320037095305408/00003 6301320037095305408/00006 6301320037095305408/00009 6301320037095305408/00010 6301320037095305408/00002 6301320037095305408/00007 6301320037095305408/00004 6227021827338527044/00009 6227021827338527044/00010 6227021827338527044/00002 6227021827338527044/00008 6328962017115556355/00003 6328962017115556355/00009 6328962017115556355/00010 6328962017115556355/00001 6328962017115556355/00011 6328962017115556355/00002 6328962017115556355/00007 6328962017115556355/00004 5865635118615159260/00003 5865635118615159260/00009 5865635118615159260/00010 5865635118615159260/00012 5865635118615159260/00014 5865635118615159260/00017 5865635118615159260/00016 5865635118615159260/00011 5865635118615159260/00002 5865635118615159260/00008 5982217710898488715/00001 5982217710898488715/00005 6245205000882858789/00001 6245205000882858789/00004 6013589870014737316/00015 6013589870014737316/00006 6013589870014737316/00021 6013589870014737316/00016 6013589870014737316/00004 6118019422836597806/00003 6118019422836597806/00006 6118019422836597806/00010 6118019422836597806/00001 6118019422836597806/00012 6118019422836597806/00002 6118019422836597806/00008 6118019422836597806/00007 6118019422836597806/00005 6078676663411799554/00004 6119905772472944363/00006 6119905772472944363/00009 6119905772472944363/00010 6119905772472944363/00001 6119905772472944363/00011 6119905772472944363/00008 6119905772472944363/00007 6119905772472944363/00005 6119905772472944363/00004 6234153620533513823/00003 6234153620533513823/00009 6234153620533513823/00010 6234153620533513823/00024 6234153620533513823/00023 6234153620533513823/00018 6234153620533513823/00012 6234153620533513823/00017 6234153620533513823/00016 6234153620533513823/00019 6234153620533513823/00002 6234153620533513823/00008 6105702745121881374/00010 6105702745121881374/00001 6105702745121881374/00012 6105702745121881374/00002 6105702745121881374/00008 6103910455269256619/00006 6103910455269256619/00002 6103910455269256619/00008 6103910455269256619/00007 6103910455269256619/00005 6103910455269256619/00004 6244180651182762664/00009 6244180651182762664/00010 6244180651182762664/00018 6244180651182762664/00012 6244180651182762664/00021 6244180651182762664/00020 6244180651182762664/00011 6244180651182762664/00002 6244180651182762664/00008 6244180651182762664/00005 5717127604924687163/00006 5717127604924687163/00007 5717127604924687163/00005 6083493039738165227/00029 6083493039738165227/00015 6083493039738165227/00003 6083493039738165227/00032 6083493039738165227/00033 6083493039738165227/00024 6083493039738165227/00013 6083493039738165227/00022 6083493039738165227/00026 6083493039738165227/00001 6083493039738165227/00018 6083493039738165227/00012 6083493039738165227/00021 6083493039738165227/00014 6083493039738165227/00020 6083493039738165227/00017 6083493039738165227/00016 6083493039738165227/00011 6083493039738165227/00027 6083493039738165227/00007 6083493039738165227/00025 6083493039738165227/00004 6083493039738165227/00028 6102441576453957598/00003 6102441576453957598/00004 6199611775552097439/00010 6199611775552097439/00013 6199611775552097439/00001 6199611775552097439/00012 6199611775552097439/00014 6199611775552097439/00011 6199611775552097439/00002 6199611775552097439/00008 6199611775552097439/00004 6371389422052370754/00011 6093036886565962211/00003 6093036886565962211/00006 6093036886565962211/00009 6093036886565962211/00010 6093036886565962211/00013 6093036886565962211/00012 6093036886565962211/00014 6093036886565962211/00020 6093036886565962211/00019 6093036886565962211/00011 6093036886565962211/00002 6093036886565962211/00007 6093036886565962211/00005 6349108849707618270/00007 6339526348173538836/00014 6144714362568162658/00003 6144714362568162658/00022 6144714362568162658/00001 6144714362568162658/00018 6144714362568162658/00011 6144714362568162658/00008 5954239434938228786/00029 5954239434938228786/00003 5954239434938228786/00032 5954239434938228786/00009 5954239434938228786/00033 5954239434938228786/00036 5954239434938228786/00038 5954239434938228786/00012 5954239434938228786/00021 5954239434938228786/00037 5954239434938228786/00020 5954239434938228786/00035 5954239434938228786/00016 5954239434938228786/00027 5954239434938228786/00034 5954239434938228786/00002 6227471510414418277/00029 6227471510414418277/00056 6227471510414418277/00009 6227471510414418277/00033 6227471510414418277/00058 6227471510414418277/00045 6227471510414418277/00038 6227471510414418277/00042 6227471510414418277/00037 6227471510414418277/00055 6227471510414418277/00016 6227471510414418277/00011 6227471510414418277/00034 6227471510414418277/00007 6227471510414418277/00043 6227471510414418277/00004 6229155567091120540/00015 6229155567091120540/00006 6229155567091120540/00024 6229155567091120540/00013 6229155567091120540/00001 6229155567091120540/00012 6229155567091120540/00014 6229155567091120540/00017 6229155567091120540/00016 6229155567091120540/00011 6229155567091120540/00002 6229155567091120540/00008 6229155567091120540/00007 6229155567091120540/00025 6229155567091120540/00005 6229155567091120540/00004 6024822927480649400/00029 6024822927480649400/00015 6024822927480649400/00003 6024822927480649400/00006 6024822927480649400/00010 6024822927480649400/00024 6024822927480649400/00031 6024822927480649400/00013 6024822927480649400/00022 6024822927480649400/00023 6024822927480649400/00018 6024822927480649400/00021 6024822927480649400/00014 6024822927480649400/00017 6024822927480649400/00011 6024822927480649400/00025 6024822927480649400/00005 6024822927480649400/00028 6120617019057157337/00003 6120617019057157337/00006 6120617019057157337/00002 6120617019057157337/00008 6120617019057157337/00007 6120617019057157337/00004 6262727178960300826/00003 6262727178960300826/00001 6262727178960300826/00007 6262727178960300826/00005 6262727178960300826/00004 6148738317427724583/00029 6148738317427724583/00032 6148738317427724583/00033 6148738317427724583/00024 6148738317427724583/00031 6148738317427724583/00013 6148738317427724583/00022 6148738317427724583/00001 6148738317427724583/00023 6148738317427724583/00018 6148738317427724583/00021 6148738317427724583/00017 6148738317427724583/00016 6148738317427724583/00004 5994699315356749452/00001 5994699315356749452/00002 5540854416155721607/00010 5540854416155721607/00022 5540854416155721607/00021 5540854416155721607/00020 5540854416155721607/00016 5540854416155721607/00007 5540854416155721607/00005 5540854416155721607/00004 5985105217410931868/00003 5985105217410931868/00010 5985105217410931868/00013 5985105217410931868/00014 5985105217410931868/00017 5985105217410931868/00016 5985105217410931868/00004 5957594663389802531/00006 5957594663389802531/00020 5957594663389802531/00017 5957594663389802531/00007 5957594663389802531/00005 6327295999301439627/00009 6327295999301439627/00001 6327295999301439627/00018 6327295999301439627/00012 6327295999301439627/00014 6327295999301439627/00011 6327295999301439627/00005 6362958830877522951/00003 6362958830877522951/00008 6362958830877522951/00007 6362958830877522951/00005 5987702813631556804/00009 5987702813631556804/00001 5987702813631556804/00007 5987702813631556804/00004 6112727593631191883/00015 6112727593631191883/00003 6112727593631191883/00009 6112727593631191883/00010 6112727593631191883/00013 6112727593631191883/00018 6112727593631191883/00012 6112727593631191883/00014 6112727593631191883/00017 6112727593631191883/00011 6112727593631191883/00002 6112727593631191883/00007 6362546513886688816/00003 6362546513886688816/00002 6362546513886688816/00008 6362546513886688816/00004 5988912706049265750/00015 5988912706049265750/00003 5988912706049265750/00006 5988912706049265750/00009 5988912706049265750/00010 5988912706049265750/00001 5988912706049265750/00023 5988912706049265750/00021 5988912706049265750/00020 5988912706049265750/00017 5988912706049265750/00027 5988912706049265750/00002 5988912706049265750/00004 6122101359754721970/00003 6122101359754721970/00009 6122101359754721970/00010 6122101359754721970/00013 6122101359754721970/00001 6122101359754721970/00011 6122101359754721970/00008 6295738297597351952/00003 6295738297597351952/00009 6295738297597351952/00024 6295738297597351952/00022 6295738297597351952/00001 6295738297597351952/00023 6295738297597351952/00016 6295738297597351952/00007 6295738297597351952/00025 6295738297597351952/00004 5936075588746727329/00003 5936075588746727329/00006 5936075588746727329/00009 5936075588746727329/00001 5936075588746727329/00002 5936075588746727329/00005 5936075588746727329/00004 6048595571464064572/00029 6048595571464064572/00015 6048595571464064572/00003 6048595571464064572/00006 6048595571464064572/00009 6048595571464064572/00013 6048595571464064572/00001 6048595571464064572/00012 6048595571464064572/00014 6048595571464064572/00035 6048595571464064572/00016 6048595571464064572/00011 6048595571464064572/00002 6048595571464064572/00025 6048595571464064572/00005 6048595571464064572/00004 6048595571464064572/00028 6025259725785132993/00003 6025259725785132993/00001 6025259725785132993/00002 6233790266300297461/00003 6233790266300297461/00001 6233790266300297461/00004 5986918123106513616/00004 5583517614797087839/00029 5583517614797087839/00006 5583517614797087839/00032 5583517614797087839/00009 5583517614797087839/00030 5583517614797087839/00013 5583517614797087839/00022 5583517614797087839/00001 5583517614797087839/00014 5583517614797087839/00016 5583517614797087839/00011 5583517614797087839/00008 5583517614797087839/00025 5583517614797087839/00004 6103176015861642139/00002 6103176015861642139/00008 6103176015861642139/00005 6382618614178237455/00029 6382618614178237455/00003 6382618614178237455/00033 6382618614178237455/00024 6382618614178237455/00013 6382618614178237455/00026 6382618614178237455/00036 6382618614178237455/00045 6382618614178237455/00014 6382618614178237455/00037 6382618614178237455/00020 6382618614178237455/00035 6382618614178237455/00017 5923153320643174151/00006 5923153320643174151/00001 5923153320643174151/00008 5923153320643174151/00007 5923153320643174151/00005 5923153320643174151/00004 5555809921777137800/00003 5555809921777137800/00009 5555809921777137800/00010 5555809921777137800/00014 5555809921777137800/00016 5555809921777137800/00011 5555809921777137800/00002 5555809921777137800/00005 5555809921777137800/00004 6246414893170143790/00015 6246414893170143790/00006 6246414893170143790/00010 6246414893170143790/00012 6246414893170143790/00021 6246414893170143790/00017 6246414893170143790/00016 6246414893170143790/00019 6246414893170143790/00011 6246414893170143790/00002 6246414893170143790/00007 6246414893170143790/00005 6086848268189082898/00006 6086848268189082898/00001 6086848268189082898/00002 6086848268189082898/00007 6086848268189082898/00004 6034494334837758472/00003 6034494334837758472/00006 6034494334837758472/00010 6034494334837758472/00005 6060106942941205381/00015 6060106942941205381/00003 6060106942941205381/00006 6060106942941205381/00009 6060106942941205381/00010 6060106942941205381/00013 6060106942941205381/00001 6060106942941205381/00018 6060106942941205381/00012 6060106942941205381/00014 6060106942941205381/00020 6060106942941205381/00017 6060106942941205381/00016 6060106942941205381/00011 6060106942941205381/00002 6060106942941205381/00008 6337902850535709539/00015 6337902850535709539/00077 6337902850535709539/00038 6337902850535709539/00065 6337902850535709539/00027 6337902850535709539/00068 6337902850535709539/00074 5981104455374638340/00015 5981104455374638340/00009 5981104455374638340/00010 5981104455374638340/00030 5981104455374638340/00031 5981104455374638340/00022 5981104455374638340/00026 5981104455374638340/00001 5981104455374638340/00018 5981104455374638340/00012 5981104455374638340/00021 5981104455374638340/00014 5981104455374638340/00020 5981104455374638340/00017 5981104455374638340/00019 5981104455374638340/00027 5981104455374638340/00002 5981104455374638340/00008 5981104455374638340/00007 5981104455374638340/00025 5981104455374638340/00005 5981104455374638340/00004 5981104455374638340/00028 5975418348171551313/00001 5975418348171551313/00002 5975418348171551313/00008 6129465081183726524/00029 6129465081183726524/00003 6129465081183726524/00006 6129465081183726524/00009 6129465081183726524/00031 6129465081183726524/00018 6129465081183726524/00017 6129465081183726524/00011 6129465081183726524/00002 6129465081183726524/00004 6215985909001856968/00060 6215985909001856968/00029 6215985909001856968/00015 6215985909001856968/00003 6215985909001856968/00006 6215985909001856968/00098 6215985909001856968/00046 6215985909001856968/00056 6215985909001856968/00032 6215985909001856968/00113 6215985909001856968/00109 6215985909001856968/00070 6215985909001856968/00009 6215985909001856968/00090 6215985909001856968/00112 6215985909001856968/00010 6215985909001856968/00057 6215985909001856968/00024 6215985909001856968/00118 6215985909001856968/00116 6215985909001856968/00030 6215985909001856968/00071 6215985909001856968/00121 6215985909001856968/00062 6215985909001856968/00086 6215985909001856968/00069 6215985909001856968/00022 6215985909001856968/00096 6215985909001856968/00094 6215985909001856968/00026 6215985909001856968/00044 6215985909001856968/00099 6215985909001856968/00077 6215985909001856968/00093 6215985909001856968/00120 6215985909001856968/00050 6215985909001856968/00036 6215985909001856968/00063 6215985909001856968/00001 6215985909001856968/00045 6215985909001856968/00066 6215985909001856968/00064 6215985909001856968/00049 6215985909001856968/00114 6215985909001856968/00038 6215985909001856968/00048 6215985909001856968/00085 6215985909001856968/00042 6215985909001856968/00012 6215985909001856968/00041 6215985909001856968/00061 6215985909001856968/00083 6215985909001856968/00079 6215985909001856968/00014 6215985909001856968/00037 6215985909001856968/00020 6215985909001856968/00076 6215985909001856968/00091 6215985909001856968/00055 6215985909001856968/00095 6215985909001856968/00111 6215985909001856968/00019 6215985909001856968/00011 6215985909001856968/00084 6215985909001856968/00027 6215985909001856968/00115 6215985909001856968/00034 6215985909001856968/00100 6215985909001856968/00002 6215985909001856968/00008 6215985909001856968/00087 6215985909001856968/00040 6215985909001856968/00097 6215985909001856968/00043 6215985909001856968/00005 6215985909001856968/00004 6141026703647749000/00029 6141026703647749000/00015 6141026703647749000/00003 6141026703647749000/00010 6141026703647749000/00033 6141026703647749000/00024 6141026703647749000/00030 6141026703647749000/00022 6141026703647749000/00044 6141026703647749000/00036 6141026703647749000/00001 6141026703647749000/00023 6141026703647749000/00038 6141026703647749000/00042 6141026703647749000/00021 6141026703647749000/00037 6141026703647749000/00039 6141026703647749000/00020 6141026703647749000/00017 6141026703647749000/00019 6141026703647749000/00027 6141026703647749000/00034 6141026703647749000/00025 6141026703647749000/00004 6141026703647749000/00028 6240459491517508963/00011 6098971672375577343/00024 6098971672375577343/00031 6098971672375577343/00022 6098971672375577343/00026 6098971672375577343/00001 6098971672375577343/00023 6098971672375577343/00018 6098971672375577343/00020 6098971672375577343/00017 6098971672375577343/00019 6098971672375577343/00027 6098971672375577343/00007 6098971672375577343/00025 6327980187591690710/00003 6023732864780923432/00003 6023732864780923432/00005 5714530008704062393/00006 5714530008704062393/00008 5714530008704062393/00007 5714530008704062393/00004 6208533281619357987/00005 6224142051766557322/00029 6224142051766557322/00015 6224142051766557322/00010 6224142051766557322/00013 6224142051766557322/00026 6224142051766557322/00014 6224142051766557322/00016 6224142051766557322/00011 6224142051766557322/00025 6224142051766557322/00028 5935712234513419665/00003 5935712234513419665/00001 5935712234513419665/00011 6126160103849389908/00013 6126160103849389908/00012 6126160103849389908/00011 6126160103849389908/00002 6126160103849389908/00008 6126160103849389908/00004 6095792967079748158/00029 6095792967079748158/00015 6095792967079748158/00003 6095792967079748158/00006 6095792967079748158/00024 6095792967079748158/00013 6095792967079748158/00026 6095792967079748158/00023 6095792967079748158/00021 6095792967079748158/00014 6095792967079748158/00008 6095792967079748158/00007 6095792967079748158/00025 6095792967079748158/00028 6130949421881224236/00015 6130949421881224236/00006 6130949421881224236/00024 6130949421881224236/00030 6130949421881224236/00022 6130949421881224236/00001 6130949421881224236/00023 6130949421881224236/00018 6130949421881224236/00017 6130949421881224236/00016 6130949421881224236/00034 6130949421881224236/00007 6130949421881224236/00025 6130949421881224236/00005 5553131150674621667/00003 5553131150674621667/00010 5553131150674621667/00026 5553131150674621667/00023 5553131150674621667/00012 5553131150674621667/00019 5553131150674621667/00002 5553131150674621667/00008 5553131150674621667/00007 5553131150674621667/00025 5553131150674621667/00004 6129072091676077701/00015 6129072091676077701/00003 6129072091676077701/00006 6129072091676077701/00010 6129072091676077701/00030 6129072091676077701/00013 6129072091676077701/00001 6129072091676077701/00023 6129072091676077701/00018 6129072091676077701/00012 6129072091676077701/00041 6129072091676077701/00021 6129072091676077701/00014 6129072091676077701/00039 6129072091676077701/00035 6129072091676077701/00017 6129072091676077701/00011 6129072091676077701/00034 6129072091676077701/00008 6129072091676077701/00040 6129072091676077701/00007 6129072091676077701/00043 6129072091676077701/00005 6177362126971912477/00003 6177362126971912477/00002 6177362126971912477/00004 5695330216400759671/00015 5695330216400759671/00003 5695330216400759671/00006 5695330216400759671/00032 5695330216400759671/00009 5695330216400759671/00010 5695330216400759671/00033 5695330216400759671/00024 5695330216400759671/00030 5695330216400759671/00013 5695330216400759671/00026 5695330216400759671/00041 5695330216400759671/00014 5695330216400759671/00037 5695330216400759671/00039 5695330216400759671/00035 5695330216400759671/00017 5695330216400759671/00016 5695330216400759671/00011 5695330216400759671/00027 5695330216400759671/00002 5695330216400759671/00008 5695330216400759671/00040 5695330216400759671/00007 5695330216400759671/00005 5988073898805931441/00015 5988073898805931441/00006 5988073898805931441/00001 5988073898805931441/00018 5988073898805931441/00012 5988073898805931441/00014 5988073898805931441/00011 5988073898805931441/00008 5988073898805931441/00007 5988073898805931441/00005 5988073898805931441/00004 6061583552567178476/00015 6061583552567178476/00003 6061583552567178476/00006 6061583552567178476/00032 6061583552567178476/00009 6061583552567178476/00010 6061583552567178476/00033 6061583552567178476/00030 6061583552567178476/00031 6061583552567178476/00013 6061583552567178476/00001 6061583552567178476/00038 6061583552567178476/00012 6061583552567178476/00014 6061583552567178476/00037 6061583552567178476/00039 6061583552567178476/00011 6061583552567178476/00027 6061583552567178476/00034 6061583552567178476/00008 6061583552567178476/00007 6061583552567178476/00004 6061583552567178476/00028 6246863287886266082/00060 6246863287886266082/00003 6246863287886266082/00006 6246863287886266082/00046 6246863287886266082/00056 6246863287886266082/00032 6246863287886266082/00057 6246863287886266082/00030 6246863287886266082/00062 6246863287886266082/00031 6246863287886266082/00013 6246863287886266082/00022 6246863287886266082/00026 6246863287886266082/00063 6246863287886266082/00001 6246863287886266082/00049 6246863287886266082/00038 6246863287886266082/00018 6246863287886266082/00042 6246863287886266082/00061 6246863287886266082/00037 6246863287886266082/00051 6246863287886266082/00052 6246863287886266082/00055 6246863287886266082/00016 6246863287886266082/00059 6246863287886266082/00002 6246863287886266082/00008 6246863287886266082/00007 6246863287886266082/00054 6246863287886266082/00043 6246863287886266082/00028 5969836608673665741/00015 5969836608673665741/00003 5969836608673665741/00006 5969836608673665741/00010 5969836608673665741/00013 5969836608673665741/00001 5969836608673665741/00018 5969836608673665741/00002 5969836608673665741/00008 5709825731024778684/00015 5709825731024778684/00003 5709825731024778684/00006 5709825731024778684/00010 5709825731024778684/00001 5709825731024778684/00016 5709825731024778684/00011 5709825731024778684/00002 5709825731024778684/00005 5709825731024778684/00004 5558666504525708779/00032 5558666504525708779/00024 5558666504525708779/00022 5558666504525708779/00026 5558666504525708779/00050 5558666504525708779/00045 5558666504525708779/00049 5558666504525708779/00023 5558666504525708779/00048 5558666504525708779/00042 5558666504525708779/00012 5558666504525708779/00041 5558666504525708779/00014 5558666504525708779/00037 5558666504525708779/00020 5558666504525708779/00035 5558666504525708779/00017 5558666504525708779/00055 5558666504525708779/00027 5558666504525708779/00008 5558666504525708779/00025 5558666504525708779/00054 5558666504525708779/00043 5558666504525708779/00005 5558666504525708779/00004 6239024113447118422/00032 6239024113447118422/00009 6239024113447118422/00024 6239024113447118422/00031 6239024113447118422/00013 6239024113447118422/00018 6239024113447118422/00041 6239024113447118422/00017 6239024113447118422/00019 6239024113447118422/00002 6239024113447118422/00043 6239024113447118422/00005 6130628587824213013/00006 6130628587824213013/00013 6130628587824213013/00012 6130628587824213013/00011 6130628587824213013/00004 6362460185044046481/00024 6362460185044046481/00014 6362460185044046481/00028 6031943124394439486/00003 6031943124394439486/00006 6031943124394439486/00008 6373627529510317190/00002 6373627529510317190/00005 6373627529510317190/00004 6312022236603390541/00009 6312022236603390541/00010 6312022236603390541/00013 6312022236603390541/00012 6312022236603390541/00008 6312022236603390541/00004 6156210272032583712/00003 6156210272032583712/00009 6156210272032583712/00001 6156210272032583712/00002 6156210272032583712/00008 6156210272032583712/00007 6156210272032583712/00005 5544730194643635920/00015 5544730194643635920/00010 5544730194643635920/00013 5544730194643635920/00022 5544730194643635920/00001 5544730194643635920/00023 5544730194643635920/00018 5544730194643635920/00021 5544730194643635920/00014 5544730194643635920/00017 5544730194643635920/00007 5544730194643635920/00005 5544730194643635920/00004 5599304196590249949/00001 5599304196590249949/00005 6096441077644714363/00029 6096441077644714363/00003 6096441077644714363/00032 6096441077644714363/00009 6096441077644714363/00010 6096441077644714363/00033 6096441077644714363/00024 6096441077644714363/00030 6096441077644714363/00031 6096441077644714363/00013 6096441077644714363/00001 6096441077644714363/00023 6096441077644714363/00038 6096441077644714363/00018 6096441077644714363/00042 6096441077644714363/00014 6096441077644714363/00037 6096441077644714363/00039 6096441077644714363/00017 6096441077644714363/00016 6096441077644714363/00019 6096441077644714363/00011 6096441077644714363/00027 6096441077644714363/00034 6096441077644714363/00002 6096441077644714363/00040 6096441077644714363/00007 6096441077644714363/00005 6096441077644714363/00004 6096441077644714363/00028 6247048830342970623/00001 5566467024128680493/00029 5566467024128680493/00015 5566467024128680493/00013 5566467024128680493/00022 5566467024128680493/00023 5566467024128680493/00014 5566467024128680493/00020 5566467024128680493/00017 5566467024128680493/00016 5566467024128680493/00019 5566467024128680493/00011 5566467024128680493/00027 5566467024128680493/00002 5566467024128680493/00025 5566467024128680493/00005 5566467024128680493/00004 5566467024128680493/00028 5943489561293089791/00009 5943489561293089791/00010 5943489561293089791/00001 5943489561293089791/00011 5943489561293089791/00002 5943489561293089791/00008 5943489561293089791/00004 5959136986145860115/00015 5959136986145860115/00003 5959136986145860115/00006 5959136986145860115/00010 5959136986145860115/00013 5959136986145860115/00022 5959136986145860115/00021 5959136986145860115/00014 5959136986145860115/00020 5959136986145860115/00016 5959136986145860115/00011 5959136986145860115/00027 5959136986145860115/00002 5959136986145860115/00025 5959136986145860115/00005 6024846120304758193/00003 6024846120304758193/00008 6024846120304758193/00007 6024846120304758193/00004 5691990449831385037/00003 5691990449831385037/00010 5691990449831385037/00024 5691990449831385037/00031 5691990449831385037/00013 5691990449831385037/00001 5691990449831385037/00023 5691990449831385037/00021 5691990449831385037/00020 5691990449831385037/00017 5691990449831385037/00011 5691990449831385037/00005 5691990449831385037/00004 5691990449831385037/00028 5977258312161159800/00003 5977258312161159800/00001 5977258312161159800/00020 5977258312161159800/00016 5977258312161159800/00002 5977258312161159800/00008 5977258312161159800/00007 5977258312161159800/00005 5977258312161159800/00004 6244961476367596580/00029 6244961476367596580/00046 6244961476367596580/00030 6244961476367596580/00031 6244961476367596580/00013 6244961476367596580/00022 6244961476367596580/00026 6244961476367596580/00044 6244961476367596580/00050 6244961476367596580/00049 6244961476367596580/00023 6244961476367596580/00038 6244961476367596580/00048 6244961476367596580/00042 6244961476367596580/00037 6244961476367596580/00047 6244961476367596580/00039 6244961476367596580/00051 6244961476367596580/00052 6244961476367596580/00055 6244961476367596580/00027 6244961476367596580/00034 6244961476367596580/00040 6244961476367596580/00007 6244961476367596580/00025 6244961476367596580/00028 6364791063795516278/00010 6364791063795516278/00005 6364791063795516278/00004 6354006400915251783/00006 6354006400915251783/00007 5986920700086887513/00003 5986920700086887513/00006 5986920700086887513/00009 5986920700086887513/00001 5537893465701857051/00001 5537893465701857051/00002 5537893465701857051/00008 5537893465701857051/00007 5537893465701857051/00005 5537893465701857051/00004 6078174152238167512/00032 6078174152238167512/00010 6078174152238167512/00033 6078174152238167512/00030 6078174152238167512/00022 6078174152238167512/00023 6078174152238167512/00012 6078174152238167512/00017 6078174152238167512/00019 6078174152238167512/00002 6078174152238167512/00008 6078174152238167512/00025 6078174152238167512/00005 5867462197702882179/00003 5867462197702882179/00006 5867462197702882179/00009 5867462197702882179/00010 5867462197702882179/00001 5867462197702882179/00002 5867462197702882179/00008 5867462197702882179/00007 5867462197702882179/00005 5999921566091961236/00015 5999921566091961236/00003 5999921566091961236/00006 5999921566091961236/00046 5999921566091961236/00032 5999921566091961236/00009 5999921566091961236/00010 5999921566091961236/00033 5999921566091961236/00053 5999921566091961236/00031 5999921566091961236/00013 5999921566091961236/00050 5999921566091961236/00036 5999921566091961236/00001 5999921566091961236/00049 5999921566091961236/00023 5999921566091961236/00012 5999921566091961236/00041 5999921566091961236/00014 5999921566091961236/00047 5999921566091961236/00039 5999921566091961236/00020 5999921566091961236/00051 5999921566091961236/00017 5999921566091961236/00052 5999921566091961236/00016 5999921566091961236/00019 5999921566091961236/00011 5999921566091961236/00034 5999921566091961236/00002 5999921566091961236/00008 5999921566091961236/00040 5999921566091961236/00025 5999921566091961236/00043 5999921566091961236/00005 5999921566091961236/00004 5999921566091961236/00028 5677792576441011755/00009 5677792576441011755/00010 5677792576441011755/00018 5677792576441011755/00012 5677792576441011755/00014 5677792576441011755/00017 5677792576441011755/00019 5677792576441011755/00002 5677792576441011755/00008 5677792576441011755/00007 6112884789434225502/00006 6112884789434225502/00024 6112884789434225502/00026 6112884789434225502/00023 6112884789434225502/00020 6112884789434225502/00027 6112884789434225502/00005 6112884789434225502/00004 6112884789434225502/00028 6044529096428141233/00029 6044529096428141233/00015 6044529096428141233/00003 6044529096428141233/00006 6044529096428141233/00032 6044529096428141233/00010 6044529096428141233/00031 6044529096428141233/00013 6044529096428141233/00018 6044529096428141233/00012 6044529096428141233/00021 6044529096428141233/00014 6044529096428141233/00020 6044529096428141233/00017 6044529096428141233/00016 6044529096428141233/00019 6044529096428141233/00008 6044529096428141233/00004 5996280292818343360/00015 5996280292818343360/00032 5996280292818343360/00009 5996280292818343360/00033 5996280292818343360/00024 5996280292818343360/00030 5996280292818343360/00031 5996280292818343360/00026 5996280292818343360/00036 5996280292818343360/00001 5996280292818343360/00042 5996280292818343360/00012 5996280292818343360/00041 5996280292818343360/00021 5996280292818343360/00047 5996280292818343360/00020 5996280292818343360/00016 5996280292818343360/00019 5996280292818343360/00011 5996280292818343360/00034 5996280292818343360/00008 5996280292818343360/00040 5996280292818343360/00004 6111726436754494209/00006 6111726436754494209/00001 6111726436754494209/00007 6111726436754494209/00004 5991440723669207941/00029 5991440723669207941/00046 5991440723669207941/00032 5991440723669207941/00009 5991440723669207941/00033 5991440723669207941/00013 5991440723669207941/00022 5991440723669207941/00044 5991440723669207941/00036 5991440723669207941/00001 5991440723669207941/00023 5991440723669207941/00038 5991440723669207941/00042 5991440723669207941/00041 5991440723669207941/00021 5991440723669207941/00014 5991440723669207941/00037 5991440723669207941/00047 5991440723669207941/00039 5991440723669207941/00020 5991440723669207941/00017 5991440723669207941/00019 5991440723669207941/00027 5991440723669207941/00008 5991440723669207941/00007 5991440723669207941/00025 5991440723669207941/00043 5991440723669207941/00028 6072948036032390143/00015 6072948036032390143/00003 6072948036032390143/00046 6072948036032390143/00032 6072948036032390143/00009 6072948036032390143/00010 6072948036032390143/00024 6072948036032390143/00053 6072948036032390143/00030 6072948036032390143/00071 6072948036032390143/00031 6072948036032390143/00013 6072948036032390143/00022 6072948036032390143/00045 6072948036032390143/00049 6072948036032390143/00018 6072948036032390143/00041 6072948036032390143/00021 6072948036032390143/00075 6072948036032390143/00039 6072948036032390143/00051 6072948036032390143/00011 6072948036032390143/00027 6072948036032390143/00034 6072948036032390143/00040 6072948036032390143/00007 6072948036032390143/00005 6072948036032390143/00074 5859295746886324248/00029 5859295746886324248/00003 5859295746886324248/00006 5859295746886324248/00032 5859295746886324248/00009 5859295746886324248/00010 5859295746886324248/00033 5859295746886324248/00024 5859295746886324248/00031 5859295746886324248/00013 5859295746886324248/00022 5859295746886324248/00026 5859295746886324248/00036 5859295746886324248/00001 5859295746886324248/00045 5859295746886324248/00018 5859295746886324248/00042 5859295746886324248/00021 5859295746886324248/00014 5859295746886324248/00037 5859295746886324248/00039 5859295746886324248/00017 5859295746886324248/00016 5859295746886324248/00011 5859295746886324248/00027 5859295746886324248/00034 5859295746886324248/00002 5859295746886324248/00007 5859295746886324248/00043 5859295746886324248/00004 5956477542396174717/00015 5956477542396174717/00003 5956477542396174717/00009 5956477542396174717/00010 5956477542396174717/00013 5956477542396174717/00001 5956477542396174717/00018 5956477542396174717/00012 5956477542396174717/00020 5956477542396174717/00019 5956477542396174717/00011 6214776016584164357/00003 6214776016584164357/00006 6214776016584164357/00001 6214776016584164357/00002 6214776016584164357/00008 6214776016584164357/00007 6214776016584164357/00004 6128331209817519074/00015 6128331209817519074/00003 6128331209817519074/00098 6128331209817519074/00073 6128331209817519074/00010 6128331209817519074/00078 6128331209817519074/00030 6128331209817519074/00058 6128331209817519074/00062 6128331209817519074/00022 6128331209817519074/00094 6128331209817519074/00026 6128331209817519074/00077 6128331209817519074/00103 6128331209817519074/00063 6128331209817519074/00001 6128331209817519074/00045 6128331209817519074/00066 6128331209817519074/00064 6128331209817519074/00072 6128331209817519074/00023 6128331209817519074/00048 6128331209817519074/00042 6128331209817519074/00061 6128331209817519074/00021 6128331209817519074/00104 6128331209817519074/00079 6128331209817519074/00014 6128331209817519074/00101 6128331209817519074/00047 6128331209817519074/00035 6128331209817519074/00017 6128331209817519074/00076 6128331209817519074/00080 6128331209817519074/00055 6128331209817519074/00095 6128331209817519074/00059 6128331209817519074/00027 6128331209817519074/00081 6128331209817519074/00082 6128331209817519074/00002 6128331209817519074/00092 6128331209817519074/00008 6128331209817519074/00102 6128331209817519074/00068 6128331209817519074/00025 6128331209817519074/00043 6128331209817519074/00005 6128331209817519074/00004 6128331209817519074/00028 5923581099385860542/00125 5923581099385860542/00029 5923581099385860542/00003 5923581099385860542/00006 5923581099385860542/00098 5923581099385860542/00046 5923581099385860542/00107 5923581099385860542/00056 5923581099385860542/00109 5923581099385860542/00010 5923581099385860542/00033 5923581099385860542/00024 5923581099385860542/00053 5923581099385860542/00118 5923581099385860542/00078 5923581099385860542/00121 5923581099385860542/00062 5923581099385860542/00031 5923581099385860542/00013 5923581099385860542/00137 5923581099385860542/00069 5923581099385860542/00022 5923581099385860542/00094 5923581099385860542/00044 5923581099385860542/00130 5923581099385860542/00099 5923581099385860542/00077 5923581099385860542/00120 5923581099385860542/00103 5923581099385860542/00036 5923581099385860542/00117 5923581099385860542/00110 5923581099385860542/00045 5923581099385860542/00064 5923581099385860542/00136 5923581099385860542/00049 5923581099385860542/00088 5923581099385860542/00134 5923581099385860542/00108 5923581099385860542/00018 5923581099385860542/00042 5923581099385860542/00012 5923581099385860542/00041 5923581099385860542/00126 5923581099385860542/00083 5923581099385860542/00021 5923581099385860542/00014 5923581099385860542/00127 5923581099385860542/00101 5923581099385860542/00047 5923581099385860542/00124 5923581099385860542/00020 5923581099385860542/00035 5923581099385860542/00051 5923581099385860542/00017 5923581099385860542/00076 5923581099385860542/00055 5923581099385860542/00016 5923581099385860542/00111 5923581099385860542/00059 5923581099385860542/00019 5923581099385860542/00084 5923581099385860542/00027 5923581099385860542/00067 5923581099385860542/00115 5923581099385860542/00034 5923581099385860542/00081 5923581099385860542/00082 5923581099385860542/00100 5923581099385860542/00106 5923581099385860542/00008 5923581099385860542/00087 5923581099385860542/00131 5923581099385860542/00007 5923581099385860542/00102 5923581099385860542/00132 5923581099385860542/00025 5923581099385860542/00054 5923581099385860542/00043 5923581099385860542/00005 5923581099385860542/00028 6222939890420406825/00001 6222939890420406825/00008 6222939890420406825/00007 6222939890420406825/00005 5928928333669382579/00015 5928928333669382579/00003 5928928333669382579/00009 5928928333669382579/00013 5928928333669382579/00012 5928928333669382579/00016 5928928333669382579/00011 5928928333669382579/00002 5928928333669382579/00008 5970345562298241779/00008 6259758497565304796/00011 5544538209605506454/00003 5544538209605506454/00006 5544538209605506454/00032 5544538209605506454/00070 5544538209605506454/00009 5544538209605506454/00090 5544538209605506454/00024 5544538209605506454/00053 5544538209605506454/00078 5544538209605506454/00071 5544538209605506454/00058 5544538209605506454/00062 5544538209605506454/00031 5544538209605506454/00086 5544538209605506454/00013 5544538209605506454/00044 5544538209605506454/00093 5544538209605506454/00050 5544538209605506454/00063 5544538209605506454/00045 5544538209605506454/00066 5544538209605506454/00064 5544538209605506454/00072 5544538209605506454/00038 5544538209605506454/00088 5544538209605506454/00048 5544538209605506454/00018 5544538209605506454/00085 5544538209605506454/00012 5544538209605506454/00041 5544538209605506454/00083 5544538209605506454/00079 5544538209605506454/00047 5544538209605506454/00020 5544538209605506454/00035 5544538209605506454/00017 5544538209605506454/00076 5544538209605506454/00080 5544538209605506454/00052 5544538209605506454/00091 5544538209605506454/00016 5544538209605506454/00019 5544538209605506454/00011 5544538209605506454/00084 5544538209605506454/00027 5544538209605506454/00034 5544538209605506454/00081 5544538209605506454/00082 5544538209605506454/00002 5544538209605506454/00089 5544538209605506454/00040 5544538209605506454/00068 5544538209605506454/00043 5544538209605506454/00074 5544538209605506454/00004 6130578336706849808/00015 6130578336706849808/00003 6130578336706849808/00009 6130578336706849808/00018 6130578336706849808/00017 6130578336706849808/00011 6130578336706849808/00008 6130578336706849808/00007 6130578336706849808/00004 6084154035204366342/00006 6084154035204366342/00012 6084154035204366342/00014 6084154035204366342/00016 6084154035204366342/00007 6252367717842407018/00006 6252367717842407018/00030 6252367717842407018/00031 6252367717842407018/00022 6252367717842407018/00026 6252367717842407018/00001 6252367717842407018/00021 6252367717842407018/00008 6252367717842407018/00007 5873420176335878087/00003 5873420176335878087/00006 5873420176335878087/00009 5873420176335878087/00013 5873420176335878087/00001 5873420176335878087/00012 5873420176335878087/00021 5873420176335878087/00014 5873420176335878087/00020 5873420176335878087/00019 5873420176335878087/00011 5873420176335878087/00027 5873420176335878087/00002 5873420176335878087/00008 5873420176335878087/00007 5873420176335878087/00025 5873420176335878087/00004 5873420176335878087/00028 6264207654187296241/00029 6264207654187296241/00003 6264207654187296241/00024 6264207654187296241/00022 6264207654187296241/00023 6264207654187296241/00027 6264207654187296241/00002 6264207654187296241/00007 6264207654187296241/00025 6264207654187296241/00005 6072731569680671732/00003 6072731569680671732/00006 6072731569680671732/00009 6072731569680671732/00001 6072731569680671732/00018 6072731569680671732/00012 6072731569680671732/00014 6072731569680671732/00016 6072731569680671732/00019 6072731569680671732/00002 6072731569680671732/00008 6072731569680671732/00007 6072731569680671732/00004 6287535769055511638/00009 6287535769055511638/00010 6287535769055511638/00001 6287535769055511638/00011 6287535769055511638/00002 6287535769055511638/00005 6287535769055511638/00004 5999241243272272436/00029 5999241243272272436/00015 5999241243272272436/00003 5999241243272272436/00006 5999241243272272436/00056 5999241243272272436/00032 5999241243272272436/00009 5999241243272272436/00010 5999241243272272436/00024 5999241243272272436/00030 5999241243272272436/00031 5999241243272272436/00013 5999241243272272436/00044 5999241243272272436/00050 5999241243272272436/00001 5999241243272272436/00045 5999241243272272436/00049 5999241243272272436/00023 5999241243272272436/00038 5999241243272272436/00048 5999241243272272436/00018 5999241243272272436/00042 5999241243272272436/00012 5999241243272272436/00021 5999241243272272436/00014 5999241243272272436/00037 5999241243272272436/00047 5999241243272272436/00039 5999241243272272436/00020 5999241243272272436/00035 5999241243272272436/00052 5999241243272272436/00016 5999241243272272436/00019 5999241243272272436/00011 5999241243272272436/00027 5999241243272272436/00002 5999241243272272436/00008 5999241243272272436/00007 5999241243272272436/00025 5999241243272272436/00054 5999241243272272436/00043 5999241243272272436/00005 5999241243272272436/00004 5566838109303054928/00029 5566838109303054928/00003 5566838109303054928/00009 5566838109303054928/00013 5566838109303054928/00001 5566838109303054928/00016 5566838109303054928/00011 5566838109303054928/00002 5566838109303054928/00005 6222309818718080945/00003 6222309818718080945/00009 6222309818718080945/00010 6222309818718080945/00013 6222309818718080945/00018 6222309818718080945/00012 6222309818718080945/00014 6222309818718080945/00020 6222309818718080945/00017 6222309818718080945/00016 6222309818718080945/00019 6222309818718080945/00002 6222309818718080945/00007 6025959375827171068/00003 6025959375827171068/00009 6025959375827171068/00001 6025959375827171068/00011 6025959375827171068/00002 6025959375827171068/00005 6025959375827171068/00004 6082043488275107996/00003 6082043488275107996/00006 6082043488275107996/00007 6082043488275107996/00005 6082043488275107996/00004 5960884178841813863/00003 5960884178841813863/00032 5960884178841813863/00009 5960884178841813863/00010 5960884178841813863/00033 5960884178841813863/00024 5960884178841813863/00013 5960884178841813863/00001 5960884178841813863/00023 5960884178841813863/00012 5960884178841813863/00021 5960884178841813863/00035 5960884178841813863/00027 5960884178841813863/00034 5960884178841813863/00002 5960884178841813863/00008 5960884178841813863/00007 5960884178841813863/00005 5960884178841813863/00004 6250029108149729984/00009 6250029108149729984/00001 6250029108149729984/00008 6323221793324446979/00029 6323221793324446979/00015 6323221793324446979/00032 6323221793324446979/00033 6323221793324446979/00013 6323221793324446979/00022 6323221793324446979/00026 6323221793324446979/00044 6323221793324446979/00001 6323221793324446979/00045 6323221793324446979/00048 6323221793324446979/00018 6323221793324446979/00042 6323221793324446979/00012 6323221793324446979/00041 6323221793324446979/00039 6323221793324446979/00035 6323221793324446979/00017 6323221793324446979/00016 6323221793324446979/00011 6323221793324446979/00034 6323221793324446979/00002 6323221793324446979/00008 6323221793324446979/00007 6323221793324446979/00025 6323221793324446979/00043 6323221793324446979/00005 6323221793324446979/00004 6323221793324446979/00028 6362162543810362236/00006 6362162543810362236/00046 6362162543810362236/00053 6362162543810362236/00034 6362162543810362236/00008 6174408907459180891/00006 6174408907459180891/00046 6174408907459180891/00056 6174408907459180891/00032 6174408907459180891/00009 6174408907459180891/00010 6174408907459180891/00033 6174408907459180891/00031 6174408907459180891/00013 6174408907459180891/00026 6174408907459180891/00036 6174408907459180891/00001 6174408907459180891/00045 6174408907459180891/00048 6174408907459180891/00021 6174408907459180891/00014 6174408907459180891/00037 6174408907459180891/00047 6174408907459180891/00039 6174408907459180891/00051 6174408907459180891/00017 6174408907459180891/00052 6174408907459180891/00055 6174408907459180891/00011 6174408907459180891/00027 6174408907459180891/00002 6174408907459180891/00040 6174408907459180891/00007 6174408907459180891/00025 6174408907459180891/00043 6174408907459180891/00005 6174408907459180891/00004 5995599969999369092/00003 5995599969999369092/00005 6013960955189111724/00015 6013960955189111724/00006 6013960955189111724/00010 6013960955189111724/00013 6013960955189111724/00022 6013960955189111724/00001 6013960955189111724/00023 6013960955189111724/00014 6013960955189111724/00017 6013960955189111724/00019 6013960955189111724/00011 6013960955189111724/00008 6013960955189111724/00007 6013960955189111724/00005 6013960955189111724/00004 6214099559234975191/00015 6214099559234975191/00006 6214099559234975191/00046 6214099559234975191/00032 6214099559234975191/00009 6214099559234975191/00010 6214099559234975191/00033 6214099559234975191/00036 6214099559234975191/00001 6214099559234975191/00041 6214099559234975191/00021 6214099559234975191/00014 6214099559234975191/00037 6214099559234975191/00016 6214099559234975191/00034 6214099559234975191/00002 6214099559234975191/00008 6214099559234975191/00040 6214099559234975191/00028 5971835056956432644/00003 5971835056956432644/00009 5971835056956432644/00002 5971835056956432644/00008 5971835056956432644/00007 5971835056956432644/00005 6265324775180922089/00030 6265324775180922089/00013 6265324775180922089/00036 6265324775180922089/00001 6265324775180922089/00023 6265324775180922089/00038 6265324775180922089/00007 5936091050628929153/00003 5936091050628929153/00006 5936091050628929153/00018 5936091050628929153/00014 5936091050628929153/00011 5936091050628929153/00002 5936091050628929153/00005 6341949998218671745/00030 6341949998218671745/00031 6341949998218671745/00022 6341949998218671745/00019 6341949998218671745/00025 6341949998218671745/00028 6123925861862072950/00003 6123925861862072950/00006 6123925861862072950/00001 6160292209081184171/00015 6160292209081184171/00003 6160292209081184171/00009 6160292209081184171/00010 6160292209081184171/00013 6160292209081184171/00022 6160292209081184171/00001 6160292209081184171/00018 6160292209081184171/00021 6160292209081184171/00014 6160292209081184171/00017 6160292209081184171/00016 6160292209081184171/00019 6160292209081184171/00011 6160292209081184171/00008 6160292209081184171/00025 6160292209081184171/00005 6160292209081184171/00004 6235300376801571170/00006 6235300376801571170/00001 6235300376801571170/00004 5963235673436374103/00015 5963235673436374103/00006 5963235673436374103/00009 5963235673436374103/00030 5963235673436374103/00031 5963235673436374103/00013 5963235673436374103/00036 5963235673436374103/00035 5963235673436374103/00016 5963235673436374103/00034 5963235673436374103/00002 5963235673436374103/00008 5963235673436374103/00007 5963235673436374103/00005 5963235673436374103/00028 6380036479839881698/00029 6380036479839881698/00036 6380036479839881698/00049 6380036479839881698/00012 6380036479839881698/00047 6380036479839881698/00027 6380036479839881698/00007 5880122902298013333/00006 5880122902298013333/00010 5880122902298013333/00011 5880122902298013333/00005 6324698403080812792/00015 6324698403080812792/00010 6324698403080812792/00024 6324698403080812792/00013 6324698403080812792/00022 6324698403080812792/00023 6324698403080812792/00021 6324698403080812792/00014 6324698403080812792/00017 6324698403080812792/00016 6324698403080812792/00011 6324698403080812792/00027 6324698403080812792/00002 6324698403080812792/00005 5979620114677867382/00015 5979620114677867382/00003 5979620114677867382/00006 5979620114677867382/00009 5979620114677867382/00010 5979620114677867382/00001 5979620114677867382/00008 5979620114677867382/00007 6356603997135874072/00027 6171811311238622573/00029 6171811311238622573/00015 6171811311238622573/00009 6171811311238622573/00031 6171811311238622573/00026 6171811311238622573/00001 6171811311238622573/00023 6171811311238622573/00014 6171811311238622573/00027 6171811311238622573/00008 6171811311238622573/00005 6171811311238622573/00004 6171811311238622573/00028 6363952256682671319/00015 6363952256682671319/00003 6363952256682671319/00010 6363952256682671319/00016 6363952256682671319/00004 5937931014618601501/00001 5937931014618601501/00002 5937931014618601501/00008 5994061512713291285/00015 5994061512713291285/00013 5994061512713291285/00001 5994061512713291285/00018 5994061512713291285/00019 5994061512713291285/00005 5994061512713291285/00004 6279615419864885019/00003 6279615419864885019/00006 6279615419864885019/00009 6279615419864885019/00010 6279615419864885019/00001 6279615419864885019/00002 6279615419864885019/00008 6279615419864885019/00007 6279615419864885019/00005 5547135805826127437/00060 5547135805826127437/00006 5547135805826127437/00098 5547135805826127437/00046 5547135805826127437/00032 5547135805826127437/00033 5547135805826127437/00057 5547135805826127437/00024 5547135805826127437/00053 5547135805826127437/00078 5547135805826127437/00030 5547135805826127437/00062 5547135805826127437/00086 5547135805826127437/00013 5547135805826127437/00022 5547135805826127437/00096 5547135805826127437/00044 5547135805826127437/00099 5547135805826127437/00077 5547135805826127437/00093 5547135805826127437/00103 5547135805826127437/00050 5547135805826127437/00036 5547135805826127437/00023 5547135805826127437/00088 5547135805826127437/00108 5547135805826127437/00018 5547135805826127437/00041 5547135805826127437/00083 5547135805826127437/00021 5547135805826127437/00075 5547135805826127437/00104 5547135805826127437/00079 5547135805826127437/00014 5547135805826127437/00101 5547135805826127437/00047 5547135805826127437/00039 5547135805826127437/00020 5547135805826127437/00035 5547135805826127437/00051 5547135805826127437/00017 5547135805826127437/00052 5547135805826127437/00091 5547135805826127437/00095 5547135805826127437/00019 5547135805826127437/00011 5547135805826127437/00034 5547135805826127437/00081 5547135805826127437/00100 5547135805826127437/00002 5547135805826127437/00089 5547135805826127437/00092 5547135805826127437/00008 5547135805826127437/00087 5547135805826127437/00054 5547135805826127437/00043 5547135805826127437/00005 5547135805826127437/00074 5547135805826127437/00004 6047799284527388477/00013 6047799284527388477/00001 6047799284527388477/00014 6047799284527388477/00011 6047799284527388477/00007 6047799284527388477/00005 6047799284527388477/00004 5959210430087270137/00003 5959210430087270137/00006 5959210430087270137/00010 5959210430087270137/00013 5959210430087270137/00021 5959210430087270137/00011 5959210430087270137/00008 5959210430087270137/00007 5959210430087270137/00025 5959210430087270137/00004 6225444715347373092/00029 6225444715347373092/00032 6225444715347373092/00009 6225444715347373092/00024 6225444715347373092/00030 6225444715347373092/00031 6225444715347373092/00013 6225444715347373092/00022 6225444715347373092/00001 6225444715347373092/00018 6225444715347373092/00012 6225444715347373092/00021 6225444715347373092/00014 6225444715347373092/00020 6225444715347373092/00017 6225444715347373092/00016 6225444715347373092/00019 6225444715347373092/00027 6225444715347373092/00002 6225444715347373092/00008 6225444715347373092/00007 6225444715347373092/00025 6225444715347373092/00005 6225444715347373092/00004 5954757407994123932/00003 5954757407994123932/00010 5954757407994123932/00004 6119438050534405263/00033 6119438050534405263/00024 6119438050534405263/00031 6119438050534405263/00001 6119438050534405263/00023 6119438050534405263/00012 6119438050534405263/00021 6119438050534405263/00016 6119438050534405263/00019 6115482385654848207/00029 6115482385654848207/00033 6115482385654848207/00024 6115482385654848207/00030 6115482385654848207/00031 6115482385654848207/00013 6115482385654848207/00036 6115482385654848207/00038 6115482385654848207/00018 6115482385654848207/00041 6115482385654848207/00037 6115482385654848207/00039 6115482385654848207/00017 6115482385654848207/00011 6115482385654848207/00027 6115482385654848207/00002 6115482385654848207/00025 6115482385654848207/00043 6374060462213818017/00008 6374060462213818017/00007 6030806675917476998/00004 6246430355052409392/00006 6246430355052409392/00002 6246430355052409392/00005 6246430355052409392/00004 5857834599012224123/00015 5857834599012224123/00003 5857834599012224123/00024 5857834599012224123/00022 5857834599012224123/00026 5857834599012224123/00023 5857834599012224123/00018 5857834599012224123/00012 5857834599012224123/00021 5857834599012224123/00014 5857834599012224123/00017 5857834599012224123/00016 5857834599012224123/00027 5857834599012224123/00007 5857834599012224123/00025 5857834599012224123/00005 6224424231117904542/00006 6224424231117904542/00009 6224424231117904542/00002 6224424231117904542/00008 6224424231117904542/00007 6224424231117904542/00005 6224424231117904542/00004 6358459423007748830/00001 5949813471139724631/00015 5949813471139724631/00009 5949813471139724631/00010 5949813471139724631/00012 5949813471139724631/00014 5949813471139724631/00016 5949813471139724631/00011 5949813471139724631/00008 6127960124643144672/00147 6127960124643144672/00194 6127960124643144672/00149 6127960124643144672/00125 6127960124643144672/00060 6127960124643144672/00029 6127960124643144672/00015 6127960124643144672/00003 6127960124643144672/00140 6127960124643144672/00190 6127960124643144672/00107 6127960124643144672/00056 6127960124643144672/00032 6127960124643144672/00208 6127960124643144672/00169 6127960124643144672/00070 6127960124643144672/00159 6127960124643144672/00073 6127960124643144672/00197 6127960124643144672/00010 6127960124643144672/00033 6127960124643144672/00195 6127960124643144672/00123 6127960124643144672/00057 6127960124643144672/00053 6127960124643144672/00118 6127960124643144672/00078 6127960124643144672/00071 6127960124643144672/00177 6127960124643144672/00058 6127960124643144672/00200 6127960124643144672/00121 6127960124643144672/00142 6127960124643144672/00167 6127960124643144672/00013 6127960124643144672/00165 6127960124643144672/00150 6127960124643144672/00069 6127960124643144672/00148 6127960124643144672/00096 6127960124643144672/00026 6127960124643144672/00044 6127960124643144672/00179 6127960124643144672/00172 6127960124643144672/00099 6127960124643144672/00077 6127960124643144672/00093 6127960124643144672/00168 6127960124643144672/00120 6127960124643144672/00166 6127960124643144672/00050 6127960124643144672/00173 6127960124643144672/00215 6127960124643144672/00178 6127960124643144672/00063 6127960124643144672/00110 6127960124643144672/00001 6127960124643144672/00045 6127960124643144672/00157 6127960124643144672/00072 6127960124643144672/00154 6127960124643144672/00023 6127960124643144672/00038 6127960124643144672/00193 6127960124643144672/00048 6127960124643144672/00134 6127960124643144672/00145 6127960124643144672/00018 6127960124643144672/00085 6127960124643144672/00012 6127960124643144672/00162 6127960124643144672/00065 6127960124643144672/00144 6127960124643144672/00061 6127960124643144672/00083 6127960124643144672/00021 6127960124643144672/00214 6127960124643144672/00075 6127960124643144672/00176 6127960124643144672/00199 6127960124643144672/00160 6127960124643144672/00014 6127960124643144672/00196 6127960124643144672/00206 6127960124643144672/00127 6127960124643144672/00101 6127960124643144672/00047 6127960124643144672/00039 6127960124643144672/00124 6127960124643144672/00020 6127960124643144672/00205 6127960124643144672/00198 6127960124643144672/00051 6127960124643144672/00076 6127960124643144672/00080 6127960124643144672/00185 6127960124643144672/00055 6127960124643144672/00016 6127960124643144672/00207 6127960124643144672/00095 6127960124643144672/00170 6127960124643144672/00111 6127960124643144672/00181 6127960124643144672/00059 6127960124643144672/00146 6127960124643144672/00019 6127960124643144672/00011 6127960124643144672/00119 6127960124643144672/00084 6127960124643144672/00027 6127960124643144672/00067 6127960124643144672/00192 6127960124643144672/00082 6127960124643144672/00100 6127960124643144672/00182 6127960124643144672/00002 6127960124643144672/00133 6127960124643144672/00089 6127960124643144672/00092 6127960124643144672/00008 6127960124643144672/00183 6127960124643144672/00040 6127960124643144672/00203 6127960124643144672/00068 6127960124643144672/00218 6127960124643144672/00097 6127960124643144672/00025 6127960124643144672/00054 6127960124643144672/00043 6127960124643144672/00005 6127960124643144672/00074 6127960124643144672/00211 6127960124643144672/00004 6262646004078470529/00006 6262646004078470529/00002 6262646004078470529/00008 6262646004078470529/00004 5959148582557493474/00015 5959148582557493474/00003 5959148582557493474/00010 5959148582557493474/00013 5959148582557493474/00001 5959148582557493474/00012 5959148582557493474/00016 5959148582557493474/00011 5959148582557493474/00002 5959148582557493474/00007 5959148582557493474/00005 5959148582557493474/00004 6385475196796375542/00001 6008162749340172327/00015 6008162749340172327/00003 6008162749340172327/00006 6008162749340172327/00009 6008162749340172327/00010 6008162749340172327/00024 6008162749340172327/00023 6008162749340172327/00017 6008162749340172327/00016 6008162749340172327/00002 6008162749340172327/00007 6008162749340172327/00025 6110287193213602579/00029 6110287193213602579/00031 6110287193213602579/00001 6110287193213602579/00049 6110287193213602579/00018 6110287193213602579/00012 6110287193213602579/00014 6110287193213602579/00047 6110287193213602579/00051 6110287193213602579/00016 6110287193213602579/00011 6110287193213602579/00040 6110287193213602579/00007 6110287193213602579/00004 6110287193213602579/00028 6328038169780654524/00003 6328038169780654524/00009 6328038169780654524/00010 6328038169780654524/00013 6328038169780654524/00001 6328038169780654524/00012 6328038169780654524/00014 6328038169780654524/00008 6328038169780654524/00005 6328038169780654524/00004 6151706998822721186/00029 6151706998822721186/00006 6151706998822721186/00032 6151706998822721186/00009 6151706998822721186/00013 6151706998822721186/00044 6151706998822721186/00001 6151706998822721186/00049 6151706998822721186/00038 6151706998822721186/00048 6151706998822721186/00018 6151706998822721186/00047 6151706998822721186/00039 6151706998822721186/00020 6151706998822721186/00035 6151706998822721186/00011 6151706998822721186/00034 6151706998822721186/00008 6151706998822721186/00007 6151706998822721186/00025 6151706998822721186/00054 6151706998822721186/00043 6151706998822721186/00005 6151706998822721186/00004 6248969969214470502/00015 6248969969214470502/00003 6248969969214470502/00010 6248969969214470502/00013 6248969969214470502/00001 6248969969214470502/00023 6248969969214470502/00012 6248969969214470502/00014 6248969969214470502/00016 6248969969214470502/00011 6248969969214470502/00002 6248969969214470502/00008 6248969969214470502/00007 6248969969214470502/00005 6248969969214470502/00004 6116096995474850417/00015 6116096995474850417/00006 6116096995474850417/00009 6116096995474850417/00013 6116096995474850417/00012 6116096995474850417/00011 6153241590637587791/00015 6153241590637587791/00003 6153241590637587791/00006 6153241590637587791/00009 6153241590637587791/00014 6153241590637587791/00011 6153241590637587791/00002 6153241590637587791/00004 6114211934328691307/00003 6114211934328691307/00006 6114211934328691307/00013 6114211934328691307/00001 6114211934328691307/00012 6114211934328691307/00016 6114211934328691307/00011 6114211934328691307/00008 6114211934328691307/00005 6114211934328691307/00004 6085421909680566712/00060 6085421909680566712/00029 6085421909680566712/00015 6085421909680566712/00006 6085421909680566712/00046 6085421909680566712/00107 6085421909680566712/00056 6085421909680566712/00113 6085421909680566712/00070 6085421909680566712/00009 6085421909680566712/00090 6085421909680566712/00112 6085421909680566712/00010 6085421909680566712/00033 6085421909680566712/00053 6085421909680566712/00116 6085421909680566712/00078 6085421909680566712/00058 6085421909680566712/00062 6085421909680566712/00086 6085421909680566712/00013 6085421909680566712/00069 6085421909680566712/00022 6085421909680566712/00026 6085421909680566712/00044 6085421909680566712/00099 6085421909680566712/00093 6085421909680566712/00050 6085421909680566712/00063 6085421909680566712/00001 6085421909680566712/00045 6085421909680566712/00049 6085421909680566712/00038 6085421909680566712/00088 6085421909680566712/00018 6085421909680566712/00085 6085421909680566712/00042 6085421909680566712/00012 6085421909680566712/00041 6085421909680566712/00061 6085421909680566712/00021 6085421909680566712/00075 6085421909680566712/00079 6085421909680566712/00014 6085421909680566712/00101 6085421909680566712/00020 6085421909680566712/00035 6085421909680566712/00017 6085421909680566712/00076 6085421909680566712/00052 6085421909680566712/00091 6085421909680566712/00055 6085421909680566712/00016 6085421909680566712/00095 6085421909680566712/00111 6085421909680566712/00059 6085421909680566712/00011 6085421909680566712/00084 6085421909680566712/00027 6085421909680566712/00034 6085421909680566712/00081 6085421909680566712/00082 6085421909680566712/00100 6085421909680566712/00106 6085421909680566712/00089 6085421909680566712/00008 6085421909680566712/00087 6085421909680566712/00025 6085421909680566712/00043 6085421909680566712/00004 6085421909680566712/00028 6340129361581959353/00022 5592261309218263374/00006 5592261309218263374/00013 5592261309218263374/00001 5592261309218263374/00012 5592261309218263374/00021 5592261309218263374/00014 5592261309218263374/00005 5592261309218263374/00004 5977749226923026538/00006 5977749226923026538/00002 5977749226923026538/00008 5977749226923026538/00004 6221902655818355183/00046 6221902655818355183/00031 6221902655818355183/00013 6221902655818355183/00022 6221902655818355183/00026 6221902655818355183/00023 6221902655818355183/00012 6221902655818355183/00014 6221902655818355183/00037 6221902655818355183/00039 6221902655818355183/00027 6221902655818355183/00040 6221902655818355183/00043 6221902655818355183/00005 6221902655818355183/00028 6350222105230808621/00012 6350222105230808621/00008 6350222105230808621/00007 6231184939138518593/00003 6231184939138518593/00009 6231184939138518593/00013 6231184939138518593/00001 6231184939138518593/00012 6231184939138518593/00017 6231184939138518593/00002 6231184939138518593/00007 6074177255672442633/00015 6074177255672442633/00003 6074177255672442633/00006 6074177255672442633/00023 6074177255672442633/00021 6074177255672442633/00014 6074177255672442633/00020 6074177255672442633/00017 6074177255672442633/00016 6074177255672442633/00007 6074177255672442633/00025 6074177255672442633/00004 6113504553215041821/00029 6113504553215041821/00015 6113504553215041821/00006 6113504553215041821/00009 6113504553215041821/00031 6113504553215041821/00013 6113504553215041821/00026 6113504553215041821/00036 6113504553215041821/00023 6113504553215041821/00012 6113504553215041821/00021 6113504553215041821/00014 6113504553215041821/00039 6113504553215041821/00020 6113504553215041821/00019 6113504553215041821/00011 6113504553215041821/00027 6113504553215041821/00002 6113504553215041821/00025 6113504553215041821/00004 6349847154585871175/00018 6349847154585871175/00014 6349847154585871175/00037 6349847154585871175/00039 6349847154585871175/00035 6349847154585871175/00027 6349847154585871175/00007 6349847154585871175/00028 5936494348058025362/00015 5936494348058025362/00003 5936494348058025362/00009 5936494348058025362/00013 5936494348058025362/00022 5936494348058025362/00023 5936494348058025362/00018 5936494348058025362/00012 5936494348058025362/00020 5936494348058025362/00016 5936494348058025362/00019 5936494348058025362/00011 5936494348058025362/00008 5936494348058025362/00025 6229012544680867141/00006 6229012544680867141/00009 6229012544680867141/00010 6229012544680867141/00022 6229012544680867141/00026 6229012544680867141/00012 6229012544680867141/00041 6229012544680867141/00014 6229012544680867141/00037 6229012544680867141/00039 6229012544680867141/00020 6229012544680867141/00035 6229012544680867141/00011 6229012544680867141/00040 6229012544680867141/00007 6229012544680867141/00025 5992229279795237305/00015 5992229279795237305/00006 5992229279795237305/00010 5992229279795237305/00013 5992229279795237305/00018 5992229279795237305/00012 5992229279795237305/00014 5992229279795237305/00017 5992229279795237305/00011 5992229279795237305/00002 5992229279795237305/00007 5992229279795237305/00005 5951653435129302543/00003 5951653435129302543/00010 5951653435129302543/00001 5951653435129302543/00008 5951653435129302543/00004 6090188034758523980/00015 6090188034758523980/00009 6090188034758523980/00013 6090188034758523980/00012 6090188034758523980/00016 6090188034758523980/00002 6075576556017546348/00029 6075576556017546348/00015 6075576556017546348/00006 6075576556017546348/00024 6075576556017546348/00030 6075576556017546348/00031 6075576556017546348/00013 6075576556017546348/00026 6075576556017546348/00001 6075576556017546348/00018 6075576556017546348/00020 6075576556017546348/00017 6075576556017546348/00016 6075576556017546348/00019 6075576556017546348/00007 6075576556017546348/00025 6075576556017546348/00005 6075576556017546348/00004 6385104111622001114/00002 6385104111622001114/00007 6215591630873607606/00003 6215591630873607606/00024 6215591630873607606/00022 6215591630873607606/00012 6215591630873607606/00020 6215591630873607606/00016 6215591630873607606/00011 6215591630873607606/00008 6215591630873607606/00005 6215591630873607606/00004 6219310213559200878/00015 6219310213559200878/00003 6219310213559200878/00006 6219310213559200878/00009 6219310213559200878/00024 6219310213559200878/00013 6219310213559200878/00026 6219310213559200878/00001 6219310213559200878/00018 6219310213559200878/00012 6219310213559200878/00014 6219310213559200878/00020 6219310213559200878/00016 6219310213559200878/00019 6219310213559200878/00011 6219310213559200878/00007 6219310213559200878/00025 6219310213559200878/00005 6219310213559200878/00028 6350295549171504559/00006 6350295549171504559/00001 6350295549171504559/00016 6350295549171504559/00004 5968843182868512408/00029 5968843182868512408/00003 5968843182868512408/00010 5968843182868512408/00033 5968843182868512408/00024 5968843182868512408/00031 5968843182868512408/00022 5968843182868512408/00036 5968843182868512408/00001 5968843182868512408/00023 5968843182868512408/00018 5968843182868512408/00014 5968843182868512408/00037 5968843182868512408/00016 5968843182868512408/00019 5968843182868512408/00034 5968843182868512408/00002 5968843182868512408/00028 6221157908489228740/00003 6221157908489228740/00046 6221157908489228740/00010 6221157908489228740/00024 6221157908489228740/00023 6221157908489228740/00048 6221157908489228740/00042 6221157908489228740/00012 6221157908489228740/00041 6221157908489228740/00037 6221157908489228740/00047 6221157908489228740/00008 6221157908489228740/00025 6221157908489228740/00005 6221157908489228740/00004 6212263460716004130/00015 6212263460716004130/00003 6212263460716004130/00012 6212263460716004130/00016 6212263460716004130/00002 6212263460716004130/00007 6212263460716004130/00004 5958823883160402401/00003 5958823883160402401/00006 5958823883160402401/00010 5958823883160402401/00001 5958823883160402401/00014 5958823883160402401/00011 5958823883160402401/00008 5945051211401853549/00015 5945051211401853549/00010 5945051211401853549/00013 5945051211401853549/00012 5945051211401853549/00014 5945051211401853549/00016 5945051211401853549/00002 5945051211401853549/00008 5583641309855212650/00029 5583641309855212650/00015 5583641309855212650/00003 5583641309855212650/00033 5583641309855212650/00024 5583641309855212650/00030 5583641309855212650/00031 5583641309855212650/00013 5583641309855212650/00022 5583641309855212650/00026 5583641309855212650/00044 5583641309855212650/00001 5583641309855212650/00038 5583641309855212650/00018 5583641309855212650/00012 5583641309855212650/00021 5583641309855212650/00037 5583641309855212650/00047 5583641309855212650/00039 5583641309855212650/00020 5583641309855212650/00017 5583641309855212650/00011 5583641309855212650/00027 5583641309855212650/00034 5583641309855212650/00002 5583641309855212650/00008 5583641309855212650/00040 5583641309855212650/00007 5583641309855212650/00005 6245654683958752400/00010 6245654683958752400/00011 6245654683958752400/00008 5941317166834704403/00003 5941317166834704403/00006 5941317166834704403/00001 6077200053655435352/00029 6077200053655435352/00003 6077200053655435352/00006 6077200053655435352/00046 6077200053655435352/00032 6077200053655435352/00009 6077200053655435352/00010 6077200053655435352/00033 6077200053655435352/00024 6077200053655435352/00013 6077200053655435352/00044 6077200053655435352/00001 6077200053655435352/00038 6077200053655435352/00018 6077200053655435352/00042 6077200053655435352/00012 6077200053655435352/00041 6077200053655435352/00021 6077200053655435352/00014 6077200053655435352/00037 6077200053655435352/00047 6077200053655435352/00039 6077200053655435352/00020 6077200053655435352/00017 6077200053655435352/00019 6077200053655435352/00011 6077200053655435352/00002 6077200053655435352/00008 6077200053655435352/00007 6077200053655435352/00025 6077200053655435352/00043 6077200053655435352/00004 6077200053655435352/00028 5971768055466614577/00006 5971768055466614577/00010 5971768055466614577/00012 5971768055466614577/00014 5971768055466614577/00008 5971768055466614577/00007 5971768055466614577/00004 6216631442456035348/00006 6216631442456035348/00009 6216631442456035348/00010 6216631442456035348/00013 6216631442456035348/00012 6216631442456035348/00016 6216631442456035348/00011 6216631442456035348/00002 6216631442456035348/00004 6355556454612448247/00010 6355556454612448247/00018 6355556454612448247/00016 5540197286159433545/00013 5540197286159433545/00001 5540197286159433545/00012 5540197286159433545/00007 5560278405751870137/00003 5560278405751870137/00006 5560278405751870137/00032 5560278405751870137/00009 5560278405751870137/00033 5560278405751870137/00030 5560278405751870137/00022 5560278405751870137/00001 5560278405751870137/00012 5560278405751870137/00021 5560278405751870137/00020 5560278405751870137/00035 5560278405751870137/00016 5560278405751870137/00011 5560278405751870137/00034 5560278405751870137/00002 5560278405751870137/00008 5560278405751870137/00025 5560278405751870137/00005 5560278405751870137/00004 5560278405751870137/00028 5975151630702403776/00003 5975151630702403776/00001 5975151630702403776/00002 5975151630702403776/00005 5975151630702403776/00004 5860037917235073147/00060 5860037917235073147/00029 5860037917235073147/00003 5860037917235073147/00006 5860037917235073147/00046 5860037917235073147/00056 5860037917235073147/00033 5860037917235073147/00057 5860037917235073147/00031 5860037917235073147/00013 5860037917235073147/00026 5860037917235073147/00044 5860037917235073147/00050 5860037917235073147/00001 5860037917235073147/00045 5860037917235073147/00064 5860037917235073147/00048 5860037917235073147/00042 5860037917235073147/00012 5860037917235073147/00041 5860037917235073147/00065 5860037917235073147/00021 5860037917235073147/00014 5860037917235073147/00047 5860037917235073147/00020 5860037917235073147/00035 5860037917235073147/00051 5860037917235073147/00017 5860037917235073147/00052 5860037917235073147/00019 5860037917235073147/00011 5860037917235073147/00002 5860037917235073147/00040 5860037917235073147/00025 5860037917235073147/00054 5860037917235073147/00004 6293511786551103863/00009 6293511786551103863/00002 6293511786551103863/00008 6293511786551103863/00007 6293511786551103863/00005 6293511786551103863/00004 6250454309911968203/00015 6250454309911968203/00003 6250454309911968203/00006 6250454309911968203/00013 6250454309911968203/00022 6250454309911968203/00001 6250454309911968203/00023 6250454309911968203/00018 6250454309911968203/00021 6250454309911968203/00014 6250454309911968203/00017 6250454309911968203/00002 6250454309911968203/00007 6075990161368147161/00001 6075990161368147161/00005 6235981988111354354/00015 6235981988111354354/00003 6235981988111354354/00006 6235981988111354354/00032 6235981988111354354/00010 6235981988111354354/00033 6235981988111354354/00024 6235981988111354354/00030 6235981988111354354/00031 6235981988111354354/00022 6235981988111354354/00026 6235981988111354354/00036 6235981988111354354/00023 6235981988111354354/00011 6235981988111354354/00027 6235981988111354354/00008 6235981988111354354/00005 6235981988111354354/00028 6206306770573109558/00010 6101278069813467810/00003 6101278069813467810/00009 6101278069813467810/00010 6101278069813467810/00018 6101278069813467810/00014 6101278069813467810/00017 5923184244407707007/00003 5923184244407707007/00006 5923184244407707007/00002 5983991961887807435/00015 5983991961887807435/00006 5983991961887807435/00010 5983991961887807435/00024 5983991961887807435/00013 5983991961887807435/00001 5983991961887807435/00023 5983991961887807435/00012 5983991961887807435/00021 5983991961887807435/00019 5983991961887807435/00011 5983991961887807435/00007 5983991961887807435/00025 5983991961887807435/00004 5924637661340673854/00009 5924637661340673854/00010 5924637661340673854/00013 5924637661340673854/00001 5924637661340673854/00012 5924637661340673854/00017 5924637661340673854/00002 5924637661340673854/00008 5924637661340673854/00007 5924637661340673854/00005 6079418833760484717/00015 6079418833760484717/00009 6079418833760484717/00036 6079418833760484717/00027 6079418833760484717/00034 6079418833760484717/00007 6079418833760484717/00005 6079418833760484717/00004 6255595385765350175/00006 6255595385765350175/00009 6255595385765350175/00001 6255595385765350175/00002 6255595385765350175/00008 6291285275504857353/00006 6291285275504857353/00001 6291285275504857353/00002 6291285275504857353/00007 6090922474166138895/00003 6090922474166138895/00010 6090922474166138895/00020 6090922474166138895/00019 6090922474166138895/00002 6090922474166138895/00008 6344002563089494087/00015 6344002563089494087/00006 6344002563089494087/00012 6344002563089494087/00016 5857823002600525416/00001 5857823002600525416/00004 5967606232156788179/00006 5967606232156788179/00013 5967606232156788179/00012 5967606232156788179/00014 5967606232156788179/00004 5741049713769955463/00029 5741049713769955463/00006 5741049713769955463/00032 5741049713769955463/00010 5741049713769955463/00033 5741049713769955463/00031 5741049713769955463/00013 5741049713769955463/00022 5741049713769955463/00026 5741049713769955463/00038 5741049713769955463/00021 5741049713769955463/00014 5741049713769955463/00037 5741049713769955463/00035 5741049713769955463/00019 5741049713769955463/00034 5741049713769955463/00005 5741049713769955463/00004 5741049713769955463/00028 6255627598020007779/00001 6255627598020007779/00002 6255627598020007779/00005 6255627598020007779/00004 6129797511652436949/00006 6129797511652436949/00002 6129182901832316475/00006 6129182901832316475/00009 6129182901832316475/00010 6129182901832316475/00012 6129182901832316475/00011 6129182901832316475/00002 6129182901832316475/00007 6129182901832316475/00005 6129182901832316475/00004 6134861278094332401/00060 6134861278094332401/00029 6134861278094332401/00015 6134861278094332401/00003 6134861278094332401/00032 6134861278094332401/00070 6134861278094332401/00073 6134861278094332401/00024 6134861278094332401/00053 6134861278094332401/00078 6134861278094332401/00030 6134861278094332401/00071 6134861278094332401/00058 6134861278094332401/00022 6134861278094332401/00026 6134861278094332401/00044 6134861278094332401/00077 6134861278094332401/00050 6134861278094332401/00036 6134861278094332401/00045 6134861278094332401/00064 6134861278094332401/00049 6134861278094332401/00072 6134861278094332401/00023 6134861278094332401/00042 6134861278094332401/00065 6134861278094332401/00075 6134861278094332401/00037 6134861278094332401/00039 6134861278094332401/00020 6134861278094332401/00035 6134861278094332401/00076 6134861278094332401/00052 6134861278094332401/00016 6134861278094332401/00019 6134861278094332401/00011 6134861278094332401/00027 6134861278094332401/00034 6134861278094332401/00082 6134861278094332401/00002 6134861278094332401/00008 6134861278094332401/00040 6134861278094332401/00025 6134861278094332401/00074 6134861278094332401/00004 6134861278094332401/00028 6171811311238559519/00029 6171811311238559519/00015 6171811311238559519/00003 6171811311238559519/00006 6171811311238559519/00046 6171811311238559519/00009 6171811311238559519/00033 6171811311238559519/00053 6171811311238559519/00031 6171811311238559519/00022 6171811311238559519/00026 6171811311238559519/00044 6171811311238559519/00036 6171811311238559519/00001 6171811311238559519/00049 6171811311238559519/00038 6171811311238559519/00048 6171811311238559519/00018 6171811311238559519/00042 6171811311238559519/00012 6171811311238559519/00041 6171811311238559519/00014 6171811311238559519/00037 6171811311238559519/00020 6171811311238559519/00035 6171811311238559519/00017 6171811311238559519/00052 6171811311238559519/00055 6171811311238559519/00016 6171811311238559519/00019 6171811311238559519/00011 6171811311238559519/00027 6171811311238559519/00034 6171811311238559519/00002 6171811311238559519/00008 6171811311238559519/00040 6171811311238559519/00007 6171811311238559519/00054 6171811311238559519/00043 6171811311238559519/00005 6171811311238559519/00004 5943543677880933113/00015 5943543677880933113/00003 5943543677880933113/00006 5943543677880933113/00018 5943543677880933113/00021 5943543677880933113/00019 5943543677880933113/00002 5943543677880933113/00005 6214115021117244083/00006 6214115021117244083/00012 6214115021117244083/00002 6214115021117244083/00007 6214115021117244083/00005 6214115021117244083/00004 6214822402230895684/00009 6214822402230895684/00013 6214822402230895684/00011 6214822402230895684/00002 6214822402230895684/00008 6387319026256487668/00016 6387319026256487668/00008 6157627611240332857/00003 6157627611240332857/00006 6157627611240332857/00010 6157627611240332857/00013 6157627611240332857/00022 6157627611240332857/00018 6157627611240332857/00012 6157627611240332857/00020 6157627611240332857/00017 6157627611240332857/00019 6157627611240332857/00011 6157627611240332857/00008 6157627611240332857/00025 6157627611240332857/00004 5963300097945875869/00006 5963300097945875869/00032 5963300097945875869/00024 5963300097945875869/00030 5963300097945875869/00013 5963300097945875869/00022 5963300097945875869/00001 5963300097945875869/00045 5963300097945875869/00023 5963300097945875869/00021 5963300097945875869/00014 5963300097945875869/00017 5963300097945875869/00019 5963300097945875869/00034 5963300097945875869/00008 5963300097945875869/00043 5963300097945875869/00004 6157493608260630971/00015 6157493608260630971/00003 6157493608260630971/00006 6157493608260630971/00009 6157493608260630971/00010 6157493608260630971/00013 6157493608260630971/00001 6157493608260630971/00021 6157493608260630971/00014 6157493608260630971/00011 6157493608260630971/00002 6157493608260630971/00004 6125375413324403202/00006 6125375413324403202/00007 6125375413324403202/00004 5858194087774899826/00001 5858194087774899826/00007 6086855999130282436/00009 6086855999130282436/00013 6086855999130282436/00018 6086855999130282436/00016 6086855999130282436/00019 6086855999130282436/00002 6086855999130282436/00008 6086855999130282436/00005 5726904668477317336/00013 5726904668477317336/00001 5726904668477317336/00018 5726904668477317336/00012 5726904668477317336/00014 5726904668477317336/00017 5726904668477317336/00016 5726904668477317336/00011 5726904668477317336/00002 5726904668477317336/00008 5726904668477317336/00007 6213759397825135273/00029 6213759397825135273/00009 6213759397825135273/00010 6213759397825135273/00057 6213759397825135273/00078 6213759397825135273/00058 6213759397825135273/00062 6213759397825135273/00022 6213759397825135273/00044 6213759397825135273/00077 6213759397825135273/00063 6213759397825135273/00064 6213759397825135273/00049 6213759397825135273/00072 6213759397825135273/00023 6213759397825135273/00038 6213759397825135273/00075 6213759397825135273/00079 6213759397825135273/00037 6213759397825135273/00035 6213759397825135273/00017 6213759397825135273/00076 6213759397825135273/00055 6213759397825135273/00059 6213759397825135273/00019 6213759397825135273/00011 6213759397825135273/00027 6213759397825135273/00034 6213759397825135273/00040 6213759397825135273/00007 6213759397825135273/00025 6213759397825135273/00005 6213759397825135273/00004 6280168182286375777/00029 6280168182286375777/00015 6280168182286375777/00003 6280168182286375777/00009 6280168182286375777/00010 6280168182286375777/00033 6280168182286375777/00024 6280168182286375777/00030 6280168182286375777/00031 6280168182286375777/00013 6280168182286375777/00022 6280168182286375777/00023 6280168182286375777/00018 6280168182286375777/00012 6280168182286375777/00014 6280168182286375777/00020 6280168182286375777/00017 6280168182286375777/00016 6280168182286375777/00019 6280168182286375777/00011 6280168182286375777/00027 6280168182286375777/00008 6280168182286375777/00025 6280168182286375777/00004 6216024563577760441/00006 6216024563577760441/00024 6216024563577760441/00022 6216024563577760441/00026 6216024563577760441/00023 6216024563577760441/00018 6216024563577760441/00012 6216024563577760441/00020 6216024563577760441/00035 6216024563577760441/00016 6216024563577760441/00019 6216024563577760441/00034 6216024563577760441/00008 6216024563577760441/00028 6279781635099304015/00003 6279781635099304015/00013 6279781635099304015/00012 6279781635099304015/00011 6279781635099304015/00008 6279781635099304015/00005 5968085550507087175/00009 5968085550507087175/00013 5968085550507087175/00001 5968085550507087175/00012 5968085550507087175/00014 5968085550507087175/00020 5968085550507087175/00019 5968085550507087175/00005 5968085550507087175/00004 6282313518320303260/00006 6282313518320303260/00009 6282313518320303260/00010 6282313518320303260/00024 6282313518320303260/00023 6282313518320303260/00018 6282313518320303260/00012 6282313518320303260/00020 6282313518320303260/00017 6282313518320303260/00011 6282313518320303260/00027 6282313518320303260/00007 6282313518320303260/00005 6282313518320303260/00004 6125761960381043097/00015 6125761960381043097/00010 6125761960381043097/00033 6125761960381043097/00013 6125761960381043097/00044 6125761960381043097/00036 6125761960381043097/00045 6125761960381043097/00018 6125761960381043097/00012 6125761960381043097/00041 6125761960381043097/00037 6125761960381043097/00039 6125761960381043097/00020 6125761960381043097/00035 6125761960381043097/00016 6125761960381043097/00019 6125761960381043097/00011 6125761960381043097/00027 6125761960381043097/00034 6125761960381043097/00002 6125761960381043097/00008 6125761960381043097/00007 6125761960381043097/00028 5856721343489099215/00015 5856721343489099215/00003 5856721343489099215/00006 5856721343489099215/00032 5856721343489099215/00010 5856721343489099215/00033 5856721343489099215/00024 5856721343489099215/00053 5856721343489099215/00030 5856721343489099215/00026 5856721343489099215/00044 5856721343489099215/00001 5856721343489099215/00049 5856721343489099215/00048 5856721343489099215/00012 5856721343489099215/00061 5856721343489099215/00014 5856721343489099215/00037 5856721343489099215/00047 5856721343489099215/00039 5856721343489099215/00035 5856721343489099215/00017 5856721343489099215/00016 5856721343489099215/00059 5856721343489099215/00019 5856721343489099215/00002 5856721343489099215/00008 5856721343489099215/00040 6113829252742555755/00015 6113829252742555755/00003 6113829252742555755/00012 6113829252742555755/00014 6113829252742555755/00016 6113829252742555755/00005 6260833098382826790/00029 6260833098382826790/00015 6260833098382826790/00009 6260833098382826790/00024 6260833098382826790/00031 6260833098382826790/00022 6260833098382826790/00026 6260833098382826790/00023 6260833098382826790/00018 6260833098382826790/00021 6260833098382826790/00020 6260833098382826790/00017 6260833098382826790/00016 6260833098382826790/00019 6260833098382826790/00027 6260833098382826790/00034 6260833098382826790/00002 6260833098382826790/00008 6260833098382826790/00007 6260833098382826790/00004 6260833098382826790/00028 6326360555424366722/00029 6326360555424366722/00003 6326360555424366722/00006 6326360555424366722/00009 6326360555424366722/00033 6326360555424366722/00024 6326360555424366722/00030 6326360555424366722/00013 6326360555424366722/00022 6326360555424366722/00026 6326360555424366722/00044 6326360555424366722/00050 6326360555424366722/00045 6326360555424366722/00038 6326360555424366722/00048 6326360555424366722/00018 6326360555424366722/00042 6326360555424366722/00012 6326360555424366722/00041 6326360555424366722/00021 6326360555424366722/00014 6326360555424366722/00037 6326360555424366722/00047 6326360555424366722/00039 6326360555424366722/00020 6326360555424366722/00051 6326360555424366722/00017 6326360555424366722/00052 6326360555424366722/00016 6326360555424366722/00019 6326360555424366722/00034 6326360555424366722/00008 6326360555424366722/00040 6326360555424366722/00007 6326360555424366722/00025 6326360555424366722/00054 6326360555424366722/00043 6326360555424366722/00004 6326360555424366722/00028 5860401271468248377/00001 5860401271468248377/00002 5860401271468248377/00007 5860401271468248377/00004 5961813180268004649/00003 5961813180268004649/00046 5961813180268004649/00107 5961813180268004649/00056 5961813180268004649/00032 5961813180268004649/00113 5961813180268004649/00070 5961813180268004649/00090 5961813180268004649/00112 5961813180268004649/00010 5961813180268004649/00057 5961813180268004649/00024 5961813180268004649/00053 5961813180268004649/00116 5961813180268004649/00078 5961813180268004649/00030 5961813180268004649/00071 5961813180268004649/00062 5961813180268004649/00031 5961813180268004649/00069 5961813180268004649/00022 5961813180268004649/00094 5961813180268004649/00026 5961813180268004649/00044 5961813180268004649/00099 5961813180268004649/00093 5961813180268004649/00103 5961813180268004649/00050 5961813180268004649/00105 5961813180268004649/00036 5961813180268004649/00066 5961813180268004649/00064 5961813180268004649/00049 5961813180268004649/00072 5961813180268004649/00114 5961813180268004649/00038 5961813180268004649/00088 5961813180268004649/00108 5961813180268004649/00042 5961813180268004649/00012 5961813180268004649/00041 5961813180268004649/00083 5961813180268004649/00021 5961813180268004649/00079 5961813180268004649/00037 5961813180268004649/00047 5961813180268004649/00020 5961813180268004649/00035 5961813180268004649/00051 5961813180268004649/00080 5961813180268004649/00016 5961813180268004649/00095 5961813180268004649/00111 5961813180268004649/00059 5961813180268004649/00019 5961813180268004649/00027 5961813180268004649/00067 5961813180268004649/00115 5961813180268004649/00034 5961813180268004649/00081 5961813180268004649/00082 5961813180268004649/00100 5961813180268004649/00002 5961813180268004649/00092 5961813180268004649/00087 5961813180268004649/00040 5961813180268004649/00007 5961813180268004649/00068 5961813180268004649/00025 5961813180268004649/00054 5961813180268004649/00043 5961813180268004649/00005 5961813180268004649/00074 5961813180268004649/00004 6327713470253076639/00029 6327713470253076639/00032 6327713470253076639/00009 6327713470253076639/00033 6327713470253076639/00024 6327713470253076639/00053 6327713470253076639/00030 6327713470253076639/00058 6327713470253076639/00062 6327713470253076639/00031 6327713470253076639/00022 6327713470253076639/00026 6327713470253076639/00050 6327713470253076639/00001 6327713470253076639/00049 6327713470253076639/00023 6327713470253076639/00038 6327713470253076639/00048 6327713470253076639/00018 6327713470253076639/00042 6327713470253076639/00012 6327713470253076639/00021 6327713470253076639/00039 6327713470253076639/00020 6327713470253076639/00051 6327713470253076639/00017 6327713470253076639/00052 6327713470253076639/00055 6327713470253076639/00016 6327713470253076639/00019 6327713470253076639/00011 6327713470253076639/00027 6327713470253076639/00002 6327713470253076639/00040 6327713470253076639/00007 6327713470253076639/00025 6327713470253076639/00054 6327713470253076639/00004 6327713470253076639/00028 5938762090790314894/00003 5938762090790314894/00001 5938762090790314894/00002 5938762090790314894/00005 5938762090790314894/00004 6220056249377872413/00015 6220056249377872413/00014 6220056249377872413/00016 6144698900685898352/00003 6144698900685898352/00004 6351037719520253414/00003 6351037719520253414/00001 5964814073917719949/00060 5964814073917719949/00006 5964814073917719949/00056 5964814073917719949/00010 5964814073917719949/00057 5964814073917719949/00024 5964814073917719949/00053 5964814073917719949/00030 5964814073917719949/00026 5964814073917719949/00045 5964814073917719949/00049 5964814073917719949/00048 5964814073917719949/00018 5964814073917719949/00042 5964814073917719949/00041 5964814073917719949/00037 5964814073917719949/00039 5964814073917719949/00035 5964814073917719949/00055 5964814073917719949/00034 5964814073917719949/00040 5964814073917719949/00054 5964814073917719949/00043 5964814073917719949/00005 6257864416987829300/00029 6257864416987829300/00015 6257864416987829300/00003 6257864416987829300/00006 6257864416987829300/00046 6257864416987829300/00056 6257864416987829300/00032 6257864416987829300/00009 6257864416987829300/00033 6257864416987829300/00057 6257864416987829300/00053 6257864416987829300/00030 6257864416987829300/00058 6257864416987829300/00013 6257864416987829300/00022 6257864416987829300/00026 6257864416987829300/00044 6257864416987829300/00036 6257864416987829300/00001 6257864416987829300/00045 6257864416987829300/00023 6257864416987829300/00041 6257864416987829300/00014 6257864416987829300/00037 6257864416987829300/00039 6257864416987829300/00020 6257864416987829300/00035 6257864416987829300/00051 6257864416987829300/00017 6257864416987829300/00055 6257864416987829300/00027 6257864416987829300/00034 6257864416987829300/00002 6257864416987829300/00007 6257864416987829300/00025 6257864416987829300/00054 6257864416987829300/00043 6257864416987829300/00004 5957556008684147949/00003 5957556008684147949/00098 5957556008684147949/00056 5957556008684147949/00032 5957556008684147949/00009 5957556008684147949/00090 5957556008684147949/00073 5957556008684147949/00010 5957556008684147949/00033 5957556008684147949/00057 5957556008684147949/00030 5957556008684147949/00071 5957556008684147949/00062 5957556008684147949/00031 5957556008684147949/00086 5957556008684147949/00022 5957556008684147949/00096 5957556008684147949/00094 5957556008684147949/00099 5957556008684147949/00093 5957556008684147949/00036 5957556008684147949/00063 5957556008684147949/00064 5957556008684147949/00049 5957556008684147949/00048 5957556008684147949/00085 5957556008684147949/00042 5957556008684147949/00012 5957556008684147949/00075 5957556008684147949/00037 5957556008684147949/00047 5957556008684147949/00039 5957556008684147949/00020 5957556008684147949/00035 5957556008684147949/00051 5957556008684147949/00017 5957556008684147949/00076 5957556008684147949/00052 5957556008684147949/00091 5957556008684147949/00016 5957556008684147949/00095 5957556008684147949/00059 5957556008684147949/00011 5957556008684147949/00067 5957556008684147949/00034 5957556008684147949/00100 5957556008684147949/00002 5957556008684147949/00092 5957556008684147949/00008 5957556008684147949/00087 5957556008684147949/00007 5957556008684147949/00068 5957556008684147949/00097 5957556008684147949/00025 5957556008684147949/00005 5957556008684147949/00074 5957556008684147949/00004 5957556008684147949/00028 6231192670079676476/00005 5877853871075536566/00001 6013218784840362910/00029 6013218784840362910/00032 6013218784840362910/00009 6013218784840362910/00010 6013218784840362910/00033 6013218784840362910/00024 6013218784840362910/00022 6013218784840362910/00023 6013218784840362910/00012 6013218784840362910/00020 6013218784840362910/00035 6013218784840362910/00017 6013218784840362910/00016 6013218784840362910/00027 6013218784840362910/00034 6013218784840362910/00008 6013218784840362910/00025 5554009900983384051/00003 5554009900983384051/00006 5554009900983384051/00010 5554009900983384051/00013 5554009900983384051/00018 5554009900983384051/00012 5554009900983384051/00017 5554009900983384051/00019 5554009900983384051/00011 5554009900983384051/00002 5554009900983384051/00008 5554009900983384051/00007 5554009900983384051/00005 5554009900983384051/00004 ================================================ FILE: filelists_lrs2/val.txt ================================================ 6364798794736712994/00010 6364798794736712994/00012 6364798794736712994/00008 6055669382600582283/00001 6103875666034070938/00029 6103875666034070938/00006 6103875666034070938/00010 6103875666034070938/00024 6103875666034070938/00030 6103875666034070938/00031 6103875666034070938/00022 6103875666034070938/00026 6103875666034070938/00038 6103875666034070938/00021 6103875666034070938/00039 6103875666034070938/00016 6103875666034070938/00027 6103875666034070938/00034 6103875666034070938/00008 6103875666034070938/00025 6103875666034070938/00005 6103875666034070938/00004 6361725745636423155/00006 6361725745636423155/00010 6361725745636423155/00013 6361725745636423155/00012 5866276786729183268/00015 5866276786729183268/00003 5866276786729183268/00020 5866276786729183268/00017 5866276786729183268/00019 5866276786729183268/00002 5866276786729183268/00004 6084250671968458050/00003 6084250671968458050/00006 6084250671968458050/00001 6084250671968458050/00002 6084250671968458050/00007 6084250671968458050/00005 6084250671968458050/00004 6083388672032218603/00009 6083388672032218603/00013 6083388672032218603/00001 6083388672032218603/00014 6083388672032218603/00019 6083388672032218603/00011 6083388672032218603/00002 6282410155214887954/00015 6282410155214887954/00003 6282410155214887954/00006 6282410155214887954/00009 6282410155214887954/00010 6282410155214887954/00022 6282410155214887954/00026 6282410155214887954/00018 6282410155214887954/00012 6282410155214887954/00021 6282410155214887954/00014 6282410155214887954/00020 6282410155214887954/00017 6282410155214887954/00016 6282410155214887954/00019 6282410155214887954/00011 6282410155214887954/00027 6282410155214887954/00002 6282410155214887954/00008 6282410155214887954/00007 6282410155214887954/00025 6226627549340754213/00006 6226627549340754213/00010 6226627549340754213/00001 6226627549340754213/00011 6226627549340754213/00007 5555462029426161799/00003 5555462029426161799/00006 5555462029426161799/00009 5555462029426161799/00010 5555462029426161799/00001 5555462029426161799/00002 5555462029426161799/00007 5555462029426161799/00004 6356619459018205648/00015 6356619459018205648/00002 6252657628134820199/00010 6252657628134820199/00013 6252657628134820199/00001 6252657628134820199/00012 6252657628134820199/00014 6252657628134820199/00017 6252657628134820199/00016 6252657628134820199/00008 6091181460694087712/00015 6091181460694087712/00001 6091181460694087712/00014 6091181460694087712/00002 6091181460694087712/00007 6091181460694087712/00005 5688360772969561315/00029 5688360772969561315/00015 5688360772969561315/00003 5688360772969561315/00032 5688360772969561315/00030 5688360772969561315/00031 5688360772969561315/00013 5688360772969561315/00022 5688360772969561315/00026 5688360772969561315/00001 5688360772969561315/00018 5688360772969561315/00012 5688360772969561315/00021 5688360772969561315/00014 5688360772969561315/00035 5688360772969561315/00016 5688360772969561315/00027 5688360772969561315/00034 5688360772969561315/00002 5688360772969561315/00007 5688360772969561315/00005 5688360772969561315/00004 5688360772969561315/00028 5569806790698052907/00003 5569806790698052907/00009 5569806790698052907/00011 5569806790698052907/00002 5569806790698052907/00008 5569806790698052907/00007 5569806790698052907/00004 6362726902513062509/00003 6362726902513062509/00014 6218946859325310989/00006 6218946859325310989/00009 6218946859325310989/00001 6218946859325310989/00018 6218946859325310989/00019 6218946859325310989/00011 6218946859325310989/00008 6218946859325310989/00005 6218946859325310989/00004 6109758912236194532/00015 6109758912236194532/00003 6109758912236194532/00009 6109758912236194532/00010 6109758912236194532/00013 6109758912236194532/00001 6109758912236194532/00019 6109758912236194532/00011 6109758912236194532/00002 6109758912236194532/00007 6109758912236194532/00005 6109758912236194532/00004 6052263903031517973/00003 6052263903031517973/00009 6052263903031517973/00010 6052263903031517973/00024 6052263903031517973/00013 6052263903031517973/00001 6052263903031517973/00023 6052263903031517973/00018 6052263903031517973/00012 6052263903031517973/00011 6052263903031517973/00027 6052263903031517973/00002 6052263903031517973/00008 6052263903031517973/00007 6052263903031517973/00025 6052263903031517973/00005 6052263903031517973/00004 6254111045067852458/00001 6254111045067852458/00005 6098368658967223393/00003 6098368658967223393/00009 6098368658967223393/00001 6098368658967223393/00002 6098368658967223393/00008 5937559929444227055/00003 5937559929444227055/00009 5937559929444227055/00013 5937559929444227055/00001 5937559929444227055/00012 5937559929444227055/00014 5937559929444227055/00011 5937559929444227055/00002 5937559929444227055/00007 5937559929444227055/00004 6102825546530280266/00003 6102825546530280266/00006 6102825546530280266/00009 6102825546530280266/00001 6102825546530280266/00012 6102825546530280266/00004 5965109138170954688/00009 5965109138170954688/00010 5965109138170954688/00024 5965109138170954688/00013 5965109138170954688/00026 5965109138170954688/00001 5965109138170954688/00023 5965109138170954688/00021 5965109138170954688/00014 5965109138170954688/00017 5965109138170954688/00016 5965109138170954688/00019 5965109138170954688/00002 5965109138170954688/00008 5965109138170954688/00007 5965109138170954688/00025 5995592239058235997/00006 5995592239058235997/00009 5995592239058235997/00001 5995592239058235997/00002 5995592239058235997/00007 5995592239058235997/00005 5995592239058235997/00004 5988147342746628873/00015 5988147342746628873/00003 5988147342746628873/00006 5988147342746628873/00010 5988147342746628873/00024 5988147342746628873/00022 5988147342746628873/00023 5988147342746628873/00018 5988147342746628873/00021 5988147342746628873/00014 5988147342746628873/00020 5988147342746628873/00017 5988147342746628873/00016 5988147342746628873/00019 5988147342746628873/00008 5988147342746628873/00007 5988147342746628873/00025 5988147342746628873/00005 6243407557069480542/00015 6243407557069480542/00003 6243407557069480542/00032 6243407557069480542/00009 6243407557069480542/00010 6243407557069480542/00033 6243407557069480542/00031 6243407557069480542/00013 6243407557069480542/00022 6243407557069480542/00026 6243407557069480542/00023 6243407557069480542/00042 6243407557069480542/00012 6243407557069480542/00021 6243407557069480542/00014 6243407557069480542/00039 6243407557069480542/00035 6243407557069480542/00017 6243407557069480542/00019 6243407557069480542/00011 6243407557069480542/00027 6243407557069480542/00007 6243407557069480542/00025 6243407557069480542/00043 6243407557069480542/00005 6243407557069480542/00004 6243407557069480542/00028 5568916443977593120/00015 5568916443977593120/00006 5568916443977593120/00010 5568916443977593120/00013 5568916443977593120/00001 5568916443977593120/00011 5568916443977593120/00002 5568916443977593120/00008 5568916443977593120/00007 5568916443977593120/00005 5568916443977593120/00004 6226691973850194220/00024 6226691973850194220/00022 6226691973850194220/00014 6226691973850194220/00020 6226691973850194220/00019 6239008651564852299/00149 6239008651564852299/00125 6239008651564852299/00029 6239008651564852299/00015 6239008651564852299/00003 6239008651564852299/00006 6239008651564852299/00140 6239008651564852299/00046 6239008651564852299/00107 6239008651564852299/00056 6239008651564852299/00128 6239008651564852299/00122 6239008651564852299/00152 6239008651564852299/00112 6239008651564852299/00010 6239008651564852299/00164 6239008651564852299/00123 6239008651564852299/00141 6239008651564852299/00053 6239008651564852299/00078 6239008651564852299/00030 6239008651564852299/00071 6239008651564852299/00062 6239008651564852299/00142 6239008651564852299/00013 6239008651564852299/00137 6239008651564852299/00069 6239008651564852299/00148 6239008651564852299/00022 6239008651564852299/00096 6239008651564852299/00094 6239008651564852299/00044 6239008651564852299/00130 6239008651564852299/00099 6239008651564852299/00120 6239008651564852299/00166 6239008651564852299/00103 6239008651564852299/00063 6239008651564852299/00001 6239008651564852299/00045 6239008651564852299/00066 6239008651564852299/00136 6239008651564852299/00049 6239008651564852299/00023 6239008651564852299/00038 6239008651564852299/00134 6239008651564852299/00041 6239008651564852299/00065 6239008651564852299/00129 6239008651564852299/00144 6239008651564852299/00061 6239008651564852299/00021 6239008651564852299/00104 6239008651564852299/00151 6239008651564852299/00014 6239008651564852299/00037 6239008651564852299/00127 6239008651564852299/00101 6239008651564852299/00039 6239008651564852299/00124 6239008651564852299/00020 6239008651564852299/00017 6239008651564852299/00052 6239008651564852299/00055 6239008651564852299/00059 6239008651564852299/00019 6239008651564852299/00119 6239008651564852299/00084 6239008651564852299/00153 6239008651564852299/00115 6239008651564852299/00034 6239008651564852299/00100 6239008651564852299/00002 6239008651564852299/00106 6239008651564852299/00040 6239008651564852299/00007 6239008651564852299/00143 6239008651564852299/00132 6239008651564852299/00097 6239008651564852299/00139 6239008651564852299/00043 6239008651564852299/00005 6239008651564852299/00074 6239008651564852299/00004 6239008651564852299/00028 6230087145497684183/00001 6230087145497684183/00005 5992940526248969339/00015 5992940526248969339/00003 5992940526248969339/00006 5992940526248969339/00009 5992940526248969339/00001 5992940526248969339/00011 5992940526248969339/00002 5992940526248969339/00008 5992940526248969339/00007 5992940526248969339/00005 5992940526248969339/00004 5564240513082431391/00003 5564240513082431391/00005 5989194885270193792/00029 5989194885270193792/00046 5989194885270193792/00056 5989194885270193792/00032 5989194885270193792/00009 5989194885270193792/00073 5989194885270193792/00010 5989194885270193792/00033 5989194885270193792/00057 5989194885270193792/00071 5989194885270193792/00062 5989194885270193792/00013 5989194885270193792/00022 5989194885270193792/00026 5989194885270193792/00044 5989194885270193792/00050 5989194885270193792/00036 5989194885270193792/00001 5989194885270193792/00066 5989194885270193792/00064 5989194885270193792/00072 5989194885270193792/00038 5989194885270193792/00048 5989194885270193792/00012 5989194885270193792/00061 5989194885270193792/00083 5989194885270193792/00075 5989194885270193792/00014 5989194885270193792/00037 5989194885270193792/00047 5989194885270193792/00035 5989194885270193792/00051 5989194885270193792/00080 5989194885270193792/00052 5989194885270193792/00059 5989194885270193792/00019 5989194885270193792/00011 5989194885270193792/00084 5989194885270193792/00027 5989194885270193792/00067 5989194885270193792/00081 5989194885270193792/00082 5989194885270193792/00002 5989194885270193792/00007 5989194885270193792/00068 5989194885270193792/00025 5989194885270193792/00054 5989194885270193792/00043 5989194885270193792/00005 5989194885270193792/00004 5989194885270193792/00028 6238583449802551824/00015 6238583449802551824/00009 6238583449802551824/00010 6238583449802551824/00013 6238583449802551824/00012 6238583449802551824/00014 6238583449802551824/00019 6238583449802551824/00011 6238583449802551824/00002 6238583449802551824/00008 6238583449802551824/00005 5966268779340812496/00060 5966268779340812496/00029 5966268779340812496/00015 5966268779340812496/00006 5966268779340812496/00046 5966268779340812496/00032 5966268779340812496/00070 5966268779340812496/00009 5966268779340812496/00073 5966268779340812496/00010 5966268779340812496/00057 5966268779340812496/00071 5966268779340812496/00069 5966268779340812496/00044 5966268779340812496/00077 5966268779340812496/00063 5966268779340812496/00045 5966268779340812496/00066 5966268779340812496/00049 5966268779340812496/00072 5966268779340812496/00023 5966268779340812496/00048 5966268779340812496/00018 5966268779340812496/00042 5966268779340812496/00012 5966268779340812496/00041 5966268779340812496/00065 5966268779340812496/00061 5966268779340812496/00021 5966268779340812496/00075 5966268779340812496/00014 5966268779340812496/00037 5966268779340812496/00047 5966268779340812496/00020 5966268779340812496/00035 5966268779340812496/00076 5966268779340812496/00019 5966268779340812496/00027 5966268779340812496/00067 5966268779340812496/00034 5966268779340812496/00040 5966268779340812496/00068 5966268779340812496/00043 5966268779340812496/00005 5966268779340812496/00074 5966268779340812496/00004 6112831961336418986/00003 6112831961336418986/00001 6112831961336418986/00004 5714158923529687920/00006 5714158923529687920/00009 5714158923529687920/00010 5714158923529687920/00013 5714158923529687920/00012 5714158923529687920/00016 5714158923529687920/00019 5714158923529687920/00011 5714158923529687920/00002 5714158923529687920/00008 5714158923529687920/00007 5714158923529687920/00005 5714158923529687920/00004 6233411450184764997/00003 6233411450184764997/00006 6233411450184764997/00009 6233411450184764997/00010 6233411450184764997/00001 6233411450184764997/00014 6233411450184764997/00002 6233411450184764997/00008 6233411450184764997/00007 6233411450184764997/00005 6233411450184764997/00004 5943555274292632314/00003 5943555274292632314/00001 5943555274292632314/00002 5943555274292632314/00007 6339356267468615354/00006 6339356267468615354/00046 6339356267468615354/00010 6339356267468615354/00024 6339356267468615354/00018 6339356267468615354/00035 6339356267468615354/00011 6100852868051227315/00003 6100852868051227315/00006 6100852868051227315/00001 6100852868051227315/00011 6100852868051227315/00007 5993698158479986001/00006 5993698158479986001/00024 5993698158479986001/00013 5993698158479986001/00023 5993698158479986001/00017 5993698158479986001/00016 5993698158479986001/00008 5993698158479986001/00007 5993698158479986001/00005 6217825872861703027/00015 6217825872861703027/00003 6217825872861703027/00006 6217825872861703027/00046 6217825872861703027/00033 6217825872861703027/00030 6217825872861703027/00031 6217825872861703027/00013 6217825872861703027/00026 6217825872861703027/00044 6217825872861703027/00036 6217825872861703027/00001 6217825872861703027/00045 6217825872861703027/00023 6217825872861703027/00048 6217825872861703027/00018 6217825872861703027/00042 6217825872861703027/00021 6217825872861703027/00014 6217825872861703027/00047 6217825872861703027/00020 6217825872861703027/00035 6217825872861703027/00017 6217825872861703027/00016 6217825872861703027/00011 6217825872861703027/00034 6217825872861703027/00008 6217825872861703027/00040 6217825872861703027/00007 6217825872861703027/00025 6217825872861703027/00043 6217825872861703027/00005 6217825872861703027/00028 6174749068869024107/00006 6174749068869024107/00011 6174749068869024107/00008 6174749068869024107/00005 6174749068869024107/00004 6290048324923676262/00006 6290048324923676262/00009 6290048324923676262/00002 6290048324923676262/00008 6290048324923676262/00005 6290048324923676262/00004 6126470629984890143/00023 6126470629984890143/00018 6126470629984890143/00014 6126470629984890143/00019 6126470629984890143/00011 6126470629984890143/00007 5944628586619992972/00003 5944628586619992972/00006 5944628586619992972/00024 5944628586619992972/00021 5944628586619992972/00007 6357798427540961623/00015 6357798427540961623/00014 6357798427540961623/00008 6377052336432217027/00006 6377052336432217027/00002 6377052336432217027/00008 6196674017921725411/00003 6196674017921725411/00006 6196674017921725411/00001 6196674017921725411/00014 6196674017921725411/00016 6196674017921725411/00011 6196674017921725411/00002 6196674017921725411/00008 6196674017921725411/00007 5932751284059557597/00029 5932751284059557597/00003 5932751284059557597/00006 5932751284059557597/00046 5932751284059557597/00010 5932751284059557597/00030 5932751284059557597/00013 5932751284059557597/00044 5932751284059557597/00038 5932751284059557597/00048 5932751284059557597/00039 5932751284059557597/00035 5932751284059557597/00011 5932751284059557597/00027 5932751284059557597/00008 5932751284059557597/00007 5932751284059557597/00025 5932751284059557597/00043 5932751284059557597/00004 5932751284059557597/00028 6227075943926392038/00032 6227075943926392038/00010 6227075943926392038/00033 6227075943926392038/00030 6227075943926392038/00031 6227075943926392038/00013 6227075943926392038/00023 6227075943926392038/00018 6227075943926392038/00021 6227075943926392038/00017 6227075943926392038/00027 6227075943926392038/00002 6227075943926392038/00008 6227075943926392038/00004 6227075943926392038/00028 6143253214693998093/00015 6143253214693998093/00003 6143253214693998093/00006 6143253214693998093/00046 6143253214693998093/00032 6143253214693998093/00009 6143253214693998093/00010 6143253214693998093/00033 6143253214693998093/00057 6143253214693998093/00024 6143253214693998093/00053 6143253214693998093/00058 6143253214693998093/00062 6143253214693998093/00013 6143253214693998093/00022 6143253214693998093/00044 6143253214693998093/00036 6143253214693998093/00063 6143253214693998093/00001 6143253214693998093/00045 6143253214693998093/00038 6143253214693998093/00048 6143253214693998093/00012 6143253214693998093/00041 6143253214693998093/00021 6143253214693998093/00014 6143253214693998093/00037 6143253214693998093/00047 6143253214693998093/00020 6143253214693998093/00052 6143253214693998093/00055 6143253214693998093/00019 6143253214693998093/00027 6143253214693998093/00034 6143253214693998093/00002 6143253214693998093/00007 6143253214693998093/00025 6143253214693998093/00054 6143253214693998093/00043 6143253214693998093/00005 6143253214693998093/00004 6143253214693998093/00028 6265014249045490198/00060 6265014249045490198/00015 6265014249045490198/00006 6265014249045490198/00098 6265014249045490198/00056 6265014249045490198/00032 6265014249045490198/00109 6265014249045490198/00070 6265014249045490198/00009 6265014249045490198/00073 6265014249045490198/00010 6265014249045490198/00033 6265014249045490198/00057 6265014249045490198/00053 6265014249045490198/00078 6265014249045490198/00030 6265014249045490198/00071 6265014249045490198/00058 6265014249045490198/00062 6265014249045490198/00031 6265014249045490198/00086 6265014249045490198/00022 6265014249045490198/00096 6265014249045490198/00094 6265014249045490198/00026 6265014249045490198/00099 6265014249045490198/00077 6265014249045490198/00050 6265014249045490198/00105 6265014249045490198/00036 6265014249045490198/00001 6265014249045490198/00045 6265014249045490198/00066 6265014249045490198/00072 6265014249045490198/00023 6265014249045490198/00038 6265014249045490198/00088 6265014249045490198/00048 6265014249045490198/00108 6265014249045490198/00018 6265014249045490198/00042 6265014249045490198/00012 6265014249045490198/00041 6265014249045490198/00083 6265014249045490198/00037 6265014249045490198/00101 6265014249045490198/00047 6265014249045490198/00039 6265014249045490198/00020 6265014249045490198/00017 6265014249045490198/00076 6265014249045490198/00080 6265014249045490198/00052 6265014249045490198/00055 6265014249045490198/00016 6265014249045490198/00111 6265014249045490198/00059 6265014249045490198/00019 6265014249045490198/00011 6265014249045490198/00027 6265014249045490198/00067 6265014249045490198/00115 6265014249045490198/00100 6265014249045490198/00106 6265014249045490198/00089 6265014249045490198/00092 6265014249045490198/00008 6265014249045490198/00040 6265014249045490198/00007 6265014249045490198/00054 6265014249045490198/00005 6265014249045490198/00074 6265014249045490198/00004 5978491397271751841/00029 5978491397271751841/00015 5978491397271751841/00006 5978491397271751841/00009 5978491397271751841/00010 5978491397271751841/00030 5978491397271751841/00013 5978491397271751841/00018 5978491397271751841/00012 5978491397271751841/00016 5978491397271751841/00011 5978491397271751841/00008 5978491397271751841/00007 5978491397271751841/00004 6220755899550388031/00029 6220755899550388031/00003 6220755899550388031/00006 6220755899550388031/00024 6220755899550388031/00022 6220755899550388031/00026 6220755899550388031/00012 6220755899550388031/00008 6220755899550388031/00007 6220755899550388031/00005 6220755899550388031/00028 6231594679018490905/00003 6231594679018490905/00006 6231594679018490905/00009 6231594679018490905/00010 6231594679018490905/00013 6231594679018490905/00023 6231594679018490905/00018 6231594679018490905/00021 6231594679018490905/00014 6231594679018490905/00017 6231594679018490905/00011 6231594679018490905/00002 5958043057975502986/00029 5958043057975502986/00015 5958043057975502986/00003 5958043057975502986/00006 5958043057975502986/00032 5958043057975502986/00010 5958043057975502986/00030 5958043057975502986/00013 5958043057975502986/00022 5958043057975502986/00026 5958043057975502986/00044 5958043057975502986/00036 5958043057975502986/00001 5958043057975502986/00045 5958043057975502986/00018 5958043057975502986/00041 5958043057975502986/00014 5958043057975502986/00047 5958043057975502986/00039 5958043057975502986/00020 5958043057975502986/00035 5958043057975502986/00027 5958043057975502986/00034 5958043057975502986/00002 5958043057975502986/00007 5958043057975502986/00025 5958043057975502986/00043 5958043057975502986/00028 5958023730622736779/00003 5958023730622736779/00009 5958023730622736779/00010 5958023730622736779/00033 5958023730622736779/00030 5958023730622736779/00022 5958023730622736779/00001 5958023730622736779/00042 5958023730622736779/00012 5958023730622736779/00021 5958023730622736779/00014 5958023730622736779/00017 5958023730622736779/00016 5958023730622736779/00034 5958023730622736779/00002 5958023730622736779/00008 5958023730622736779/00040 5958023730622736779/00043 5958023730622736779/00005 5958023730622736779/00004 5958023730622736779/00028 6210694079666040510/00006 6210694079666040510/00007 6210694079666040510/00005 5985933716602330653/00003 5985933716602330653/00001 5985933716602330653/00002 5985933716602330653/00004 5948077874855316453/00029 5948077874855316453/00015 5948077874855316453/00003 5948077874855316453/00046 5948077874855316453/00032 5948077874855316453/00009 5948077874855316453/00010 5948077874855316453/00033 5948077874855316453/00024 5948077874855316453/00053 5948077874855316453/00030 5948077874855316453/00058 5948077874855316453/00062 5948077874855316453/00031 5948077874855316453/00013 5948077874855316453/00069 5948077874855316453/00026 5948077874855316453/00044 5948077874855316453/00036 5948077874855316453/00063 5948077874855316453/00001 5948077874855316453/00045 5948077874855316453/00066 5948077874855316453/00064 5948077874855316453/00049 5948077874855316453/00023 5948077874855316453/00038 5948077874855316453/00048 5948077874855316453/00042 5948077874855316453/00012 5948077874855316453/00041 5948077874855316453/00065 5948077874855316453/00061 5948077874855316453/00021 5948077874855316453/00014 5948077874855316453/00037 5948077874855316453/00039 5948077874855316453/00020 5948077874855316453/00035 5948077874855316453/00051 5948077874855316453/00017 5948077874855316453/00052 5948077874855316453/00055 5948077874855316453/00016 5948077874855316453/00059 5948077874855316453/00019 5948077874855316453/00011 5948077874855316453/00027 5948077874855316453/00067 5948077874855316453/00034 5948077874855316453/00008 5948077874855316453/00040 5948077874855316453/00068 5948077874855316453/00025 5948077874855316453/00054 5948077874855316453/00043 5948077874855316453/00005 5948077874855316453/00004 5948077874855316453/00028 5603759795663124229/00003 5603759795663124229/00009 5603759795663124229/00001 5603759795663124229/00012 5603759795663124229/00014 5603759795663124229/00002 5603759795663124229/00008 5603759795663124229/00005 5603759795663124229/00004 6063423516556721571/00013 6063423516556721571/00016 6063423516556721571/00011 6063423516556721571/00002 6063423516556721571/00008 6063423516556721571/00007 6063423516556721571/00005 6063423516556721571/00004 6077138206126372933/00029 6077138206126372933/00006 6077138206126372933/00032 6077138206126372933/00010 6077138206126372933/00030 6077138206126372933/00031 6077138206126372933/00022 6077138206126372933/00026 6077138206126372933/00036 6077138206126372933/00018 6077138206126372933/00020 6077138206126372933/00017 6077138206126372933/00016 6077138206126372933/00002 6077138206126372933/00008 6077138206126372933/00007 6077138206126372933/00005 6260790578206596386/00009 6260790578206596386/00001 6260790578206596386/00012 6260790578206596386/00020 6260790578206596386/00004 6326990627126693682/00003 6326990627126693682/00006 6326990627126693682/00005 6326990627126693682/00004 6011858139200922687/00060 6011858139200922687/00015 6011858139200922687/00056 6011858139200922687/00032 6011858139200922687/00009 6011858139200922687/00010 6011858139200922687/00031 6011858139200922687/00013 6011858139200922687/00026 6011858139200922687/00044 6011858139200922687/00050 6011858139200922687/00036 6011858139200922687/00001 6011858139200922687/00064 6011858139200922687/00048 6011858139200922687/00018 6011858139200922687/00042 6011858139200922687/00012 6011858139200922687/00061 6011858139200922687/00021 6011858139200922687/00037 6011858139200922687/00047 6011858139200922687/00039 6011858139200922687/00020 6011858139200922687/00051 6011858139200922687/00017 6011858139200922687/00055 6011858139200922687/00016 6011858139200922687/00034 6011858139200922687/00002 6011858139200922687/00008 6011858139200922687/00054 6011858139200922687/00043 6011858139200922687/00005 6356573073371408843/00033 6356573073371408843/00045 6356573073371408843/00023 6356573073371408843/00041 6374454740211592999/00010 5952411067360320643/00006 5952411067360320643/00001 5952411067360320643/00023 5952411067360320643/00020 5952411067360320643/00019 5952411067360320643/00002 6046384522300017959/00015 6046384522300017959/00001 6046384522300017959/00012 6046384522300017959/00014 6046384522300017959/00011 6046384522300017959/00008 6046384522300017959/00007 6046384522300017959/00005 6046384522300017959/00004 5721190214489982051/00029 5721190214489982051/00032 5721190214489982051/00009 5721190214489982051/00033 5721190214489982051/00030 5721190214489982051/00031 5721190214489982051/00022 5721190214489982051/00026 5721190214489982051/00044 5721190214489982051/00036 5721190214489982051/00049 5721190214489982051/00023 5721190214489982051/00038 5721190214489982051/00048 5721190214489982051/00018 5721190214489982051/00042 5721190214489982051/00014 5721190214489982051/00037 5721190214489982051/00039 5721190214489982051/00035 5721190214489982051/00016 5721190214489982051/00019 5721190214489982051/00027 5721190214489982051/00034 5721190214489982051/00002 5721190214489982051/00040 5721190214489982051/00007 5721190214489982051/00028 6335003747610845928/00009 6335003747610845928/00022 6335003747610845928/00045 6335003747610845928/00004 5945777919868336763/00015 5945777919868336763/00003 5945777919868336763/00006 5945777919868336763/00010 5945777919868336763/00013 5945777919868336763/00017 5945777919868336763/00016 5945777919868336763/00019 5945777919868336763/00011 6347667029186417939/00010 6347667029186417939/00030 6347667029186417939/00035 6347667029186417939/00011 5939832826137206670/00015 5939832826137206670/00003 5939832826137206670/00009 5939832826137206670/00018 5939832826137206670/00014 5939832826137206670/00017 5939832826137206670/00016 5939832826137206670/00007 6099465164117891952/00009 6099465164117891952/00013 6099465164117891952/00012 6099465164117891952/00014 6099465164117891952/00016 6099465164117891952/00007 6099465164117891952/00005 6099465164117891952/00004 6369599709180191149/00030 6369599709180191149/00013 6369599709180191149/00021 6369599709180191149/00014 6369599709180191149/00017 6369599709180191149/00011 6220690186550759224/00006 6220690186550759224/00010 6220690186550759224/00001 6220690186550759224/00012 6220690186550759224/00014 6220690186550759224/00011 6220690186550759224/00002 6220690186550759224/00007 6220690186550759224/00005 5921668979945676418/00015 5921668979945676418/00003 5921668979945676418/00006 5921668979945676418/00009 5921668979945676418/00010 5921668979945676418/00013 5921668979945676418/00022 5921668979945676418/00001 5921668979945676418/00023 5921668979945676418/00012 5921668979945676418/00020 5921668979945676418/00019 5921668979945676418/00002 5921668979945676418/00007 5921668979945676418/00004 6172398862764715407/00060 6172398862764715407/00015 6172398862764715407/00046 6172398862764715407/00056 6172398862764715407/00009 6172398862764715407/00090 6172398862764715407/00073 6172398862764715407/00010 6172398862764715407/00057 6172398862764715407/00078 6172398862764715407/00058 6172398862764715407/00031 6172398862764715407/00086 6172398862764715407/00069 6172398862764715407/00022 6172398862764715407/00094 6172398862764715407/00026 6172398862764715407/00044 6172398862764715407/00036 6172398862764715407/00001 6172398862764715407/00045 6172398862764715407/00064 6172398862764715407/00072 6172398862764715407/00088 6172398862764715407/00048 6172398862764715407/00018 6172398862764715407/00085 6172398862764715407/00042 6172398862764715407/00041 6172398862764715407/00061 6172398862764715407/00021 6172398862764715407/00079 6172398862764715407/00037 6172398862764715407/00039 6172398862764715407/00020 6172398862764715407/00035 6172398862764715407/00051 6172398862764715407/00017 6172398862764715407/00052 6172398862764715407/00091 6172398862764715407/00055 6172398862764715407/00016 6172398862764715407/00059 6172398862764715407/00084 6172398862764715407/00067 6172398862764715407/00034 6172398862764715407/00082 6172398862764715407/00002 6172398862764715407/00092 6172398862764715407/00008 6172398862764715407/00087 6172398862764715407/00040 6172398862764715407/00007 6172398862764715407/00068 6172398862764715407/00025 6172398862764715407/00043 6172398862764715407/00074 6005951700305960447/00029 6005951700305960447/00015 6005951700305960447/00003 6005951700305960447/00006 6005951700305960447/00009 6005951700305960447/00030 6005951700305960447/00013 6005951700305960447/00022 6005951700305960447/00026 6005951700305960447/00023 6005951700305960447/00012 6005951700305960447/00021 6005951700305960447/00020 6005951700305960447/00016 6005951700305960447/00019 6005951700305960447/00011 6005951700305960447/00027 6005951700305960447/00002 6005951700305960447/00008 6005951700305960447/00007 6005951700305960447/00005 6005951700305960447/00004 6005951700305960447/00028 6214033846235412384/00003 6214033846235412384/00007 6214033846235412384/00004 6169024306960183255/00006 6169024306960183255/00009 6169024306960183255/00001 6169024306960183255/00008 6169024306960183255/00007 6361822382531000645/00001 6361822382531000645/00005 6361822382531000645/00004 5973311666712799128/00015 5973311666712799128/00003 5973311666712799128/00032 5973311666712799128/00009 5973311666712799128/00033 5973311666712799128/00030 5973311666712799128/00031 5973311666712799128/00013 5973311666712799128/00022 5973311666712799128/00026 5973311666712799128/00001 5973311666712799128/00023 5973311666712799128/00012 5973311666712799128/00021 5973311666712799128/00014 5973311666712799128/00016 5973311666712799128/00019 5973311666712799128/00027 5973311666712799128/00002 5973311666712799128/00007 5973311666712799128/00005 5973311666712799128/00004 5973311666712799128/00028 5864521863092035878/00003 5864521863092035878/00010 5864521863092035878/00001 5864521863092035878/00012 5864521863092035878/00002 5864521863092035878/00008 5864521863092035878/00007 5864521863092035878/00004 6391783644760745881/00012 5929411517490186457/00003 5929411517490186457/00001 5975213478231532104/00003 5975213478231532104/00005 5975213478231532104/00004 5578322422355841561/00015 5578322422355841561/00006 5578322422355841561/00046 5578322422355841561/00032 5578322422355841561/00009 5578322422355841561/00033 5578322422355841561/00024 5578322422355841561/00030 5578322422355841561/00013 5578322422355841561/00022 5578322422355841561/00044 5578322422355841561/00036 5578322422355841561/00045 5578322422355841561/00038 5578322422355841561/00018 5578322422355841561/00012 5578322422355841561/00037 5578322422355841561/00020 5578322422355841561/00017 5578322422355841561/00016 5578322422355841561/00011 5578322422355841561/00002 5578322422355841561/00008 5578322422355841561/00025 5578322422355841561/00005 5989937055618942609/00060 5989937055618942609/00029 5989937055618942609/00015 5989937055618942609/00046 5989937055618942609/00056 5989937055618942609/00032 5989937055618942609/00070 5989937055618942609/00073 5989937055618942609/00057 5989937055618942609/00053 5989937055618942609/00030 5989937055618942609/00071 5989937055618942609/00031 5989937055618942609/00069 5989937055618942609/00022 5989937055618942609/00044 5989937055618942609/00036 5989937055618942609/00045 5989937055618942609/00066 5989937055618942609/00072 5989937055618942609/00088 5989937055618942609/00048 5989937055618942609/00018 5989937055618942609/00065 5989937055618942609/00021 5989937055618942609/00014 5989937055618942609/00037 5989937055618942609/00039 5989937055618942609/00035 5989937055618942609/00051 5989937055618942609/00017 5989937055618942609/00016 5989937055618942609/00059 5989937055618942609/00019 5989937055618942609/00011 5989937055618942609/00067 5989937055618942609/00034 5989937055618942609/00082 5989937055618942609/00002 5989937055618942609/00089 5989937055618942609/00008 5989937055618942609/00040 5989937055618942609/00068 5989937055618942609/00025 5989937055618942609/00054 5989937055618942609/00043 5989937055618942609/00005 5989937055618942609/00004 5989937055618942609/00028 5964816650898032212/00009 5964816650898032212/00010 5964816650898032212/00001 5964816650898032212/00007 5961429210191740808/00006 5961429210191740808/00001 5961429210191740808/00004 6329893595522062514/00003 6329893595522062514/00006 6329893595522062514/00009 6329893595522062514/00010 6329893595522062514/00007 6329893595522062514/00005 6329893595522062514/00004 6123956785626534301/00029 6123956785626534301/00015 6123956785626534301/00003 6123956785626534301/00006 6123956785626534301/00032 6123956785626534301/00030 6123956785626534301/00031 6123956785626534301/00026 6123956785626534301/00001 6123956785626534301/00012 6123956785626534301/00007 6123956785626534301/00025 6123956785626534301/00005 6123956785626534301/00004 6123956785626534301/00028 6209951909317291653/00003 6209951909317291653/00006 6209951909317291653/00007 6209951909317291653/00005 6263113726016940843/00015 6263113726016940843/00003 6263113726016940843/00006 6263113726016940843/00010 6263113726016940843/00013 6263113726016940843/00022 6263113726016940843/00001 6263113726016940843/00018 6263113726016940843/00021 6263113726016940843/00014 6263113726016940843/00020 6263113726016940843/00017 6263113726016940843/00016 6263113726016940843/00019 6263113726016940843/00002 6263113726016940843/00025 6263113726016940843/00004 5940203911311581104/00003 5940203911311581104/00001 5940203911311581104/00011 6264540084655944749/00007 6264540084655944749/00005 6115356113616282331/00006 6115356113616282331/00033 6115356113616282331/00037 6115356113616282331/00039 6115356113616282331/00002 6115356113616282331/00008 6115356113616282331/00007 5887632223118359184/00029 5887632223118359184/00015 5887632223118359184/00003 5887632223118359184/00006 5887632223118359184/00046 5887632223118359184/00056 5887632223118359184/00032 5887632223118359184/00009 5887632223118359184/00010 5887632223118359184/00033 5887632223118359184/00057 5887632223118359184/00024 5887632223118359184/00053 5887632223118359184/00030 5887632223118359184/00031 5887632223118359184/00013 5887632223118359184/00022 5887632223118359184/00026 5887632223118359184/00044 5887632223118359184/00050 5887632223118359184/00001 5887632223118359184/00045 5887632223118359184/00023 5887632223118359184/00038 5887632223118359184/00048 5887632223118359184/00018 5887632223118359184/00042 5887632223118359184/00012 5887632223118359184/00041 5887632223118359184/00014 5887632223118359184/00037 5887632223118359184/00020 5887632223118359184/00035 5887632223118359184/00051 5887632223118359184/00017 5887632223118359184/00052 5887632223118359184/00055 5887632223118359184/00019 5887632223118359184/00034 5887632223118359184/00008 5887632223118359184/00007 5887632223118359184/00025 5887632223118359184/00054 5887632223118359184/00043 5887632223118359184/00005 5887632223118359184/00028 6109813028824058222/00029 6109813028824058222/00006 6109813028824058222/00046 6109813028824058222/00032 6109813028824058222/00009 6109813028824058222/00033 6109813028824058222/00024 6109813028824058222/00030 6109813028824058222/00026 6109813028824058222/00036 6109813028824058222/00023 6109813028824058222/00037 6109813028824058222/00020 6109813028824058222/00043 6109813028824058222/00005 6109813028824058222/00004 6227850326529932021/00013 6227850326529932021/00001 6227850326529932021/00018 6227850326529932021/00020 6227850326529932021/00017 6227850326529932021/00019 6227850326529932021/00011 6227850326529932021/00002 6094648787792151139/00010 6094648787792151139/00013 6094648787792151139/00001 6094648787792151139/00012 6094648787792151139/00014 6094648787792151139/00011 6094648787792151139/00008 6094648787792151139/00007 6122785548044912528/00003 5674169342030103917/00029 5674169342030103917/00015 5674169342030103917/00003 5674169342030103917/00006 5674169342030103917/00032 5674169342030103917/00010 5674169342030103917/00030 5674169342030103917/00031 5674169342030103917/00013 5674169342030103917/00022 5674169342030103917/00026 5674169342030103917/00036 5674169342030103917/00018 5674169342030103917/00021 5674169342030103917/00037 5674169342030103917/00020 5674169342030103917/00035 5674169342030103917/00019 5674169342030103917/00011 5674169342030103917/00034 5674169342030103917/00008 5674169342030103917/00005 5674169342030103917/00004 5674169342030103917/00028 6081547419552355435/00003 6081547419552355435/00002 5664111387616319417/00003 5664111387616319417/00006 5664111387616319417/00009 5664111387616319417/00010 5664111387616319417/00013 5664111387616319417/00001 5664111387616319417/00011 5664111387616319417/00008 5664111387616319417/00007 5664111387616319417/00005 5664111387616319417/00004 5547224711649158254/00003 5547224711649158254/00001 5547224711649158254/00002 6020764183385914065/00004 6146206434206732262/00015 6146206434206732262/00003 6146206434206732262/00009 6146206434206732262/00001 6146206434206732262/00018 6146206434206732262/00014 6146206434206732262/00020 6146206434206732262/00016 6146206434206732262/00011 6146206434206732262/00008 6225237268427037398/00015 6225237268427037398/00003 6225237268427037398/00033 6225237268427037398/00031 6225237268427037398/00022 6225237268427037398/00001 6225237268427037398/00038 6225237268427037398/00018 6225237268427037398/00039 6225237268427037398/00017 6225237268427037398/00019 6225237268427037398/00027 6225237268427037398/00002 6225237268427037398/00007 6225237268427037398/00028 6166774603090531529/00060 6166774603090531529/00015 6166774603090531529/00003 6166774603090531529/00107 6166774603090531529/00032 6166774603090531529/00024 6166774603090531529/00030 6166774603090531529/00031 6166774603090531529/00086 6166774603090531529/00013 6166774603090531529/00077 6166774603090531529/00093 6166774603090531529/00001 6166774603090531529/00064 6166774603090531529/00072 6166774603090531529/00023 6166774603090531529/00038 6166774603090531529/00083 6166774603090531529/00047 6166774603090531529/00035 6166774603090531529/00059 6166774603090531529/00019 6166774603090531529/00100 6166774603090531529/00089 6166774603090531529/00040 6166774603090531529/00025 6166774603090531529/00043 6166774603090531529/00005 6166774603090531529/00074 5932059364828169371/00015 5932059364828169371/00010 5932059364828169371/00013 5932059364828169371/00011 5932059364828169371/00004 5739941612207593115/00009 5739941612207593115/00022 5739941612207593115/00026 5739941612207593115/00012 5739941612207593115/00021 5739941612207593115/00020 5739941612207593115/00017 5739941612207593115/00016 5739941612207593115/00011 5739941612207593115/00002 5739941612207593115/00008 5739941612207593115/00007 6092727648920650841/00003 6092727648920650841/00006 6092727648920650841/00009 6092727648920650841/00010 6092727648920650841/00001 6092727648920650841/00011 6092727648920650841/00002 6092727648920650841/00008 6092727648920650841/00007 6092727648920650841/00005 6092727648920650841/00004 6222997872478817404/00029 6222997872478817404/00003 6222997872478817404/00006 6222997872478817404/00070 6222997872478817404/00010 6222997872478817404/00030 6222997872478817404/00058 6222997872478817404/00062 6222997872478817404/00031 6222997872478817404/00050 6222997872478817404/00063 6222997872478817404/00045 6222997872478817404/00066 6222997872478817404/00064 6222997872478817404/00049 6222997872478817404/00072 6222997872478817404/00023 6222997872478817404/00038 6222997872478817404/00041 6222997872478817404/00065 6222997872478817404/00061 6222997872478817404/00021 6222997872478817404/00014 6222997872478817404/00047 6222997872478817404/00039 6222997872478817404/00020 6222997872478817404/00035 6222997872478817404/00051 6222997872478817404/00017 6222997872478817404/00055 6222997872478817404/00059 6222997872478817404/00019 6222997872478817404/00011 6222997872478817404/00027 6222997872478817404/00034 6222997872478817404/00008 6222997872478817404/00040 6222997872478817404/00068 6222997872478817404/00025 6222997872478817404/00054 6222997872478817404/00043 6222997872478817404/00005 6222997872478817404/00004 5976593451223672859/00003 5976593451223672859/00013 5976593451223672859/00022 5976593451223672859/00001 5976593451223672859/00014 5976593451223672859/00017 5976593451223672859/00007 5976593451223672859/00004 6224029953120131710/00029 6224029953120131710/00003 6224029953120131710/00006 6224029953120131710/00032 6224029953120131710/00030 6224029953120131710/00031 6224029953120131710/00013 6224029953120131710/00026 6224029953120131710/00001 6224029953120131710/00023 6224029953120131710/00012 6224029953120131710/00021 6224029953120131710/00014 6224029953120131710/00020 6224029953120131710/00016 6224029953120131710/00019 6224029953120131710/00011 6224029953120131710/00002 6224029953120131710/00007 6224029953120131710/00025 6224029953120131710/00005 6224029953120131710/00004 6224029953120131710/00028 6150222658125223462/00015 6150222658125223462/00009 6150222658125223462/00010 6150222658125223462/00031 6150222658125223462/00021 6150222658125223462/00025 5881004229587154544/00001 5881004229587154544/00002 6012260148270326999/00029 6012260148270326999/00006 6012260148270326999/00024 6012260148270326999/00001 6012260148270326999/00012 6012260148270326999/00021 6012260148270326999/00014 6012260148270326999/00007 6012260148270326999/00025 5861924266871412340/00015 5861924266871412340/00006 5861924266871412340/00009 5861924266871412340/00010 5861924266871412340/00013 5861924266871412340/00018 5861924266871412340/00012 5861924266871412340/00014 5861924266871412340/00016 5861924266871412340/00008 6247899233867575718/00003 6247899233867575718/00001 6247899233867575718/00002 6247899233867575718/00007 6082669694506867284/00015 6082669694506867284/00009 6082669694506867284/00001 6082669694506867284/00011 6082669694506867284/00002 6220067845789567034/00009 6220067845789567034/00010 6220067845789567034/00013 6220067845789567034/00001 6220067845789567034/00012 6220067845789567034/00014 6220067845789567034/00002 6220067845789567034/00007 6119082427242296442/00060 6119082427242296442/00029 6119082427242296442/00015 6119082427242296442/00003 6119082427242296442/00032 6119082427242296442/00022 6119082427242296442/00044 6119082427242296442/00063 6119082427242296442/00064 6119082427242296442/00023 6119082427242296442/00038 6119082427242296442/00018 6119082427242296442/00042 6119082427242296442/00065 6119082427242296442/00061 6119082427242296442/00014 6119082427242296442/00020 6119082427242296442/00035 6119082427242296442/00027 6119082427242296442/00040 6119082427242296442/00025 6119082427242296442/00054 6119082427242296442/00028 6368154023188356050/00008 5682226271180676767/00015 5682226271180676767/00006 5682226271180676767/00010 5682226271180676767/00033 5682226271180676767/00053 5682226271180676767/00030 5682226271180676767/00031 5682226271180676767/00013 5682226271180676767/00022 5682226271180676767/00036 5682226271180676767/00001 5682226271180676767/00049 5682226271180676767/00023 5682226271180676767/00038 5682226271180676767/00042 5682226271180676767/00012 5682226271180676767/00041 5682226271180676767/00039 5682226271180676767/00016 5682226271180676767/00011 5682226271180676767/00034 5682226271180676767/00002 5682226271180676767/00007 5682226271180676767/00025 5682226271180676767/00005 5682226271180676767/00028 6351234858519149621/00044 6351234858519149621/00007 6217447056745545811/00003 6217447056745545811/00006 6217447056745545811/00010 6217447056745545811/00001 6217447056745545811/00011 6217447056745545811/00002 6217447056745545811/00008 6217447056745545811/00007 6217447056745545811/00005 6113894965742182954/00015 6113894965742182954/00032 6113894965742182954/00013 6113894965742182954/00018 6113894965742182954/00014 6113894965742182954/00020 6113894965742182954/00017 6113894965742182954/00016 6113894965742182954/00019 6113894965742182954/00002 6113894965742182954/00007 6113894965742182954/00004 6113894965742182954/00028 6104617836382820634/00003 6104617836382820634/00032 6104617836382820634/00024 6104617836382820634/00030 6104617836382820634/00022 6104617836382820634/00044 6104617836382820634/00023 6104617836382820634/00021 6104617836382820634/00020 6104617836382820634/00008 6104617836382820634/00007 6104617836382820634/00025 6192190072064632857/00003 6192190072064632857/00006 6192190072064632857/00009 6192190072064632857/00010 6192190072064632857/00013 6192190072064632857/00022 6192190072064632857/00001 6192190072064632857/00023 6192190072064632857/00018 6192190072064632857/00021 6192190072064632857/00020 6192190072064632857/00019 6192190072064632857/00011 6192190072064632857/00008 5868232714835781791/00006 5868232714835781791/00010 5868232714835781791/00013 5868232714835781791/00022 5868232714835781791/00023 5868232714835781791/00018 5868232714835781791/00014 5868232714835781791/00017 5868232714835781791/00025 6216728079220132495/00003 6216728079220132495/00001 6216728079220132495/00002 6216728079220132495/00005 5570378880341882491/00006 5570378880341882491/00009 5570378880341882491/00010 5570378880341882491/00013 5570378880341882491/00012 5570378880341882491/00007 5570378880341882491/00005 5570378880341882491/00004 5994076974595560847/00015 5994076974595560847/00003 5994076974595560847/00032 5994076974595560847/00009 5994076974595560847/00010 5994076974595560847/00033 5994076974595560847/00024 5994076974595560847/00031 5994076974595560847/00013 5994076974595560847/00026 5994076974595560847/00001 5994076974595560847/00023 5994076974595560847/00018 5994076974595560847/00012 5994076974595560847/00020 5994076974595560847/00019 5994076974595560847/00011 5994076974595560847/00027 5994076974595560847/00008 5994076974595560847/00007 5994076974595560847/00025 5994076974595560847/00005 5994076974595560847/00004 5994076974595560847/00028 6207806573283352807/00015 6207806573283352807/00003 6207806573283352807/00010 6207806573283352807/00014 6207806573283352807/00016 6207806573283352807/00011 6207806573283352807/00002 6207806573283352807/00008 6207806573283352807/00007 6207806573283352807/00004 5964703263761479273/00003 5964703263761479273/00024 5964703263761479273/00031 5964703263761479273/00001 5964703263761479273/00012 5964703263761479273/00021 5964703263761479273/00014 5964703263761479273/00034 5964703263761479273/00008 5964703263761479273/00007 5964703263761479273/00005 5964703263761479273/00004 6158065697904459333/00029 6158065697904459333/00015 6158065697904459333/00003 6158065697904459333/00006 6158065697904459333/00032 6158065697904459333/00009 6158065697904459333/00033 6158065697904459333/00024 6158065697904459333/00031 6158065697904459333/00022 6158065697904459333/00026 6158065697904459333/00036 6158065697904459333/00001 6158065697904459333/00023 6158065697904459333/00018 6158065697904459333/00012 6158065697904459333/00021 6158065697904459333/00014 6158065697904459333/00020 6158065697904459333/00019 6158065697904459333/00027 6158065697904459333/00002 6158065697904459333/00025 6158065697904459333/00005 6158065697904459333/00004 6158065697904459333/00028 6254571036065254098/00015 6254571036065254098/00006 6254571036065254098/00013 6254571036065254098/00014 6254571036065254098/00017 6254571036065254098/00016 6254571036065254098/00008 6254571036065254098/00007 6254571036065254098/00005 6254524650418457293/00003 6254524650418457293/00010 6254524650418457293/00024 6254524650418457293/00013 6254524650418457293/00022 6254524650418457293/00001 6254524650418457293/00021 6254524650418457293/00014 6254524650418457293/00019 6254524650418457293/00011 6254524650418457293/00007 5860865127936216417/00003 5860865127936216417/00006 5860865127936216417/00009 5860865127936216417/00010 5860865127936216417/00001 5860865127936216417/00014 5860865127936216417/00017 5860865127936216417/00016 5860865127936216417/00011 5860865127936216417/00002 5860865127936216417/00005 5860865127936216417/00004 5957695165625241423/00006 5957695165625241423/00010 5957695165625241423/00013 5957695165625241423/00026 5957695165625241423/00018 5957695165625241423/00012 5957695165625241423/00014 5957695165625241423/00020 5957695165625241423/00017 5957695165625241423/00019 5957695165625241423/00027 5957695165625241423/00008 5957695165625241423/00007 5957695165625241423/00025 5957695165625241423/00005 6210701810607173311/00022 6210701810607173311/00001 6210701810607173311/00012 6210701810607173311/00002 6210701810607173311/00005 6210701810607173311/00004 6258289618750134578/00015 6258289618750134578/00003 6258289618750134578/00006 6258289618750134578/00009 6258289618750134578/00013 6258289618750134578/00018 6258289618750134578/00012 6258289618750134578/00017 6258289618750134578/00016 6258289618750134578/00011 6258289618750134578/00002 6258289618750134578/00008 6258289618750134578/00007 6258289618750134578/00004 5591349058164619509/00009 5591349058164619509/00010 5591349058164619509/00001 5591349058164619509/00012 5591349058164619509/00017 5591349058164619509/00016 5591349058164619509/00011 5591349058164619509/00002 5591349058164619509/00005 5591349058164619509/00004 6027072631350294271/00009 6027072631350294271/00010 6027072631350294271/00001 6027072631350294271/00002 6027072631350294271/00008 5858883430025910313/00029 5858883430025910313/00015 5858883430025910313/00046 5858883430025910313/00032 5858883430025910313/00009 5858883430025910313/00033 5858883430025910313/00030 5858883430025910313/00031 5858883430025910313/00013 5858883430025910313/00022 5858883430025910313/00026 5858883430025910313/00036 5858883430025910313/00001 5858883430025910313/00038 5858883430025910313/00018 5858883430025910313/00041 5858883430025910313/00021 5858883430025910313/00014 5858883430025910313/00037 5858883430025910313/00039 5858883430025910313/00035 5858883430025910313/00017 5858883430025910313/00016 5858883430025910313/00019 5858883430025910313/00011 5858883430025910313/00027 5858883430025910313/00034 5858883430025910313/00040 5858883430025910313/00007 5858883430025910313/00004 5858883430025910313/00028 6082016429981085043/00029 6082016429981085043/00003 6082016429981085043/00046 6082016429981085043/00010 6082016429981085043/00033 6082016429981085043/00024 6082016429981085043/00030 6082016429981085043/00031 6082016429981085043/00013 6082016429981085043/00026 6082016429981085043/00044 6082016429981085043/00001 6082016429981085043/00045 6082016429981085043/00023 6082016429981085043/00012 6082016429981085043/00014 6082016429981085043/00037 6082016429981085043/00039 6082016429981085043/00035 6082016429981085043/00011 6082016429981085043/00027 6082016429981085043/00002 6082016429981085043/00008 6082016429981085043/00007 6082016429981085043/00025 6082016429981085043/00005 6082016429981085043/00004 6001854301505575951/00003 6001854301505575951/00010 6001854301505575951/00013 6001854301505575951/00001 6001854301505575951/00012 6001854301505575951/00011 6001854301505575951/00007 6001854301505575951/00005 6138390452721523689/00003 6138390452721523689/00006 6138390452721523689/00001 6138390452721523689/00002 6138390452721523689/00005 6138390452721523689/00004 5608960142065126132/00029 5608960142065126132/00006 5608960142065126132/00009 5608960142065126132/00010 5608960142065126132/00033 5608960142065126132/00030 5608960142065126132/00031 5608960142065126132/00013 5608960142065126132/00038 5608960142065126132/00039 5608960142065126132/00035 5608960142065126132/00019 5608960142065126132/00011 5608960142065126132/00034 5608960142065126132/00005 5608960142065126132/00004 5608960142065126132/00028 6203514612333974491/00060 6203514612333974491/00098 6203514612333974491/00046 6203514612333974491/00070 6203514612333974491/00090 6203514612333974491/00073 6203514612333974491/00033 6203514612333974491/00053 6203514612333974491/00030 6203514612333974491/00062 6203514612333974491/00086 6203514612333974491/00069 6203514612333974491/00022 6203514612333974491/00026 6203514612333974491/00044 6203514612333974491/00093 6203514612333974491/00050 6203514612333974491/00036 6203514612333974491/00001 6203514612333974491/00045 6203514612333974491/00023 6203514612333974491/00088 6203514612333974491/00018 6203514612333974491/00042 6203514612333974491/00012 6203514612333974491/00041 6203514612333974491/00021 6203514612333974491/00014 6203514612333974491/00037 6203514612333974491/00047 6203514612333974491/00039 6203514612333974491/00051 6203514612333974491/00076 6203514612333974491/00052 6203514612333974491/00019 6203514612333974491/00011 6203514612333974491/00084 6203514612333974491/00067 6203514612333974491/00082 6203514612333974491/00002 6203514612333974491/00089 6203514612333974491/00008 6203514612333974491/00040 6203514612333974491/00007 6203514612333974491/00043 6203514612333974491/00005 6203514612333974491/00074 6203514612333974491/00028 5970716647472558665/00002 5970716647472558665/00005 5970716647472558665/00004 6076517153855366409/00015 6076517153855366409/00003 6076517153855366409/00006 6076517153855366409/00009 6076517153855366409/00024 6076517153855366409/00030 6076517153855366409/00013 6076517153855366409/00041 6076517153855366409/00039 6076517153855366409/00035 6076517153855366409/00017 6076517153855366409/00016 6076517153855366409/00002 6076517153855366409/00007 5547533949294466668/00010 5547533949294466668/00022 5547533949294466668/00001 5547533949294466668/00023 5547533949294466668/00021 5547533949294466668/00016 5547533949294466668/00011 5547533949294466668/00002 5547533949294466668/00007 5547533949294466668/00025 5638917538954721590/00003 5638917538954721590/00006 5638917538954721590/00008 6030822137800415250/00015 6030822137800415250/00003 6030822137800415250/00006 6030822137800415250/00056 6030822137800415250/00032 6030822137800415250/00070 6030822137800415250/00090 6030822137800415250/00053 6030822137800415250/00031 6030822137800415250/00044 6030822137800415250/00050 6030822137800415250/00036 6030822137800415250/00045 6030822137800415250/00064 6030822137800415250/00049 6030822137800415250/00048 6030822137800415250/00018 6030822137800415250/00012 6030822137800415250/00083 6030822137800415250/00014 6030822137800415250/00037 6030822137800415250/00047 6030822137800415250/00035 6030822137800415250/00019 6030822137800415250/00002 6030822137800415250/00089 6030822137800415250/00005 5951720436619056158/00006 5951720436619056158/00001 5951720436619056158/00012 5951720436619056158/00008 5951720436619056158/00007 5984413298179485784/00009 5984413298179485784/00010 5984413298179485784/00024 5984413298179485784/00022 5984413298179485784/00023 5984413298179485784/00018 5984413298179485784/00012 5984413298179485784/00014 5984413298179485784/00020 5984413298179485784/00011 5984413298179485784/00008 5984413298179485784/00007 5984413298179485784/00025 6366944130901006716/00015 6366944130901006716/00010 6366944130901006716/00007 6366944130901006716/00005 6059016880241480758/00015 6059016880241480758/00003 6059016880241480758/00006 6059016880241480758/00009 6059016880241480758/00010 6059016880241480758/00013 6059016880241480758/00001 6059016880241480758/00018 6059016880241480758/00012 6059016880241480758/00020 6059016880241480758/00017 6059016880241480758/00016 6059016880241480758/00011 6059016880241480758/00002 6059016880241480758/00008 6059016880241480758/00007 6059016880241480758/00005 6059016880241480758/00004 6282781240258772087/00003 6282781240258772087/00009 6282781240258772087/00013 6282781240258772087/00001 6282781240258772087/00014 6282781240258772087/00002 6282781240258772087/00008 6282781240258772087/00005 6282781240258772087/00004 6250888531105659657/00011 6250888531105659657/00002 6250888531105659657/00008 6250888531105659657/00007 6250888531105659657/00005 6250888531105659657/00004 6254207681832012469/00003 6254207681832012469/00009 6254207681832012469/00001 6254207681832012469/00002 6328312618060398848/00009 6328312618060398848/00010 6328312618060398848/00011 6213365119827359137/00029 6213365119827359137/00006 6213365119827359137/00009 6213365119827359137/00033 6213365119827359137/00024 6213365119827359137/00030 6213365119827359137/00013 6213365119827359137/00022 6213365119827359137/00020 6213365119827359137/00008 6213365119827359137/00007 6213365119827359137/00005 6215889272107286463/00006 6215889272107286463/00023 6215889272107286463/00014 6215889272107286463/00020 6215889272107286463/00016 6215889272107286463/00011 6215889272107286463/00008 6215889272107286463/00004 6215889272107286463/00028 6316024287129869379/00029 6316024287129869379/00003 6316024287129869379/00032 6316024287129869379/00010 6316024287129869379/00024 6316024287129869379/00030 6316024287129869379/00013 6316024287129869379/00001 6316024287129869379/00045 6316024287129869379/00049 6316024287129869379/00023 6316024287129869379/00038 6316024287129869379/00048 6316024287129869379/00018 6316024287129869379/00042 6316024287129869379/00012 6316024287129869379/00014 6316024287129869379/00047 6316024287129869379/00035 6316024287129869379/00017 6316024287129869379/00016 6316024287129869379/00011 6316024287129869379/00027 6316024287129869379/00002 6316024287129869379/00040 6316024287129869379/00007 6316024287129869379/00028 6328764878116731644/00029 6328764878116731644/00003 6328764878116731644/00006 6328764878116731644/00032 6328764878116731644/00010 6328764878116731644/00030 6328764878116731644/00031 6328764878116731644/00013 6328764878116731644/00022 6328764878116731644/00023 6328764878116731644/00021 6328764878116731644/00014 6328764878116731644/00019 6328764878116731644/00002 6328764878116731644/00008 6328764878116731644/00007 6328764878116731644/00025 6328764878116731644/00005 6328764878116731644/00028 6259379681449797591/00015 6259379681449797591/00003 6259379681449797591/00006 6259379681449797591/00024 6259379681449797591/00022 6259379681449797591/00026 6259379681449797591/00018 6259379681449797591/00012 6259379681449797591/00017 6259379681449797591/00019 6259379681449797591/00011 6259379681449797591/00002 6079040017644975404/00003 6079040017644975404/00006 6079040017644975404/00001 6079040017644975404/00002 6079040017644975404/00008 6079040017644975404/00005 5956929802452379702/00029 5956929802452379702/00015 5956929802452379702/00003 5956929802452379702/00032 5956929802452379702/00009 5956929802452379702/00033 5956929802452379702/00024 5956929802452379702/00030 5956929802452379702/00031 5956929802452379702/00013 5956929802452379702/00022 5956929802452379702/00026 5956929802452379702/00036 5956929802452379702/00023 5956929802452379702/00038 5956929802452379702/00018 5956929802452379702/00021 5956929802452379702/00014 5956929802452379702/00020 5956929802452379702/00035 5956929802452379702/00017 5956929802452379702/00016 5956929802452379702/00011 5956929802452379702/00027 5956929802452379702/00034 5956929802452379702/00002 5956929802452379702/00008 5956929802452379702/00040 5956929802452379702/00007 5956929802452379702/00025 5956929802452379702/00004 6087219353364175738/00029 6087219353364175738/00003 6087219353364175738/00006 6087219353364175738/00046 6087219353364175738/00009 6087219353364175738/00010 6087219353364175738/00024 6087219353364175738/00031 6087219353364175738/00013 6087219353364175738/00044 6087219353364175738/00050 6087219353364175738/00036 6087219353364175738/00001 6087219353364175738/00049 6087219353364175738/00048 6087219353364175738/00018 6087219353364175738/00042 6087219353364175738/00012 6087219353364175738/00021 6087219353364175738/00014 6087219353364175738/00039 6087219353364175738/00052 6087219353364175738/00016 6087219353364175738/00019 6087219353364175738/00034 6087219353364175738/00002 6087219353364175738/00005 6087219353364175738/00028 6290543105156109528/00011 6290543105156109528/00008 6290543105156109528/00007 6290543105156109528/00005 6111339889697854178/00015 6111339889697854178/00006 6111339889697854178/00017 6111339889697854178/00019 6111339889697854178/00005 6111339889697854178/00004 5975031801114911283/00003 5975031801114911283/00032 5975031801114911283/00033 5975031801114911283/00024 5975031801114911283/00030 5975031801114911283/00031 5975031801114911283/00013 5975031801114911283/00036 5975031801114911283/00001 5975031801114911283/00045 5975031801114911283/00049 5975031801114911283/00038 5975031801114911283/00042 5975031801114911283/00012 5975031801114911283/00041 5975031801114911283/00037 5975031801114911283/00047 5975031801114911283/00039 5975031801114911283/00035 5975031801114911283/00011 5975031801114911283/00034 5975031801114911283/00002 5975031801114911283/00008 5975031801114911283/00025 5975031801114911283/00043 5975031801114911283/00028 5574259812790550371/00015 5574259812790550371/00006 5574259812790550371/00013 5574259812790550371/00001 5574259812790550371/00012 5574259812790550371/00014 5574259812790550371/00019 5574259812790550371/00002 5574259812790550371/00008 5574259812790550371/00007 5574259812790550371/00005 5574259812790550371/00004 6216639173397168149/00003 6216639173397168149/00006 6216639173397168149/00009 6216639173397168149/00010 6216639173397168149/00013 6216639173397168149/00022 6216639173397168149/00001 6216639173397168149/00023 6216639173397168149/00012 6216639173397168149/00021 6216639173397168149/00020 6216639173397168149/00016 6216639173397168149/00002 6216639173397168149/00008 6360685934053997353/00007 6340299442417279404/00006 6340299442417279404/00023 6340299442417279404/00019 6244930552472581604/00029 6244930552472581604/00003 6244930552472581604/00070 6244930552472581604/00009 6244930552472581604/00073 6244930552472581604/00057 6244930552472581604/00053 6244930552472581604/00030 6244930552472581604/00071 6244930552472581604/00058 6244930552472581604/00062 6244930552472581604/00031 6244930552472581604/00013 6244930552472581604/00069 6244930552472581604/00026 6244930552472581604/00050 6244930552472581604/00001 6244930552472581604/00066 6244930552472581604/00049 6244930552472581604/00072 6244930552472581604/00023 6244930552472581604/00018 6244930552472581604/00041 6244930552472581604/00061 6244930552472581604/00075 6244930552472581604/00079 6244930552472581604/00014 6244930552472581604/00039 6244930552472581604/00020 6244930552472581604/00035 6244930552472581604/00017 6244930552472581604/00076 6244930552472581604/00052 6244930552472581604/00055 6244930552472581604/00016 6244930552472581604/00019 6244930552472581604/00011 6244930552472581604/00027 6244930552472581604/00034 6244930552472581604/00081 6244930552472581604/00002 6244930552472581604/00008 6244930552472581604/00007 6244930552472581604/00025 6244930552472581604/00054 6244930552472581604/00043 5992994642837614509/00003 5992994642837614509/00006 5992994642837614509/00009 5992994642837614509/00010 5992994642837614509/00013 5992994642837614509/00001 5992994642837614509/00012 5992994642837614509/00011 5992994642837614509/00002 5992994642837614509/00005 6236039970169919751/00009 6236039970169919751/00001 6236039970169919751/00002 6236039970169919751/00008 6236039970169919751/00004 6127238570137479652/00009 6127238570137479652/00010 6127238570137479652/00024 6127238570137479652/00030 6127238570137479652/00023 6127238570137479652/00018 6127238570137479652/00019 6127238570137479652/00027 6127238570137479652/00005 6127238570137479652/00004 5593985309090877794/00003 5593985309090877794/00001 5593985309090877794/00004 6175687089726472399/00015 6175687089726472399/00003 6175687089726472399/00006 6175687089726472399/00024 6175687089726472399/00013 6175687089726472399/00022 6175687089726472399/00001 6175687089726472399/00023 6175687089726472399/00018 6175687089726472399/00021 6175687089726472399/00014 6175687089726472399/00020 6175687089726472399/00017 6175687089726472399/00016 6175687089726472399/00019 6175687089726472399/00011 6175687089726472399/00005 6175687089726472399/00004 6229248338384775320/00015 6229248338384775320/00003 6229248338384775320/00009 6229248338384775320/00001 6229248338384775320/00012 6229248338384775320/00002 6229248338384775320/00005 6085638375901866340/00003 6085638375901866340/00009 6085638375901866340/00010 6085638375901866340/00001 6085638375901866340/00002 6085638375901866340/00007 6085638375901866340/00005 6085638375901866340/00004 5923191975348906332/00006 5923191975348906332/00024 5923191975348906332/00013 5923191975348906332/00022 5923191975348906332/00001 5923191975348906332/00023 5923191975348906332/00018 5923191975348906332/00021 5923191975348906332/00014 5923191975348906332/00020 5923191975348906332/00017 5923191975348906332/00016 5923191975348906332/00019 5923191975348906332/00011 5923191975348906332/00027 5923191975348906332/00002 5923191975348906332/00007 5923191975348906332/00004 5989899689403402442/00015 5989899689403402442/00003 5989899689403402442/00006 5989899689403402442/00009 5989899689403402442/00013 5989899689403402442/00001 5989899689403402442/00018 5989899689403402442/00012 5989899689403402442/00014 5989899689403402442/00017 5989899689403402442/00011 5989899689403402442/00002 5989899689403402442/00005 6063686368555221428/00003 6063686368555221428/00009 6063686368555221428/00014 6063686368555221428/00008 6063686368555221428/00007 6063686368555221428/00004 5869361432241237722/00015 5869361432241237722/00003 5869361432241237722/00032 5869361432241237722/00009 5869361432241237722/00010 5869361432241237722/00033 5869361432241237722/00024 5869361432241237722/00031 5869361432241237722/00022 5869361432241237722/00026 5869361432241237722/00001 5869361432241237722/00023 5869361432241237722/00021 5869361432241237722/00016 5869361432241237722/00019 5869361432241237722/00011 5869361432241237722/00027 5869361432241237722/00034 5869361432241237722/00002 5869361432241237722/00008 5869361432241237722/00007 5869361432241237722/00025 5869361432241237722/00004 6220342294199783198/00002 6220342294199783198/00005 6220342294199783198/00004 6105039172674578568/00003 6105039172674578568/00010 6105039172674578568/00013 6105039172674578568/00001 6105039172674578568/00012 6105039172674578568/00017 6105039172674578568/00011 6105039172674578568/00002 6105039172674578568/00005 6105039172674578568/00004 5986606308480823977/00003 5986606308480823977/00002 5986606308480823977/00007 6353264230566502930/00013 6353264230566502930/00014 5857049908487243242/00003 5857049908487243242/00006 5857049908487243242/00009 5857049908487243242/00007 6230420864456523660/00029 6230420864456523660/00006 6230420864456523660/00046 6230420864456523660/00009 6230420864456523660/00010 6230420864456523660/00031 6230420864456523660/00013 6230420864456523660/00022 6230420864456523660/00026 6230420864456523660/00050 6230420864456523660/00036 6230420864456523660/00001 6230420864456523660/00045 6230420864456523660/00023 6230420864456523660/00038 6230420864456523660/00048 6230420864456523660/00018 6230420864456523660/00041 6230420864456523660/00021 6230420864456523660/00037 6230420864456523660/00020 6230420864456523660/00035 6230420864456523660/00017 6230420864456523660/00016 6230420864456523660/00019 6230420864456523660/00011 6230420864456523660/00027 6230420864456523660/00034 6230420864456523660/00002 6230420864456523660/00040 6230420864456523660/00025 6230420864456523660/00004 6256226745957798408/00029 6256226745957798408/00015 6256226745957798408/00006 6256226745957798408/00009 6256226745957798408/00024 6256226745957798408/00031 6256226745957798408/00013 6256226745957798408/00022 6256226745957798408/00036 6256226745957798408/00001 6256226745957798408/00023 6256226745957798408/00038 6256226745957798408/00037 6256226745957798408/00039 6256226745957798408/00017 6256226745957798408/00016 6256226745957798408/00019 6256226745957798408/00027 6256226745957798408/00034 6256226745957798408/00002 6256226745957798408/00040 6256226745957798408/00025 6256226745957798408/00005 6212549505537914636/00003 6212549505537914636/00009 6212549505537914636/00002 6212549505537914636/00005 6099851711174532317/00003 6099851711174532317/00002 6099851711174532317/00004 6347524006775395501/00006 6347524006775395501/00020 6354304042148929518/00013 6254513054006692384/00003 6254513054006692384/00005 6254513054006692384/00004 6208239505986789611/00006 6208239505986789611/00022 6208239505986789611/00021 6208239505986789611/00014 6208239505986789611/00020 5979233567750998189/00029 5979233567750998189/00015 5979233567750998189/00003 5979233567750998189/00009 5979233567750998189/00010 5979233567750998189/00013 5979233567750998189/00023 5979233567750998189/00018 5979233567750998189/00021 5979233567750998189/00020 5979233567750998189/00011 5979233567750998189/00027 5979233567750998189/00008 5979233567750998189/00025 5979233567750998189/00005 5979233567750998189/00004 6213291675886663520/00010 6213291675886663520/00011 6209959640258424454/00029 6209959640258424454/00003 6209959640258424454/00006 6209959640258424454/00010 6209959640258424454/00030 6209959640258424454/00013 6209959640258424454/00022 6209959640258424454/00001 6209959640258424454/00023 6209959640258424454/00021 6209959640258424454/00037 6209959640258424454/00035 6209959640258424454/00017 6209959640258424454/00019 6209959640258424454/00034 6209959640258424454/00002 6209959640258424454/00005 6209959640258424454/00004 6209959640258424454/00028 6265243600299093383/00015 6265243600299093383/00003 6265243600299093383/00006 6265243600299093383/00009 6265243600299093383/00010 6265243600299093383/00018 6265243600299093383/00012 6265243600299093383/00014 6265243600299093383/00020 6265243600299093383/00017 6265243600299093383/00011 6265243600299093383/00002 6265243600299093383/00008 6265243600299093383/00007 6265243600299093383/00005 6265243600299093383/00004 6392282290463747809/00003 6392282290463747809/00018 6392282290463747809/00025 6049337741812751957/00003 6049337741812751957/00006 6049337741812751957/00001 6049337741812751957/00014 5708325928445013237/00015 5708325928445013237/00003 5708325928445013237/00006 5708325928445013237/00056 5708325928445013237/00032 5708325928445013237/00009 5708325928445013237/00010 5708325928445013237/00033 5708325928445013237/00024 5708325928445013237/00031 5708325928445013237/00013 5708325928445013237/00022 5708325928445013237/00050 5708325928445013237/00001 5708325928445013237/00023 5708325928445013237/00042 5708325928445013237/00012 5708325928445013237/00041 5708325928445013237/00021 5708325928445013237/00039 5708325928445013237/00035 5708325928445013237/00017 5708325928445013237/00016 5708325928445013237/00019 5708325928445013237/00034 5708325928445013237/00002 5708325928445013237/00008 5708325928445013237/00007 5708325928445013237/00025 5708325928445013237/00054 5708325928445013237/00043 5708325928445013237/00005 5708325928445013237/00004 5954958412463581171/00171 5954958412463581171/00147 5954958412463581171/00125 5954958412463581171/00060 5954958412463581171/00029 5954958412463581171/00015 5954958412463581171/00003 5954958412463581171/00140 5954958412463581171/00098 5954958412463581171/00046 5954958412463581171/00107 5954958412463581171/00056 5954958412463581171/00032 5954958412463581171/00128 5954958412463581171/00169 5954958412463581171/00113 5954958412463581171/00109 5954958412463581171/00122 5954958412463581171/00159 5954958412463581171/00152 5954958412463581171/00010 5954958412463581171/00057 5954958412463581171/00141 5954958412463581171/00053 5954958412463581171/00116 5954958412463581171/00078 5954958412463581171/00071 5954958412463581171/00058 5954958412463581171/00121 5954958412463581171/00142 5954958412463581171/00167 5954958412463581171/00031 5954958412463581171/00013 5954958412463581171/00165 5954958412463581171/00137 5954958412463581171/00150 5954958412463581171/00069 5954958412463581171/00148 5954958412463581171/00022 5954958412463581171/00026 5954958412463581171/00044 5954958412463581171/00130 5954958412463581171/00161 5954958412463581171/00099 5954958412463581171/00093 5954958412463581171/00168 5954958412463581171/00166 5954958412463581171/00103 5954958412463581171/00173 5954958412463581171/00105 5954958412463581171/00036 5954958412463581171/00117 5954958412463581171/00063 5954958412463581171/00001 5954958412463581171/00045 5954958412463581171/00064 5954958412463581171/00136 5954958412463581171/00157 5954958412463581171/00072 5954958412463581171/00023 5954958412463581171/00114 5954958412463581171/00088 5954958412463581171/00048 5954958412463581171/00134 5954958412463581171/00108 5954958412463581171/00145 5954958412463581171/00085 5954958412463581171/00042 5954958412463581171/00135 5954958412463581171/00012 5954958412463581171/00041 5954958412463581171/00162 5954958412463581171/00126 5954958412463581171/00065 5954958412463581171/00061 5954958412463581171/00083 5954958412463581171/00075 5954958412463581171/00104 5954958412463581171/00176 5954958412463581171/00079 5954958412463581171/00160 5954958412463581171/00014 5954958412463581171/00037 5954958412463581171/00047 5954958412463581171/00039 5954958412463581171/00051 5954958412463581171/00174 5954958412463581171/00076 5954958412463581171/00080 5954958412463581171/00052 5954958412463581171/00016 5954958412463581171/00095 5954958412463581171/00111 5954958412463581171/00059 5954958412463581171/00146 5954958412463581171/00019 5954958412463581171/00011 5954958412463581171/00119 5954958412463581171/00084 5954958412463581171/00067 5954958412463581171/00153 5954958412463581171/00115 5954958412463581171/00081 5954958412463581171/00089 5954958412463581171/00092 5954958412463581171/00040 5954958412463581171/00102 5954958412463581171/00068 5954958412463581171/00143 5954958412463581171/00132 5954958412463581171/00097 5954958412463581171/00156 5954958412463581171/00175 5954958412463581171/00054 5954958412463581171/00043 5954958412463581171/00005 5954958412463581171/00074 5954958412463581171/00004 5954958412463581171/00155 5954958412463581171/00028 6221923271661440922/00003 6221923271661440922/00001 6382232067121597643/00009 6382232067121597643/00013 6060887767865882242/00003 6060887767865882242/00002 6060887767865882242/00008 6060887767865882242/00007 6109387827061820104/00003 6109387827061820104/00006 6109387827061820104/00001 6109387827061820104/00002 6109387827061820104/00005 6109387827061820104/00004 6251884534021603981/00006 6251884534021603981/00008 6251884534021603981/00007 6251884534021603981/00005 5565365365017257953/00006 5565365365017257953/00009 5565365365017257953/00013 5565365365017257953/00014 5565365365017257953/00002 5565365365017257953/00008 5565365365017257953/00007 6062704539161826746/00003 6062704539161826746/00006 6062704539161826746/00010 6062704539161826746/00013 6062704539161826746/00022 6062704539161826746/00001 6062704539161826746/00023 6062704539161826746/00018 6062704539161826746/00021 6062704539161826746/00017 6062704539161826746/00016 6062704539161826746/00019 6062704539161826746/00011 6062704539161826746/00004 6355788382846429521/00010 6355788382846429521/00005 6355788382846429521/00004 5681963419182164492/00029 5681963419182164492/00015 5681963419182164492/00003 5681963419182164492/00006 5681963419182164492/00009 5681963419182164492/00033 5681963419182164492/00024 5681963419182164492/00013 5681963419182164492/00022 5681963419182164492/00026 5681963419182164492/00044 5681963419182164492/00001 5681963419182164492/00023 5681963419182164492/00038 5681963419182164492/00042 5681963419182164492/00021 5681963419182164492/00014 5681963419182164492/00037 5681963419182164492/00020 5681963419182164492/00035 5681963419182164492/00016 5681963419182164492/00019 5681963419182164492/00027 5681963419182164492/00034 5681963419182164492/00002 5681963419182164492/00008 5681963419182164492/00040 5681963419182164492/00007 5681963419182164492/00005 5681963419182164492/00004 5681963419182164492/00028 6085244097904093508/00015 6085244097904093508/00003 6085244097904093508/00006 6085244097904093508/00009 6085244097904093508/00013 6085244097904093508/00012 6085244097904093508/00014 6085244097904093508/00016 5896589806910882660/00003 5896589806910882660/00006 5896589806910882660/00009 5896589806910882660/00010 5896589806910882660/00001 5896589806910882660/00011 5896589806910882660/00002 5896589806910882660/00008 5896589806910882660/00007 5896589806910882660/00005 5896589806910882660/00004 5883091583693023549/00015 5883091583693023549/00006 5883091583693023549/00009 5883091583693023549/00001 5883091583693023549/00018 5883091583693023549/00014 5883091583693023549/00020 5883091583693023549/00016 5883091583693023549/00008 5883091583693023549/00007 5883091583693023549/00005 6250481368205936030/00003 6250481368205936030/00006 6250481368205936030/00001 6250481368205936030/00004 6116179458846928119/00003 6116179458846928119/00032 6116179458846928119/00010 6116179458846928119/00030 6116179458846928119/00001 6116179458846928119/00018 6116179458846928119/00021 6116179458846928119/00014 6116179458846928119/00020 6116179458846928119/00019 6116179458846928119/00027 6116179458846928119/00002 6116179458846928119/00007 6116179458846928119/00005 5995139979001253305/00006 5995139979001253305/00010 5995139979001253305/00008 5995139979001253305/00004 5721282985783575654/00009 5721282985783575654/00010 5721282985783575654/00001 5721282985783575654/00011 5721282985783575654/00002 5721282985783575654/00008 5721282985783575654/00007 5721282985783575654/00005 5721282985783575654/00004 6309824072341293478/00009 6309824072341293478/00010 6309824072341293478/00001 6309824072341293478/00002 6309824072341293478/00008 6309824072341293478/00007 6309824072341293478/00005 6309824072341293478/00004 6358830508182123252/00029 6358830508182123252/00017 6358830508182123252/00005 5877482785901162118/00003 5877482785901162118/00006 5877482785901162118/00001 5877482785901162118/00005 5966639864515187027/00003 5966639864515187027/00001 5966639864515187027/00002 5966639864515187027/00007 5966639864515187027/00005 5966639864515187027/00004 5540815761450059421/00029 5540815761450059421/00003 5540815761450059421/00006 5540815761450059421/00032 5540815761450059421/00009 5540815761450059421/00030 5540815761450059421/00071 5540815761450059421/00058 5540815761450059421/00013 5540815761450059421/00069 5540815761450059421/00022 5540815761450059421/00026 5540815761450059421/00036 5540815761450059421/00001 5540815761450059421/00045 5540815761450059421/00023 5540815761450059421/00018 5540815761450059421/00037 5540815761450059421/00020 5540815761450059421/00035 5540815761450059421/00051 5540815761450059421/00019 5540815761450059421/00067 5540815761450059421/00034 5540815761450059421/00008 5540815761450059421/00040 5540815761450059421/00007 5540815761450059421/00068 5540815761450059421/00025 5540815761450059421/00043 5540815761450059421/00004 5966929774807666160/00003 5966929774807666160/00009 5966929774807666160/00010 5966929774807666160/00012 5966929774807666160/00017 5966929774807666160/00016 5966929774807666160/00019 5966929774807666160/00011 5966929774807666160/00002 5966929774807666160/00008 5966929774807666160/00007 5966929774807666160/00004 5874146884802361411/00003 5874146884802361411/00032 5874146884802361411/00009 5874146884802361411/00033 5874146884802361411/00024 5874146884802361411/00030 5874146884802361411/00031 5874146884802361411/00026 5874146884802361411/00044 5874146884802361411/00036 5874146884802361411/00045 5874146884802361411/00023 5874146884802361411/00041 5874146884802361411/00014 5874146884802361411/00037 5874146884802361411/00020 5874146884802361411/00016 5874146884802361411/00019 5874146884802361411/00011 5874146884802361411/00027 5874146884802361411/00034 5874146884802361411/00002 5874146884802361411/00007 5874146884802361411/00025 5874146884802361411/00028 6106515782431013260/00003 6106515782431013260/00001 6106515782431013260/00011 6106515782431013260/00007 6040622394175695764/00029 6040622394175695764/00003 6040622394175695764/00010 6040622394175695764/00033 6040622394175695764/00024 6040622394175695764/00023 6040622394175695764/00038 6040622394175695764/00012 6040622394175695764/00041 6040622394175695764/00037 6040622394175695764/00039 6040622394175695764/00020 6040622394175695764/00017 6040622394175695764/00011 6040622394175695764/00002 6040622394175695764/00040 6040622394175695764/00005 6080443183460617240/00003 6080443183460617240/00006 6080443183460617240/00009 6080443183460617240/00001 6080443183460617240/00004 6099109540825783451/00003 6099109540825783451/00009 6099109540825783451/00013 6099109540825783451/00007 6099109540825783451/00005 6002897978428092884/00029 6002897978428092884/00003 6002897978428092884/00006 6002897978428092884/00032 6002897978428092884/00009 6002897978428092884/00033 6002897978428092884/00024 6002897978428092884/00030 6002897978428092884/00031 6002897978428092884/00022 6002897978428092884/00026 6002897978428092884/00036 6002897978428092884/00023 6002897978428092884/00021 6002897978428092884/00011 6002897978428092884/00027 6002897978428092884/00034 6002897978428092884/00005 6002897978428092884/00004 6002897978428092884/00028 6210377111079529580/00006 6210377111079529580/00009 6210377111079529580/00033 6210377111079529580/00024 6210377111079529580/00013 6210377111079529580/00022 6210377111079529580/00026 6210377111079529580/00036 6210377111079529580/00023 6210377111079529580/00020 6210377111079529580/00017 6210377111079529580/00019 6210377111079529580/00004 5920157580954213902/00015 5920157580954213902/00003 5920157580954213902/00006 5920157580954213902/00009 5920157580954213902/00010 5920157580954213902/00013 5920157580954213902/00018 5920157580954213902/00012 5920157580954213902/00020 5920157580954213902/00017 5920157580954213902/00016 5920157580954213902/00019 5920157580954213902/00011 5920157580954213902/00002 5920157580954213902/00008 5920157580954213902/00007 5920157580954213902/00005 5704881794170345189/00029 5704881794170345189/00006 5704881794170345189/00032 5704881794170345189/00033 5704881794170345189/00030 5704881794170345189/00013 5704881794170345189/00036 5704881794170345189/00023 5704881794170345189/00042 5704881794170345189/00021 5704881794170345189/00014 5704881794170345189/00037 5704881794170345189/00035 5704881794170345189/00019 5704881794170345189/00040 5704881794170345189/00007 6111703243931095806/00006 6111703243931095806/00009 6111703243931095806/00010 6111703243931095806/00013 6111703243931095806/00001 6111703243931095806/00018 6111703243931095806/00012 6111703243931095806/00020 6111703243931095806/00017 6111703243931095806/00016 6111703243931095806/00011 6111703243931095806/00008 6111703243931095806/00007 6111703243931095806/00004 5973280742948329815/00006 5973280742948329815/00032 5973280742948329815/00009 5973280742948329815/00033 5973280742948329815/00031 5973280742948329815/00013 5973280742948329815/00022 5973280742948329815/00036 5973280742948329815/00038 5973280742948329815/00018 5973280742948329815/00014 5973280742948329815/00037 5973280742948329815/00020 5973280742948329815/00035 5973280742948329815/00019 5973280742948329815/00011 5973280742948329815/00027 5973280742948329815/00040 5973280742948329815/00007 5973280742948329815/00025 5973280742948329815/00004 5973280742948329815/00028 6074576687631033460/00015 6074576687631033460/00003 6074576687631033460/00006 6074576687631033460/00013 6074576687631033460/00022 6074576687631033460/00001 6074576687631033460/00014 6074576687631033460/00017 6074576687631033460/00016 6074576687631033460/00008 6074576687631033460/00007 6074576687631033460/00005 6074576687631033460/00004 6125812211498406425/00001 6125812211498406425/00002 6125812211498406425/00007 5857871965227705955/00003 5857871965227705955/00001 5857871965227705955/00005 5857871965227705955/00004 6311280066254641716/00006 6311280066254641716/00010 6311280066254641716/00013 6083083299857473677/00029 6083083299857473677/00015 6083083299857473677/00003 6083083299857473677/00033 6083083299857473677/00024 6083083299857473677/00030 6083083299857473677/00031 6083083299857473677/00013 6083083299857473677/00022 6083083299857473677/00026 6083083299857473677/00044 6083083299857473677/00036 6083083299857473677/00023 6083083299857473677/00038 6083083299857473677/00018 6083083299857473677/00042 6083083299857473677/00012 6083083299857473677/00021 6083083299857473677/00014 6083083299857473677/00037 6083083299857473677/00039 6083083299857473677/00017 6083083299857473677/00019 6083083299857473677/00011 6083083299857473677/00027 6083083299857473677/00034 6083083299857473677/00008 6083083299857473677/00025 6083083299857473677/00043 6083083299857473677/00005 6083083299857473677/00028 5992171297606255672/00003 5992171297606255672/00009 5992171297606255672/00010 5992171297606255672/00022 5992171297606255672/00001 5992171297606255672/00020 5992171297606255672/00016 5992171297606255672/00011 5992171297606255672/00004 6177006503679867997/00009 6177006503679867997/00001 6177006503679867997/00023 6177006503679867997/00021 6177006503679867997/00020 6177006503679867997/00016 6177006503679867997/00019 6177006503679867997/00011 6177006503679867997/00002 6177006503679867997/00008 6177006503679867997/00004 6222510823187538064/00060 6222510823187538064/00029 6222510823187538064/00003 6222510823187538064/00006 6222510823187538064/00098 6222510823187538064/00056 6222510823187538064/00032 6222510823187538064/00070 6222510823187538064/00009 6222510823187538064/00090 6222510823187538064/00073 6222510823187538064/00053 6222510823187538064/00078 6222510823187538064/00030 6222510823187538064/00031 6222510823187538064/00086 6222510823187538064/00013 6222510823187538064/00069 6222510823187538064/00026 6222510823187538064/00044 6222510823187538064/00099 6222510823187538064/00066 6222510823187538064/00064 6222510823187538064/00038 6222510823187538064/00088 6222510823187538064/00048 6222510823187538064/00085 6222510823187538064/00042 6222510823187538064/00012 6222510823187538064/00061 6222510823187538064/00075 6222510823187538064/00079 6222510823187538064/00020 6222510823187538064/00017 6222510823187538064/00076 6222510823187538064/00091 6222510823187538064/00019 6222510823187538064/00011 6222510823187538064/00034 6222510823187538064/00002 6222510823187538064/00089 6222510823187538064/00087 6222510823187538064/00040 6222510823187538064/00007 6222510823187538064/00097 6222510823187538064/00054 6222510823187538064/00043 6222510823187538064/00005 6222510823187538064/00074 6222510823187538064/00004 6222510823187538064/00028 5876107966869710820/00006 5876107966869710820/00009 5876107966869710820/00001 5876107966869710820/00012 5876107966869710820/00020 5876107966869710820/00017 5876107966869710820/00002 5876107966869710820/00007 5876107966869710820/00025 5876107966869710820/00004 6202240295537974209/00002 6247883771985313050/00015 6247883771985313050/00003 6247883771985313050/00006 6247883771985313050/00012 6247883771985313050/00004 6213964267765219950/00003 6213964267765219950/00006 6213964267765219950/00046 6213964267765219950/00009 6213964267765219950/00024 6213964267765219950/00030 6213964267765219950/00031 6213964267765219950/00022 6213964267765219950/00026 6213964267765219950/00044 6213964267765219950/00045 6213964267765219950/00023 6213964267765219950/00048 6213964267765219950/00018 6213964267765219950/00042 6213964267765219950/00041 6213964267765219950/00021 6213964267765219950/00014 6213964267765219950/00047 6213964267765219950/00039 6213964267765219950/00020 6213964267765219950/00019 6213964267765219950/00027 6213964267765219950/00034 6213964267765219950/00002 6213964267765219950/00007 6213964267765219950/00043 6213964267765219950/00005 6213964267765219950/00004 6213964267765219950/00028 6072576950858015715/00029 6072576950858015715/00003 6072576950858015715/00107 6072576950858015715/00032 6072576950858015715/00113 6072576950858015715/00070 6072576950858015715/00009 6072576950858015715/00073 6072576950858015715/00112 6072576950858015715/00010 6072576950858015715/00033 6072576950858015715/00024 6072576950858015715/00053 6072576950858015715/00116 6072576950858015715/00062 6072576950858015715/00013 6072576950858015715/00022 6072576950858015715/00096 6072576950858015715/00094 6072576950858015715/00077 6072576950858015715/00093 6072576950858015715/00036 6072576950858015715/00117 6072576950858015715/00063 6072576950858015715/00001 6072576950858015715/00023 6072576950858015715/00114 6072576950858015715/00048 6072576950858015715/00065 6072576950858015715/00061 6072576950858015715/00021 6072576950858015715/00075 6072576950858015715/00037 6072576950858015715/00101 6072576950858015715/00020 6072576950858015715/00035 6072576950858015715/00051 6072576950858015715/00052 6072576950858015715/00055 6072576950858015715/00016 6072576950858015715/00095 6072576950858015715/00111 6072576950858015715/00011 6072576950858015715/00027 6072576950858015715/00067 6072576950858015715/00115 6072576950858015715/00034 6072576950858015715/00100 6072576950858015715/00002 6072576950858015715/00089 6072576950858015715/00008 6072576950858015715/00007 6072576950858015715/00102 6072576950858015715/00068 6072576950858015715/00097 6072576950858015715/00025 6072576950858015715/00054 6072576950858015715/00074 6072576950858015715/00004 6072576950858015715/00028 5958143560340715925/00060 5958143560340715925/00029 5958143560340715925/00015 5958143560340715925/00003 5958143560340715925/00006 5958143560340715925/00032 5958143560340715925/00009 5958143560340715925/00073 5958143560340715925/00033 5958143560340715925/00057 5958143560340715925/00024 5958143560340715925/00053 5958143560340715925/00030 5958143560340715925/00071 5958143560340715925/00058 5958143560340715925/00062 5958143560340715925/00086 5958143560340715925/00069 5958143560340715925/00022 5958143560340715925/00026 5958143560340715925/00044 5958143560340715925/00077 5958143560340715925/00036 5958143560340715925/00001 5958143560340715925/00045 5958143560340715925/00066 5958143560340715925/00064 5958143560340715925/00072 5958143560340715925/00023 5958143560340715925/00038 5958143560340715925/00088 5958143560340715925/00018 5958143560340715925/00085 5958143560340715925/00065 5958143560340715925/00061 5958143560340715925/00021 5958143560340715925/00079 5958143560340715925/00014 5958143560340715925/00037 5958143560340715925/00039 5958143560340715925/00035 5958143560340715925/00051 5958143560340715925/00017 5958143560340715925/00076 5958143560340715925/00080 5958143560340715925/00052 5958143560340715925/00055 5958143560340715925/00016 5958143560340715925/00059 5958143560340715925/00019 5958143560340715925/00011 5958143560340715925/00084 5958143560340715925/00034 5958143560340715925/00002 5958143560340715925/00008 5958143560340715925/00087 5958143560340715925/00040 5958143560340715925/00007 5958143560340715925/00068 5958143560340715925/00025 5958143560340715925/00043 5958143560340715925/00005 5958143560340715925/00074 5958143560340715925/00004 6352815835980800496/00002 6352815835980800496/00007 6352815835980800496/00005 6128313170954935784/00002 6228784481916744372/00006 6228784481916744372/00022 6228784481916744372/00001 6228784481916744372/00018 6228784481916744372/00012 6228784481916744372/00021 6228784481916744372/00014 6228784481916744372/00017 6228784481916744372/00019 6228784481916744372/00008 6228784481916744372/00007 6228784481916744372/00025 5937188844269852601/00003 5937188844269852601/00006 5937188844269852601/00009 5937188844269852601/00010 5937188844269852601/00008 5937188844269852601/00007 6257191825109213004/00029 6257191825109213004/00009 6257191825109213004/00033 6257191825109213004/00031 6257191825109213004/00013 6257191825109213004/00026 6257191825109213004/00001 6257191825109213004/00023 6257191825109213004/00012 6257191825109213004/00041 6257191825109213004/00039 6257191825109213004/00017 6257191825109213004/00016 6257191825109213004/00002 6257191825109213004/00008 6257191825109213004/00025 6257191825109213004/00004 5551252531979345820/00009 5551252531979345820/00010 5551252531979345820/00013 5551252531979345820/00026 5551252531979345820/00018 5551252531979345820/00021 5551252531979345820/00014 5551252531979345820/00017 5551252531979345820/00016 5551252531979345820/00019 5551252531979345820/00011 5551252531979345820/00008 5551252531979345820/00007 5551252531979345820/00025 5551252531979345820/00004 5551252531979345820/00028 6120551306057528531/00003 6120551306057528531/00031 6120551306057528531/00022 6120551306057528531/00012 6120551306057528531/00017 6120551306057528531/00019 6120551306057528531/00027 6120551306057528531/00005 5989229674505225129/00009 5989229674505225129/00010 5989229674505225129/00001 5989229674505225129/00008 5989229674505225129/00007 5989229674505225129/00004 6167903320495927482/00015 6167903320495927482/00003 6167903320495927482/00006 6167903320495927482/00024 6167903320495927482/00022 6167903320495927482/00001 6167903320495927482/00018 6167903320495927482/00012 6167903320495927482/00014 6167903320495927482/00020 6167903320495927482/00017 6167903320495927482/00019 6167903320495927482/00011 6167903320495927482/00002 6167903320495927482/00007 6167903320495927482/00005 6167903320495927482/00004 6189221390669638992/00003 6189221390669638992/00006 6189221390669638992/00009 6189221390669638992/00013 6189221390669638992/00001 6189221390669638992/00018 6189221390669638992/00012 6189221390669638992/00016 6189221390669638992/00019 6189221390669638992/00011 6189221390669638992/00002 6189221390669638992/00005 6189221390669638992/00004 6318761040290818803/00009 6318761040290818803/00024 6318761040290818803/00013 6318761040290818803/00022 6318761040290818803/00026 6318761040290818803/00023 6318761040290818803/00012 6318761040290818803/00021 6318761040290818803/00019 6079758995170304650/00001 5992979180954701778/00015 5992979180954701778/00009 5992979180954701778/00013 5992979180954701778/00012 5992979180954701778/00014 5992979180954701778/00016 5992979180954701778/00011 6224876491174173375/00009 6224876491174173375/00024 6224876491174173375/00001 6224876491174173375/00023 6224876491174173375/00011 6224876491174173375/00008 6254482130242226889/00003 6254482130242226889/00009 6254482130242226889/00002 6254482130242226889/00007 6254482130242226889/00005 6254482130242226889/00004 6225252730309307418/00015 6225252730309307418/00009 6225252730309307418/00013 6225252730309307418/00008 6225252730309307418/00004 6337531765361335111/00029 6337531765361335111/00073 6337531765361335111/00069 6337531765361335111/00022 6337531765361335111/00018 6337531765361335111/00037 6337531765361335111/00019 6337531765361335111/00008 6363283530274620169/00012 6363283530274620169/00014 6363283530274620169/00005 6212213209598639777/00015 6212213209598639777/00003 6212213209598639777/00009 6212213209598639777/00010 6212213209598639777/00024 6212213209598639777/00013 6212213209598639777/00026 6212213209598639777/00001 6212213209598639777/00018 6212213209598639777/00012 6212213209598639777/00021 6212213209598639777/00020 6212213209598639777/00017 6212213209598639777/00016 6212213209598639777/00019 6212213209598639777/00011 6212213209598639777/00008 6212213209598639777/00007 6212213209598639777/00005 6212213209598639777/00004 6084196555380596880/00029 6084196555380596880/00015 6084196555380596880/00003 6084196555380596880/00031 6084196555380596880/00014 6084196555380596880/00016 6084196555380596880/00004 6084196555380596880/00028 6099836249292262213/00009 6099836249292262213/00001 6099836249292262213/00004 6173682199123196609/00029 6173682199123196609/00015 6173682199123196609/00003 6173682199123196609/00006 6173682199123196609/00056 6173682199123196609/00032 6173682199123196609/00010 6173682199123196609/00033 6173682199123196609/00024 6173682199123196609/00053 6173682199123196609/00031 6173682199123196609/00013 6173682199123196609/00026 6173682199123196609/00044 6173682199123196609/00050 6173682199123196609/00036 6173682199123196609/00001 6173682199123196609/00045 6173682199123196609/00049 6173682199123196609/00023 6173682199123196609/00038 6173682199123196609/00048 6173682199123196609/00018 6173682199123196609/00042 6173682199123196609/00012 6173682199123196609/00041 6173682199123196609/00021 6173682199123196609/00037 6173682199123196609/00039 6173682199123196609/00020 6173682199123196609/00035 6173682199123196609/00051 6173682199123196609/00017 6173682199123196609/00052 6173682199123196609/00055 6173682199123196609/00016 6173682199123196609/00019 6173682199123196609/00011 6173682199123196609/00027 6173682199123196609/00034 6173682199123196609/00002 6173682199123196609/00040 6173682199123196609/00025 6173682199123196609/00054 6173682199123196609/00043 6173682199123196609/00005 6173682199123196609/00004 6173682199123196609/00028 5855193194125180298/00003 5855193194125180298/00006 5855193194125180298/00007 5855193194125180298/00004 6108699773300934952/00015 6108699773300934952/00009 6108699773300934952/00012 6108699773300934952/00014 6108699773300934952/00011 6108699773300934952/00002 6108699773300934952/00008 6230349997496109662/00024 6230349997496109662/00023 6230349997496109662/00021 6230349997496109662/00020 6230349997496109662/00017 6230349997496109662/00016 6230349997496109662/00027 6230349997496109662/00002 6230349997496109662/00004 6224520867882064553/00002 6224520867882064553/00004 5988881782154250657/00001 6252715610193380046/00029 6252715610193380046/00015 6252715610193380046/00010 6252715610193380046/00013 6252715610193380046/00022 6252715610193380046/00001 6252715610193380046/00027 6252715610193380046/00004 6252715610193380046/00028 6358111530656837102/00002 6356998275133646895/00005 6356998275133646895/00004 6205935685398735145/00015 6205935685398735145/00003 6205935685398735145/00006 6205935685398735145/00009 6205935685398735145/00010 6205935685398735145/00013 6205935685398735145/00001 6205935685398735145/00023 6205935685398735145/00018 6205935685398735145/00012 6205935685398735145/00014 6205935685398735145/00020 6205935685398735145/00017 6205935685398735145/00016 6205935685398735145/00019 6205935685398735145/00008 6205935685398735145/00007 6205935685398735145/00005 5952489665261833803/00015 5952489665261833803/00003 5952489665261833803/00006 5952489665261833803/00032 5952489665261833803/00009 5952489665261833803/00010 5952489665261833803/00030 5952489665261833803/00031 5952489665261833803/00013 5952489665261833803/00023 5952489665261833803/00012 5952489665261833803/00021 5952489665261833803/00037 5952489665261833803/00016 5952489665261833803/00034 5952489665261833803/00008 5952489665261833803/00007 5952489665261833803/00025 5952489665261833803/00004 6038112415287913216/00003 6038112415287913216/00006 6038112415287913216/00046 6038112415287913216/00032 6038112415287913216/00009 6038112415287913216/00073 6038112415287913216/00010 6038112415287913216/00033 6038112415287913216/00030 6038112415287913216/00071 6038112415287913216/00031 6038112415287913216/00086 6038112415287913216/00022 6038112415287913216/00077 6038112415287913216/00001 6038112415287913216/00045 6038112415287913216/00064 6038112415287913216/00072 6038112415287913216/00038 6038112415287913216/00048 6038112415287913216/00085 6038112415287913216/00041 6038112415287913216/00065 6038112415287913216/00083 6038112415287913216/00021 6038112415287913216/00075 6038112415287913216/00079 6038112415287913216/00014 6038112415287913216/00039 6038112415287913216/00051 6038112415287913216/00017 6038112415287913216/00076 6038112415287913216/00016 6038112415287913216/00084 6038112415287913216/00027 6038112415287913216/00034 6038112415287913216/00008 6038112415287913216/00087 6038112415287913216/00040 6038112415287913216/00007 6038112415287913216/00068 6038112415287913216/00025 6038112415287913216/00054 6038112415287913216/00005 6038112415287913216/00074 6038112415287913216/00028 6127675368311478507/00011 6127675368311478507/00002 6127675368311478507/00008 5879744086182570414/00029 5879744086182570414/00003 5879744086182570414/00009 5879744086182570414/00010 5879744086182570414/00024 5879744086182570414/00030 5879744086182570414/00031 5879744086182570414/00013 5879744086182570414/00022 5879744086182570414/00001 5879744086182570414/00023 5879744086182570414/00012 5879744086182570414/00014 5879744086182570414/00020 5879744086182570414/00019 5879744086182570414/00027 5879744086182570414/00008 5879744086182570414/00007 5879744086182570414/00025 5879744086182570414/00028 6105765881141132577/00003 6105765881141132577/00006 6105765881141132577/00010 6105765881141132577/00001 6105765881141132577/00002 6105765881141132577/00004 6217470249569594159/00006 6217470249569594159/00012 6217470249569594159/00017 6217470249569594159/00016 6217470249569594159/00002 6217470249569594159/00008 6217470249569594159/00007 6217470249569594159/00005 6217470249569594159/00004 5985901504347550845/00003 5985901504347550845/00009 5985901504347550845/00001 5985901504347550845/00020 5985901504347550845/00011 5985901504347550845/00005 5694224691818767962/00003 5694224691818767962/00009 5694224691818767962/00010 5694224691818767962/00001 5694224691818767962/00018 5694224691818767962/00014 5694224691818767962/00019 5694224691818767962/00011 5694224691818767962/00002 5694224691818767962/00008 5694224691818767962/00004 5932832458941449442/00015 5932832458941449442/00006 5932832458941449442/00010 5932832458941449442/00013 5932832458941449442/00001 5932832458941449442/00012 5932832458941449442/00014 5932832458941449442/00017 5932832458941449442/00016 5932832458941449442/00011 6388126909604862142/00032 6388126909604862142/00033 6388126909604862142/00013 6388126909604862142/00022 6388126909604862142/00038 6388126909604862142/00020 6388126909604862142/00035 6388126909604862142/00007 6020393098211539634/00003 6020393098211539634/00007 5922782235468799718/00015 5922782235468799718/00003 5922782235468799718/00010 5922782235468799718/00022 5922782235468799718/00012 5922782235468799718/00021 5922782235468799718/00014 5922782235468799718/00016 5922782235468799718/00011 5922782235468799718/00002 5922782235468799718/00008 5922782235468799718/00007 5922782235468799718/00025 5922782235468799718/00004 5961108376134728996/00015 5961108376134728996/00006 5961108376134728996/00009 5961108376134728996/00010 5961108376134728996/00013 5961108376134728996/00001 5961108376134728996/00018 5961108376134728996/00012 5961108376134728996/00017 5961108376134728996/00016 5961108376134728996/00019 5961108376134728996/00011 5961108376134728996/00002 5961108376134728996/00008 5961108376134728996/00007 5961108376134728996/00005 5961108376134728996/00004 5547541680235599469/00006 5547541680235599469/00009 5547541680235599469/00001 6212622949478610282/00029 6212622949478610282/00032 6212622949478610282/00001 6212622949478610282/00035 6212622949478610282/00027 6212622949478610282/00034 5558674235466841580/00003 5558674235466841580/00001 5558674235466841580/00008 5558674235466841580/00005 5674823895046013655/00015 5674823895046013655/00003 5674823895046013655/00006 5674823895046013655/00009 5674823895046013655/00001 5674823895046013655/00021 5674823895046013655/00014 5674823895046013655/00008 5674823895046013655/00005 6354346562325159922/00029 6354346562325159922/00032 6354346562325159922/00021 6354346562325159922/00052 6354346562325159922/00011 6354346562325159922/00040 6354346562325159922/00004 5726954919594682290/00029 5726954919594682290/00003 5726954919594682290/00032 5726954919594682290/00001 5726954919594682290/00014 5726954919594682290/00020 5726954919594682290/00017 5726954919594682290/00016 5726954919594682290/00019 5726954919594682290/00008 5726954919594682290/00005 5726954919594682290/00028 5927977427910045873/00015 5927977427910045873/00006 5927977427910045873/00010 5927977427910045873/00005 5927977427910045873/00004 5961788698954417041/00015 5961788698954417041/00003 5961788698954417041/00006 5961788698954417041/00046 5961788698954417041/00009 5961788698954417041/00010 5961788698954417041/00033 5961788698954417041/00024 5961788698954417041/00030 5961788698954417041/00031 5961788698954417041/00022 5961788698954417041/00026 5961788698954417041/00044 5961788698954417041/00050 5961788698954417041/00001 5961788698954417041/00049 5961788698954417041/00038 5961788698954417041/00018 5961788698954417041/00042 5961788698954417041/00012 5961788698954417041/00041 5961788698954417041/00021 5961788698954417041/00014 5961788698954417041/00047 5961788698954417041/00051 5961788698954417041/00017 5961788698954417041/00016 5961788698954417041/00019 5961788698954417041/00027 5961788698954417041/00034 5961788698954417041/00008 5961788698954417041/00007 5961788698954417041/00025 5961788698954417041/00043 5961788698954417041/00005 5961788698954417041/00028 5993342535187874970/00006 5993342535187874970/00009 5993342535187874970/00024 5993342535187874970/00013 5993342535187874970/00022 5993342535187874970/00026 5993342535187874970/00001 5993342535187874970/00023 5993342535187874970/00018 5993342535187874970/00012 5993342535187874970/00021 5993342535187874970/00020 5993342535187874970/00016 5993342535187874970/00019 5993342535187874970/00011 5993342535187874970/00002 5993342535187874970/00007 5993342535187874970/00025 6214478375350548417/00015 6214478375350548417/00056 6214478375350548417/00009 6214478375350548417/00058 6214478375350548417/00044 6214478375350548417/00050 6214478375350548417/00036 6214478375350548417/00001 6214478375350548417/00023 6214478375350548417/00012 6214478375350548417/00041 6214478375350548417/00039 6214478375350548417/00020 6214478375350548417/00035 6214478375350548417/00051 6214478375350548417/00019 6214478375350548417/00011 6214478375350548417/00034 6214478375350548417/00002 6214478375350548417/00025 6316163444070195447/00001 6316163444070195447/00008 6316163444070195447/00007 6247187987284084461/00029 6247187987284084461/00010 6247187987284084461/00033 6247187987284084461/00013 6247187987284084461/00036 6247187987284084461/00001 6247187987284084461/00049 6247187987284084461/00023 6247187987284084461/00038 6247187987284084461/00048 6247187987284084461/00042 6247187987284084461/00012 6247187987284084461/00041 6247187987284084461/00061 6247187987284084461/00051 6247187987284084461/00017 6247187987284084461/00052 6247187987284084461/00016 6247187987284084461/00011 6247187987284084461/00040 6247187987284084461/00054 6247187987284084461/00043 5551822044642795487/00029 5551822044642795487/00003 5551822044642795487/00006 5551822044642795487/00046 5551822044642795487/00032 5551822044642795487/00009 5551822044642795487/00010 5551822044642795487/00033 5551822044642795487/00053 5551822044642795487/00031 5551822044642795487/00013 5551822044642795487/00022 5551822044642795487/00026 5551822044642795487/00044 5551822044642795487/00050 5551822044642795487/00036 5551822044642795487/00045 5551822044642795487/00049 5551822044642795487/00023 5551822044642795487/00038 5551822044642795487/00048 5551822044642795487/00018 5551822044642795487/00042 5551822044642795487/00012 5551822044642795487/00041 5551822044642795487/00021 5551822044642795487/00014 5551822044642795487/00037 5551822044642795487/00047 5551822044642795487/00039 5551822044642795487/00020 5551822044642795487/00051 5551822044642795487/00017 5551822044642795487/00052 5551822044642795487/00055 5551822044642795487/00016 5551822044642795487/00019 5551822044642795487/00011 5551822044642795487/00027 5551822044642795487/00034 5551822044642795487/00002 5551822044642795487/00008 5551822044642795487/00040 5551822044642795487/00007 5551822044642795487/00025 5551822044642795487/00054 5551822044642795487/00043 5551822044642795487/00005 5551822044642795487/00004 5551822044642795487/00028 5546420693771341678/00015 5546420693771341678/00046 5546420693771341678/00032 5546420693771341678/00009 5546420693771341678/00010 5546420693771341678/00033 5546420693771341678/00024 5546420693771341678/00030 5546420693771341678/00026 5546420693771341678/00036 5546420693771341678/00023 5546420693771341678/00038 5546420693771341678/00042 5546420693771341678/00014 5546420693771341678/00037 5546420693771341678/00035 5546420693771341678/00016 5546420693771341678/00025 5546420693771341678/00043 5951350639934936398/00015 5951350639934936398/00003 5951350639934936398/00006 5951350639934936398/00010 5951350639934936398/00001 5951350639934936398/00021 5951350639934936398/00014 5951350639934936398/00020 5951350639934936398/00017 5951350639934936398/00019 5951350639934936398/00011 5951350639934936398/00007 5951350639934936398/00005 5951350639934936398/00004 5886052534146876085/00002 5540444676275685005/00029 5540444676275685005/00003 5540444676275685005/00006 5540444676275685005/00032 5540444676275685005/00009 5540444676275685005/00010 5540444676275685005/00033 5540444676275685005/00024 5540444676275685005/00013 5540444676275685005/00026 5540444676275685005/00036 5540444676275685005/00001 5540444676275685005/00023 5540444676275685005/00018 5540444676275685005/00014 5540444676275685005/00017 5540444676275685005/00016 5540444676275685005/00027 5540444676275685005/00002 5540444676275685005/00008 5540444676275685005/00040 5540444676275685005/00007 5540444676275685005/00025 5540444676275685005/00004 5540444676275685005/00028 6291656360679231767/00015 6291656360679231767/00003 6291656360679231767/00006 6291656360679231767/00010 6291656360679231767/00001 6291656360679231767/00018 6291656360679231767/00016 6291656360679231767/00002 5925352773395457907/00006 5925352773395457907/00009 5925352773395457907/00010 5925352773395457907/00033 5925352773395457907/00024 5925352773395457907/00030 5925352773395457907/00031 5925352773395457907/00013 5925352773395457907/00022 5925352773395457907/00026 5925352773395457907/00036 5925352773395457907/00001 5925352773395457907/00023 5925352773395457907/00018 5925352773395457907/00012 5925352773395457907/00021 5925352773395457907/00037 5925352773395457907/00020 5925352773395457907/00035 5925352773395457907/00017 5925352773395457907/00019 5925352773395457907/00011 5925352773395457907/00027 5925352773395457907/00034 5925352773395457907/00008 5925352773395457907/00007 5925352773395457907/00025 5925352773395457907/00005 5925352773395457907/00004 5925352773395457907/00028 6333604447265869137/00003 6333604447265869137/00005 5993311611423343767/00029 5993311611423343767/00003 5993311611423343767/00032 5993311611423343767/00009 5993311611423343767/00010 5993311611423343767/00033 5993311611423343767/00024 5993311611423343767/00031 5993311611423343767/00022 5993311611423343767/00026 5993311611423343767/00001 5993311611423343767/00023 5993311611423343767/00018 5993311611423343767/00021 5993311611423343767/00014 5993311611423343767/00020 5993311611423343767/00017 5993311611423343767/00019 5993311611423343767/00011 5993311611423343767/00027 5993311611423343767/00002 5993311611423343767/00008 5993311611423343767/00007 5993311611423343767/00025 5993311611423343767/00005 5993311611423343767/00004 5993311611423343767/00028 5587989964242415540/00006 5587989964242415540/00009 5587989964242415540/00010 5587989964242415540/00013 5587989964242415540/00008 5587989964242415540/00005 5587989964242415540/00004 5901290219119693158/00009 5901290219119693158/00010 5901290219119693158/00008 6227860634451435901/00015 6227860634451435901/00006 6227860634451435901/00032 6227860634451435901/00010 6227860634451435901/00033 6227860634451435901/00024 6227860634451435901/00030 6227860634451435901/00031 6227860634451435901/00013 6227860634451435901/00026 6227860634451435901/00036 6227860634451435901/00018 6227860634451435901/00014 6227860634451435901/00039 6227860634451435901/00020 6227860634451435901/00017 6227860634451435901/00019 6227860634451435901/00027 6227860634451435901/00040 6227860634451435901/00005 6227860634451435901/00004 6347271462698456331/00003 6347271462698456331/00006 6347271462698456331/00026 6347271462698456331/00005 6347271462698456331/00028 5949469444259224397/00003 5949469444259224397/00006 5949469444259224397/00056 5949469444259224397/00032 5949469444259224397/00010 5949469444259224397/00058 5949469444259224397/00013 5949469444259224397/00044 5949469444259224397/00063 5949469444259224397/00045 5949469444259224397/00066 5949469444259224397/00064 5949469444259224397/00049 5949469444259224397/00012 5949469444259224397/00041 5949469444259224397/00061 5949469444259224397/00037 5949469444259224397/00047 5949469444259224397/00020 5949469444259224397/00017 5949469444259224397/00052 5949469444259224397/00016 5949469444259224397/00011 5949469444259224397/00067 5949469444259224397/00034 5949469444259224397/00008 5949469444259224397/00040 5949469444259224397/00025 5949469444259224397/00054 5949469444259224397/00004 6263863627306822793/00010 6263863627306822793/00033 6263863627306822793/00013 6263863627306822793/00018 6263863627306822793/00014 6263863627306822793/00005 6263863627306822793/00028 6226414948460245755/00003 6226414948460245755/00006 6226414948460245755/00023 6226414948460245755/00018 6226414948460245755/00012 6226414948460245755/00017 6226414948460245755/00019 6226414948460245755/00007 6226414948460245755/00004 5941011794659962595/00060 5941011794659962595/00029 5941011794659962595/00015 5941011794659962595/00006 5941011794659962595/00098 5941011794659962595/00046 5941011794659962595/00056 5941011794659962595/00070 5941011794659962595/00033 5941011794659962595/00053 5941011794659962595/00030 5941011794659962595/00071 5941011794659962595/00069 5941011794659962595/00096 5941011794659962595/00094 5941011794659962595/00099 5941011794659962595/00093 5941011794659962595/00103 5941011794659962595/00050 5941011794659962595/00036 5941011794659962595/00049 5941011794659962595/00072 5941011794659962595/00038 5941011794659962595/00088 5941011794659962595/00018 5941011794659962595/00042 5941011794659962595/00065 5941011794659962595/00075 5941011794659962595/00079 5941011794659962595/00039 5941011794659962595/00035 5941011794659962595/00051 5941011794659962595/00017 5941011794659962595/00076 5941011794659962595/00091 5941011794659962595/00016 5941011794659962595/00095 5941011794659962595/00059 5941011794659962595/00067 5941011794659962595/00034 5941011794659962595/00100 5941011794659962595/00089 5941011794659962595/00092 5941011794659962595/00087 5941011794659962595/00102 5941011794659962595/00054 5941011794659962595/00074 5941011794659962595/00004 5999241243272211118/00003 5999241243272211118/00001 5999241243272211118/00002 5999241243272211118/00005 5999241243272211118/00004 5966724904868353490/00006 5966724904868353490/00005 6111643973382348129/00006 6111643973382348129/00009 6111643973382348129/00010 6111643973382348129/00001 6111643973382348129/00014 6111643973382348129/00017 6111643973382348129/00008 6111643973382348129/00005 5536266102593401990/00010 5536266102593401990/00012 5536266102593401990/00011 5536266102593401990/00002 6225908571815403760/00015 6225908571815403760/00003 6225908571815403760/00006 6225908571815403760/00009 6225908571815403760/00010 6225908571815403760/00018 6225908571815403760/00012 6225908571815403760/00021 6225908571815403760/00011 6225908571815403760/00007 6225908571815403760/00004 6118028442267921950/00029 6118028442267921950/00010 6118028442267921950/00033 6118028442267921950/00030 6118028442267921950/00022 6118028442267921950/00023 6118028442267921950/00038 6118028442267921950/00042 6118028442267921950/00021 6118028442267921950/00037 6118028442267921950/00020 6118028442267921950/00017 6118028442267921950/00019 6118028442267921950/00027 6118028442267921950/00002 6118028442267921950/00008 6118028442267921950/00025 6118028442267921950/00005 6367744283308252235/00011 6191463363598214340/00029 6191463363598214340/00003 6191463363598214340/00009 6191463363598214340/00010 6191463363598214340/00024 6191463363598214340/00030 6191463363598214340/00031 6191463363598214340/00026 6191463363598214340/00044 6191463363598214340/00001 6191463363598214340/00045 6191463363598214340/00023 6191463363598214340/00048 6191463363598214340/00018 6191463363598214340/00042 6191463363598214340/00012 6191463363598214340/00041 6191463363598214340/00021 6191463363598214340/00014 6191463363598214340/00039 6191463363598214340/00020 6191463363598214340/00016 6191463363598214340/00019 6191463363598214340/00011 6191463363598214340/00027 6191463363598214340/00034 6191463363598214340/00007 6191463363598214340/00025 6191463363598214340/00043 6191463363598214340/00005 5537693749722594824/00015 5537693749722594824/00006 5537693749722594824/00010 5537693749722594824/00013 5537693749722594824/00001 5537693749722594824/00012 5537693749722594824/00020 5537693749722594824/00008 5537693749722594824/00005 6251973439844631190/00003 6251973439844631190/00013 6251973439844631190/00001 6251973439844631190/00002 6251973439844631190/00005 6150272909242586668/00003 6150272909242586668/00009 6150272909242586668/00010 6150272909242586668/00013 6150272909242586668/00001 6150272909242586668/00014 6150272909242586668/00002 6150272909242586668/00007 6150272909242586668/00005 6150272909242586668/00004 6216465227352090573/00003 6216465227352090573/00046 6216465227352090573/00032 6216465227352090573/00033 6216465227352090573/00024 6216465227352090573/00030 6216465227352090573/00031 6216465227352090573/00013 6216465227352090573/00036 6216465227352090573/00001 6216465227352090573/00045 6216465227352090573/00038 6216465227352090573/00042 6216465227352090573/00012 6216465227352090573/00037 6216465227352090573/00039 6216465227352090573/00016 6216465227352090573/00011 6216465227352090573/00034 6216465227352090573/00002 6216465227352090573/00043 6216465227352090573/00028 6122422193811670902/00015 6122422193811670902/00006 6122422193811670902/00009 6122422193811670902/00031 6122422193811670902/00013 6122422193811670902/00022 6122422193811670902/00023 6122422193811670902/00017 6122422193811670902/00016 6122422193811670902/00002 6122422193811670902/00008 6122422193811670902/00007 6122422193811670902/00005 6122422193811670902/00004 5971027173608050611/00015 5971027173608050611/00003 5971027173608050611/00009 5971027173608050611/00010 5971027173608050611/00024 5971027173608050611/00013 5971027173608050611/00001 5971027173608050611/00023 5971027173608050611/00025 5971027173608050611/00028 5565473598193115604/00006 5565473598193115604/00009 5565473598193115604/00013 5565473598193115604/00001 5565473598193115604/00012 5565473598193115604/00007 5565473598193115604/00004 6385106688602316013/00013 6385106688602316013/00026 6385106688602316013/00041 6385106688602316013/00040 6385106688602316013/00005 6385106688602316013/00004 6385106688602316013/00028 ================================================ FILE: filelists_mead/README.md ================================================ Place MEAD (and any other) filelists here for training. ================================================ FILE: filelists_mead/test.txt ================================================ 00001\00002 ================================================ FILE: filelists_mead/train.txt ================================================ mead/W009-023 mead/M028-012 mead/M013-039 mead/M009-025 mead/M028-028 mead/W014-031 mead/M035-016 mead/W019-014 mead/M033-015 mead/M042-069 mead/W009-038 mead/M012-029 mead/W018-018 mead/M033-012 mead/W040-047 mead/M027-011 mead/M028-006 mead/M032-031 mead/W035-070 mead/M042-034 mead/M007-014 mead/M042-071 mead/M030-034 mead/W026-071 mead/W037-075 mead/M037-039 mead/M005-008 mead/M031-022 mead/W021-029 mead/M027-016 mead/W036-020 mead/W035-009 mead/M026-020 mead/M035-017 mead/M024-032 mead/W025-061 mead/M030-007 mead/M032-038 mead/W021-040 mead/M029-017 mead/W018-006 mead/M005-039 mead/M030-013 mead/W026-077 mead/M039-048 mead/M026-017 mead/M042-015 mead/W025-057 mead/M027-017 mead/M035-036 mead/W024-013 mead/M032-015 mead/W016-026 mead/M022-040 mead/M022-010 mead/W028-013 mead/M019-016 mead/W040-015 mead/M028-014 mead/M042-022 mead/W036-057 mead/W036-040 mead/W025-047 mead/M024-035 mead/M019-029 mead/M024-019 mead/W016-018 mead/W019-013 mead/M024-020 mead/W019-031 mead/M009-014 mead/M005-038 mead/M037-019 mead/W019-019 mead/M040-009 mead/W035-019 mead/M012-018 mead/W019-024 mead/M040-071 mead/W029-063 mead/M025-010 mead/M040-029 mead/W040-039 mead/W024-063 mead/W033-019 mead/W033-027 mead/W028-047 mead/M027-022 mead/W011-019 mead/M033-040 mead/M031-032 mead/W026-042 mead/M026-024 mead/M030-030 mead/W014-024 mead/M033-019 mead/M028-010 mead/M005-037 mead/W011-020 mead/M032-014 mead/M007-039 mead/W033-020 mead/M007-020 mead/M042-064 mead/M026-031 mead/W035-034 mead/M029-020 mead/W014-009 mead/M025-029 mead/W029-009 mead/W009-019 mead/W033-077 mead/M025-018 mead/W011-009 mead/M012-028 mead/W026-057 mead/M011-024 mead/M031-010 mead/M013-036 mead/W021-020 mead/W024-022 mead/W036-047 mead/W040-009 mead/M039-014 mead/W014-027 mead/M009-008 mead/W038-071 mead/W014-016 mead/W016-034 mead/M026-016 mead/W029-034 mead/M003-029 mead/M007-034 mead/W038-048 mead/W033-039 mead/W024-041 mead/M011-039 mead/M041-049 mead/M031-035 mead/M024-033 mead/W040-042 mead/W014-040 mead/M026-032 mead/M019-011 mead/W018-033 mead/W009-026 mead/W018-015 mead/W037-022 mead/M042-075 mead/W037-027 mead/M012-035 mead/M033-018 mead/M011-010 mead/W037-019 mead/M022-009 mead/W015-009 mead/W040-061 mead/M039-056 mead/M009-019 mead/W016-022 mead/W029-075 mead/M034-032 mead/M019-008 mead/M040-021 mead/M037-013 mead/M030-012 mead/M012-012 mead/M034-006 mead/M019-021 mead/M028-026 mead/M030-027 mead/W016-020 mead/W028-064 mead/M039-077 mead/M030-009 mead/M041-048 mead/W024-056 mead/M032-020 mead/M031-014 mead/W018-030 mead/W038-029 mead/M037-062 mead/W014-015 mead/W038-049 mead/W024-027 mead/W025-069 mead/W019-021 mead/W016-012 mead/M035-015 mead/W015-023 mead/W038-056 mead/W040-071 mead/W011-018 mead/W019-037 mead/M028-035 mead/M026-019 mead/W009-027 mead/M028-020 mead/W037-009 mead/W023-042 mead/W037-014 mead/M035-037 mead/M013-008 mead/M026-022 mead/W015-013 mead/M013-040 mead/W018-035 mead/M026-027 mead/M037-071 mead/M029-025 mead/M022-021 mead/M034-030 mead/M013-015 mead/M033-013 mead/M031-027 mead/M034-010 mead/M005-017 mead/M019-031 mead/W014-014 mead/M022-025 mead/M032-040 mead/M024-008 mead/W029-022 mead/W024-069 mead/W014-033 mead/M037-020 mead/W026-020 mead/M007-023 mead/M027-036 mead/M007-024 mead/W029-077 mead/W024-050 mead/M025-009 mead/W015-036 mead/W037-057 mead/M041-022 mead/W021-035 mead/W016-011 mead/M012-019 mead/M012-038 mead/W036-021 mead/W028-063 mead/W038-034 mead/M031-015 mead/W021-015 mead/W023-056 mead/M031-018 mead/M035-013 mead/M024-015 mead/M007-018 mead/M011-016 mead/M040-028 mead/M030-038 mead/M031-031 mead/W040-064 mead/W019-022 mead/M011-013 mead/W018-012 mead/M033-011 mead/W025-040 mead/W009-016 mead/W037-021 mead/M026-033 mead/M026-034 mead/W009-036 mead/W014-013 mead/M037-064 mead/M041-057 mead/M011-006 mead/M037-040 mead/M005-011 mead/M029-012 mead/W015-006 mead/W025-035 mead/M032-007 mead/M025-011 mead/M041-055 mead/W011-014 mead/M026-007 mead/M035-032 mead/M012-031 mead/W023-049 mead/W021-076 mead/M028-011 mead/M037-069 mead/M019-034 mead/W029-035 mead/M040-050 mead/W015-011 mead/M024-038 mead/M039-070 mead/M025-014 mead/W019-011 mead/M033-024 mead/M013-010 mead/W021-048 mead/W023-019 mead/W040-019 mead/W028-057 mead/W016-027 mead/M030-025 mead/W033-040 mead/W038-061 mead/M031-026 mead/W028-056 mead/M035-020 mead/W015-028 mead/M019-007 mead/M024-037 mead/W036-056 mead/M037-047 mead/M040-035 mead/W033-055 mead/M026-008 mead/W016-019 mead/W040-041 mead/M030-040 mead/W024-009 mead/M034-036 mead/M022-030 mead/W025-042 mead/W021-022 mead/W026-055 mead/W023-028 mead/M034-015 mead/W021-041 mead/W037-028 mead/W035-049 mead/M031-029 mead/M019-019 mead/M029-019 mead/W024-070 mead/W021-021 mead/W014-037 mead/M027-034 mead/M026-010 mead/M035-038 mead/M024-010 mead/M033-026 mead/M028-007 mead/W023-070 mead/M030-021 mead/M034-008 mead/M005-035 mead/W026-035 mead/M029-010 mead/W026-056 mead/M027-023 mead/W033-041 mead/M011-033 mead/M037-009 mead/W009-012 mead/M013-009 mead/W009-011 mead/W009-010 mead/W029-013 mead/M028-022 mead/W011-023 mead/W036-077 mead/M019-024 mead/W033-034 mead/M007-027 mead/W035-028 mead/M025-024 mead/W024-048 mead/W035-076 mead/M034-037 mead/M040-040 mead/W024-033 mead/M042-063 mead/M025-030 mead/W014-010 mead/W038-042 mead/M013-037 mead/W024-076 mead/W009-009 mead/W016-037 mead/M003-033 mead/W015-026 mead/M025-035 mead/W014-020 mead/M039-021 mead/M003-019 mead/M005-031 mead/M028-034 mead/M019-012 mead/W028-075 mead/W038-047 mead/M042-021 mead/W036-034 mead/M039-034 mead/M025-025 mead/M007-007 mead/M042-047 mead/M035-023 mead/M026-036 mead/W015-015 mead/W036-063 mead/W011-038 mead/M031-034 mead/W040-069 mead/W028-014 mead/W011-029 mead/W040-055 mead/W014-034 mead/M025-016 mead/M030-011 mead/M005-024 mead/M011-021 mead/M011-022 mead/W040-070 mead/W028-019 mead/W015-021 mead/M013-028 mead/M025-020 mead/M022-031 mead/W033-061 mead/W009-031 mead/M033-032 mead/W009-013 mead/M003-022 mead/W035-022 mead/M037-022 mead/M019-010 mead/W024-039 mead/M013-020 mead/W026-019 mead/W037-042 mead/W026-069 mead/M024-028 mead/M041-035 mead/M024-039 mead/M032-009 mead/M039-057 mead/W036-049 mead/W023-027 mead/M039-062 mead/W011-032 mead/M041-070 mead/M030-019 mead/M041-042 mead/M007-033 mead/W023-009 mead/M027-007 mead/W025-048 mead/M011-029 mead/W023-055 mead/W021-047 mead/M040-039 mead/W036-015 mead/W009-028 mead/W018-017 mead/M030-010 mead/W019-030 mead/M022-019 mead/M027-024 mead/W038-070 mead/M027-040 mead/M007-040 mead/M042-020 mead/M013-021 mead/W025-029 mead/W038-040 mead/W023-063 mead/W025-014 mead/M024-011 mead/M025-013 mead/W036-028 mead/M029-029 mead/W037-055 mead/W037-077 mead/M032-032 mead/M033-014 mead/M029-027 mead/W036-042 mead/M003-028 mead/M027-039 mead/M003-015 mead/M024-017 mead/W038-014 mead/M009-024 mead/W038-022 mead/M007-006 mead/M039-049 mead/W023-057 mead/W018-010 mead/M039-022 mead/W024-028 mead/W023-029 mead/M034-009 mead/M012-007 mead/M027-020 mead/W016-032 mead/W036-050 mead/W011-028 mead/W024-042 mead/M012-006 mead/M013-007 mead/M028-016 mead/M003-018 mead/M033-036 mead/M012-011 mead/W040-029 mead/M033-033 mead/M024-014 mead/M041-040 mead/M007-032 mead/W021-070 mead/M012-010 mead/M033-027 mead/W016-014 mead/W035-071 mead/M041-028 mead/M032-025 mead/M031-030 mead/W029-071 mead/M005-027 mead/M025-032 mead/M032-028 mead/M024-018 mead/W015-034 mead/W040-033 mead/M037-050 mead/M028-037 mead/W025-022 mead/W035-027 mead/M011-028 mead/M041-041 mead/M028-031 mead/W040-075 mead/M027-013 mead/W023-050 mead/W014-019 mead/M042-048 mead/W018-037 mead/M003-021 mead/W016-007 mead/W026-050 mead/M042-055 mead/M039-019 mead/M024-040 mead/M034-039 mead/W011-012 mead/W016-039 mead/M037-021 mead/W011-006 mead/W040-048 mead/M012-034 mead/W029-061 mead/M024-031 mead/M034-017 mead/W035-048 mead/M041-075 mead/M031-025 mead/W024-015 mead/M011-035 mead/M039-069 mead/M026-018 mead/W018-031 mead/W036-076 mead/W011-033 mead/W025-071 mead/W033-047 mead/M024-036 mead/M005-026 mead/M029-037 mead/M039-063 mead/M041-039 mead/W023-021 mead/M028-019 mead/M042-035 mead/M009-010 mead/W029-056 mead/M040-033 mead/W033-028 mead/W028-021 mead/M029-006 mead/W025-076 mead/M041-050 mead/W035-035 mead/M031-037 mead/W009-040 mead/M031-008 mead/M029-016 mead/W035-069 mead/W028-033 mead/W025-013 mead/M037-034 mead/M032-024 mead/M009-036 mead/M031-007 mead/M040-057 mead/M012-026 mead/M012-036 mead/W025-075 mead/M003-037 mead/M031-033 mead/W009-029 mead/W014-006 mead/W011-007 mead/W019-040 mead/W023-075 mead/M033-030 mead/M005-010 mead/M005-036 mead/W029-029 mead/M026-028 mead/M032-011 mead/M009-006 mead/M034-018 mead/M032-033 mead/W015-030 mead/M026-015 mead/W026-041 mead/M041-034 mead/M012-016 mead/W035-075 mead/M024-013 mead/W025-039 mead/W014-007 mead/M040-034 mead/M025-040 mead/W021-075 mead/M042-019 mead/M019-026 mead/M033-038 mead/W011-035 mead/M030-017 mead/W040-013 mead/W018-008 mead/W028-015 mead/M037-042 mead/M009-030 mead/W029-041 mead/M034-033 mead/M041-061 mead/M022-022 mead/M040-048 mead/W038-013 mead/M027-031 mead/W009-039 mead/M032-036 mead/M012-022 mead/W018-019 mead/M007-029 mead/W015-033 mead/M030-008 mead/M019-027 mead/W036-048 mead/W037-034 mead/M027-012 mead/M040-070 mead/W018-026 mead/M025-012 mead/M005-032 mead/M013-023 mead/W037-071 mead/M019-033 mead/M032-037 mead/M037-041 mead/M022-011 mead/W035-041 mead/M033-008 mead/M034-035 mead/W015-016 mead/W009-025 mead/M028-038 mead/M013-038 mead/M012-024 mead/M024-012 mead/M003-009 mead/M028-023 mead/W024-029 mead/M035-033 mead/M013-006 mead/M034-028 mead/W029-019 mead/M026-040 mead/M042-027 mead/M035-018 mead/W021-014 mead/M019-015 mead/M025-017 mead/M029-039 mead/W037-015 mead/M032-016 mead/M022-039 mead/W033-015 mead/W015-022 mead/M037-049 mead/M022-029 mead/M019-018 mead/M030-023 mead/W028-062 mead/W021-056 mead/M022-007 mead/M033-039 mead/M022-023 mead/M031-020 mead/M007-031 mead/M005-014 mead/M012-039 mead/W026-063 mead/M007-021 mead/M042-062 mead/M026-030 mead/M009-011 mead/M033-035 mead/W015-025 mead/W037-050 mead/W033-071 mead/W018-024 mead/M025-021 mead/W029-057 mead/W028-048 mead/M009-031 mead/M003-025 mead/M024-006 mead/W029-021 mead/M042-013 mead/M029-033 mead/M011-040 mead/M040-075 mead/W033-056 mead/M032-030 mead/M028-025 mead/M026-023 mead/W029-047 mead/W019-027 mead/W019-034 mead/W023-061 mead/W024-055 mead/M034-019 mead/W011-040 mead/M026-011 mead/M031-023 mead/W009-034 mead/M032-010 mead/M041-009 mead/W023-041 mead/W011-017 mead/M037-077 mead/W037-062 mead/M030-016 mead/M037-033 mead/M005-019 mead/M011-008 mead/M007-035 mead/W026-062 mead/W036-069 mead/M039-020 mead/M030-006 mead/W009-014 mead/W015-024 mead/M032-029 mead/W025-055 mead/W015-014 mead/W038-057 mead/W018-021 mead/M033-006 mead/M030-037 mead/W035-062 mead/W021-061 mead/M009-021 mead/M037-075 mead/W023-015 mead/M037-015 mead/M027-021 mead/M013-022 mead/M003-031 mead/W040-077 mead/W033-050 mead/M025-028 mead/M009-023 mead/M037-048 mead/W016-010 mead/M040-013 mead/M013-033 mead/W026-022 mead/M035-024 mead/M012-009 mead/M033-025 mead/W033-076 mead/M028-017 mead/M007-030 mead/W014-022 mead/M037-014 mead/W025-019 mead/W021-033 mead/W021-069 mead/W016-015 mead/M013-035 mead/M030-022 mead/W014-017 mead/M005-015 mead/M012-037 mead/W028-042 mead/W028-027 mead/M013-018 mead/W018-011 mead/M035-029 mead/W036-041 mead/M003-010 mead/M035-040 mead/W019-028 mead/W018-020 mead/M041-071 mead/M022-013 mead/W028-034 mead/W018-040 mead/M028-033 mead/M040-049 mead/M027-015 mead/M042-042 mead/W037-013 mead/W033-062 mead/W040-021 mead/M032-018 mead/W033-033 mead/M035-007 mead/W033-048 mead/M031-016 mead/W021-027 mead/W023-064 mead/M031-019 mead/M022-017 mead/W009-033 mead/W035-064 mead/M026-038 mead/W025-021 mead/M009-037 mead/M025-034 mead/M027-035 mead/M013-016 mead/M005-022 mead/M030-018 mead/M003-030 mead/M041-021 mead/M034-014 mead/W014-008 mead/M039-015 mead/W033-014 mead/M024-009 mead/W023-022 mead/M019-037 mead/M012-021 mead/M024-025 mead/M030-032 mead/M040-077 mead/W040-050 mead/W026-040 mead/M039-027 mead/W029-050 mead/W021-019 mead/M032-026 mead/M007-012 mead/M032-006 mead/W026-070 mead/M034-034 mead/W037-063 mead/M028-018 mead/W015-038 mead/M025-019 mead/M042-050 mead/W025-050 mead/M013-029 mead/M022-027 mead/M042-049 mead/W036-019 mead/M011-030 mead/W029-014 mead/M032-017 mead/W028-050 mead/M019-009 mead/M012-013 mead/M009-020 mead/M029-030 mead/M039-076 mead/W029-027 mead/M027-037 mead/M033-007 mead/W015-032 mead/M033-021 mead/W016-013 mead/W038-064 mead/M028-009 mead/M028-040 mead/M024-007 mead/W018-039 mead/M027-027 mead/W023-020 mead/M011-011 mead/M007-013 mead/M019-014 mead/M007-037 mead/W023-013 mead/M035-027 mead/M028-008 mead/W033-069 mead/W011-015 mead/W021-028 mead/W037-040 mead/M039-055 mead/M039-071 mead/M042-061 mead/M028-013 mead/W026-027 mead/M031-038 mead/W024-040 mead/M009-013 mead/M040-056 mead/M028-021 mead/W011-021 mead/W040-014 mead/M025-015 mead/M013-013 mead/W019-036 mead/M026-012 mead/W037-033 mead/M003-023 mead/M030-028 mead/M032-035 mead/W028-035 mead/W016-021 mead/M009-009 mead/W016-038 mead/W019-023 mead/W040-035 mead/W025-070 mead/M003-013 mead/M019-038 mead/W023-048 mead/W014-035 mead/M026-014 mead/W018-023 mead/M032-027 mead/M005-034 mead/M003-012 mead/W029-064 mead/M003-032 mead/M034-012 mead/W038-009 mead/W038-041 mead/W016-017 mead/M011-009 mead/M013-012 mead/W011-026 mead/M041-020 mead/M042-077 mead/M025-036 mead/W014-032 mead/W025-062 mead/M013-034 mead/M035-008 mead/W009-024 mead/W016-008 mead/W036-029 mead/W026-015 mead/M012-015 mead/M026-009 mead/W024-035 mead/W023-069 mead/M030-036 mead/M037-061 mead/M009-038 mead/W033-064 mead/M029-038 mead/M005-009 mead/W035-061 mead/W015-010 mead/M040-063 mead/W023-033 mead/M029-040 mead/W018-013 mead/M007-022 mead/W016-033 mead/W026-013 mead/W028-077 mead/M030-029 mead/M041-013 mead/W033-021 mead/W035-055 mead/W037-029 mead/M039-035 mead/W033-075 mead/W015-029 mead/M009-015 mead/M034-021 mead/W028-041 mead/W018-038 mead/W028-069 mead/M035-009 mead/M040-015 mead/M019-035 mead/M029-022 mead/W035-029 mead/W016-029 mead/W019-007 mead/M030-024 mead/M012-020 mead/W011-016 mead/M012-008 mead/W028-070 mead/W026-047 mead/M013-026 mead/W011-008 mead/M007-036 mead/W019-039 mead/M024-023 mead/M027-009 mead/W040-028 mead/W018-029 mead/W026-049 mead/M027-030 mead/M037-029 mead/M034-022 mead/M031-006 mead/M035-010 mead/W025-015 mead/M005-029 mead/M024-027 mead/W024-020 mead/M022-024 mead/W014-023 mead/M033-029 mead/M013-032 mead/M024-034 mead/M041-063 mead/W038-062 mead/M041-047 mead/M019-040 mead/W033-063 mead/M040-062 mead/W015-008 mead/M024-026 mead/M022-018 mead/W011-011 mead/W021-062 mead/M022-020 mead/M012-040 mead/W037-048 mead/M039-050 mead/W014-028 mead/M029-034 mead/M028-030 mead/M003-034 mead/M003-036 mead/M024-024 mead/W018-016 mead/W016-028 mead/W014-030 mead/W019-015 mead/W035-014 mead/M029-011 mead/W037-056 mead/W023-062 mead/W035-013 mead/M041-014 mead/W038-028 mead/W026-075 mead/W011-024 mead/W021-057 mead/M037-055 mead/M009-034 mead/M040-020 mead/W021-071 mead/M019-028 mead/W016-030 mead/M035-006 mead/M019-006 mead/W037-041 mead/W033-057 mead/M013-017 mead/M011-012 mead/M007-026 mead/W029-055 mead/W028-071 mead/M039-039 mead/W009-032 mead/W033-035 mead/M035-025 mead/M035-031 mead/M039-029 mead/M003-027 mead/W026-064 mead/W015-020 mead/W016-025 mead/M042-029 mead/W033-013 mead/M005-023 mead/M029-023 mead/W011-010 mead/M041-056 mead/W019-035 mead/M042-056 mead/M033-017 mead/M033-034 mead/M029-024 mead/M007-038 mead/W019-038 mead/W038-015 mead/M039-040 mead/W029-076 mead/M024-021 mead/M022-036 mead/M009-007 mead/W021-039 mead/W009-022 mead/M031-028 mead/W035-020 mead/M040-019 mead/W033-070 mead/M033-031 mead/M005-020 mead/W028-020 mead/W025-049 mead/W024-014 mead/W033-029 mead/W024-034 mead/M022-028 mead/M013-031 mead/W024-075 mead/M009-033 mead/M034-020 mead/M022-037 mead/W025-034 mead/W025-033 mead/W011-037 mead/M027-019 mead/W019-033 mead/W025-064 mead/M007-008 mead/M027-018 mead/M031-021 mead/M011-034 mead/M033-023 mead/M005-018 mead/W021-034 mead/M012-033 mead/W040-076 mead/M034-023 mead/W028-028 mead/W035-056 mead/M003-035 mead/M011-023 mead/M026-026 mead/W009-007 mead/M025-026 mead/M026-037 mead/M005-013 mead/M041-062 mead/W033-049 mead/W026-028 mead/M011-019 mead/M005-007 mead/M019-036 mead/W038-075 mead/W019-018 mead/W040-034 mead/M007-010 mead/M033-016 mead/W023-047 mead/M042-014 mead/W025-077 mead/W021-042 mead/W029-062 mead/W038-055 mead/M040-047 mead/M037-076 mead/W035-015 mead/M013-024 mead/M024-022 mead/W021-050 mead/W038-033 mead/M033-028 mead/M037-070 mead/W028-055 mead/M039-009 mead/W024-049 mead/M003-020 mead/M027-026 mead/M003-008 mead/W011-013 mead/M031-017 mead/W018-014 mead/M029-032 mead/M029-031 mead/W036-039 mead/M031-009 mead/W009-030 mead/W019-012 mead/W028-009 mead/W023-034 mead/W016-035 mead/W019-029 mead/M007-015 mead/M005-040 mead/M041-019 mead/W038-076 mead/M019-020 mead/M009-035 mead/M025-007 mead/M022-033 mead/M025-039 mead/W015-018 mead/W040-022 mead/W023-076 mead/W038-021 mead/M042-009 mead/W026-034 mead/M025-022 mead/W035-050 mead/M029-014 mead/W019-009 mead/M007-016 mead/M011-015 mead/W035-021 mead/M040-041 mead/M005-006 mead/W023-071 mead/M035-028 mead/W015-027 mead/W014-039 mead/W040-056 mead/W037-035 mead/M026-013 mead/M003-016 mead/W038-050 mead/M022-032 mead/W029-040 mead/W040-057 mead/W040-049 mead/W037-061 mead/M039-075 mead/M034-011 mead/M031-039 mead/M032-012 mead/M011-020 mead/M042-057 mead/W038-039 mead/W026-048 mead/W036-070 mead/M011-007 mead/W011-027 mead/W036-033 mead/W018-032 mead/W011-025 mead/M032-021 mead/W024-062 mead/M029-015 mead/M025-037 mead/M029-018 mead/M009-029 mead/W014-018 mead/M005-030 mead/W038-069 mead/W009-020 mead/M040-076 mead/M019-017 mead/W018-025 mead/M041-029 mead/M025-031 mead/M009-039 mead/M026-029 mead/W029-028 mead/W021-063 mead/M026-021 mead/M025-006 mead/W036-061 mead/W036-062 mead/M032-019 mead/M022-035 mead/W028-040 mead/W025-041 mead/M003-011 mead/W025-020 mead/M031-013 mead/M003-024 mead/W028-061 mead/M035-034 mead/W040-040 mead/M025-023 mead/W018-007 mead/M033-009 mead/W029-033 mead/W029-020 mead/M033-020 mead/W024-071 mead/M040-014 mead/M022-015 mead/M039-061 mead/M042-041 mead/M003-007 mead/M029-013 mead/M035-021 mead/M031-024 mead/W016-006 mead/M028-015 mead/M042-039 mead/W026-021 mead/M029-035 mead/W009-017 mead/M019-013 mead/M037-056 mead/M034-038 mead/M029-021 mead/W024-064 mead/M005-033 mead/W023-039 mead/M003-040 mead/W035-040 mead/W036-071 mead/M027-025 mead/M041-027 mead/M022-006 mead/W021-055 mead/M013-014 mead/M030-035 mead/W036-022 mead/M034-027 mead/M026-035 mead/M027-028 mead/M028-027 mead/W023-040 mead/M012-014 mead/W029-015 mead/W035-047 mead/M025-027 mead/M040-027 mead/W015-040 mead/M019-025 mead/W035-057 mead/W009-018 mead/W019-026 mead/W019-008 mead/W038-020 mead/M040-055 mead/M012-025 mead/M041-015 mead/M028-029 mead/M040-069 mead/M035-014 mead/M011-017 mead/W009-035 mead/M030-033 mead/M030-026 mead/M041-069 mead/M041-064 mead/W024-061 mead/M030-039 mead/M033-022 mead/W033-042 mead/M005-028 mead/M034-040 mead/W036-035 mead/M042-028 mead/W028-076 mead/M034-029 mead/M030-031 mead/M005-021 mead/M032-013 mead/W036-009 mead/M035-012 mead/M011-036 mead/W015-039 mead/M029-036 mead/M003-038 mead/M040-061 mead/W014-025 mead/M007-025 mead/M012-032 mead/M032-022 mead/M034-007 mead/W021-013 mead/M028-036 mead/W024-021 mead/M009-027 mead/M024-016 mead/M031-040 mead/M028-039 mead/W016-024 mead/W028-049 mead/W036-075 mead/M019-022 mead/M039-033 mead/W040-063 mead/M039-042 mead/W028-039 mead/M012-030 mead/W018-027 mead/M029-007 mead/W038-019 mead/M007-009 mead/M027-014 mead/W014-036 mead/M005-012 mead/M019-030 mead/M034-026 mead/M028-024 mead/W026-061 ================================================ FILE: filelists_mead/val.txt ================================================ mead/M005-025 mead/W016-009 mead/M034-024 mead/W037-039 mead/M012-017 mead/W015-019 mead/W024-077 mead/M030-014 mead/M042-070 mead/M003-026 mead/M011-026 mead/W026-009 mead/M013-011 mead/W038-077 mead/W014-029 mead/W040-027 mead/W009-021 mead/W035-033 mead/W036-013 mead/M011-025 mead/M040-042 mead/M037-057 mead/W009-015 mead/M035-019 mead/M031-012 mead/W024-047 mead/M033-037 mead/W016-016 mead/M007-011 mead/M022-016 mead/W040-020 mead/W038-035 mead/M009-026 mead/W037-070 mead/M009-032 mead/W011-030 mead/M011-038 mead/W011-022 mead/M013-027 mead/M022-026 mead/W026-033 mead/W015-037 mead/W036-014 mead/W019-006 mead/M042-040 mead/W025-063 mead/W018-022 mead/M035-026 mead/M012-027 mead/W029-070 mead/M030-015 mead/M013-025 mead/W033-009 mead/M007-028 mead/M027-008 mead/M035-011 mead/M027-038 mead/M031-011 mead/M029-009 mead/W024-019 mead/W037-064 mead/M026-006 mead/W029-069 mead/M033-010 mead/W011-034 mead/M003-039 mead/W026-039 mead/W018-028 mead/W021-009 mead/W028-022 mead/W025-009 mead/M007-019 mead/M003-014 mead/M009-018 mead/M042-076 mead/M024-029 mead/M034-013 mead/M032-034 mead/W029-042 mead/W029-039 mead/M041-033 mead/W019-025 mead/W014-026 mead/W019-016 mead/W016-036 mead/M041-076 mead/M027-033 mead/W018-009 mead/M032-039 mead/W037-049 mead/W036-055 mead/M022-008 mead/W018-034 mead/W033-022 mead/M011-032 mead/W015-017 mead/M026-025 mead/M039-047 mead/W035-042 mead/M026-039 mead/W037-069 mead/W038-027 mead/M011-027 mead/W011-036 mead/M029-028 mead/M040-022 mead/M009-022 mead/W040-062 mead/M005-016 mead/M027-032 mead/W014-021 mead/M027-010 mead/W037-076 mead/W029-049 mead/W028-029 mead/W023-014 mead/M022-038 mead/W016-023 mead/M039-041 mead/M035-030 mead/W026-014 mead/M027-006 mead/M039-028 mead/W038-063 mead/W011-031 mead/M037-027 mead/M035-035 mead/W009-006 mead/W025-056 mead/W018-036 mead/W019-010 mead/W016-031 mead/W015-031 mead/W023-077 mead/W026-076 mead/W024-057 mead/M022-014 mead/W021-077 mead/W021-064 mead/W026-029 mead/W015-035 mead/M028-032 mead/M032-008 mead/M039-013 mead/W037-020 mead/W015-007 mead/W009-037 mead/M009-017 mead/M022-012 mead/M009-028 mead/M034-031 mead/M027-029 mead/W029-048 mead/M013-019 mead/M019-032 mead/W019-017 mead/W011-039 mead/M035-039 mead/W021-049 mead/M031-036 mead/M013-030 mead/M011-031 mead/M029-026 mead/M009-040 mead/M009-016 mead/M025-033 mead/M007-017 mead/W036-064 mead/M030-020 mead/M032-023 mead/W016-040 mead/M037-063 mead/M009-012 mead/M035-022 mead/M011-037 mead/M019-023 mead/W035-039 mead/W019-020 mead/M024-030 mead/W014-011 mead/M012-023 mead/M019-039 mead/W023-035 mead/W035-077 mead/M034-016 mead/M011-014 mead/W019-032 mead/M003-017 mead/W009-008 mead/W035-063 mead/M040-064 mead/M003-006 mead/W014-012 mead/W025-028 mead/M025-008 mead/W015-012 mead/M037-028 mead/M042-033 mead/W036-027 mead/M034-025 mead/M022-034 mead/W037-047 mead/M025-038 mead/M011-018 mead/W025-027 mead/M029-008 mead/M039-064 mead/M041-077 mead/M037-035 mead/W014-038 ================================================ FILE: gfpgan/gfpganv1_clean_arch.py ================================================ import math import random import torch from basicsr.utils.registry import ARCH_REGISTRY from torch import nn from torch.nn import functional as F import time from .stylegan2_clean_arch import StyleGAN2GeneratorClean class StyleGAN2GeneratorCSFT(StyleGAN2GeneratorClean): """StyleGAN2 Generator with SFT modulation (Spatial Feature Transform). It is the clean version without custom compiled CUDA extensions used in StyleGAN2. Args: out_size (int): The spatial size of outputs. num_style_feat (int): Channel number of style features. Default: 512. num_mlp (int): Layer number of MLP style layers. Default: 8. channel_multiplier (int): Channel multiplier for large networks of StyleGAN2. Default: 2. narrow (float): The narrow ratio for channels. Default: 1. sft_half (bool): Whether to apply SFT on half of the input channels. Default: False. """ def __init__(self, out_size, num_style_feat=512, num_mlp=8, channel_multiplier=2, narrow=1, sft_half=False): super(StyleGAN2GeneratorCSFT, self).__init__( out_size, num_style_feat=num_style_feat, num_mlp=num_mlp, channel_multiplier=channel_multiplier, narrow=narrow) self.sft_half = sft_half def forward(self, styles, conditions, input_is_latent=False, noise=None, randomize_noise=True, truncation=1, truncation_latent=None, inject_index=None, return_latents=False): """Forward function for StyleGAN2GeneratorCSFT. Args: styles (list[Tensor]): Sample codes of styles. conditions (list[Tensor]): SFT conditions to generators. input_is_latent (bool): Whether input is latent style. Default: False. noise (Tensor | None): Input noise or None. Default: None. randomize_noise (bool): Randomize noise, used when 'noise' is False. Default: True. truncation (float): The truncation ratio. Default: 1. truncation_latent (Tensor | None): The truncation latent tensor. Default: None. inject_index (int | None): The injection index for mixing noise. Default: None. return_latents (bool): Whether to return style latents. Default: False. """ # style codes -> latents with Style MLP layer if not input_is_latent: styles = [self.style_mlp(s) for s in styles] # noises if noise is None: if randomize_noise: noise = [None] * self.num_layers # for each style conv layer else: # use the stored noise noise = [getattr(self.noises, f'noise{i}') for i in range(self.num_layers)] # style truncation if truncation < 1: style_truncation = [] for style in styles: style_truncation.append(truncation_latent + truncation * (style - truncation_latent)) styles = style_truncation # get style latents with injection if len(styles) == 1: inject_index = self.num_latent if styles[0].ndim < 3: # repeat latent code for all the layers latent = styles[0].unsqueeze(1).repeat(1, inject_index, 1) else: # used for encoder with different latent code for each layer latent = styles[0] elif len(styles) == 2: # mixing noises if inject_index is None: inject_index = random.randint(1, self.num_latent - 1) latent1 = styles[0].unsqueeze(1).repeat(1, inject_index, 1) latent2 = styles[1].unsqueeze(1).repeat(1, self.num_latent - inject_index, 1) latent = torch.cat([latent1, latent2], 1) # main generation out = self.constant_input(latent.shape[0]) out = self.style_conv1(out, latent[:, 0], noise=noise[0]) skip = self.to_rgb1(out, latent[:, 1]) i = 1 for conv1, conv2, noise1, noise2, to_rgb in zip(self.style_convs[::2], self.style_convs[1::2], noise[1::2], noise[2::2], self.to_rgbs): out = conv1(out, latent[:, i], noise=noise1) # the conditions may have fewer levels if i < len(conditions): # SFT part to combine the conditions if self.sft_half: # only apply SFT to half of the channels out_same, out_sft = torch.split(out, int(out.size(1) // 2), dim=1) out_sft = out_sft * conditions[i - 1] + conditions[i] out = torch.cat([out_same, out_sft], dim=1) else: # apply SFT to all the channels out = out * conditions[i - 1] + conditions[i] out = conv2(out, latent[:, i + 1], noise=noise2) skip = to_rgb(out, latent[:, i + 2], skip) # feature back to the rgb space i += 2 image = skip if return_latents: return image, latent else: return image, None class ResBlock(nn.Module): """Residual block with bilinear upsampling/downsampling. Args: in_channels (int): Channel number of the input. out_channels (int): Channel number of the output. mode (str): Upsampling/downsampling mode. Options: down | up. Default: down. """ def __init__(self, in_channels, out_channels, mode='down'): super(ResBlock, self).__init__() self.conv1 = nn.Conv2d(in_channels, in_channels, 3, 1, 1) self.conv2 = nn.Conv2d(in_channels, out_channels, 3, 1, 1) self.skip = nn.Conv2d(in_channels, out_channels, 1, bias=False) if mode == 'down': self.scale_factor = 0.5 elif mode == 'up': self.scale_factor = 2 def forward(self, x): out = F.leaky_relu_(self.conv1(x), negative_slope=0.2) # upsample/downsample out = F.interpolate(out, scale_factor=self.scale_factor, mode='bilinear', align_corners=False) out = F.leaky_relu_(self.conv2(out), negative_slope=0.2) # skip x = F.interpolate(x, scale_factor=self.scale_factor, mode='bilinear', align_corners=False) skip = self.skip(x) out = out + skip return out @ARCH_REGISTRY.register() class GFPGANv1Clean(nn.Module): """The GFPGAN architecture: Unet + StyleGAN2 decoder with SFT. It is the clean version without custom compiled CUDA extensions used in StyleGAN2. Ref: GFP-GAN: Towards Real-World Blind Face Restoration with Generative Facial Prior. Args: out_size (int): The spatial size of outputs. num_style_feat (int): Channel number of style features. Default: 512. channel_multiplier (int): Channel multiplier for large networks of StyleGAN2. Default: 2. decoder_load_path (str): The path to the pre-trained decoder model (usually, the StyleGAN2). Default: None. fix_decoder (bool): Whether to fix the decoder. Default: True. num_mlp (int): Layer number of MLP style layers. Default: 8. input_is_latent (bool): Whether input is latent style. Default: False. different_w (bool): Whether to use different latent w for different layers. Default: False. narrow (float): The narrow ratio for channels. Default: 1. sft_half (bool): Whether to apply SFT on half of the input channels. Default: False. """ def __init__( self, out_size, num_style_feat=512, channel_multiplier=1, decoder_load_path=None, fix_decoder=True, # for stylegan decoder num_mlp=8, input_is_latent=False, different_w=False, narrow=1, sft_half=False): super(GFPGANv1Clean, self).__init__() self.input_is_latent = input_is_latent self.different_w = different_w self.num_style_feat = num_style_feat unet_narrow = narrow * 0.5 # by default, use a half of input channels channels = { '4': int(512 * unet_narrow), '8': int(512 * unet_narrow), '16': int(512 * unet_narrow), '32': int(512 * unet_narrow), '64': int(256 * channel_multiplier * unet_narrow), '128': int(128 * channel_multiplier * unet_narrow), '256': int(64 * channel_multiplier * unet_narrow), '512': int(32 * channel_multiplier * unet_narrow), '1024': int(16 * channel_multiplier * unet_narrow) } self.log_size = int(math.log(out_size, 2)) first_out_size = 2**(int(math.log(out_size, 2))) self.conv_body_first = nn.Conv2d(3, channels[f'{first_out_size}'], 1) # downsample in_channels = channels[f'{first_out_size}'] self.conv_body_down = nn.ModuleList() for i in range(self.log_size, 2, -1): out_channels = channels[f'{2**(i - 1)}'] self.conv_body_down.append(ResBlock(in_channels, out_channels, mode='down')) in_channels = out_channels self.final_conv = nn.Conv2d(in_channels, channels['4'], 3, 1, 1) # upsample in_channels = channels['4'] self.conv_body_up = nn.ModuleList() for i in range(3, self.log_size + 1): out_channels = channels[f'{2**i}'] self.conv_body_up.append(ResBlock(in_channels, out_channels, mode='up')) in_channels = out_channels # to RGB self.toRGB = nn.ModuleList() for i in range(3, self.log_size + 1): self.toRGB.append(nn.Conv2d(channels[f'{2**i}'], 3, 1)) if different_w: linear_out_channel = (int(math.log(out_size, 2)) * 2 - 2) * num_style_feat else: linear_out_channel = num_style_feat self.final_linear = nn.Linear(channels['4'] * 4 * 4, linear_out_channel) # the decoder: stylegan2 generator with SFT modulations self.stylegan_decoder = StyleGAN2GeneratorCSFT( out_size=out_size, num_style_feat=num_style_feat, num_mlp=num_mlp, channel_multiplier=channel_multiplier, narrow=narrow, sft_half=sft_half) # load pre-trained stylegan2 model if necessary if decoder_load_path: self.stylegan_decoder.load_state_dict( torch.load(decoder_load_path, map_location=lambda storage, loc: storage)['params_ema']) # fix decoder without updating params if fix_decoder: for _, param in self.stylegan_decoder.named_parameters(): param.requires_grad = False # for SFT modulations (scale and shift) self.condition_scale = nn.ModuleList() self.condition_shift = nn.ModuleList() for i in range(3, self.log_size + 1): out_channels = channels[f'{2**i}'] if sft_half: sft_out_channels = out_channels else: sft_out_channels = out_channels * 2 self.condition_scale.append( nn.Sequential( nn.Conv2d(out_channels, out_channels, 3, 1, 1), nn.LeakyReLU(0.2, True), nn.Conv2d(out_channels, sft_out_channels, 3, 1, 1))) self.condition_shift.append( nn.Sequential( nn.Conv2d(out_channels, out_channels, 3, 1, 1), nn.LeakyReLU(0.2, True), nn.Conv2d(out_channels, sft_out_channels, 3, 1, 1))) def forward(self, x, return_latents=False, return_rgb=True, randomize_noise=True): """Forward function for GFPGANv1Clean. Args: x (Tensor): Input images. return_latents (bool): Whether to return style latents. Default: False. return_rgb (bool): Whether return intermediate rgb images. Default: True. randomize_noise (bool): Randomize noise, used when 'noise' is False. Default: True. """ conditions = [] unet_skips = [] out_rgbs = [] # encoder feat = F.leaky_relu_(self.conv_body_first(x), negative_slope=0.2) for i in range(self.log_size - 2): feat = self.conv_body_down[i](feat) unet_skips.insert(0, feat) feat = F.leaky_relu_(self.final_conv(feat), negative_slope=0.2) # style code style_code = self.final_linear(feat.view(feat.size(0), -1)) if self.different_w: style_code = style_code.view(style_code.size(0), -1, self.num_style_feat) # decode for i in range(self.log_size - 2): # add unet skip feat = feat + unet_skips[i] # ResUpLayer feat = self.conv_body_up[i](feat) # generate scale and shift for SFT layers scale = self.condition_scale[i](feat) conditions.append(scale.clone()) shift = self.condition_shift[i](feat) conditions.append(shift.clone()) # generate rgb images if return_rgb: out_rgbs.append(self.toRGB[i](feat)) # decoder image, _ = self.stylegan_decoder([style_code], conditions, return_latents=return_latents, input_is_latent=self.input_is_latent, randomize_noise=randomize_noise) return image, out_rgbs ================================================ FILE: gfpgan/stylegan2_clean_arch.py ================================================ import math import random import torch from basicsr.archs.arch_util import default_init_weights from basicsr.utils.registry import ARCH_REGISTRY from torch import nn from torch.nn import functional as F class NormStyleCode(nn.Module): def forward(self, x): """Normalize the style codes. Args: x (Tensor): Style codes with shape (b, c). Returns: Tensor: Normalized tensor. """ return x * torch.rsqrt(torch.mean(x**2, dim=1, keepdim=True) + 1e-8) class ModulatedConv2d(nn.Module): """Modulated Conv2d used in StyleGAN2. There is no bias in ModulatedConv2d. Args: in_channels (int): Channel number of the input. out_channels (int): Channel number of the output. kernel_size (int): Size of the convolving kernel. num_style_feat (int): Channel number of style features. demodulate (bool): Whether to demodulate in the conv layer. Default: True. sample_mode (str | None): Indicating 'upsample', 'downsample' or None. Default: None. eps (float): A value added to the denominator for numerical stability. Default: 1e-8. """ def __init__(self, in_channels, out_channels, kernel_size, num_style_feat, demodulate=True, sample_mode=None, eps=1e-8): super(ModulatedConv2d, self).__init__() self.in_channels = in_channels self.out_channels = out_channels self.kernel_size = kernel_size self.demodulate = demodulate self.sample_mode = sample_mode self.eps = eps # modulation inside each modulated conv self.modulation = nn.Linear(num_style_feat, in_channels, bias=True) # initialization default_init_weights(self.modulation, scale=1, bias_fill=1, a=0, mode='fan_in', nonlinearity='linear') self.weight = nn.Parameter( torch.randn(1, out_channels, in_channels, kernel_size, kernel_size) / math.sqrt(in_channels * kernel_size**2)) self.padding = kernel_size // 2 def forward(self, x, style): """Forward function. Args: x (Tensor): Tensor with shape (b, c, h, w). style (Tensor): Tensor with shape (b, num_style_feat). Returns: Tensor: Modulated tensor after convolution. """ b, c, h, w = x.shape # c = c_in # weight modulation style = self.modulation(style).view(b, 1, c, 1, 1) # self.weight: (1, c_out, c_in, k, k); style: (b, 1, c, 1, 1) weight = self.weight * style # (b, c_out, c_in, k, k) if self.demodulate: demod = torch.rsqrt(weight.pow(2).sum([2, 3, 4]) + self.eps) weight = weight * demod.view(b, self.out_channels, 1, 1, 1) weight = weight.view(b * self.out_channels, c, self.kernel_size, self.kernel_size) # upsample or downsample if necessary if self.sample_mode == 'upsample': x = F.interpolate(x, scale_factor=2, mode='bilinear', align_corners=False) elif self.sample_mode == 'downsample': x = F.interpolate(x, scale_factor=0.5, mode='bilinear', align_corners=False) b, c, h, w = x.shape x = x.view(1, b * c, h, w) # weight: (b*c_out, c_in, k, k), groups=b out = F.conv2d(x, weight, padding=self.padding, groups=b) out = out.view(b, self.out_channels, *out.shape[2:4]) return out def __repr__(self): return (f'{self.__class__.__name__}(in_channels={self.in_channels}, out_channels={self.out_channels}, ' f'kernel_size={self.kernel_size}, demodulate={self.demodulate}, sample_mode={self.sample_mode})') class StyleConv(nn.Module): """Style conv used in StyleGAN2. Args: in_channels (int): Channel number of the input. out_channels (int): Channel number of the output. kernel_size (int): Size of the convolving kernel. num_style_feat (int): Channel number of style features. demodulate (bool): Whether demodulate in the conv layer. Default: True. sample_mode (str | None): Indicating 'upsample', 'downsample' or None. Default: None. """ def __init__(self, in_channels, out_channels, kernel_size, num_style_feat, demodulate=True, sample_mode=None): super(StyleConv, self).__init__() self.modulated_conv = ModulatedConv2d( in_channels, out_channels, kernel_size, num_style_feat, demodulate=demodulate, sample_mode=sample_mode) self.weight = nn.Parameter(torch.zeros(1)) # for noise injection self.bias = nn.Parameter(torch.zeros(1, out_channels, 1, 1)) self.activate = nn.LeakyReLU(negative_slope=0.2, inplace=True) def forward(self, x, style, noise=None): # modulate out = self.modulated_conv(x, style) * 2**0.5 # for conversion # noise injection if noise is None: b, _, h, w = out.shape noise = out.new_empty(b, 1, h, w).normal_() out = out + self.weight * noise # add bias out = out + self.bias # activation out = self.activate(out) return out class ToRGB(nn.Module): """To RGB (image space) from features. Args: in_channels (int): Channel number of input. num_style_feat (int): Channel number of style features. upsample (bool): Whether to upsample. Default: True. """ def __init__(self, in_channels, num_style_feat, upsample=True): super(ToRGB, self).__init__() self.upsample = upsample self.modulated_conv = ModulatedConv2d( in_channels, 3, kernel_size=1, num_style_feat=num_style_feat, demodulate=False, sample_mode=None) self.bias = nn.Parameter(torch.zeros(1, 3, 1, 1)) def forward(self, x, style, skip=None): """Forward function. Args: x (Tensor): Feature tensor with shape (b, c, h, w). style (Tensor): Tensor with shape (b, num_style_feat). skip (Tensor): Base/skip tensor. Default: None. Returns: Tensor: RGB images. """ out = self.modulated_conv(x, style) out = out + self.bias if skip is not None: if self.upsample: skip = F.interpolate(skip, scale_factor=2, mode='bilinear', align_corners=False) out = out + skip return out class ConstantInput(nn.Module): """Constant input. Args: num_channel (int): Channel number of constant input. size (int): Spatial size of constant input. """ def __init__(self, num_channel, size): super(ConstantInput, self).__init__() self.weight = nn.Parameter(torch.randn(1, num_channel, size, size)) def forward(self, batch): out = self.weight.repeat(batch, 1, 1, 1) return out @ARCH_REGISTRY.register() class StyleGAN2GeneratorClean(nn.Module): """Clean version of StyleGAN2 Generator. Args: out_size (int): The spatial size of outputs. num_style_feat (int): Channel number of style features. Default: 512. num_mlp (int): Layer number of MLP style layers. Default: 8. channel_multiplier (int): Channel multiplier for large networks of StyleGAN2. Default: 2. narrow (float): Narrow ratio for channels. Default: 1.0. """ def __init__(self, out_size, num_style_feat=512, num_mlp=8, channel_multiplier=2, narrow=1): super(StyleGAN2GeneratorClean, self).__init__() # Style MLP layers self.num_style_feat = num_style_feat style_mlp_layers = [NormStyleCode()] for i in range(num_mlp): style_mlp_layers.extend( [nn.Linear(num_style_feat, num_style_feat, bias=True), nn.LeakyReLU(negative_slope=0.2, inplace=True)]) self.style_mlp = nn.Sequential(*style_mlp_layers) # initialization default_init_weights(self.style_mlp, scale=1, bias_fill=0, a=0.2, mode='fan_in', nonlinearity='leaky_relu') # channel list channels = { '4': int(512 * narrow), '8': int(512 * narrow), '16': int(512 * narrow), '32': int(512 * narrow), '64': int(256 * channel_multiplier * narrow), '128': int(128 * channel_multiplier * narrow), '256': int(64 * channel_multiplier * narrow), '512': int(32 * channel_multiplier * narrow), '1024': int(16 * channel_multiplier * narrow) } self.channels = channels self.constant_input = ConstantInput(channels['4'], size=4) self.style_conv1 = StyleConv( channels['4'], channels['4'], kernel_size=3, num_style_feat=num_style_feat, demodulate=True, sample_mode=None) self.to_rgb1 = ToRGB(channels['4'], num_style_feat, upsample=False) self.log_size = int(math.log(out_size, 2)) self.num_layers = (self.log_size - 2) * 2 + 1 self.num_latent = self.log_size * 2 - 2 self.style_convs = nn.ModuleList() self.to_rgbs = nn.ModuleList() self.noises = nn.Module() in_channels = channels['4'] # noise for layer_idx in range(self.num_layers): resolution = 2**((layer_idx + 5) // 2) shape = [1, 1, resolution, resolution] self.noises.register_buffer(f'noise{layer_idx}', torch.randn(*shape)) # style convs and to_rgbs for i in range(3, self.log_size + 1): out_channels = channels[f'{2**i}'] self.style_convs.append( StyleConv( in_channels, out_channels, kernel_size=3, num_style_feat=num_style_feat, demodulate=True, sample_mode='upsample')) self.style_convs.append( StyleConv( out_channels, out_channels, kernel_size=3, num_style_feat=num_style_feat, demodulate=True, sample_mode=None)) self.to_rgbs.append(ToRGB(out_channels, num_style_feat, upsample=True)) in_channels = out_channels def make_noise(self): """Make noise for noise injection.""" device = self.constant_input.weight.device noises = [torch.randn(1, 1, 4, 4, device=device)] for i in range(3, self.log_size + 1): for _ in range(2): noises.append(torch.randn(1, 1, 2**i, 2**i, device=device)) return noises def get_latent(self, x): return self.style_mlp(x) def mean_latent(self, num_latent): latent_in = torch.randn(num_latent, self.num_style_feat, device=self.constant_input.weight.device) latent = self.style_mlp(latent_in).mean(0, keepdim=True) return latent def forward(self, styles, input_is_latent=False, noise=None, randomize_noise=True, truncation=1, truncation_latent=None, inject_index=None, return_latents=False): """Forward function for StyleGAN2GeneratorClean. Args: styles (list[Tensor]): Sample codes of styles. input_is_latent (bool): Whether input is latent style. Default: False. noise (Tensor | None): Input noise or None. Default: None. randomize_noise (bool): Randomize noise, used when 'noise' is False. Default: True. truncation (float): The truncation ratio. Default: 1. truncation_latent (Tensor | None): The truncation latent tensor. Default: None. inject_index (int | None): The injection index for mixing noise. Default: None. return_latents (bool): Whether to return style latents. Default: False. """ # style codes -> latents with Style MLP layer if not input_is_latent: styles = [self.style_mlp(s) for s in styles] # noises if noise is None: if randomize_noise: noise = [None] * self.num_layers # for each style conv layer else: # use the stored noise noise = [getattr(self.noises, f'noise{i}') for i in range(self.num_layers)] # style truncation if truncation < 1: style_truncation = [] for style in styles: style_truncation.append(truncation_latent + truncation * (style - truncation_latent)) styles = style_truncation # get style latents with injection if len(styles) == 1: inject_index = self.num_latent if styles[0].ndim < 3: # repeat latent code for all the layers latent = styles[0].unsqueeze(1).repeat(1, inject_index, 1) else: # used for encoder with different latent code for each layer latent = styles[0] elif len(styles) == 2: # mixing noises if inject_index is None: inject_index = random.randint(1, self.num_latent - 1) latent1 = styles[0].unsqueeze(1).repeat(1, inject_index, 1) latent2 = styles[1].unsqueeze(1).repeat(1, self.num_latent - inject_index, 1) latent = torch.cat([latent1, latent2], 1) # main generation out = self.constant_input(latent.shape[0]) out = self.style_conv1(out, latent[:, 0], noise=noise[0]) skip = self.to_rgb1(out, latent[:, 1]) i = 1 for conv1, conv2, noise1, noise2, to_rgb in zip(self.style_convs[::2], self.style_convs[1::2], noise[1::2], noise[2::2], self.to_rgbs): out = conv1(out, latent[:, i], noise=noise1) out = conv2(out, latent[:, i + 1], noise=noise2) skip = to_rgb(out, latent[:, i + 2], skip) # feature back to the rgb space i += 2 image = skip if return_latents: return image, latent else: return image, None ================================================ FILE: hparams.py ================================================ from glob import glob import os def get_image_list(data_root, split): filelist = [] with open('filelists/{}.txt'.format(split)) as f: for line in f: line = line.strip() if ' ' in line: line = line.split()[0] filelist.append(os.path.join(data_root, line)) return filelist class HParams: def __init__(self, **kwargs): self.data = {} for key, value in kwargs.items(): self.data[key] = value def __getattr__(self, key): if key not in self.data: raise AttributeError("'HParams' object has no attribute %s" % key) return self.data[key] def set_hparam(self, key, value): self.data[key] = value hparams = HParams( num_mels=80, rescale=True, rescaling_max=0.9, use_lws=False, n_fft=800, hop_size=200, win_size=800, sample_rate=16000, frame_shift_ms=None, power = 1.5, griffin_lim_iters = 60, signal_normalization=True, allow_clipping_in_normalization=True, symmetric_mels=True, max_abs_value=4., preemphasize=True, preemphasis=0.97, # Limits min_level_db=-100, ref_level_db=20, fmin=55, fmax=7600, # Training hyperparameters img_size=128, # img_size=512, # img_size=256, # img_size=96, fps=25, # batch_size = 2, # batch_size = 3, batch_size = 24, initial_learning_rate=1e-4, nepochs = 2000000000000000000, disc_initial_learning_rate=5e-4, eval_interval=3000, checkpoint_interval=3000, l1_wt = 10., mem_wt=0.2, vv_wt = 0.2, av_wt=0.2, disc_wt=0.2, # num_workers=16, num_workers=1, m_slot = 96, min = 0, max = 0.7, syncnet_wt=0.03, # is initially zero, will be set automatically to 0.03 later. Leads to faster convergence. # for pretraining SyncNet # syncnet_batch_size=256, syncnet_batch_size=64, save_optimizer_state=True, syncnet_lr=1e-4, # syncnet_lr=1e-3, syncnet_eval_interval=10000, syncnet_checkpoint_interval=10000, # syncnet_eval_interval=5000, # syncnet_checkpoint_interval=5000, ) def hparams_debug_string(): values = hparams.values() hp = [" %s: %s" % (name, values[name]) for name in sorted(values) if name != "sentences"] return "Hyperparameters:\n" + "\n".join(hp) ================================================ FILE: hparams_Base.py ================================================ from glob import glob import os def get_image_list(data_root, split): filelist = [] with open('filelists/{}.txt'.format(split)) as f: for line in f: line = line.strip() if ' ' in line: line = line.split()[0] filelist.append(os.path.join(data_root, line)) return filelist class HParams: def __init__(self, **kwargs): self.data = {} for key, value in kwargs.items(): self.data[key] = value def __getattr__(self, key): if key not in self.data: raise AttributeError("'HParams' object has no attribute %s" % key) return self.data[key] def set_hparam(self, key, value): self.data[key] = value hparams = HParams( num_mels=80, rescale=True, rescaling_max=0.9, use_lws=False, n_fft=800, hop_size=200, win_size=800, sample_rate=16000, frame_shift_ms=None, power = 1.5, griffin_lim_iters = 60, signal_normalization=True, allow_clipping_in_normalization=True, symmetric_mels=True, max_abs_value=4., preemphasize=True, preemphasis=0.97, # Limits min_level_db=-100, ref_level_db=20, fmin=55, fmax=7600, # Training hyperparameters # img_size=256, # img_size=512, img_size=128, fps=25, # batch_size = 32, batch_size = 28, # batch_size = 8, # batch_size = 12, initial_learning_rate=1e-4, nepochs = 2000000000000000000, disc_initial_learning_rate=5e-4, eval_interval=1000, checkpoint_interval=1000, # eval_interval=300, # checkpoint_interval=300, l1_wt = 10., mem_wt=0.2, vv_wt = 0.2, av_wt=0.2, disc_wt=0.2, # num_workers=16, num_workers=16, m_slot = 96, min = 0, max = 0.7, syncnet_wt=0.03, # is initially zero, will be set automatically to 0.03 later. Leads to faster convergence. # for pretraining SyncNet # syncnet_batch_size=256, syncnet_batch_size=64, # syncnet_batch_size=32, save_optimizer_state=True, syncnet_lr=1e-4, # syncnet_lr=1e-3, # syncnet_eval_interval=10000, # syncnet_checkpoint_interval=10000, syncnet_eval_interval=5000, syncnet_checkpoint_interval=5000, ) def hparams_debug_string(): values = hparams.values() hp = [" %s: %s" % (name, values[name]) for name in sorted(values) if name != "sentences"] return "Hyperparameters:\n" + "\n".join(hp) ================================================ FILE: hparams_HR.py ================================================ from glob import glob import os def get_image_list(data_root, split): filelist = [] with open('filelists/{}.txt'.format(split)) as f: for line in f: line = line.strip() if ' ' in line: line = line.split()[0] filelist.append(os.path.join(data_root, line)) return filelist class HParams: def __init__(self, **kwargs): self.data = {} for key, value in kwargs.items(): self.data[key] = value def __getattr__(self, key): if key not in self.data: raise AttributeError("'HParams' object has no attribute %s" % key) return self.data[key] def set_hparam(self, key, value): self.data[key] = value hparams = HParams( num_mels=80, rescale=True, rescaling_max=0.9, use_lws=False, n_fft=800, hop_size=200, win_size=800, sample_rate=16000, frame_shift_ms=None, power = 1.5, griffin_lim_iters = 60, signal_normalization=True, allow_clipping_in_normalization=True, symmetric_mels=True, max_abs_value=4., preemphasize=True, preemphasis=0.97, # Limits min_level_db=-100, ref_level_db=20, fmin=55, fmax=7600, # Training hyperparameters # img_size=512, # img_size=256, img_size=128, fps=25, batch_size = 28, # batch_size = 28, # batch_size = 8, # batch_size = 10, initial_learning_rate=1e-4, nepochs = 2000000000000000000, disc_initial_learning_rate=5e-4, eval_interval=3000, checkpoint_interval=3000, # eval_interval=300, # checkpoint_interval=300, l1_wt = 10., mem_wt=0.2, vv_wt = 0.2, av_wt=0.2, disc_wt=0.2, # num_workers=16, num_workers=16, m_slot = 96, min = 0, max = 0.7, # syncnet_wt=0.03, # is initially zero, will be set automatically to 0.03 later. Leads to faster convergence. syncnet_wt=0.3, # is initially zero, will be set automatically to 0.03 later. Leads to faster convergence. # for pretraining SyncNet # syncnet_batch_size=256, syncnet_batch_size=64, # syncnet_batch_size=32, save_optimizer_state=True, syncnet_lr=1e-4, # syncnet_lr=1e-3, # syncnet_eval_interval=10000, # syncnet_checkpoint_interval=10000, syncnet_eval_interval=5000, syncnet_checkpoint_interval=5000, ) def hparams_debug_string(): values = hparams.values() hp = [" %s: %s" % (name, values[name]) for name in sorted(values) if name != "sentences"] return "Hyperparameters:\n" + "\n".join(hp) ================================================ FILE: inference.py ================================================ from HYPERLIPS import Hyperlips import argparse import os os.environ["CUDA_VISIBLE_DEVICES"] = '1' parser = argparse.ArgumentParser(description='Inference code to lip-sync videos in the wild using HyperLipsBase or HyperLipsHR models') parser.add_argument('--checkpoint_path_BASE', type=str,help='Name of saved HyperLipsBase checkpoint to load weights from', default="checkpoints/hyperlipsbase_multi.pth") parser.add_argument('--checkpoint_path_HR', type=str,help='Name of saved HyperLipsHR checkpoint to load weights from', default=None)#"checkpoints/hyperlipshr_mead_128.pth" parser.add_argument('--face', type=str, help='Filepath of video/image that contains faces to use', default="test/video5/video5.mp4") parser.add_argument('--audio', type=str, help='Filepath of video/audio file to use as raw audio source', default="test/video5/video5.wav") parser.add_argument('--outfile', type=str, help='Video path to save result. See default for an e.g.', default='result/result_video.mp4') parser.add_argument('--pads', nargs='+', type=int, default=[0, 10, 0, 0], help='Padding (top, bottom, left, right). Please adjust to include chin at least') parser.add_argument('--filter_window', default=None, type=int, help='real window is 2*T+1') parser.add_argument('--hyper_batch_size', type=int, help='Batch size for hyperlips model(s)', default=128) parser.add_argument('--resize_factor', default=1, type=int, help='Reduce the resolution by this factor. Sometimes, best results are obtained at 480p or 720p') parser.add_argument('--img_size', default=128, type=int) parser.add_argument('--segmentation_path', type=str, help='Name of saved checkpoint of segmentation network', default="checkpoints/face_segmentation.pth") parser.add_argument('--face_enhancement_path', type=str, help='Name of saved checkpoint of segmentation network', default="checkpoints/GFPGANv1.3.pth")#"checkpoints/GFPGANv1.3.pth" parser.add_argument('--no_faceenhance', default=False, action='store_true', help='Prevent using face enhancement') parser.add_argument('--gpu_id', type=float, help='gpu id (default: 0)', default=0, required=False) args = parser.parse_args() def inference_single(): Hyperlips_executor = Hyperlips(checkpoint_path_BASE=args.checkpoint_path_BASE, checkpoint_path_HR=args.checkpoint_path_HR, segmentation_path=args.segmentation_path, face_enhancement_path = args.face_enhancement_path, gpu_id = args.gpu_id, window =args.filter_window, hyper_batch_size=args.hyper_batch_size, img_size = args.img_size, resize_factor = args.resize_factor, pad = args.pads) Hyperlips_executor._HyperlipsLoadModels() Hyperlips_executor._HyperlipsInference(args.face,args.audio,args.outfile) if __name__ == '__main__': inference_single() ================================================ FILE: models/__init__.py ================================================ from .syncnet import SyncNet_color ================================================ FILE: models/audio_v.py ================================================ import librosa import librosa.filters import numpy as np from scipy import signal from scipy.io import wavfile def load_wav(path, sr): return librosa.core.load(path, sr=sr)[0] def save_wav(wav, path, sr): wav *= 32767 / max(0.01, np.max(np.abs(wav))) # wav *= 32767 / max(0.5, np.max(np.abs(wav))) # proposed by @dsmiller wavfile.write(path, sr, wav.astype(np.int16)) def save_wavenet_wav(wav, path, sr): librosa.output.write_wav(path, wav, sr=sr) def preemphasis(wav, k, preemphasize=True): if preemphasize: return signal.lfilter([1, -k], [1], wav) return wav def inv_preemphasis(wav, k, inv_preemphasize=True): if inv_preemphasize: return signal.lfilter([1], [1, -k], wav) return wav # From https://github.com/r9y9/wavenet_vocoder/blob/master/audio.py def start_and_end_indices(quantized, silence_threshold=2): for start in range(quantized.size): if abs(quantized[start] - 127) > silence_threshold: break for end in range(quantized.size - 1, 1, -1): if abs(quantized[end] - 127) > silence_threshold: break assert abs(quantized[start] - 127) > silence_threshold assert abs(quantized[end] - 127) > silence_threshold return start, end def get_hop_size(hparams): hop_size = hparams.hop_size if hop_size is None: assert hparams.frame_shift_ms is not None hop_size = int(hparams.frame_shift_ms / 1000 * hparams.sample_rate) return hop_size def linearspectrogram(wav, hparams): D = _stft(preemphasis(wav, hparams.preemphasis, hparams.preemphasize), hparams) S = _amp_to_db(np.abs(D), hparams) - hparams.ref_level_db if hparams.signal_normalization: return _normalize(S, hparams) return S def melspectrogram(wav, hparams): D = _stft(preemphasis(wav, hparams.preemphasis, hparams.preemphasize), hparams) S = _amp_to_db(_linear_to_mel(np.abs(D), hparams), hparams) - hparams.ref_level_db if hparams.signal_normalization: return _normalize(S, hparams) return S def inv_linear_spectrogram(linear_spectrogram, hparams): """Converts linear spectrogram to waveform using librosa""" if hparams.signal_normalization: D = _denormalize(linear_spectrogram, hparams) else: D = linear_spectrogram S = _db_to_amp(D + hparams.ref_level_db) # Convert back to linear if hparams.use_lws: processor = _lws_processor(hparams) D = processor.run_lws(S.astype(np.float64).T ** hparams.power) y = processor.istft(D).astype(np.float32) return inv_preemphasis(y, hparams.preemphasis, hparams.preemphasize) else: return inv_preemphasis(_griffin_lim(S ** hparams.power, hparams), hparams.preemphasis, hparams.preemphasize) def inv_mel_spectrogram(mel_spectrogram, hparams): """Converts mel spectrogram to waveform using librosa""" if hparams.signal_normalization: D = _denormalize(mel_spectrogram, hparams) else: D = mel_spectrogram S = _mel_to_linear(_db_to_amp(D + hparams.ref_level_db), hparams) # Convert back to linear if hparams.use_lws: processor = _lws_processor(hparams) D = processor.run_lws(S.astype(np.float64).T ** hparams.power) y = processor.istft(D).astype(np.float32) return inv_preemphasis(y, hparams.preemphasis, hparams.preemphasize) else: return inv_preemphasis(_griffin_lim(S ** hparams.power, hparams), hparams.preemphasis, hparams.preemphasize) def _lws_processor(hparams): import lws return lws.lws(hparams.n_fft, get_hop_size(hparams), fftsize=hparams.win_size, mode="speech") def _griffin_lim(S, hparams): """librosa implementation of Griffin-Lim Based on https://github.com/librosa/librosa/issues/434 """ angles = np.exp(2j * np.pi * np.random.rand(*S.shape)) S_complex = np.abs(S).astype(np.complex) y = _istft(S_complex * angles, hparams) for i in range(hparams.griffin_lim_iters): angles = np.exp(1j * np.angle(_stft(y, hparams))) y = _istft(S_complex * angles, hparams) return y def _stft(y, hparams): if hparams.use_lws: return _lws_processor(hparams).stft(y).T else: return librosa.stft(y=y, n_fft=hparams.n_fft, hop_length=get_hop_size(hparams), win_length=hparams.win_size) def _istft(y, hparams): # print(get_hop_size(hparams)) return librosa.istft(y, hop_length=get_hop_size(hparams), win_length=hparams.win_size) ########################################################## # Those are only correct when using lws!!! (This was messing with Wavenet quality for a long time!) def num_frames(length, fsize, fshift): """Compute number of time frames of spectrogram """ pad = (fsize - fshift) if length % fshift == 0: M = (length + pad * 2 - fsize) // fshift + 1 else: M = (length + pad * 2 - fsize) // fshift + 2 return M def pad_lr(x, fsize, fshift): """Compute left and right padding """ M = num_frames(len(x), fsize, fshift) pad = (fsize - fshift) T = len(x) + 2 * pad r = (M - 1) * fshift + fsize - T return pad, pad + r ########################################################## # Librosa correct padding def librosa_pad_lr(x, fsize, fshift): return 0, (x.shape[0] // fshift + 1) * fshift - x.shape[0] # Conversions _mel_basis = None _inv_mel_basis = None def _linear_to_mel(spectogram, hparams): global _mel_basis if _mel_basis is None: _mel_basis = _build_mel_basis(hparams) return np.dot(_mel_basis, spectogram) def _mel_to_linear(mel_spectrogram, hparams): global _inv_mel_basis if _inv_mel_basis is None: _inv_mel_basis = np.linalg.pinv(_build_mel_basis(hparams)) return np.maximum(1e-10, np.dot(_inv_mel_basis, mel_spectrogram)) def _build_mel_basis(hparams): assert hparams.fmax <= hparams.sample_rate // 2 return librosa.filters.mel(hparams.sample_rate, hparams.n_fft, n_mels=hparams.num_mels, fmin=hparams.fmin, fmax=hparams.fmax) def _amp_to_db(x, hparams): min_level = np.exp(hparams.min_level_db / 20 * np.log(10)) return 20 * np.log10(np.maximum(min_level, x)) def _db_to_amp(x): return np.power(10.0, (x) * 0.05) def _normalize(S, hparams): if hparams.allow_clipping_in_normalization: if hparams.symmetric_mels: return np.clip((2 * hparams.max_abs_value) * ( (S - hparams.min_level_db) / (-hparams.min_level_db)) - hparams.max_abs_value, -hparams.max_abs_value, hparams.max_abs_value) else: return np.clip(hparams.max_abs_value * ((S - hparams.min_level_db) / (-hparams.min_level_db)), 0, hparams.max_abs_value) assert S.max() <= 0 and S.min() - hparams.min_level_db >= 0 if hparams.symmetric_mels: return (2 * hparams.max_abs_value) * ( (S - hparams.min_level_db) / (-hparams.min_level_db)) - hparams.max_abs_value else: return hparams.max_abs_value * ((S - hparams.min_level_db) / (-hparams.min_level_db)) def _denormalize(D, hparams): if hparams.allow_clipping_in_normalization: if hparams.symmetric_mels: return (((np.clip(D, -hparams.max_abs_value, hparams.max_abs_value) + hparams.max_abs_value) * -hparams.min_level_db / ( 2 * hparams.max_abs_value)) + hparams.min_level_db) else: return ((np.clip(D, 0, hparams.max_abs_value) * -hparams.min_level_db / hparams.max_abs_value) + hparams.min_level_db) if hparams.symmetric_mels: return (((D + hparams.max_abs_value) * -hparams.min_level_db / ( 2 * hparams.max_abs_value)) + hparams.min_level_db) else: return ((D * -hparams.min_level_db / hparams.max_abs_value) + hparams.min_level_db) ================================================ FILE: models/conv.py ================================================ import torch from torch import nn from torch.nn import functional as F class Conv2d(nn.Module): def __init__(self, cin, cout, kernel_size, stride, padding, residual=False, *args, **kwargs): super().__init__(*args, **kwargs) self.conv_block = nn.Sequential( nn.Conv2d(cin, cout, kernel_size, stride, padding), nn.BatchNorm2d(cout) ) self.act = nn.ReLU() self.residual = residual def forward(self, x): out = self.conv_block(x) if self.residual: out += x return self.act(out) class nonorm_Conv2d(nn.Module): def __init__(self, cin, cout, kernel_size, stride, padding, residual=False, *args, **kwargs): super().__init__(*args, **kwargs) self.conv_block = nn.Sequential( nn.Conv2d(cin, cout, kernel_size, stride, padding), ) self.act = nn.LeakyReLU(0.01, inplace=True) def forward(self, x): out = self.conv_block(x) return self.act(out) class Conv2dTranspose(nn.Module): def __init__(self, cin, cout, kernel_size, stride, padding, output_padding=0, *args, **kwargs): super().__init__(*args, **kwargs) self.conv_block = nn.Sequential( nn.ConvTranspose2d(cin, cout, kernel_size, stride, padding, output_padding), nn.BatchNorm2d(cout) ) self.act = nn.ReLU() def forward(self, x): out = self.conv_block(x) return self.act(out) ================================================ FILE: models/decoder.py ================================================ import torch from torch import Tensor from torch import nn from torch.nn import functional as F from typing import Tuple, Optional class RecurrentDecoder(nn.Module): def __init__(self, feature_channels, decoder_channels): super().__init__() self.avgpool = AvgPool() self.decode4 = BottleneckBlock(feature_channels[3]) self.decode3 = UpsamplingBlock(feature_channels[3], feature_channels[2], 6, decoder_channels[0]) self.decode2 = UpsamplingBlock(decoder_channels[0], feature_channels[1], 6, decoder_channels[1]) self.decode1 = UpsamplingBlock(decoder_channels[1], feature_channels[0], 6, decoder_channels[2]) self.decode0 = OutputBlock(decoder_channels[2], 6, decoder_channels[3]) def forward(self, s0: Tensor, f1: Tensor, f2: Tensor, f3: Tensor, f4: Tensor, r1: Optional[Tensor], r2: Optional[Tensor], r3: Optional[Tensor], r4: Optional[Tensor]): s1, s2, s3 = self.avgpool(s0)#([10, 6, 512, 512])->([10, 6, 256, 256]);([10, 6, 128, 128]);([10, 6, 64, 64]) x4, r4 = self.decode4(f4, r4) x3, r3 = self.decode3(x4, f3, s3, r3) x2, r2 = self.decode2(x3, f2, s2, r2) x1, r1 = self.decode1(x2, f1, s1, r1) x0 = self.decode0(x1, s0) return x0, r1, r2, r3, r4 class AvgPool(nn.Module): def __init__(self): super().__init__() self.avgpool = nn.AvgPool2d(2, 2, count_include_pad=False, ceil_mode=True) def forward_single_frame(self, s0): s1 = self.avgpool(s0) s2 = self.avgpool(s1) s3 = self.avgpool(s2) return s1, s2, s3 def forward_time_series(self, s0): B, T = s0.shape[:2] s0 = s0.flatten(0, 1) s1, s2, s3 = self.forward_single_frame(s0) s1 = s1.unflatten(0, (B, T)) s2 = s2.unflatten(0, (B, T)) s3 = s3.unflatten(0, (B, T)) return s1, s2, s3 def forward(self, s0): if s0.ndim == 5: return self.forward_time_series(s0) else: return self.forward_single_frame(s0) class BottleneckBlock(nn.Module): def __init__(self, channels): super().__init__() self.channels = channels self.gru = ConvGRU(channels // 2) def forward(self, x, r: Optional[Tensor]): a, b = x.split(self.channels // 2, dim=-3) b, r = self.gru(b, r) x = torch.cat([a, b], dim=-3) return x, r class UpsamplingBlock(nn.Module): def __init__(self, in_channels, skip_channels, src_channels, out_channels): super().__init__() self.out_channels = out_channels self.upsample = nn.Upsample(scale_factor=2, mode='bilinear', align_corners=False) self.conv = nn.Sequential( nn.Conv2d(in_channels + skip_channels + src_channels, out_channels, 3, 1, 1, bias=False), nn.BatchNorm2d(out_channels), nn.ReLU(True), ) self.gru = ConvGRU(out_channels // 2) def forward_single_frame(self, x, f, s, r: Optional[Tensor]): x = self.upsample(x) x = x[:, :, :s.size(2), :s.size(3)] x = torch.cat([x, f, s], dim=1) x = self.conv(x) a, b = x.split(self.out_channels // 2, dim=1) b, r = self.gru(b, r) x = torch.cat([a, b], dim=1) return x, r def forward_time_series(self, x, f, s, r: Optional[Tensor]): B, T, _, H, W = s.shape x = x.flatten(0, 1) f = f.flatten(0, 1) s = s.flatten(0, 1) x = self.upsample(x) x = x[:, :, :H, :W] x = torch.cat([x, f, s], dim=1) x = self.conv(x) x = x.unflatten(0, (B, T)) a, b = x.split(self.out_channels // 2, dim=2) b, r = self.gru(b, r) x = torch.cat([a, b], dim=2) return x, r def forward(self, x, f, s, r: Optional[Tensor]): if x.ndim == 5: return self.forward_time_series(x, f, s, r) else: return self.forward_single_frame(x, f, s, r) class OutputBlock(nn.Module): def __init__(self, in_channels, src_channels, out_channels): super().__init__() self.upsample = nn.Upsample(scale_factor=2, mode='bilinear', align_corners=False) self.conv = nn.Sequential( nn.Conv2d(in_channels + src_channels, out_channels, 3, 1, 1, bias=False), nn.BatchNorm2d(out_channels), nn.ReLU(True), nn.Conv2d(out_channels, out_channels, 3, 1, 1, bias=False), nn.BatchNorm2d(out_channels), nn.ReLU(True), ) def forward_single_frame(self, x, s): x = self.upsample(x) x = x[:, :, :s.size(2), :s.size(3)] x = torch.cat([x, s], dim=1) x = self.conv(x) return x def forward_time_series(self, x, s): B, T, _, H, W = s.shape x = x.flatten(0, 1) s = s.flatten(0, 1) x = self.upsample(x) x = x[:, :, :H, :W] x = torch.cat([x, s], dim=1) x = self.conv(x) x = x.unflatten(0, (B, T)) return x def forward(self, x, s): if x.ndim == 5: return self.forward_time_series(x, s) else: return self.forward_single_frame(x, s) class ConvGRU(nn.Module): def __init__(self, channels: int, kernel_size: int = 3, padding: int = 1): super().__init__() self.channels = channels self.ih = nn.Sequential( nn.Conv2d(channels * 2, channels * 2, kernel_size, padding=padding), nn.Sigmoid() ) self.hh = nn.Sequential( nn.Conv2d(channels * 2, channels, kernel_size, padding=padding), nn.Tanh() ) def forward_single_frame(self, x, h): r, z = self.ih(torch.cat([x, h], dim=1)).split(self.channels, dim=1) c = self.hh(torch.cat([x, r * h], dim=1)) h = (1 - z) * h + z * c return h, h def forward_time_series(self, x, h): o = [] for xt in x.unbind(dim=1): ot, h = self.forward_single_frame(xt, h) o.append(ot) o = torch.stack(o, dim=1) return o, h def forward(self, x, h: Optional[Tensor]): if h is None: h = torch.zeros((x.size(0), x.size(-3), x.size(-2), x.size(-1)), device=x.device, dtype=x.dtype) if x.ndim == 5: return self.forward_time_series(x, h) else: return self.forward_single_frame(x, h) class Projection(nn.Module): def __init__(self, in_channels, out_channels): super().__init__() self.conv = nn.Conv2d(in_channels, out_channels, 1) def forward_single_frame(self, x): return self.conv(x) def forward_time_series(self, x): B, T = x.shape[:2] return self.conv(x.flatten(0, 1)).unflatten(0, (B, T)) def forward(self, x): if x.ndim == 5: return self.forward_time_series(x) else: return self.forward_single_frame(x) ================================================ FILE: models/deep_guided_filter.py ================================================ import torch from torch import nn from torch.nn import functional as F """ Adopted from """ class DeepGuidedFilterRefiner(nn.Module): def __init__(self, in_channels=4,hid_channels=16): super().__init__() self.box_filter = nn.Conv2d(4, 4, kernel_size=3, padding=1, bias=False, groups=4) self.box_filter.weight.data[...] = 1 / 9 self.conv = nn.Sequential( nn.Conv2d(4 * 2 + hid_channels, hid_channels, kernel_size=1, bias=False), nn.BatchNorm2d(hid_channels), nn.ReLU(True), nn.Conv2d(hid_channels, hid_channels, kernel_size=1, bias=False), nn.BatchNorm2d(hid_channels), nn.ReLU(True), nn.Conv2d(hid_channels, 4, kernel_size=1, bias=True) ) def forward_single_frame(self, fine_src, base_src, base_fgr, base_pha, base_hid): fine_x = torch.cat([fine_src, fine_src.mean(1, keepdim=True)], dim=1) base_x = torch.cat([base_src, base_src.mean(1, keepdim=True)], dim=1) base_y = torch.cat([base_fgr, base_pha], dim=1) mean_x = self.box_filter(base_x) mean_y = self.box_filter(base_y) cov_xy = self.box_filter(base_x * base_y) - mean_x * mean_y var_x = self.box_filter(base_x * base_x) - mean_x * mean_x A = self.conv(torch.cat([cov_xy, var_x, base_hid], dim=1)) b = mean_y - A * mean_x H, W = fine_src.shape[2:] A = F.interpolate(A, (H, W), mode='bilinear', align_corners=False) b = F.interpolate(b, (H, W), mode='bilinear', align_corners=False) out = A * fine_x + b fgr, pha = out.split([3, 1], dim=1) return fgr, pha def forward_time_series(self, fine_src, base_src, base_fgr, base_pha, base_hid): B, T = fine_src.shape[:2] fgr, pha = self.forward_single_frame( fine_src.flatten(0, 1), base_src.flatten(0, 1), base_fgr.flatten(0, 1), base_pha.flatten(0, 1), base_hid.flatten(0, 1)) fgr = fgr.unflatten(0, (B, T)) pha = pha.unflatten(0, (B, T)) return fgr, pha def forward(self, fine_src, base_src, base_fgr, base_pha, base_hid): if fine_src.ndim == 5: return self.forward_time_series(fine_src, base_src, base_fgr, base_pha, base_hid) else: return self.forward_single_frame(fine_src, base_src, base_fgr, base_pha, base_hid) ================================================ FILE: models/gfpganv1_clean_arch.py ================================================ import math import random import torch from basicsr.utils.registry import ARCH_REGISTRY from torch import nn from torch.nn import functional as F import time from .stylegan2_clean_arch import StyleGAN2GeneratorClean class StyleGAN2GeneratorCSFT(StyleGAN2GeneratorClean): """StyleGAN2 Generator with SFT modulation (Spatial Feature Transform). It is the clean version without custom compiled CUDA extensions used in StyleGAN2. Args: out_size (int): The spatial size of outputs. num_style_feat (int): Channel number of style features. Default: 512. num_mlp (int): Layer number of MLP style layers. Default: 8. channel_multiplier (int): Channel multiplier for large networks of StyleGAN2. Default: 2. narrow (float): The narrow ratio for channels. Default: 1. sft_half (bool): Whether to apply SFT on half of the input channels. Default: False. """ def __init__(self, out_size, num_style_feat=512, num_mlp=8, channel_multiplier=2, narrow=1, sft_half=False): super(StyleGAN2GeneratorCSFT, self).__init__( out_size, num_style_feat=num_style_feat, num_mlp=num_mlp, channel_multiplier=channel_multiplier, narrow=narrow) self.sft_half = sft_half def forward(self, styles, conditions, input_is_latent=False, noise=None, randomize_noise=True, truncation=1, truncation_latent=None, inject_index=None, return_latents=False): """Forward function for StyleGAN2GeneratorCSFT. Args: styles (list[Tensor]): Sample codes of styles. conditions (list[Tensor]): SFT conditions to generators. input_is_latent (bool): Whether input is latent style. Default: False. noise (Tensor | None): Input noise or None. Default: None. randomize_noise (bool): Randomize noise, used when 'noise' is False. Default: True. truncation (float): The truncation ratio. Default: 1. truncation_latent (Tensor | None): The truncation latent tensor. Default: None. inject_index (int | None): The injection index for mixing noise. Default: None. return_latents (bool): Whether to return style latents. Default: False. """ # style codes -> latents with Style MLP layer if not input_is_latent: styles = [self.style_mlp(s) for s in styles] # noises if noise is None: if randomize_noise: noise = [None] * self.num_layers # for each style conv layer else: # use the stored noise noise = [getattr(self.noises, f'noise{i}') for i in range(self.num_layers)] # style truncation if truncation < 1: style_truncation = [] for style in styles: style_truncation.append(truncation_latent + truncation * (style - truncation_latent)) styles = style_truncation # get style latents with injection if len(styles) == 1: inject_index = self.num_latent if styles[0].ndim < 3: # repeat latent code for all the layers latent = styles[0].unsqueeze(1).repeat(1, inject_index, 1) else: # used for encoder with different latent code for each layer latent = styles[0] elif len(styles) == 2: # mixing noises if inject_index is None: inject_index = random.randint(1, self.num_latent - 1) latent1 = styles[0].unsqueeze(1).repeat(1, inject_index, 1) latent2 = styles[1].unsqueeze(1).repeat(1, self.num_latent - inject_index, 1) latent = torch.cat([latent1, latent2], 1) # main generation out = self.constant_input(latent.shape[0]) out = self.style_conv1(out, latent[:, 0], noise=noise[0]) skip = self.to_rgb1(out, latent[:, 1]) i = 1 for conv1, conv2, noise1, noise2, to_rgb in zip(self.style_convs[::2], self.style_convs[1::2], noise[1::2], noise[2::2], self.to_rgbs): out = conv1(out, latent[:, i], noise=noise1) # the conditions may have fewer levels if i < len(conditions): # SFT part to combine the conditions if self.sft_half: # only apply SFT to half of the channels out_same, out_sft = torch.split(out, int(out.size(1) // 2), dim=1) out_sft = out_sft * conditions[i - 1] + conditions[i] out = torch.cat([out_same, out_sft], dim=1) else: # apply SFT to all the channels out = out * conditions[i - 1] + conditions[i] out = conv2(out, latent[:, i + 1], noise=noise2) skip = to_rgb(out, latent[:, i + 2], skip) # feature back to the rgb space i += 2 image = skip if return_latents: return image, latent else: return image, None class ResBlock(nn.Module): """Residual block with bilinear upsampling/downsampling. Args: in_channels (int): Channel number of the input. out_channels (int): Channel number of the output. mode (str): Upsampling/downsampling mode. Options: down | up. Default: down. """ def __init__(self, in_channels, out_channels, mode='down'): super(ResBlock, self).__init__() self.conv1 = nn.Conv2d(in_channels, in_channels, 3, 1, 1) self.conv2 = nn.Conv2d(in_channels, out_channels, 3, 1, 1) self.skip = nn.Conv2d(in_channels, out_channels, 1, bias=False) if mode == 'down': self.scale_factor = 0.5 elif mode == 'up': self.scale_factor = 2 def forward(self, x): out = F.leaky_relu_(self.conv1(x), negative_slope=0.2) # upsample/downsample out = F.interpolate(out, scale_factor=self.scale_factor, mode='bilinear', align_corners=False) out = F.leaky_relu_(self.conv2(out), negative_slope=0.2) # skip x = F.interpolate(x, scale_factor=self.scale_factor, mode='bilinear', align_corners=False) skip = self.skip(x) out = out + skip return out @ARCH_REGISTRY.register() class GFPGANv1Clean(nn.Module): """The GFPGAN architecture: Unet + StyleGAN2 decoder with SFT. It is the clean version without custom compiled CUDA extensions used in StyleGAN2. Ref: GFP-GAN: Towards Real-World Blind Face Restoration with Generative Facial Prior. Args: out_size (int): The spatial size of outputs. num_style_feat (int): Channel number of style features. Default: 512. channel_multiplier (int): Channel multiplier for large networks of StyleGAN2. Default: 2. decoder_load_path (str): The path to the pre-trained decoder model (usually, the StyleGAN2). Default: None. fix_decoder (bool): Whether to fix the decoder. Default: True. num_mlp (int): Layer number of MLP style layers. Default: 8. input_is_latent (bool): Whether input is latent style. Default: False. different_w (bool): Whether to use different latent w for different layers. Default: False. narrow (float): The narrow ratio for channels. Default: 1. sft_half (bool): Whether to apply SFT on half of the input channels. Default: False. """ def __init__( self, out_size, num_style_feat=512, channel_multiplier=1, decoder_load_path=None, fix_decoder=True, # for stylegan decoder num_mlp=8, input_is_latent=False, different_w=False, narrow=1, sft_half=False): super(GFPGANv1Clean, self).__init__() self.input_is_latent = input_is_latent self.different_w = different_w self.num_style_feat = num_style_feat unet_narrow = narrow * 0.5 # by default, use a half of input channels channels = { '4': int(512 * unet_narrow), '8': int(512 * unet_narrow), '16': int(512 * unet_narrow), '32': int(512 * unet_narrow), '64': int(256 * channel_multiplier * unet_narrow), '128': int(128 * channel_multiplier * unet_narrow), '256': int(64 * channel_multiplier * unet_narrow), '512': int(32 * channel_multiplier * unet_narrow), '1024': int(16 * channel_multiplier * unet_narrow) } self.log_size = int(math.log(out_size, 2)) first_out_size = 2**(int(math.log(out_size, 2))) self.conv_body_first = nn.Conv2d(3, channels[f'{first_out_size}'], 1) # downsample in_channels = channels[f'{first_out_size}'] self.conv_body_down = nn.ModuleList() for i in range(self.log_size, 2, -1): out_channels = channels[f'{2**(i - 1)}'] self.conv_body_down.append(ResBlock(in_channels, out_channels, mode='down')) in_channels = out_channels self.final_conv = nn.Conv2d(in_channels, channels['4'], 3, 1, 1) # upsample in_channels = channels['4'] self.conv_body_up = nn.ModuleList() for i in range(3, self.log_size + 1): out_channels = channels[f'{2**i}'] self.conv_body_up.append(ResBlock(in_channels, out_channels, mode='up')) in_channels = out_channels # to RGB self.toRGB = nn.ModuleList() for i in range(3, self.log_size + 1): self.toRGB.append(nn.Conv2d(channels[f'{2**i}'], 3, 1)) if different_w: linear_out_channel = (int(math.log(out_size, 2)) * 2 - 2) * num_style_feat else: linear_out_channel = num_style_feat self.final_linear = nn.Linear(channels['4'] * 4 * 4, linear_out_channel) # the decoder: stylegan2 generator with SFT modulations self.stylegan_decoder = StyleGAN2GeneratorCSFT( out_size=out_size, num_style_feat=num_style_feat, num_mlp=num_mlp, channel_multiplier=channel_multiplier, narrow=narrow, sft_half=sft_half) # load pre-trained stylegan2 model if necessary if decoder_load_path: self.stylegan_decoder.load_state_dict( torch.load(decoder_load_path, map_location=lambda storage, loc: storage)['params_ema']) # fix decoder without updating params if fix_decoder: for _, param in self.stylegan_decoder.named_parameters(): param.requires_grad = False def forward(self, x, return_latents=False, return_rgb=True, randomize_noise=True): """Forward function for GFPGANv1Clean. Args: x (Tensor): Input images. return_latents (bool): Whether to return style latents. Default: False. return_rgb (bool): Whether return intermediate rgb images. Default: True. randomize_noise (bool): Randomize noise, used when 'noise' is False. Default: True. """ conditions = [] unet_skips = [] out_rgbs = [] # encoder feat = F.leaky_relu_(self.conv_body_first(x), negative_slope=0.2)#([5, 3, 512, 512])->([5, 32, 512, 512]) for i in range(self.log_size - 2): feat = self.conv_body_down[i](feat) unet_skips.insert(0, feat) feat = F.leaky_relu_(self.final_conv(feat), negative_slope=0.2)#([5, 256, 4, 4])->([5, 256, 4, 4]) # style code style_code = self.final_linear(feat.view(feat.size(0), -1))#([5, 256, 4, 4])->([5, 8192]) if self.different_w: style_code = style_code.view(style_code.size(0), -1, self.num_style_feat)#([5, 8192])->([5, 16, 512]) image, _ = self.stylegan_decoder([style_code], conditions, return_latents=return_latents, input_is_latent=self.input_is_latent, randomize_noise=randomize_noise) return image, image ================================================ FILE: models/guided_filter_pytorch/__init__.py ================================================ ================================================ FILE: models/guided_filter_pytorch/box_filter.py ================================================ import torch from torch import nn def diff_x(input, r): assert input.dim() == 4 left = input[:, :, r:2 * r + 1] middle = input[:, :, 2 * r + 1: ] - input[:, :, :-2 * r - 1] right = input[:, :, -1: ] - input[:, :, -2 * r - 1: -r - 1] output = torch.cat([left, middle, right], dim=2) return output def diff_y(input, r): assert input.dim() == 4 left = input[:, :, :, r:2 * r + 1] middle = input[:, :, :, 2 * r + 1: ] - input[:, :, :, :-2 * r - 1] right = input[:, :, :, -1: ] - input[:, :, :, -2 * r - 1: -r - 1] output = torch.cat([left, middle, right], dim=3) return output class BoxFilter(nn.Module): def __init__(self, r): super(BoxFilter, self).__init__() self.r = r def forward(self, x): assert x.dim() == 4 return diff_y(diff_x(x.cumsum(dim=2), self.r).cumsum(dim=3), self.r) ================================================ FILE: models/guided_filter_pytorch/guided_filter.py ================================================ import torch from torch import nn from torch.nn import functional as F from torch.autograd import Variable from .box_filter import BoxFilter class FastGuidedFilter(nn.Module): def __init__(self, r, eps=1e-8): super(FastGuidedFilter, self).__init__() self.r = r self.eps = eps self.boxfilter = BoxFilter(r) def forward(self, lr_x, lr_y, hr_x): n_lrx, c_lrx, h_lrx, w_lrx = lr_x.size() n_lry, c_lry, h_lry, w_lry = lr_y.size() n_hrx, c_hrx, h_hrx, w_hrx = hr_x.size() assert n_lrx == n_lry and n_lry == n_hrx assert c_lrx == c_hrx and (c_lrx == 1 or c_lrx == c_lry) assert h_lrx == h_lry and w_lrx == w_lry assert h_lrx > 2*self.r+1 and w_lrx > 2*self.r+1 ## N N = self.boxfilter(Variable(lr_x.data.new().resize_((1, 1, h_lrx, w_lrx)).fill_(1.0))) ## mean_x mean_x = self.boxfilter(lr_x) / N ## mean_y mean_y = self.boxfilter(lr_y) / N ## cov_xy cov_xy = self.boxfilter(lr_x * lr_y) / N - mean_x * mean_y ## var_x var_x = self.boxfilter(lr_x * lr_x) / N - mean_x * mean_x ## A A = cov_xy / (var_x + self.eps) ## b b = mean_y - A * mean_x ## mean_A; mean_b mean_A = F.interpolate(A, (h_hrx, w_hrx), mode='bilinear', align_corners=True) mean_b = F.interpolate(b, (h_hrx, w_hrx), mode='bilinear', align_corners=True) return mean_A*hr_x+mean_b class GuidedFilter(nn.Module): def __init__(self, r, eps=1e-8): super(GuidedFilter, self).__init__() self.r = r self.eps = eps self.boxfilter = BoxFilter(r) def forward(self, x, y): n_x, c_x, h_x, w_x = x.size() n_y, c_y, h_y, w_y = y.size() assert n_x == n_y assert c_x == 1 or c_x == c_y assert h_x == h_y and w_x == w_y assert h_x > 2 * self.r + 1 and w_x > 2 * self.r + 1 # N N = self.boxfilter(Variable(x.data.new().resize_((1, 1, h_x, w_x)).fill_(1.0))) # mean_x mean_x = self.boxfilter(x) / N # mean_y mean_y = self.boxfilter(y) / N # cov_xy cov_xy = self.boxfilter(x * y) / N - mean_x * mean_y # var_x var_x = self.boxfilter(x * x) / N - mean_x * mean_x # A A = cov_xy / (var_x + self.eps) # b b = mean_y - A * mean_x # mean_A; mean_b mean_A = self.boxfilter(A) / N mean_b = self.boxfilter(b) / N return mean_A * x + mean_b class ConvGuidedFilter(nn.Module): def __init__(self, radius=1, norm=nn.BatchNorm2d): super(ConvGuidedFilter, self).__init__() self.box_filter = nn.Conv2d(3, 3, kernel_size=3, padding=radius, dilation=radius, bias=False, groups=3) self.conv_a = nn.Sequential(nn.Conv2d(6, 32, kernel_size=1, bias=False), norm(32), nn.ReLU(inplace=True), nn.Conv2d(32, 32, kernel_size=1, bias=False), norm(32), nn.ReLU(inplace=True), nn.Conv2d(32, 3, kernel_size=1, bias=False)) self.box_filter.weight.data[...] = 1.0 def forward(self, x_lr, y_lr, x_hr): _, _, h_lrx, w_lrx = x_lr.size() _, _, h_hrx, w_hrx = x_hr.size() N = self.box_filter(x_lr.data.new().resize_((1, 3, h_lrx, w_lrx)).fill_(1.0)) ## mean_x mean_x = self.box_filter(x_lr)/N ## mean_y mean_y = self.box_filter(y_lr)/N ## cov_xy cov_xy = self.box_filter(x_lr * y_lr)/N - mean_x * mean_y ## var_x var_x = self.box_filter(x_lr * x_lr)/N - mean_x * mean_x ## A A = self.conv_a(torch.cat([cov_xy, var_x], dim=1)) ## b b = mean_y - A * mean_x ## mean_A; mean_b mean_A = F.interpolate(A, (h_hrx, w_hrx), mode='bilinear', align_corners=True) mean_b = F.interpolate(b, (h_hrx, w_hrx), mode='bilinear', align_corners=True) return mean_A * x_hr + mean_b ================================================ FILE: models/hyperlayers.py ================================================ '''Pytorch implementations of hyper-network modules.''' import torch import torch.nn as nn import functools import torch.nn.functional as F from torch.nn.common_types import _size_2_t # pytorch_prototyping class FCLayer(nn.Module): def __init__(self, in_features, out_features): super().__init__() self.net = nn.Sequential( nn.Linear(in_features, out_features), nn.ReLU(inplace=True) ) def forward(self, input): return self.net(input) class FCBlock(nn.Module): def __init__(self, hidden_ch, num_hidden_layers, in_features, out_features, outermost_linear=False): super().__init__() self.net = [] self.net.append(FCLayer(in_features=in_features, out_features=hidden_ch)) for i in range(num_hidden_layers): self.net.append(FCLayer(in_features=hidden_ch, out_features=hidden_ch)) if outermost_linear: self.net.append(nn.Linear(in_features=hidden_ch, out_features=out_features)) else: self.net.append(FCLayer(in_features=hidden_ch, out_features=out_features)) self.net = nn.Sequential(*self.net) self.net.apply(self.init_weights) def __getitem__(self,item): return self.net[item] def init_weights(self, m): if type(m) == nn.Linear: nn.init.kaiming_normal_(m.weight, a=0.0, nonlinearity='relu', mode='fan_in') def forward(self, input): return self.net(input) def partialclass(cls, *args, **kwds): class NewCls(cls): __init__ = functools.partialmethod(cls.__init__, *args, **kwds) return NewCls class HyperLayer(nn.Module): '''A hypernetwork that predicts a single Dense Layer, including LayerNorm and a ReLU.''' def __init__(self, in_ch, out_ch, hyper_in_ch, hyper_num_hidden_layers, hyper_hidden_ch): super().__init__() self.hyper_linear = HyperLinear(in_ch=in_ch, out_ch=out_ch, hyper_in_ch=hyper_in_ch, hyper_num_hidden_layers=hyper_num_hidden_layers, hyper_hidden_ch=hyper_hidden_ch) self.norm_nl = nn.Sequential( nn.LayerNorm([out_ch], elementwise_affine=False), nn.ReLU(inplace=True) ) def forward(self, hyper_input): ''' :param hyper_input: input to hypernetwork. :return: nn.Module; predicted fully connected network. ''' return nn.Sequential(self.hyper_linear(hyper_input), self.norm_nl) class HyperFC(nn.Module): '''Builds a hypernetwork that predicts a fully connected neural network. ''' def __init__(self, in_ch_pos, # MLP input dim (3D points) in_ch_view, # MLP input dim (view direction) out_ch, # MLP output dim (rgb) hyper_in_ch=512, # Hyper input dim (embedding) hyper_num_hidden_layers=1, hyper_hidden_ch=64, # Hyper output dim (hidden) hidden_ch=128, # MLP layer dim num_hidden_layers=6, # Total number of MLP layers ): super().__init__() PreconfHyperLinear = partialclass(HyperLinear, hyper_in_ch=hyper_in_ch, hyper_num_hidden_layers=hyper_num_hidden_layers, hyper_hidden_ch=hyper_hidden_ch) PreconfHyperLayer = partialclass(HyperLayer, hyper_in_ch=hyper_in_ch, hyper_num_hidden_layers=hyper_num_hidden_layers, hyper_hidden_ch=hyper_hidden_ch) self.layers = nn.ModuleList() self.layers.append(PreconfHyperLinear(in_ch=hidden_ch, out_ch=hidden_ch)) # base_remap self.layers.append(PreconfHyperLayer(in_ch=hidden_ch + in_ch_view, out_ch=hidden_ch)) # rgb_layer0 self.layers.append(PreconfHyperLayer(in_ch=hidden_ch, out_ch=hidden_ch)) # rgb_layer1 self.layers.append(PreconfHyperLayer(in_ch=hidden_ch, out_ch=hidden_ch // 2)) # rgb_layer2 self.layers.append(PreconfHyperLinear(in_ch=hidden_ch // 2, out_ch=out_ch)) # rgb_layer3 def forward(self, hyper_input): ''' :param hyper_input: Input to hypernetwork. :return: nn.Module; Predicted fully connected neural network. ''' net = [] for i in range(len(self.layers)): net.append(self.layers[i](hyper_input)) return net class BatchLinear(nn.Module): def __init__(self, weights, biases): '''Implements a batch linear layer. :param weights: Shape: (batch, out_ch, in_ch) :param biases: Shape: (batch, 1, out_ch) ''' super().__init__() self.weights = weights self.biases = biases def __repr__(self): return "BatchLinear(in_ch=%d, out_ch=%d)"%(self.weights.shape[-1], self.weights.shape[-2]) def forward(self, input): output = input.matmul(self.weights.permute(*[i for i in range(len(self.weights.shape)-2)], -1, -2)) output += self.biases return output def last_hyper_layer_init(m): if type(m) == nn.Linear: nn.init.kaiming_normal_(m.weight, a=0.0, nonlinearity='relu', mode='fan_in') m.weight.data *= 1e-1 class HyperLinear(nn.Module): '''A hypernetwork that predicts a single linear layer (weights & biases).''' def __init__(self, in_ch, out_ch, hyper_in_ch, hyper_num_hidden_layers, hyper_hidden_ch): super().__init__() self.in_ch = in_ch self.out_ch = out_ch self.hypo_params = FCBlock(in_features=hyper_in_ch, hidden_ch=hyper_hidden_ch, num_hidden_layers=hyper_num_hidden_layers, out_features=(in_ch * out_ch) + out_ch, outermost_linear=True) self.hypo_params[-1].apply(last_hyper_layer_init) def forward(self, hyper_input):#([1, 131072]) hypo_params = self.hypo_params(hyper_input.cuda()) # Indices explicit to catch erros in shape of output layer weights = hypo_params[..., :self.in_ch * self.out_ch]#([1, 4992]) biases = hypo_params[..., self.in_ch * self.out_ch:(self.in_ch * self.out_ch)+self.out_ch]#e([1, 128]) biases = biases.view(*(biases.size()[:-1]), 1, self.out_ch)#([1, 1, 128]) weights = weights.view(*(weights.size()[:-1]), self.out_ch, self.in_ch)#([1, 128, 39]) return BatchLinear(weights=weights, biases=biases) class HyperConv(nn.Module): """ is a custom implementation of a 2D convolutional layer that can use different weights at different resolutions. It has a forward method that takes in a list of tensors x and returns a list of convolved tensors. It does this by creating a linear layer that takes in a single scalar value representing the resolution and outputs the weights for each convolution at that resolution. These weights are then used to compute the convolutions for each input tensor in x. """ def __init__(self, levels, in_channels: int, out_channels: int, kernel_size: _size_2_t, stride: _size_2_t = 1, padding: _size_2_t = 0, dilation: _size_2_t = 1, groups: int = 1, bias: bool = True, padding_mode: str = 'zeros', device='cpu'): # logger.info('initialize HyperConv') super(HyperConv, self).__init__() self.levels = levels self.in_channels = in_channels self.out_channels = out_channels self.kernel_size = kernel_size self.stride = stride self.padding = padding self.dilation = dilation self.groups = groups self.bias = bias self.padding_mode = padding_mode self.device = device self.fc = nn.Linear(1, self.out_channels * (self.in_channels * (kernel_size * kernel_size) + int(self.bias))) self.w_len = self.in_channels * \ (self.out_channels * (self.kernel_size * self.kernel_size)) # logger.debug('finish initialize HyperConv') def forward(self, x): out = [None for _ in range(len(self.levels))] scale = [torch.tensor([l]).type(torch.float32).to( self.device) for l in self.levels] for i in range(len(scale)): tot_weights = self.fc(scale[i]) weights = tot_weights[:self.w_len].reshape( self.out_channels, self.in_channels, self.kernel_size, self.kernel_size) bias = tot_weights[self.w_len:] bias = bias if self.bias else None out[i] = F.conv2d(x[i], weights, bias, stride=self.stride, padding=self.padding, dilation=self.dilation ) return out ================================================ FILE: models/hypernetwork.py ================================================ import torch.nn as nn class HyperNetwork(nn.Module): """Hypernetwork architecture.""" def __init__(self, in_dim=1, h_dim=32): """ Args: in_dim : Input dimension h_dim : Hidden dimension """ super(HyperNetwork, self).__init__() # Network layers self.lin1 = nn.Linear(in_dim, h_dim) self.lin2 = nn.Linear(h_dim, h_dim) # Activations self.relu = nn.LeakyReLU(inplace=True) def forward(self, x): """ Args: x : Hyperparameter values (batch_size, num_hyperparams) """ x = self.relu(self.lin1(x)) x = self.relu(self.lin2(x)) return x ================================================ FILE: models/layers.py ================================================ """ Layers for HyperRecon For more details, please read: Alan Q. Wang, Adrian V. Dalca, and Mert R. Sabuncu. "Regularization-Agnostic Compressed Sensing MRI with Hypernetworks" """ import numbers import math import torch import torch.nn as nn import torch.nn.functional as F import numpy as np class Upsample(nn.Module): """Upsample a multi-channel input image""" def __init__(self, scale_factor, mode, align_corners): super(Upsample, self).__init__() self.scale_factor = scale_factor self.mode = mode self.align_corners = align_corners def forward(self, x): return F.interpolate(x, scale_factor=self.scale_factor, mode=self.mode, align_corners=self.align_corners) class MultiSequential(nn.Sequential): def forward(self, *inputs): x = inputs[0] hyp_out = inputs[1] for module in self._modules.values(): if type(module) == BatchConv2d: x = module(x, hyp_out) else: x = module(x) return x class Conv2d(nn.Module): def __init__(self, in_channels, out_channels, kernel_size=3, padding=0): super(Conv2d, self).__init__() self.layer = nn.Conv2d(in_channels, out_channels, kernel_size, padding=padding) def forward(self, x, hyp_out=None): return self.layer(x) class BatchConv2d(nn.Module): """ Conv2D for a batch of images and weights For batch size B of images and weights, convolutions are computed between images[0] and weights[0], images[1] and weights[1], ..., images[B-1] and weights[B-1] Takes hypernet output and transforms it to weights and biases """ def __init__(self, in_channels, out_channels, hyp_out_units, stride=1, padding=0, dilation=1, kernel_size=3): super(BatchConv2d, self).__init__() self.stride = stride self.padding = padding self.dilation = dilation self.kernel_size = kernel_size self.in_channels = in_channels self.out_channels = out_channels kernel_units = np.prod(self.get_kernel_shape()) bias_units = np.prod(self.get_bias_shape()) self.hyperkernel = nn.Linear(hyp_out_units, kernel_units) self.hyperbias = nn.Linear(hyp_out_units, bias_units) def forward(self, x, hyp_out, include_bias=True): assert x.shape[0] == hyp_out.shape[0], 'dim=0 of x ({}) must be equal in size to dim=0 ({}) of hypernet output'.format(x.shape[0], hyp_out.shape[0]) x = x.unsqueeze(1) b_i, b_j, c, h, w = x.shape # b_i, c, h, w = x.shape # Reshape input and get weights from hyperkernel out = x.permute([1, 0, 2, 3, 4]).contiguous().view(b_j, b_i * c, h, w) self.kernel = self.hyperkernel(hyp_out) kernel = self.kernel.view(b_i * self.out_channels, self.in_channels, self.kernel_size, self.kernel_size) out = F.conv2d(out, weight=kernel, bias=None, stride=self.stride, dilation=self.dilation, groups=b_i,padding=self.padding) out = out.view(b_j, b_i, self.out_channels, out.shape[-2], out.shape[-1]) out = out.permute([1, 0, 2, 3, 4]) if include_bias: # Get weights from hyperbias self.bias = self.hyperbias(hyp_out) out = out + self.bias.unsqueeze(1).unsqueeze(3).unsqueeze(3) out = out[:,0,...] return out def get_kernel(self): return self.kernel def get_bias(self): return self.bias def get_kernel_shape(self): return [self.out_channels, self.in_channels, self.kernel_size, self.kernel_size] def get_bias_shape(self): return [self.out_channels] class ClipByPercentile(object): """Divide by specified percentile and clip values in [0, 1].""" def __init__(self, perc=99): self.perc = perc def __call__(self, img): val = np.percentile(img, self.perc) if val == 0: val = 1 img_divide = img / val img_clip = np.clip(img_divide, 0, 1) return img_clip class ZeroPad(object): def __init__(self, final_size): self.final_size = final_size def __call__(self, img): ''' ''' final_img = np.zeros(self.final_size) size = img.shape pad_row = self.final_size[0] - size[0] pad_col = self.final_size[1] - size[1] final_img[pad_row//2:-pad_row//2, pad_col//2:-pad_col//2] = img return final_img ================================================ FILE: models/lraspp.py ================================================ from torch import nn class LRASPP(nn.Module): def __init__(self, in_channels, out_channels): super().__init__() self.aspp1 = nn.Sequential( nn.Conv2d(in_channels, out_channels, 1, bias=False), nn.BatchNorm2d(out_channels), nn.ReLU(True) ) self.aspp2 = nn.Sequential( nn.AdaptiveAvgPool2d(1), nn.Conv2d(in_channels, out_channels, 1, bias=False), nn.Sigmoid() ) def forward_single_frame(self, x): return self.aspp1(x) * self.aspp2(x) def forward_time_series(self, x): B, T = x.shape[:2] x = self.forward_single_frame(x.flatten(0, 1)).unflatten(0, (B, T)) return x def forward(self, x): if x.ndim == 5: return self.forward_time_series(x) else: return self.forward_single_frame(x) ================================================ FILE: models/memory.py ================================================ import torch from torch import nn from torch.nn import functional as F class Memory(nn.Module): def __init__(self, radius=16.0, n_slot=96): super().__init__() self.key = nn.Parameter(torch.Tensor(n_slot, 512), requires_grad=True) self.value = nn.Parameter(torch.Tensor(n_slot, 512), requires_grad=True) nn.init.normal_(self.key, 0, 0.5) nn.init.normal_(self.value, 0, 0.5) self.q_embd = nn.Linear(512, 512) self.v_embd = nn.Linear(512, 512) self.fusion = nn.Linear(1024, 512) self.dropout = nn.Dropout(0.5) self.radius = radius self.softmax = nn.Softmax(1) def forward(self, query, value=None, inference=False): query = query.squeeze(2).squeeze(2) B, C = query.size() add_loss, recon_loss, key_add, value_add, tr_fusion = None, None, None, None, None embd_query = self.q_embd(query) query_norm = F.normalize(self.key, dim=1) key_sim = F.linear(F.normalize(embd_query, dim=1), query_norm) key_add = self.softmax(self.radius * key_sim) key_add = key_add.cuda() vir_lip = torch.matmul(key_add, self.value) te_fusion = torch.cat([query, vir_lip], 1) te_fusion = self.dropout(te_fusion) te_fusion = self.fusion(te_fusion) te_fusion = te_fusion.unsqueeze(2).unsqueeze(2) # Update if not inference: value = value.squeeze(2).squeeze(2) embd_value = self.v_embd(value) value_norm = F.normalize(self.value, dim=1) value_sim = F.linear(F.normalize(embd_value, dim=1), value_norm) value_add = self.softmax(self.radius * value_sim) lip = torch.matmul(value_add, self.value) recon_loss = F.mse_loss(lip, embd_value.detach()) recon_loss = recon_loss.unsqueeze(0) tr_fusion = torch.cat([query, lip], 1) tr_fusion = self.dropout(tr_fusion) tr_fusion = self.fusion(tr_fusion) tr_fusion = tr_fusion.unsqueeze(2).unsqueeze(2) add_loss = F.kl_div(torch.log(key_add + 1e-13), value_add.detach(), reduction='batchmean') add_loss = add_loss.unsqueeze(0) return te_fusion, tr_fusion, recon_loss, add_loss, key_add.view(int(B / 5), 5, -1), value_add.view(int(B / 5), 5, -1) else: return te_fusion, tr_fusion, recon_loss, add_loss, key_add.view(1, -1, 96), value_add ================================================ FILE: models/mobilenetv3.py ================================================ from torch import nn from torch.hub import load_state_dict_from_url from torchvision.transforms.functional import normalize import warnings from functools import partial from typing import Any, Callable, List, Optional, Sequence import torch from torch import nn, Tensor import warnings from typing import Callable, List, Optional import torch from torch import Tensor def _make_divisible(v: float, divisor: int, min_value: Optional[int] = None) -> int: """ This function is taken from the original tf repo. It ensures that all layers have a channel number that is divisible by 8 It can be seen here: https://github.com/tensorflow/models/blob/master/research/slim/nets/mobilenet/mobilenet.py """ if min_value is None: min_value = divisor new_v = max(min_value, int(v + divisor / 2) // divisor * divisor) # Make sure that round down does not go down by more than 10%. if new_v < 0.9 * v: new_v += divisor return new_v # @no_type_check def _log_api_usage_once(obj: str) -> None: # type: ignore if torch.jit.is_scripting() or torch.jit.is_tracing(): return # NOTE: obj can be an object as well, but mocking it here to be # only a string to appease torchscript if isinstance(obj, str): torch._C._log_api_usage_once(obj) else: torch._C._log_api_usage_once(f"{obj.__module__}.{obj.__class__.__name__}") class Conv2d(torch.nn.Conv2d): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) warnings.warn( "torchvision.ops.misc.Conv2d is deprecated and will be " "removed in future versions, use torch.nn.Conv2d instead.", FutureWarning, ) class ConvTranspose2d(torch.nn.ConvTranspose2d): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) warnings.warn( "torchvision.ops.misc.ConvTranspose2d is deprecated and will be " "removed in future versions, use torch.nn.ConvTranspose2d instead.", FutureWarning, ) class BatchNorm2d(torch.nn.BatchNorm2d): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) warnings.warn( "torchvision.ops.misc.BatchNorm2d is deprecated and will be " "removed in future versions, use torch.nn.BatchNorm2d instead.", FutureWarning, ) interpolate = torch.nn.functional.interpolate # This is not in nn class FrozenBatchNorm2d(torch.nn.Module): """ BatchNorm2d where the batch statistics and the affine parameters are fixed Args: num_features (int): Number of features ``C`` from an expected input of size ``(N, C, H, W)`` eps (float): a value added to the denominator for numerical stability. Default: 1e-5 """ def __init__( self, num_features: int, eps: float = 1e-5, n: Optional[int] = None, ): # n=None for backward-compatibility if n is not None: warnings.warn("`n` argument is deprecated and has been renamed `num_features`", DeprecationWarning) num_features = n super().__init__() _log_api_usage_once(self) self.eps = eps self.register_buffer("weight", torch.ones(num_features)) self.register_buffer("bias", torch.zeros(num_features)) self.register_buffer("running_mean", torch.zeros(num_features)) self.register_buffer("running_var", torch.ones(num_features)) def _load_from_state_dict( self, state_dict: dict, prefix: str, local_metadata: dict, strict: bool, missing_keys: List[str], unexpected_keys: List[str], error_msgs: List[str], ): num_batches_tracked_key = prefix + "num_batches_tracked" if num_batches_tracked_key in state_dict: del state_dict[num_batches_tracked_key] super()._load_from_state_dict( state_dict, prefix, local_metadata, strict, missing_keys, unexpected_keys, error_msgs ) def forward(self, x: Tensor) -> Tensor: # move reshapes to the beginning # to make it fuser-friendly w = self.weight.reshape(1, -1, 1, 1) b = self.bias.reshape(1, -1, 1, 1) rv = self.running_var.reshape(1, -1, 1, 1) rm = self.running_mean.reshape(1, -1, 1, 1) scale = w * (rv + self.eps).rsqrt() bias = b - rm * scale return x * scale + bias def __repr__(self) -> str: return f"{self.__class__.__name__}({self.weight.shape[0]}, eps={self.eps})" class ConvNormActivation(torch.nn.Sequential): """ Configurable block used for Convolution-Normalzation-Activation blocks. Args: in_channels (int): Number of channels in the input image out_channels (int): Number of channels produced by the Convolution-Normalzation-Activation block kernel_size: (int, optional): Size of the convolving kernel. Default: 3 stride (int, optional): Stride of the convolution. Default: 1 padding (int, tuple or str, optional): Padding added to all four sides of the input. Default: None, in wich case it will calculated as ``padding = (kernel_size - 1) // 2 * dilation`` groups (int, optional): Number of blocked connections from input channels to output channels. Default: 1 norm_layer (Callable[..., torch.nn.Module], optional): Norm layer that will be stacked on top of the convolutiuon layer. If ``None`` this layer wont be used. Default: ``torch.nn.BatchNorm2d`` activation_layer (Callable[..., torch.nn.Module], optinal): Activation function which will be stacked on top of the normalization layer (if not None), otherwise on top of the conv layer. If ``None`` this layer wont be used. Default: ``torch.nn.ReLU`` dilation (int): Spacing between kernel elements. Default: 1 inplace (bool): Parameter for the activation layer, which can optionally do the operation in-place. Default ``True`` """ def __init__( self, in_channels: int, out_channels: int, kernel_size: int = 3, stride: int = 1, padding: Optional[int] = None, groups: int = 1, norm_layer: Optional[Callable[..., torch.nn.Module]] = torch.nn.BatchNorm2d, activation_layer: Optional[Callable[..., torch.nn.Module]] = torch.nn.ReLU, dilation: int = 1, inplace: bool = True, ) -> None: if padding is None: padding = (kernel_size - 1) // 2 * dilation layers = [ torch.nn.Conv2d( in_channels, out_channels, kernel_size, stride, padding, dilation=dilation, groups=groups, bias=norm_layer is None, ) ] if norm_layer is not None: layers.append(norm_layer(out_channels)) if activation_layer is not None: layers.append(activation_layer(inplace=inplace)) super().__init__(*layers) _log_api_usage_once(self) self.out_channels = out_channels # class SqueezeExcitation(torch.nn.Module): class SElayer(torch.nn.Module): """ This block implements the Squeeze-and-Excitation block from https://arxiv.org/abs/1709.01507 (see Fig. 1). Parameters ``activation``, and ``scale_activation`` correspond to ``delta`` and ``sigma`` in in eq. 3. Args: input_channels (int): Number of channels in the input image squeeze_channels (int): Number of squeeze channels activation (Callable[..., torch.nn.Module], optional): ``delta`` activation. Default: ``torch.nn.ReLU`` scale_activation (Callable[..., torch.nn.Module]): ``sigma`` activation. Default: ``torch.nn.Sigmoid`` """ def __init__( self, input_channels: int, squeeze_channels: int, activation: Callable[..., torch.nn.Module] = torch.nn.ReLU, scale_activation: Callable[..., torch.nn.Module] = torch.nn.Sigmoid, ) -> None: super().__init__() _log_api_usage_once(self) self.avgpool = torch.nn.AdaptiveAvgPool2d(1) self.fc1 = torch.nn.Conv2d(input_channels, squeeze_channels, 1) self.fc2 = torch.nn.Conv2d(squeeze_channels, input_channels, 1) self.activation = activation() self.scale_activation = scale_activation() def _scale(self, input: Tensor) -> Tensor: scale = self.avgpool(input) scale = self.fc1(scale) scale = self.activation(scale) scale = self.fc2(scale) return self.scale_activation(scale) def forward(self, input: Tensor) -> Tensor: scale = self._scale(input) return scale * input class InvertedResidualConfig: # Stores information listed at Tables 1 and 2 of the MobileNetV3 paper def __init__( self, input_channels: int, kernel: int, expanded_channels: int, out_channels: int, use_se: bool, activation: str, stride: int, dilation: int, width_mult: float, ): self.input_channels = self.adjust_channels(input_channels, width_mult) self.kernel = kernel self.expanded_channels = self.adjust_channels(expanded_channels, width_mult) self.out_channels = self.adjust_channels(out_channels, width_mult) self.use_se = use_se self.use_hs = activation == "HS" self.stride = stride self.dilation = dilation @staticmethod def adjust_channels(channels: int, width_mult: float): return _make_divisible(channels * width_mult, 8) class InvertedResidual(nn.Module): # Implemented as described at section 5 of MobileNetV3 paper def __init__( self, cnf: InvertedResidualConfig, norm_layer: Callable[..., nn.Module], se_layer: Callable[..., nn.Module] = partial(SElayer, scale_activation=nn.Hardsigmoid), ): super().__init__() if not (1 <= cnf.stride <= 2): raise ValueError("illegal stride value") self.use_res_connect = cnf.stride == 1 and cnf.input_channels == cnf.out_channels layers: List[nn.Module] = [] activation_layer = nn.Hardswish if cnf.use_hs else nn.ReLU # expand if cnf.expanded_channels != cnf.input_channels: layers.append( ConvNormActivation( cnf.input_channels, cnf.expanded_channels, kernel_size=1, norm_layer=norm_layer, activation_layer=activation_layer, ) ) # depthwise stride = 1 if cnf.dilation > 1 else cnf.stride layers.append( ConvNormActivation( cnf.expanded_channels, cnf.expanded_channels, kernel_size=cnf.kernel, stride=stride, dilation=cnf.dilation, groups=cnf.expanded_channels, norm_layer=norm_layer, activation_layer=activation_layer, ) ) if cnf.use_se: squeeze_channels = _make_divisible(cnf.expanded_channels // 4, 8) layers.append(se_layer(cnf.expanded_channels, squeeze_channels)) # project layers.append( ConvNormActivation( cnf.expanded_channels, cnf.out_channels, kernel_size=1, norm_layer=norm_layer, activation_layer=None ) ) self.block = nn.Sequential(*layers) self.out_channels = cnf.out_channels self._is_cn = cnf.stride > 1 def forward(self, input: Tensor) -> Tensor: result = self.block(input) if self.use_res_connect: result += input return result class MobileNetV3(nn.Module): def __init__( self, inverted_residual_setting: List[InvertedResidualConfig], last_channel: int, num_classes: int = 1000, block: Optional[Callable[..., nn.Module]] = None, norm_layer: Optional[Callable[..., nn.Module]] = None, dropout: float = 0.2, **kwargs: Any, ) -> None: """ MobileNet V3 main class Args: inverted_residual_setting (List[InvertedResidualConfig]): Network structure last_channel (int): The number of channels on the penultimate layer num_classes (int): Number of classes block (Optional[Callable[..., nn.Module]]): Module specifying inverted residual building block for mobilenet norm_layer (Optional[Callable[..., nn.Module]]): Module specifying the normalization layer to use dropout (float): The droupout probability """ super().__init__() _log_api_usage_once(self) if not inverted_residual_setting: raise ValueError("The inverted_residual_setting should not be empty") elif not ( isinstance(inverted_residual_setting, Sequence) and all([isinstance(s, InvertedResidualConfig) for s in inverted_residual_setting]) ): raise TypeError("The inverted_residual_setting should be List[InvertedResidualConfig]") if block is None: block = InvertedResidual if norm_layer is None: norm_layer = partial(nn.BatchNorm2d, eps=0.001, momentum=0.01) layers: List[nn.Module] = [] # building first layer firstconv_output_channels = inverted_residual_setting[0].input_channels layers.append( ConvNormActivation( 3, firstconv_output_channels, kernel_size=3, stride=2, norm_layer=norm_layer, activation_layer=nn.Hardswish, ) ) # building inverted residual blocks for cnf in inverted_residual_setting: layers.append(block(cnf, norm_layer)) # building last several layers lastconv_input_channels = inverted_residual_setting[-1].out_channels lastconv_output_channels = 6 * lastconv_input_channels layers.append( ConvNormActivation( lastconv_input_channels, lastconv_output_channels, kernel_size=1, norm_layer=norm_layer, activation_layer=nn.Hardswish, ) ) self.features = nn.Sequential(*layers) self.avgpool = nn.AdaptiveAvgPool2d(1) self.classifier = nn.Sequential( nn.Linear(lastconv_output_channels, last_channel), nn.Hardswish(inplace=True), nn.Dropout(p=dropout, inplace=True), nn.Linear(last_channel, num_classes), ) for m in self.modules(): if isinstance(m, nn.Conv2d): nn.init.kaiming_normal_(m.weight, mode="fan_out") if m.bias is not None: nn.init.zeros_(m.bias) elif isinstance(m, (nn.BatchNorm2d, nn.GroupNorm)): nn.init.ones_(m.weight) nn.init.zeros_(m.bias) elif isinstance(m, nn.Linear): nn.init.normal_(m.weight, 0, 0.01) nn.init.zeros_(m.bias) def _forward_impl(self, x: Tensor) -> Tensor: x = self.features(x) x = self.avgpool(x) x = torch.flatten(x, 1) x = self.classifier(x) return x def forward(self, x: Tensor) -> Tensor: return self._forward_impl(x) class MobileNetV3LargeEncoder(MobileNetV3): def __init__(self, pretrained: bool = False,in_ch: int = 3): super().__init__( inverted_residual_setting=[ InvertedResidualConfig( 16, 3, 16, 16, False, "RE", 1, 1, 1), InvertedResidualConfig( 16, 3, 64, 24, False, "RE", 2, 1, 1), # C1 InvertedResidualConfig( 24, 3, 72, 24, False, "RE", 1, 1, 1), InvertedResidualConfig( 24, 5, 72, 40, True, "RE", 2, 1, 1), # C2 InvertedResidualConfig( 40, 5, 120, 40, True, "RE", 1, 1, 1), InvertedResidualConfig( 40, 5, 120, 40, True, "RE", 1, 1, 1), InvertedResidualConfig( 40, 3, 240, 80, False, "HS", 2, 1, 1), # C3 InvertedResidualConfig( 80, 3, 200, 80, False, "HS", 1, 1, 1), InvertedResidualConfig( 80, 3, 184, 80, False, "HS", 1, 1, 1), InvertedResidualConfig( 80, 3, 184, 80, False, "HS", 1, 1, 1), InvertedResidualConfig( 80, 3, 480, 112, True, "HS", 1, 1, 1), InvertedResidualConfig(112, 3, 672, 112, True, "HS", 1, 1, 1), InvertedResidualConfig(112, 5, 672, 160, True, "HS", 2, 2, 1), # C4 InvertedResidualConfig(160, 5, 960, 160, True, "HS", 1, 2, 1), InvertedResidualConfig(160, 5, 960, 160, True, "HS", 1, 2, 1), ], last_channel=1280 ) self.in_ch=in_ch self.features[0]=ConvNormActivation( self.in_ch, 16, kernel_size=3, stride=2, activation_layer=nn.Hardswish, ) if pretrained: self.load_state_dict(load_state_dict_from_url( 'https://download.pytorch.org/models/mobilenet_v3_large-8738ca79.pth')) del self.avgpool del self.classifier def forward_single_frame(self, x): if self.in_ch==3: x = normalize(x, [0.485, 0.456, 0.406], [0.229, 0.224, 0.225]) x = self.features[0](x) x = self.features[1](x) f1 = x x = self.features[2](x) x = self.features[3](x) f2 = x x = self.features[4](x) x = self.features[5](x) x = self.features[6](x) f3 = x x = self.features[7](x) x = self.features[8](x) x = self.features[9](x) x = self.features[10](x) x = self.features[11](x) x = self.features[12](x) x = self.features[13](x) x = self.features[14](x) x = self.features[15](x) x = self.features[16](x) f4 = x return [f1, f2, f3, f4] def forward_time_series(self, x): B, T = x.shape[:2] features = self.forward_single_frame(x.flatten(0, 1)) features = [f.unflatten(0, (B, T)) for f in features] return features def forward(self, x): if x.ndim == 5: return self.forward_time_series(x) else: return self.forward_single_frame(x) ================================================ FILE: models/model.py ================================================ import torch from torch import Tensor from torch import nn from torch.nn import functional as F from typing import Optional, List if __name__ == '__main__': # from src.video_portrait_matting_model import VideoPortraitMattingModel from mobilenetv3 import MobileNetV3LargeEncoder from resnet import ResNet50Encoder from lraspp import LRASPP from decoder import RecurrentDecoder, Projection from fast_guided_filter import FastGuidedFilterRefiner from deep_guided_filter import DeepGuidedFilterRefiner else: from .mobilenetv3 import MobileNetV3LargeEncoder from .resnet import ResNet50Encoder from .lraspp import LRASPP from .decoder import RecurrentDecoder, Projection from .fast_guided_filter import FastGuidedFilterRefiner from .deep_guided_filter import DeepGuidedFilterRefiner class MattingNetwork(nn.Module): def __init__(self, variant: str = 'mobilenetv3', refiner: str = 'deep_guided_filter', pretrained_backbone: bool = False): super().__init__() assert variant in ['mobilenetv3', 'resnet50'] assert refiner in ['fast_guided_filter', 'deep_guided_filter'] if variant == 'mobilenetv3': self.backbone = MobileNetV3LargeEncoder(pretrained_backbone) self.aspp = LRASPP(960, 128) self.decoder = RecurrentDecoder([16, 24, 40, 128], [80, 40, 32, 16]) else: self.backbone = ResNet50Encoder(pretrained_backbone) self.aspp = LRASPP(2048, 256) self.decoder = RecurrentDecoder([64, 256, 512, 256], [128, 64, 32, 16]) self.project_mat = Projection(16, 4) self.project_seg = Projection(16, 1) if refiner == 'deep_guided_filter': self.refiner = DeepGuidedFilterRefiner() else: self.refiner = FastGuidedFilterRefiner() def forward(self, src: Tensor, r1: Optional[Tensor] = None, r2: Optional[Tensor] = None, r3: Optional[Tensor] = None, r4: Optional[Tensor] = None, downsample_ratio: float = 1, segmentation_pass: bool = False): if downsample_ratio != 1: src_sm = self._interpolate(src, scale_factor=0.5)#([1, 1, 3, 2160, 3840])->([1, 1, 3, 288, 512]) else: src_sm = src f1, f2, f3, f4 = self.backbone(src_sm)#([4, 3, 256, 256])->([4, 16, 128, 128]);([4, 24, 64, 64]);([4, 40, 32, 32]);([4, 960, 16, 16]) f4 = self.aspp(f4)#([4, 960, 16, 16])->([4, 128, 16, 16]) hid, *rec = self.decoder(src_sm, f1, f2, f3, f4, r1, r2, r3, r4)#hid([4, 16, 256, 256]) if not segmentation_pass: fgr_residual, pha = self.project_mat(hid).split([3, 1], dim=-3) if downsample_ratio != 1: fgr_residual, pha = self.refiner(src, src_sm, fgr_residual, pha, hid) fgr = fgr_residual + src fgr = fgr.clamp(0., 1.) pha = pha.clamp(0., 1.) return [fgr, pha, *rec] else: seg = self.project_seg(hid) return [seg, *rec] def _interpolate(self, x: Tensor, scale_factor: float): if x.ndim == 5: B, T = x.shape[:2] x = F.interpolate(x.flatten(0, 1), scale_factor=scale_factor, mode='bilinear', align_corners=False, recompute_scale_factor=False) x = x.unflatten(0, (B, T)) else: x = F.interpolate(x, scale_factor=scale_factor, mode='bilinear', align_corners=False, recompute_scale_factor=False) return x ================================================ FILE: models/model_hyperlips.py ================================================ import os, random, cv2, argparse # os.environ["CUDA_VISIBLE_DEVICES"] = '0' import torch from torch import Tensor from torch import nn from torch.nn import functional as F from typing import Optional, List import numpy as np import torch from torch import nn from torch.nn import functional as F import mediapipe as mp mp_drawing = mp.solutions.drawing_utils mp_drawing_styles = mp.solutions.drawing_styles mp_face_mesh = mp.solutions.face_mesh FACEMESH_LIPS = frozenset([(61, 146), (146, 91), (91, 181), (181, 84), (84, 17), (17, 314), (314, 405), (405, 321), (321, 375), (375, 291), (61, 185), (185, 40), (40, 39), (39, 37), (37, 0), (0, 267), (267, 269), (269, 270), (270, 409), (409, 291), (78, 95), (95, 88), (88, 178), (178, 87), (87, 14), (14, 317), (317, 402), (402, 318), (318, 324), (324, 308), (78, 191), (191, 80), (80, 81), (81, 82), (82, 13), (13, 312), (312, 311), (311, 310), (310, 415), (415, 308)]) FACEMESH_LEFT_EYE = frozenset([(263, 249), (249, 390), (390, 373), (373, 374), (374, 380), (380, 381), (381, 382), (382, 362), (263, 466), (466, 388), (388, 387), (387, 386), (386, 385), (385, 384), (384, 398), (398, 362)]) FACEMESH_LEFT_IRIS = frozenset([(474, 475), (475, 476), (476, 477), (477, 474)]) FACEMESH_LEFT_EYEBROW = frozenset([(276, 283), (283, 282), (282, 295), (295, 285), (300, 293), (293, 334), (334, 296), (296, 336)]) FACEMESH_RIGHT_EYE = frozenset([(33, 7), (7, 163), (163, 144), (144, 145), (145, 153), (153, 154), (154, 155), (155, 133), (33, 246), (246, 161), (161, 160), (160, 159), (159, 158), (158, 157), (157, 173), (173, 133)]) FACEMESH_RIGHT_EYEBROW = frozenset([(46, 53), (53, 52), (52, 65), (65, 55), (70, 63), (63, 105), (105, 66), (66, 107)]) FACEMESH_RIGHT_IRIS = frozenset([(469, 470), (470, 471), (471, 472), (472, 469)]) FACEMESH_FACE_OVAL = frozenset([(389, 356), (356, 454), (454, 323), (323, 361), (361, 288), (288, 397), (397, 365), (365, 379), (379, 378), (378, 400), (400, 377), (377, 152), (152, 148), (148, 176), (176, 149), (149, 150), (150, 136), (136, 172), (172, 58), (58, 132), (132, 93), (93, 234), (234, 127), (127, 162)]) FACEMESH_NOSE = frozenset([(168, 6), (6, 197), (197, 195), (195, 5), (5, 4), (4, 45), (45, 220), (220, 115), (115, 48), (4, 275), (275, 440), (440, 344), (344, 278), ]) ROI = frozenset().union(*[FACEMESH_LIPS, FACEMESH_LEFT_EYE, FACEMESH_LEFT_EYEBROW, FACEMESH_RIGHT_EYE,FACEMESH_RIGHT_EYEBROW,FACEMESH_FACE_OVAL,FACEMESH_NOSE]) def preprocess_sketch(skecth,hr_size): if hr_size == 128: kenerl_size = 5 elif hr_size == 256: kenerl_size = 7 elif hr_size == 512: kenerl_size = 11 else: print("Please input rigtht img_size!") skecth = cv2.resize(skecth, (hr_size, hr_size)) return skecth def get_smoothened_landmarks(all_landmarks,windows_T,hr_size,base_size,): sketch = [] if windows_T==None: for i in range(len(all_landmarks)): window = all_landmarks[i] canvas= np.zeros((base_size,base_size,3),dtype = 'uint8') mp_drawing.draw_landmarks( image=canvas, landmark_list=window, connections= ROI, landmark_drawing_spec=None, connection_drawing_spec=mp_drawing.DrawingSpec(thickness=6, circle_radius=1,color=(255,255,255))) canvas = preprocess_sketch(canvas,hr_size) sketch.append(canvas) else: for i in range(len(all_landmarks)): # frame i if i>windows_T-1 and i+windows_T # uses faster box blur. However, it may not be friendly for ONNX export. # We are switching to use simple convolution for box blur. kernel_size = 2 * self.r + 1 kernel_x = torch.full((x.data.shape[1], 1, 1, kernel_size), 1 / kernel_size, device=x.device, dtype=x.dtype) kernel_y = torch.full((x.data.shape[1], 1, kernel_size, 1), 1 / kernel_size, device=x.device, dtype=x.dtype) x = F.conv2d(x, kernel_x, padding=(0, self.r), groups=x.data.shape[1]) x = F.conv2d(x, kernel_y, padding=(self.r, 0), groups=x.data.shape[1]) return x class Conv2d(nn.Module): def __init__(self, cin, cout, kernel_size, stride, padding, residual=False, *args, **kwargs): super().__init__(*args, **kwargs) self.conv_block = nn.Sequential( nn.Conv2d(cin, cout, kernel_size, stride, padding), nn.BatchNorm2d(cout) ) self.act = nn.ReLU() self.residual = residual def forward(self, x): out = self.conv_block(x) if self.residual: out += x return self.act(out) class nonorm_Conv2d(nn.Module): def __init__(self, cin, cout, kernel_size, stride, padding, residual=False, *args, **kwargs): super().__init__(*args, **kwargs) self.conv_block = nn.Sequential( nn.Conv2d(cin, cout, kernel_size, stride, padding), ) self.act = nn.LeakyReLU(0.01, inplace=True) def forward(self, x): out = self.conv_block(x) return self.act(out) class Conv2dTranspose(nn.Module): def __init__(self, cin, cout, kernel_size, stride, padding, output_padding=0, *args, **kwargs): super().__init__(*args, **kwargs) self.conv_block = nn.Sequential( nn.ConvTranspose2d(cin, cout, kernel_size, stride, padding, output_padding), nn.BatchNorm2d(cout) ) self.act = nn.ReLU() def forward(self, x): out = self.conv_block(x) return self.act(out) class HyperFCNet(nn.Module): '''Builds a hypernetwork that predicts a fully connected neural network. ''' def __init__(self, hnet_hdim=64, # MLP input dim residual= True, # MLP output dim use_batchnorm=True, # Hyper input dim (embedding) ): super().__init__() self.audio_encoder = MobileNetV3LargeEncoder(pretrained=False,in_ch=1) self.aspp_a = LRASPP(960, 128) self.hnet0 = HyperNetwork(in_dim=320*16, h_dim=hnet_hdim) self.hnet1 = HyperNetwork(in_dim=80*24, h_dim=hnet_hdim) self.hnet2 = HyperNetwork(in_dim=20*40, h_dim=hnet_hdim) self.hnet3 = HyperNetwork(in_dim=5*128, h_dim=hnet_hdim) self.residual = residual self.use_batchnorm = use_batchnorm self.dconv_down0 = self.double_conv(in_channels=16, out_channels=16,hnet_hdim=hnet_hdim) self.dconv_down1 = self.double_conv(in_channels=24, out_channels=24,hnet_hdim=hnet_hdim) self.dconv_down2 = self.double_conv(in_channels=40, out_channels=40,hnet_hdim=hnet_hdim) self.dconv_down3 = self.double_conv(in_channels=128, out_channels=128,hnet_hdim=hnet_hdim) def forward(self, x,f1, f2, f3, f4):#([1, 512]) ''' :param style_f_m0,style_f_m1,style_f_m2,style_f_m3: Input to hypernetwork. :return: nn.Module; Predicted fully connected neural network. ''' fa0,fa1,fa2,fa3 = self.audio_encoder(x)#([8, 1, 80, 16])->([8, 16, 40, 8]);([8, 24, 20, 4]);([8, 40, 10, 2]);([8, 960, 5, 1]) fa3 = self.aspp_a(fa3)#([8, 128, 5, 1]) fa0 = fa0.contiguous().view(fa0.size()[0],-1)#([8, 320, 16]) fa1 = fa1.contiguous().view(fa1.size()[0],-1)#([8, 80, 24]) fa2 = fa2.contiguous().view(fa2.size()[0],-1)#([8, 20, 40]) fa3 = fa3.contiguous().view(fa3.size()[0],-1)#([8, 5, 128]) hyp_out = self.hnet0(fa0)#([8, 320, 16])->([8, 64]) f1_temp = self.dconv_down0(f1, hyp_out) hyp_out = self.hnet1(fa1)#([8, 320, 16])->([8, 64]) f2_temp = self.dconv_down1(f2, hyp_out) hyp_out = self.hnet2(fa2)#([8, 320, 16])->([8, 64]) f3_temp = self.dconv_down2(f3, hyp_out) hyp_out = self.hnet3(fa3)#([8, 320, 16])->([8, 64]) f4_temp = self.dconv_down3(f4, hyp_out) return f1_temp,f2_temp,f3_temp,f4_temp def double_conv(self, in_channels, out_channels,hnet_hdim): if hnet_hdim is not None: if self.use_batchnorm: return layers.MultiSequential( layers.BatchConv2d(in_channels, out_channels, hnet_hdim, padding=1), nn.BatchNorm2d(out_channels), nn.ReLU(inplace=True), layers.BatchConv2d(out_channels, out_channels, hnet_hdim, padding=1), nn.BatchNorm2d(out_channels), # nn.ReLU(inplace=True) nn.Sigmoid() ) else: return layers.MultiSequential( layers.BatchConv2d(in_channels, out_channels, hnet_hdim, padding=1), nn.ReLU(inplace=True), layers.BatchConv2d(out_channels, out_channels, hnet_hdim, padding=1), # nn.ReLU(inplace=True) nn.Sigmoid() ) else: if self.use_batchnorm: return layers.MultiSequential( nn.Conv2d(in_channels, out_channels, 3, padding=1), nn.BatchNorm2d(out_channels), nn.ReLU(inplace=True), nn.Conv2d(out_channels, out_channels, 3, padding=1), nn.BatchNorm2d(out_channels), # nn.ReLU(inplace=True) nn.Sigmoid() ) else: return layers.MultiSequential( nn.Conv2d(in_channels, out_channels, 3, padding=1), nn.ReLU(inplace=True), nn.Conv2d(out_channels, out_channels, 3, padding=1), # nn.ReLU(inplace=True) nn.Sigmoid() ) # return net class HyperLipsBase(nn.Module): def __init__(self): super().__init__() self.up_conv = nn.Sequential( Conv2d(64, 64, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(64, 16*4, kernel_size=3, stride=1, padding=1, residual=True), ) # 96,96 self.output_block = nn.Sequential( Conv2d(16*4, 32, kernel_size=3, stride=1, padding=1), nn.Conv2d(32, 3, kernel_size=1, stride=1, padding=0), nn.Sigmoid()) self.face_encoder = MobileNetV3LargeEncoder(pretrained=False,in_ch=6) self.aspp = LRASPP(960, 128) self.hyper_control_net = HyperFCNet(hnet_hdim=64,residual= True,use_batchnorm=True) self.decoder = RecurrentDecoder([16, 24, 40, 128], [80, 40, 32, 16*4]) def forward(self,audio_sequences: Tensor,face_sequences: Tensor): B = audio_sequences.size(0) input_dim_size = len(face_sequences.size()) if input_dim_size > 4: audio_sequences = torch.cat([audio_sequences[:, i] for i in range(audio_sequences.size(1))], dim=0)#([2, 5, 1, 80, 16])->([10, 1, 80, 16]) face_sequences = torch.cat([face_sequences[:, :, i] for i in range(face_sequences.size(2))], dim=0)#([2, 6, 5, 512, 512])->([10, 6, 512, 512]) r1 = None r2 = None r3 = None r4 = None src_sm = face_sequences fc0, fc1, fc2, fc3 = self.face_encoder(src_sm)#([4, 3, 256, 256])->([4, 16, 128, 128]);([4, 24, 64, 64]);([4, 40, 32, 32]);([4, 960, 16, 16]) fc3 = self.aspp(fc3)#([4, 960, 16, 16])->([4, 128, 16, 16]) fh0, fh1, fh2, fh3 = self.hyper_control_net(audio_sequences,fc0,fc1,fc2,fc3) hid, *rec = self.decoder(src_sm, fh0, fh1, fh2, fh3, r1, r2, r3, r4)#hid([40, 64, 128, 128]) x1 = self.up_conv(hid)#([20, 64, 64, 64])->([20, 64, 128, 128]) x1 = self.output_block(x1)#([20, 64, 128, 128])->([20, 3, 128, 128]) if input_dim_size > 4: x1 = torch.split(x1, B, dim=0) # [(B, C, H, W)] ([10, 3, 512, 512])->[10,3,512,512] outputs1 = torch.stack(x1, dim=2) # (B, C, T, H, W) [10,3,512,512]->[2, 3, 5, 512, 512]) else: outputs1 = x1 return outputs1 def _interpolate(self, x: Tensor, scale_factor: float): if x.ndim == 5: B, T = x.shape[:2] x = F.interpolate(x.flatten(0, 1), scale_factor=scale_factor, mode='bilinear', align_corners=False, recompute_scale_factor=False) x = x.unflatten(0, (B, T)) else: x = F.interpolate(x, scale_factor=scale_factor, mode='bilinear', align_corners=False, recompute_scale_factor=False) return x class HRDecoder(nn.Module): def __init__(self,rescaling=1): super().__init__() self.rescaling = rescaling self.conv_base = nn.Sequential( Conv2d(3*2, 64, kernel_size=3, stride=1, padding=1, residual=False), Conv2d(64, 64, kernel_size=3, stride=1, padding=1, residual=True), ) # 96,96 if rescaling==4: self.up_conv = nn.Sequential( Conv2dTranspose(64, 64, kernel_size=3, stride=2, padding=1, output_padding=1), Conv2d(64, 64, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(64, 64, kernel_size=3, stride=1, padding=1, residual=True), Conv2dTranspose(64, 64, kernel_size=3, stride=2, padding=1, output_padding=1), Conv2d(64, 64, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(64, 64, kernel_size=3, stride=1, padding=1, residual=True), ) elif rescaling==2: self.up_conv = nn.Sequential( Conv2dTranspose(64, 64, kernel_size=3, stride=2, padding=1, output_padding=1), Conv2d(64, 64, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(64, 64, kernel_size=3, stride=1, padding=1, residual=True), ) else: self.up_conv = nn.Sequential( Conv2d(64, 64, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(64, 64, kernel_size=3, stride=1, padding=1, residual=True), ) self.output_block = nn.Sequential( Conv2d(64, 32, kernel_size=3, stride=1, padding=1), nn.Conv2d(32, 3, kernel_size=1, stride=1, padding=0), nn.Sigmoid()) def forward(self,x): output = self.conv_base(x) output = self.up_conv(output) output = self.output_block(output) return output class HRDecoder_disc_qual(nn.Module): def __init__(self): super(HRDecoder_disc_qual, self).__init__() self.face_encoder_blocks = nn.ModuleList([ nn.Sequential(nonorm_Conv2d(3, 32, kernel_size=7, stride=1, padding=3)), # 48,96 nn.Sequential(nonorm_Conv2d(32, 64, kernel_size=5, stride=2, padding=2), # 48,48 nonorm_Conv2d(64, 64, kernel_size=5, stride=1, padding=2)), nn.Sequential(nonorm_Conv2d(64, 128, kernel_size=5, stride=2, padding=2), # 24,24 nonorm_Conv2d(128, 128, kernel_size=5, stride=1, padding=2)), nn.Sequential(nonorm_Conv2d(128, 128, kernel_size=5, stride=2, padding=2), # 12,12 nonorm_Conv2d(128, 128, kernel_size=5, stride=1, padding=2)), nn.Sequential(nonorm_Conv2d(128, 128, kernel_size=3, stride=2, padding=1), # 6,6 nonorm_Conv2d(128, 128, kernel_size=3, stride=1, padding=1)), nn.AdaptiveAvgPool2d(1), ]) self.binary_pred = nn.Sequential(nn.Conv2d(128, 1, kernel_size=1, stride=1, padding=0), nn.Sigmoid()) def forward(self, face_sequences): x = face_sequences for f in self.face_encoder_blocks: x = f(x) return self.binary_pred(x).view(len(x), -1) class HyperLips_inference(nn.Module): def __init__(self,window_T,rescaling=1,base_model_checkpoint="",HRDecoder_model_checkpoint = ""): super().__init__() self.base_size = 128 self.rescaling = rescaling if 1==self.rescaling : self.hr_size = 128 elif 2==self.rescaling: self.hr_size = 256 elif 4==self.rescaling: self.hr_size = 512 else: raise ValueError( 'rescaling must be 1,2,4') self.window_T = window_T self.base_model = HyperLipsBase() self.HR_flag = False checkpoint = torch.load(base_model_checkpoint,map_location=lambda storage, loc: storage) s = checkpoint["state_dict"] self.base_model.load_state_dict(s) self.base_model.eval() for param in self.base_model.parameters(): param.requires_grad = False if HRDecoder_model_checkpoint is not None: self.HR_flag = True self.HRDecoder = HRDecoder(self.rescaling) checkpoint = torch.load(HRDecoder_model_checkpoint,map_location=lambda storage, loc: storage) s = checkpoint["state_dict"] self.HRDecoder.load_state_dict(s) self.HRDecoder.eval() for param in self.HRDecoder.parameters(): param.requires_grad = False def forward(self, audio_sequences: Tensor, face_sequences: Tensor): B = audio_sequences.size(0) device = face_sequences.device input_dim_size = len(face_sequences.size()) if input_dim_size > 4: audio_sequences = torch.cat([audio_sequences[:, i] for i in range(audio_sequences.size(1))], dim=0)#([2, 5, 1, 80, 16])->([10, 1, 80, 16]) face_sequences = torch.cat([face_sequences[:, :, i] for i in range(face_sequences.size(2))], dim=0)#([2, 6, 5, 512, 512])->([10, 6, 512, 512]) src = face_sequences if self.rescaling != 1: src_sm = torch.nn.functional.interpolate(src,(self.base_size, self.base_size), mode='bilinear', align_corners=False) else: src_sm = src output = self.base_model(audio_sequences,src_sm) if self.HR_flag: # for HRDecoder with mp_face_mesh.FaceMesh( max_num_faces=1, refine_landmarks=True, min_detection_confidence=0.5, min_tracking_confidence=0.5) as face_mesh: img = [] all_landmarks = [] for p in output: image = p.cpu().numpy().transpose(1,2,0) * 255. image = image.astype(np.uint8) image = cv2.resize(image,(self.hr_size,self.hr_size)) results = face_mesh.process(image) if results.multi_face_landmarks==None: print("Landmark detecting error!") face_landmarks = results.multi_face_landmarks[0] all_landmarks.append(face_landmarks) img.append(image) sketch = get_smoothened_landmarks(all_landmarks,self.window_T,self.hr_size,self.base_size) img_batch = np.concatenate((img, sketch), axis=3) / 255. img_batch = torch.FloatTensor(np.transpose(img_batch, (0, 3, 1, 2))).to(device) output = self.HRDecoder(img_batch) return output class HyperCtrolDiscriminator(nn.Module): def __init__(self): super(HyperCtrolDiscriminator, self).__init__() self.face_encoder_blocks = nn.ModuleList([ nn.Sequential(nonorm_Conv2d(3, 32, kernel_size=7, stride=1, padding=3)), # 48,96 nn.Sequential(nonorm_Conv2d(32, 64, kernel_size=5, stride=(1, 2), padding=2), # 48,48 nonorm_Conv2d(64, 64, kernel_size=5, stride=1, padding=2)), nn.Sequential(nonorm_Conv2d(64, 128, kernel_size=5, stride=2, padding=2), # 24,24 nonorm_Conv2d(128, 128, kernel_size=5, stride=1, padding=2)), nn.Sequential(nonorm_Conv2d(128, 256, kernel_size=5, stride=2, padding=2), # 12,12 nonorm_Conv2d(256, 256, kernel_size=5, stride=1, padding=2)), nn.Sequential(nonorm_Conv2d(256, 512, kernel_size=3, stride=2, padding=1), # 6,6 nonorm_Conv2d(512, 512, kernel_size=3, stride=1, padding=1)), nn.Sequential(nonorm_Conv2d(512, 512, kernel_size=3, stride=2, padding=1), # 3,3 nonorm_Conv2d(512, 512, kernel_size=3, stride=1, padding=1),), nn.Sequential(nonorm_Conv2d(512, 512, kernel_size=3, stride=1, padding=0), # 1, 1 nonorm_Conv2d(512, 512, kernel_size=1, stride=1, padding=0)), nn.AdaptiveAvgPool2d(1), ]) self.binary_pred = nn.Sequential(nn.Conv2d(512, 1, kernel_size=1, stride=1, padding=0), nn.Sigmoid()) self.label_noise = .0 def get_lower_half(self, face_sequences): return face_sequences[:, :, face_sequences.size(2)//2:] def to_2d(self, face_sequences): B = face_sequences.size(0) face_sequences = torch.cat([face_sequences[:, :, i] for i in range(face_sequences.size(2))], dim=0) return face_sequences def perceptual_forward(self, false_face_sequences): false_face_sequences = self.to_2d(false_face_sequences)#([2, 3, 5, 512, 512])->([10, 3, 512, 512]) false_face_sequences = self.get_lower_half(false_face_sequences)#([10, 3, 512, 512])->([10, 3, 256, 512]) false_feats = false_face_sequences#([10, 3, 256, 512]) for f in self.face_encoder_blocks: false_feats = f(false_feats)#([10, 32, 256, 512]);([10, 64, 256, 256]);([10, 128, 128, 128]):([10, 256, 64, 64]);([10, 512, 32, 32]);([10, 512, 16, 16]);([10, 512, 14, 14]) false_pred_loss = F.binary_cross_entropy(self.binary_pred(false_feats).view(len(false_feats), -1), torch.ones((len(false_feats), 1)).cuda()) return false_pred_loss def forward(self, face_sequences): face_sequences = self.to_2d(face_sequences)#([10, 3, 512, 512]) face_sequences = self.get_lower_half(face_sequences)#([10, 3, 512, 512])->([10, 3, 256, 512]) x = face_sequences for f in self.face_encoder_blocks: x = f(x) return self.binary_pred(x).view(len(x), -1) ================================================ FILE: models/resnet.py ================================================ from torch import nn from torchvision.models.resnet import ResNet, Bottleneck # from torchvision.models.utils import load_state_dict_from_url from torch.hub import load_state_dict_from_url class ResNet50Encoder(ResNet): def __init__(self, pretrained: bool = False,in_ch: int = 3): super().__init__( block=Bottleneck, layers=[3, 4, 6, 3], # layers=[3*2, 4, 6, 3], replace_stride_with_dilation=[False, False, True], norm_layer=None) print(self.conv1) self.conv1= nn.Conv2d(in_ch, 64, kernel_size=7, stride=2, padding=3,bias=False) if pretrained: self.load_state_dict(load_state_dict_from_url( 'https://download.pytorch.org/models/resnet50-0676ba61.pth')) del self.avgpool del self.fc def forward_single_frame(self, x): x = self.conv1(x) x = self.bn1(x) x = self.relu(x) f1 = x # 1/2 x = self.maxpool(x) x = self.layer1(x) f2 = x # 1/4 x = self.layer2(x) f3 = x # 1/8 x = self.layer3(x) x = self.layer4(x) f4 = x # 1/16 return [f1, f2, f3, f4] def forward_time_series(self, x): B, T = x.shape[:2] features = self.forward_single_frame(x.flatten(0, 1)) features = [f.unflatten(0, (B, T)) for f in features] return features def forward(self, x): if x.ndim == 5: return self.forward_time_series(x) else: return self.forward_single_frame(x) ================================================ FILE: models/syncnet.py ================================================ import torch from torch import nn from torch.nn import functional as F from .conv import Conv2d class SyncNet_color2(nn.Module): def __init__(self): super(SyncNet_color2, self).__init__() self.face_encoder = nn.Sequential( Conv2d(15, 32, kernel_size=(7, 7), stride=1, padding=3), Conv2d(32, 64, kernel_size=5, stride=(1, 2), padding=1), Conv2d(64, 64, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(64, 64, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(64, 128, kernel_size=3, stride=2, padding=1), Conv2d(128, 128, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(128, 128, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(128, 128, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(128, 256, kernel_size=3, stride=2, padding=1), Conv2d(256, 256, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(256, 256, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(256, 512, kernel_size=3, stride=2, padding=1), Conv2d(512, 512, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(512, 512, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(512, 512, kernel_size=3, stride=2, padding=1), Conv2d(512, 512, kernel_size=3, stride=1, padding=0), Conv2d(512, 512, kernel_size=1, stride=1, padding=0),) self.audio_encoder = nn.Sequential( Conv2d(1, 32, kernel_size=3, stride=1, padding=1), Conv2d(32, 32, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(32, 32, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(32, 64, kernel_size=3, stride=(3, 1), padding=1), Conv2d(64, 64, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(64, 64, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(64, 128, kernel_size=3, stride=3, padding=1), Conv2d(128, 128, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(128, 128, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(128, 256, kernel_size=3, stride=(3, 2), padding=1), Conv2d(256, 256, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(256, 256, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(256, 512, kernel_size=3, stride=1, padding=0), Conv2d(512, 512, kernel_size=1, stride=1, padding=0),) def forward(self, audio_sequences, face_sequences): # audio_sequences := (B, dim, T) face_embedding = self.face_encoder(face_sequences) audio_embedding = self.audio_encoder(audio_sequences) audio_embedding = audio_embedding.view(audio_embedding.size(0), -1) face_embedding = face_embedding.view(face_embedding.size(0), -1) audio_embedding = F.normalize(audio_embedding, p=2, dim=1) face_embedding = F.normalize(face_embedding, p=2, dim=1) return audio_embedding, face_embedding class SyncNet_color(nn.Module): def __init__(self): super(SyncNet_color, self).__init__() self.face_encoder = nn.Sequential( Conv2d(15, 32, kernel_size=(7, 7), stride=1, padding=3), Conv2d(32, 64, kernel_size=5, stride=(1, 2), padding=1), Conv2d(64, 64, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(64, 64, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(64, 128, kernel_size=3, stride=2, padding=1), Conv2d(128, 128, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(128, 128, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(128, 128, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(128, 256, kernel_size=3, stride=2, padding=1), Conv2d(256, 256, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(256, 256, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(256, 512, kernel_size=3, stride=2, padding=1), Conv2d(512, 512, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(512, 512, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(512, 512, kernel_size=3, stride=2, padding=1), #4 Conv2d(512, 512, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(512, 512, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(512, 512, kernel_size=4, stride=1, padding=0), Conv2d(512, 512, kernel_size=1, stride=1, padding=0),) self.audio_encoder = nn.Sequential( Conv2d(1, 32, kernel_size=3, stride=1, padding=1), Conv2d(32, 32, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(32, 32, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(32, 64, kernel_size=3, stride=(3, 1), padding=1), Conv2d(64, 64, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(64, 64, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(64, 128, kernel_size=3, stride=3, padding=1), Conv2d(128, 128, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(128, 128, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(128, 256, kernel_size=3, stride=(3, 2), padding=1), Conv2d(256, 256, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(256, 256, kernel_size=3, stride=1, padding=1, residual=True), Conv2d(256, 512, kernel_size=3, stride=1, padding=0), Conv2d(512, 512, kernel_size=1, stride=1, padding=0),) def forward(self, audio_sequences, face_sequences): face_embedding = self.face_encoder(face_sequences) audio_embedding = self.audio_encoder(audio_sequences) audio_embedding = audio_embedding.view(audio_embedding.size(0), -1) face_embedding = face_embedding.view(face_embedding.size(0), -1) audio_embedding = F.normalize(audio_embedding, p=2, dim=1) face_embedding = F.normalize(face_embedding, p=2, dim=1) return audio_embedding, face_embedding ================================================ FILE: preprocess.py ================================================ import sys if sys.version_info[0] < 3 and sys.version_info[1] < 2: raise Exception("Must be using >= Python 3.2") from os import listdir, path if not path.isfile('face_detection/detection/sfd/s3fd.pth'): raise FileNotFoundError('Save the s3fd model to face_detection/detection/sfd/s3fd.pth \ before running this script!') import multiprocessing as mp import numpy as np import argparse, os, cv2, traceback, subprocess from tqdm import tqdm from glob import glob import audio import face_detection import mediapipe as mp import math import shutil parser = argparse.ArgumentParser() parser.add_argument('--batch_size', help='Single GPU Face detection batch size', default=1, type=int) """LRS2 data preprocess""" parser.add_argument("--origin_data_root", help="Root folder of the dataset", default="datasets/MEAD") parser.add_argument("--clip_flag", help="Flag for cliping video into 5s", default=0,type=int) parser.add_argument('--Function', type=str,help='Choosing base or HR', default="HR") parser.add_argument("--hyperlips_train_dataset", help="Root folder of the preprocessed dataset", default="Train_data") parser.add_argument("--hyperlipsbase_video_root", help="Root folder of the videos generated by hyper_base", default="hyperlips_base_results") parser.add_argument('--gpu_id', type=float, help='gpu id (default: 0)', default=0, required=False) args = parser.parse_args() # face_detector fa = face_detection.FaceAlignment(face_detection.LandmarksType._2D, flip_input=False, device='cuda:{}'.format(args.gpu_id)) template = 'ffmpeg -loglevel panic -y -i {} -strict -2 {}' mp_drawing = mp.solutions.drawing_utils mp_drawing_styles = mp.solutions.drawing_styles mp_face_mesh = mp.solutions.face_mesh lip_index = [164,167,165,92,186,57,43,106,182,83,18,313,406,335,273,287,410,322,391,393] FACEMESH_LIPS = frozenset([(61, 146), (146, 91), (91, 181), (181, 84), (84, 17), (17, 314), (314, 405), (405, 321), (321, 375), (375, 291), (61, 185), (185, 40), (40, 39), (39, 37), (37, 0), (0, 267), (267, 269), (269, 270), (270, 409), (409, 291), (78, 95), (95, 88), (88, 178), (178, 87), (87, 14), (14, 317), (317, 402), (402, 318), (318, 324), (324, 308), (78, 191), (191, 80), (80, 81), (81, 82), (82, 13), (13, 312), (312, 311), (311, 310), (310, 415), (415, 308)]) FACEMESH_LEFT_EYE = frozenset([(263, 249), (249, 390), (390, 373), (373, 374), (374, 380), (380, 381), (381, 382), (382, 362), (263, 466), (466, 388), (388, 387), (387, 386), (386, 385), (385, 384), (384, 398), (398, 362)]) FACEMESH_LEFT_IRIS = frozenset([(474, 475), (475, 476), (476, 477), (477, 474)]) FACEMESH_LEFT_EYEBROW = frozenset([(276, 283), (283, 282), (282, 295), (295, 285), (300, 293), (293, 334), (334, 296), (296, 336)]) FACEMESH_RIGHT_EYE = frozenset([(33, 7), (7, 163), (163, 144), (144, 145), (145, 153), (153, 154), (154, 155), (155, 133), (33, 246), (246, 161), (161, 160), (160, 159), (159, 158), (158, 157), (157, 173), (173, 133)]) FACEMESH_RIGHT_EYEBROW = frozenset([(46, 53), (53, 52), (52, 65), (65, 55), (70, 63), (63, 105), (105, 66), (66, 107)]) FACEMESH_RIGHT_IRIS = frozenset([(469, 470), (470, 471), (471, 472), (472, 469)]) FACEMESH_FACE_OVAL = frozenset([(389, 356), (356, 454), (454, 323), (323, 361), (361, 288), (288, 397), (397, 365), (365, 379), (379, 378), (378, 400), (400, 377), (377, 152), (152, 148), (148, 176), (176, 149), (149, 150), (150, 136), (136, 172), (172, 58), (58, 132), (132, 93), (93, 234), (234, 127), (127, 162)]) FACEMESH_NOSE = frozenset([(168, 6), (6, 197), (197, 195), (195, 5), (5, 4), (4, 45), (45, 220), (220, 115), (115, 48), (4, 275), (275, 440), (440, 344), (344, 278), ]) ROI = frozenset().union(*[FACEMESH_LIPS, FACEMESH_LEFT_EYE, FACEMESH_LEFT_EYEBROW, FACEMESH_RIGHT_EYE,FACEMESH_RIGHT_EYEBROW,FACEMESH_FACE_OVAL,FACEMESH_NOSE]) def split_video_5s(args): print("Starting to divide videos") path = args.origin_data_root video_list = os.listdir(path) save_path = os.path.join(args.hyperlips_train_dataset,"video_clips",path.split("/")[-1]) os.makedirs(save_path, exist_ok=True) delta_X = 5 mark = 0 def get_length(filename): result = subprocess.run(["ffprobe", "-v", "error", "-show_entries", "format=duration", "-of", "default=noprint_wrappers=1:nokey=1", filename], stdout=subprocess.PIPE, stderr=subprocess.STDOUT) return float(result.stdout) for file_name in video_list: min = int(get_length(os.path.join(path, file_name))) // 60 second = int(get_length(os.path.join(path, file_name))) % 60 video_name = str(file_name.split('.mp4')[0]+'video_') for i in range(min+1): if (second+min*60) >= delta_X: start_time = 0 end_time = start_time+delta_X for j in range((second)+1): min_temp = str(i) start = str(start_time) end = str(end_time) if len(str(min_temp)) == 1: min_temp = '0'+str(min_temp) if len(str(start_time)) == 1: start = '0'+str(start_time) if len(str(end_time)) == 1: end = '0'+str(end_time) if len(str(mark)) < 6: name = '0'*(6-len(str(mark))-1)+str(mark) else: name = str(mark) command = 'ffmpeg -i {} -ss 00:{}:{} -to 00:{}:{} -strict -2 -ar 16000 -r 25 -qscale 0.001 {}'.format(os.path.join(path,file_name), min_temp,start,min_temp,end, os.path.join(save_path,video_name+'id'+str(name))+'.mp4')#-c:v copy -c:a copy -b:v 0 -q:v 1 print(command) mark += 1 os.system(command) if i != min or (i == min and (end_time+delta_X) < second): start_time += delta_X end_time += delta_X elif (end_time+delta_X) <= second: start_time += delta_X end_time += delta_X elif (end_time+delta_X) > second: break def get_sketch(hight,width,image,savepath): with mp_face_mesh.FaceMesh( max_num_faces=1, refine_landmarks=True, min_detection_confidence=0.5, min_tracking_confidence=0.5) as face_mesh: results = face_mesh.process(image) if results.multi_face_landmarks==None: print("no sketch:"+savepath) else: face_landmarks = results.multi_face_landmarks[0] output = np.zeros((hight,width,3), np.uint8) mp_drawing.draw_landmarks( image=output, landmark_list=face_landmarks, connections= ROI, landmark_drawing_spec=None, connection_drawing_spec=mp_drawing.DrawingSpec(thickness=6, circle_radius=1,color=(255,255,255)) ) cv2.imwrite(savepath, output) def get_landmarks(image, face_mesh,hight,width): landmarks = [] results = face_mesh.process(cv2.cvtColor(image, cv2.COLOR_BGR2RGB)) if results.multi_face_landmarks: for face_landmarks in results.multi_face_landmarks: i = 0 points = {} for landmark in face_landmarks.landmark: x = math.floor(landmark.x * width) y = math.floor(landmark.y * hight) points[i] = (x, y) i += 1 landmarks.append(points) return landmarks def get_mask(hight,width,image,savepath): with mp_face_mesh.FaceMesh( max_num_faces=1, refine_landmarks=True, min_detection_confidence=0.5, min_tracking_confidence=0.5) as face_mesh: face_landmark = get_landmarks(image,face_mesh,hight, width) if face_landmark == []: print("no mask:"+savepath) else: lip_landmark = [] for i in lip_index: lip_landmark.append(face_landmark[0][i]) lip_landmark = np.array(lip_landmark) points = lip_landmark.reshape(-1,1,2).astype(np.int32) matrix =np.zeros((hight,width),dtype=np.int32) cv2.drawContours(matrix,[points],-1,(1),thickness=-1) list_of_points_indices=np.nonzero(matrix) mask = np.zeros((hight,width), np.uint8) mask[list_of_points_indices] =255 cv2.imwrite(savepath, mask) def data_process_hyper_base(args): if args.clip_flag==0: filelist = glob(os.path.join(args.origin_data_root,'*.mp4')) save_dir = os.path.join(args.hyperlips_train_dataset,'video_clips') os.makedirs(save_dir, exist_ok=True) for video in filelist: shutil.copy(video, os.path.join(save_dir,video.split('/')[-2],video.split('/')[-1])) filelist = glob(os.path.join(args.hyperlips_train_dataset,"video_clips", '*/*.mp4')) filelist_new = [] for i in filelist: res = i.replace('\\', '/') filelist_new.append(res) for i in tqdm(range(len(filelist_new))): vfile = filelist_new[i] video_stream = cv2.VideoCapture(vfile) frames = [] while 1: still_reading, frame = video_stream.read() if not still_reading: video_stream.release() break frames.append(frame) vidname = os.path.basename(vfile).split('.')[0] dirname = vfile.split('/')[-2] fulldir = path.join(args.hyperlips_train_dataset,"imgs", dirname, vidname) os.makedirs(fulldir, exist_ok=True) batches = [frames[i:i + args.batch_size] for i in range(0, len(frames), args.batch_size)] i = -1 for fb in batches: preds = fa.get_detections_for_batch(np.asarray(fb)) for j, f in enumerate(preds): i += 1 if f is None: print(vfile+"is wrong") continue x1, y1, x2, y2 = f cv2.imwrite(path.join(fulldir, '{}.jpg'.format(i)), fb[j][y1:y2, x1:x2]) wavpath = path.join(fulldir, 'audio.wav') command = template.format(vfile, wavpath) subprocess.call(command, shell=True) def split_train_test_text(args): path = os.path.join(args.hyperlips_train_dataset,"imgs") train_txt = './filelists/train.txt' val_txt = './filelists/val.txt' os.makedirs(train_txt.split('/')[-2], exist_ok=True) import random import shutil video_list = os.listdir(path) list1 = glob(os.path.join(path,"*/*")) extor_cout = int(len(list1) * 0.1) extor_list = [] for cout in range(0,extor_cout): val_single = random.choice(list1) print(val_single) val_single = os.path.join(val_single.split('/')[-2],val_single.split('/')[-1]) extor_list.append(val_single) with open(train_txt, 'w') as f: with open(val_txt, 'w') as f1: for item in video_list: path2 = (path)+'/'+item video_list2 = os.listdir(path2) for vilist2 in video_list2: item2 = item+'/'+vilist2 if item2 not in extor_list: f.write(item2) f.write('\n') else: f1.write(item2) f1.write('\n') def data_process_hyper_hq_module(args): filelist = glob(path.join(args.hyperlipsbase_video_root, '*/*.mp4')) filelist_new = [] hyperlipsHR_train_dataset = os.path.join(args.hyperlips_train_dataset,"HR_Train_Dateset") os.makedirs(hyperlipsHR_train_dataset, exist_ok=True) for i in filelist: # print(i) res = i.replace('\\', '/') filelist_new.append(res) for i in tqdm(range(len(filelist_new))): vfile_h = filelist_new[i] vidname = os.path.basename(vfile_h).split('.')[0] dirname = vfile_h.split('/')[-2] vfile_o = path.join(args.hyperlips_train_dataset, "video_clips",(args.origin_data_root.split("/")[-1]),vidname+".mp4") fulldir_origin_data_img = path.join(hyperlipsHR_train_dataset,'GT_IMG', dirname, vidname) os.makedirs(fulldir_origin_data_img, exist_ok=True) fulldir_hyper_img = path.join(hyperlipsHR_train_dataset,'HYPER_IMG', dirname, vidname) os.makedirs(fulldir_hyper_img, exist_ok=True) fulldir_origin_mask = path.join(hyperlipsHR_train_dataset,'GT_MASK', dirname, vidname) os.makedirs(fulldir_origin_mask, exist_ok=True) fulldir_origin_sketch = path.join(hyperlipsHR_train_dataset,'GT_SKETCH', dirname, vidname) os.makedirs(fulldir_origin_sketch, exist_ok=True) fulldir_hyper_sketch = path.join(hyperlipsHR_train_dataset,'HYPER_SKETCH', dirname, vidname) os.makedirs(fulldir_hyper_sketch, exist_ok=True) video_stream_h = cv2.VideoCapture(vfile_h) video_stream_o = cv2.VideoCapture(vfile_o) frames_h = [] frames_o = [] while 1: still_reading_o, frame_o = video_stream_o.read() still_reading_h, frame_h = video_stream_h.read() if not still_reading_h: video_stream_h.release() video_stream_o.release() break frames_h.append(frame_h) frames_o.append(frame_o) batches_h = [frames_h[i:i + args.batch_size] for i in range(0, len(frames_h), args.batch_size)] batches_o = [frames_o[i:i + args.batch_size] for i in range(0, len(frames_o), args.batch_size)] num = -1 for i in range(len(batches_h)): f_o = batches_o[i] f_h = batches_h[i] preds = fa.get_detections_for_batch(np.asarray(batches_h[i])) for j,f in enumerate(preds): num += 1 if f is None: continue x1, y1, x2, y2 = f cv2.imwrite(path.join(fulldir_origin_data_img, '{}.jpg'.format(num)), f_o[j][y1:y2, x1:x2]) cv2.imwrite(path.join(fulldir_hyper_img, '{}.jpg'.format(num)), f_h[j][y1:y2, x1:x2]) hight = y2-y1 width = x2-x1 savepath_origin_mask = path.join(fulldir_origin_mask, '{}.jpg'.format(num)) get_mask(hight,width,f_o[j][y1:y2, x1:x2],savepath_origin_mask) savepath_origin_sketch = path.join(fulldir_origin_sketch,'{}.jpg'.format(num)) get_sketch(hight,width,f_o[j][y1:y2, x1:x2],savepath_origin_sketch) savepath_hyper_sketch = path.join(fulldir_hyper_sketch,'{}.jpg'.format(num)) get_sketch(hight,width,f_h[j][y1:y2, x1:x2],savepath_hyper_sketch) if __name__ == '__main__': if args.Function == 'base': print("Starting to generate hyperlipsbase train dataset...") " Dividing the videos into 5s segments" if args.clip_flag==1: print("Starting to divid the videos") split_video_5s(args) " Generating train data for hyper_base" data_process_hyper_base(args) " Generating filelists for train and val" split_train_test_text(args) elif args.Function == 'HR': print("Starting to generate hyperlipsHR train dataset...") data_process_hyper_hq_module(args) else: print("Please choose the right function!") ================================================ FILE: requirements.txt ================================================ librosa==0.9.2 numpy==1.21.5 opencv-contrib-python==4.7.0.72 opencv-python==4.7.0.72 tqdm==4.65.0 numba==0.56.4 mediapipe==0.10.1 facexlib==0.2.5 basicsr==1.4.2 lpips==0.1.4