在HarmonyOS中实现语音搜索功能时,涉及到麦克风权限的申请、音频数据的采集、编码和传输等多个步骤。以下是对上述代码的详细解析和补充说明:

麦克风权限的申请与检查
在HarmonyOS中,使用麦克风需要申请ohos.permission.MICROPHONE权限。在代码中,通过GRPermissionsUtils.checkPermissions方法来检查和申请权限。如果权限被授予,则可以继续进行音频采集操作。
GRPermissionsUtils.checkPermissions(permission).then((grantStatus: abilityAccessCtrl.GrantStatus) => {

GRLog.info(this.TAG, 'startRecord checkPermissions then: ${grantStatus}');
if (grantStatus === abilityAccessCtrl.GrantStatus.PERMISSION_GRANTED) {

// 权限已授予,继续音频采集操作
}
}).catch((error: BusinessError) => {

// 处理权限申请失败的情况
});
音频采集配置
在权限授予后,需要配置音频采集的参数,包括采样率、声道数、采样格式等。这些参数决定了音频数据的质量和格式。
let audioStreamInfo: audio.AudioStreamInfo = {

samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_16000, // 采样率16kHz
channels: audio.AudioChannel.CHANNEL_1, // 单声道
sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE, // 16位采样格式
encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW // 原始编码类型
};

let audioCaptureInfo: audio.AudioCapturerInfo = {

source: audio.SourceType.SOURCE_TYPE_MIC, // 音频源为麦克风
capturerFlags: 0
};

let audioCaptureOptions: audio.AudioCapturerOptions = {

streamInfo: audioStreamInfo,
capturerInfo: audioCaptureInfo
};
创建音频采集器并开始采集
通过audio.createAudioCapturer方法创建音频采集器,并开始采集音频数据。采集到的音频数据会通过回调函数audioCaptureStartReceiver进行处理。
audio.createAudioCapturer(audioCaptureOptions, (error: BusinessError, capture: audio.AudioCapturer) => {

if (error) {

GRLog.info(this.TAG, 'startRecord createAudioCapturer error: ${JSON.stringify(error)}');
// 处理麦克风权限被拒绝或采集器创建失败的情况
} else {

this.audioRecord = capture;
this.audioRecord.off('readData', this.audioCaptureStartReceiver);
this.audioRecord.on('readData', this.audioCaptureStartReceiver);
this.audioRecord.start();
this.mStartTime = systemDateTime.getTime(false);
}
});
音频数据处理
在audioCaptureStartReceiver回调函数中,处理采集到的音频数据。每0.1秒发送一个数据包,并将音频数据进行Base64编码后发送到服务端进行解码和敏感词检测。
private audioCaptureStartReceiver = (result: ArrayBuffer) => {

GRLog.info(this.TAG, 'audioCaptureStartReceiver result:${result.byteLength}');
try {

// 计算录音时长
let durationTime = systemDateTime.getTime(false) - this.mStartTime;
if (durationTime > this.mMaxRecordTime) {

this.isRecordTimeOut = true;
// 提示用户录音时间过长
return;

}

// 将音频数据添加到缓冲区
this.tmpRecordBuffers.push(buffer.from(result.slice(0, result.byteLength)));
this.tmpBufsize += result.byteLength;

// 当缓冲区达到一定大小或录音结束时,发送数据
if (this.tmpBufsize >= this.recordBufsize ||

(this.isStopRecord && this.tmpBufsize > 0 && this.tmpBufsize < this.recordBufsize && this.tmpRecordBuffers.length > 0)) {
let tmpResult = buffer.concat(this.tmpRecordBuffers).buffer;
let read: number = tmpResult.byteLength;
// 将音频数据添加到发送队列
this.addAudio(tmpResult, read);
this.tmpRecordBuffers = [];
this.tmpBufsize = 0;

}
} catch (e) {

// 处理异常
}
}
PCM文件每帧容量的计算
PCM文件的每帧容量(单位:字节数)可以通过以下公式计算:
采样频率 采样位数 声道数 * 时间 / 8
例如,采样频率为16kHz,采样位数为16位,声道数为1,时间为0.1秒时,每帧容量为:

16000 16 1 * 0.1 / 8 = 3200字节

音频数据的Base64编码与传输
在发送音频数据之前,通常会将音频数据进行Base64编码,以确保数据在传输过程中不会丢失或损坏。编码后的数据可以通过HTTP请求发送到服务端进行解码和进一步处理。
敏感词检测
服务端在接收到音频数据后,会进行解码并检测是否存在敏感词。如果检测到敏感词,服务端可以返回相应的提示信息,客户端可以根据返回结果进行相应的处理。
补充与优化
错误处理:在实际应用中,需要增加更多的错误处理逻辑,例如网络请求失败、服务端解码失败等情况。
性能优化:对于长时间录音的场景,可以考虑对音频数据进行压缩,以减少数据传输量。

用户体验:可以在录音过程中增加实时反馈,例如显示录音时长、音量大小等,提升用户体验。

总结
HarmonyOS提供了丰富的API来支持语音搜索功能的开发。通过合理的权限管理、音频采集配置、数据处理和传输,可以实现高效、稳定的语音搜索功能。后续可以根据实际需求进一步优化和扩展功能。
https://vk.com/topic-229773820_54056517?th=54
https://vk.com/topic-229773820_54056517?97=hq
https://m.vk.com/topic-229773820_54056517?QC=69
https://m.vk.com/topic-229773820_54056517?21=yY
https://www.vk.com/topic-229773820_54056517?Mf=65
https://www.vk.com/topic-229773820_54056517?20=NH
https://vk.com/topic-229773820_54056514?GM=92
https://vk.com/topic-229773820_54056514?09=lE
https://m.vk.com/topic-229773820_54056514?Hf=68
https://m.vk.com/topic-229773820_54056514?80=mw
https://www.vk.com/topic-229773820_54056514?DG=03
https://www.vk.com/topic-229773820_54056514?39=Kw
https://vk.com/topic-229773820_54056513?qJ=63
https://vk.com/topic-229773820_54056513?88=Or
https://m.vk.com/topic-229773820_54056513?Gf=45
https://m.vk.com/topic-229773820_54056513?89=Dy
https://www.vk.com/topic-229773820_54056513?Av=19
https://www.vk.com/topic-229773820_54056513?50=Cj
https://vk.com/topic-229773820_54056512?GS=51
https://vk.com/topic-229773820_54056512?39=wz
https://m.vk.com/topic-229773820_54056512?PY=18
https://m.vk.com/topic-229773820_54056512?24=ph
https://www.vk.com/topic-229773820_54056512?AW=82
https://www.vk.com/topic-229773820_54056512?08=SP
https://vk.com/topic-229773820_54056511?ZP=82
https://vk.com/topic-229773820_54056511?61=SE
https://m.vk.com/topic-229773820_54056511?cg=51
https://m.vk.com/topic-229773820_54056511?24=vh
https://www.vk.com/topic-229773820_54056511?eb=93
https://www.vk.com/topic-229773820_54056511?43=oH
https://vk.com/topic-229773820_54056510?Hr=10
https://vk.com/topic-229773820_54056510?09=sG
https://m.vk.com/topic-229773820_54056510?Ue=54
https://m.vk.com/topic-229773820_54056510?97=Gw
https://www.vk.com/topic-229773820_54056510?QI=88
https://www.vk.com/topic-229773820_54056510?79=go
https://vk.com/topic-229773820_54056509?IO=90
https://vk.com/topic-229773820_54056509?71=Gd
https://m.vk.com/topic-229773820_54056509?CC=82
https://m.vk.com/topic-229773820_54056509?82=Ef
https://www.vk.com/topic-229773820_54056509?jT=94
https://www.vk.com/topic-229773820_54056509?04=rK
https://vk.com/topic-229773820_54056508?hc=34
https://vk.com/topic-229773820_54056508?05=rZ
https://m.vk.com/topic-229773820_54056508?Ka=24
https://m.vk.com/topic-229773820_54056508?09=Su
https://www.vk.com/topic-229773820_54056508?OI=71
https://www.vk.com/topic-229773820_54056508?20=KU
https://vk.com/topic-229773820_54056507?Si=58
https://vk.com/topic-229773820_54056507?44=NB
https://m.vk.com/topic-229773820_54056507?fU=83
https://m.vk.com/topic-229773820_54056507?64=aB
https://www.vk.com/topic-229773820_54056507?vc=64
https://www.vk.com/topic-229773820_54056507?56=Ot
https://vk.com/topic-229773820_54056506?dp=06
https://vk.com/topic-229773820_54056506?22=rR
https://m.vk.com/topic-229773820_54056506?rC=85
https://m.vk.com/topic-229773820_54056506?07=HC
https://www.vk.com/topic-229773820_54056506?uC=62
https://www.vk.com/topic-229773820_54056506?41=iq
https://vk.com/topic-229773820_54056505?Dl=12
https://vk.com/topic-229773820_54056505?74=Mn
https://m.vk.com/topic-229773820_54056505?pO=44
https://m.vk.com/topic-229773820_54056505?73=pU
https://www.vk.com/topic-229773820_54056505?La=26
https://www.vk.com/topic-229773820_54056505?03=jY
https://vk.com/topic-229773820_54056504?hv=20
https://vk.com/topic-229773820_54056504?72=VX
https://m.vk.com/topic-229773820_54056504?Ft=65
https://m.vk.com/topic-229773820_54056504?54=St
https://www.vk.com/topic-229773820_54056504?ZR=17
https://www.vk.com/topic-229773820_54056504?33=zL
https://vk.com/topic-229773820_54056503?JX=94
https://vk.com/topic-229773820_54056503?19=Mw
https://m.vk.com/topic-229773820_54056503?AP=41
https://m.vk.com/topic-229773820_54056503?17=jX
https://www.vk.com/topic-229773820_54056503?Lo=63
https://www.vk.com/topic-229773820_54056503?35=Sh
https://vk.com/topic-229773820_54056502?YG=94
https://vk.com/topic-229773820_54056502?23=Im
https://m.vk.com/topic-229773820_54056502?RR=84
https://m.vk.com/topic-229773820_54056502?02=tA
https://www.vk.com/topic-229773820_54056502?kd=33
https://www.vk.com/topic-229773820_54056502?50=QC
https://vk.com/topic-229773820_54056501?UC=66
https://vk.com/topic-229773820_54056501?37=Tq
https://m.vk.com/topic-229773820_54056501?Uc=93
https://m.vk.com/topic-229773820_54056501?25=jB
https://www.vk.com/topic-229773820_54056501?To=84
https://www.vk.com/topic-229773820_54056501?99=EW
https://vk.com/topic-229773820_54056500?Fw=44
https://vk.com/topic-229773820_54056500?68=kl
https://m.vk.com/topic-229773820_54056500?qL=36
https://m.vk.com/topic-229773820_54056500?87=Qx
https://www.vk.com/topic-229773820_54056500?Zs=46
https://www.vk.com/topic-229773820_54056500?05=QZ
https://vk.com/topic-229773820_54056499?LK=67
https://vk.com/topic-229773820_54056499?10=hV
https://m.vk.com/topic-229773820_54056499?Xs=84
https://m.vk.com/topic-229773820_54056499?39=VO
https://www.vk.com/topic-229773820_54056499?gx=06
https://www.vk.com/topic-229773820_54056499?44=ym
https://vk.com/topic-229773820_54056498?eH=16
https://vk.com/topic-229773820_54056498?01=Jm
https://m.vk.com/topic-229773820_54056498?qU=05
https://m.vk.com/topic-229773820_54056498?48=LJ
https://www.vk.com/topic-229773820_54056498?Ex=63
https://www.vk.com/topic-229773820_54056498?51=Vu
https://vk.com/topic-229773820_54056497?Ot=72
https://vk.com/topic-229773820_54056497?91=we
https://m.vk.com/topic-229773820_54056497?cf=67
https://m.vk.com/topic-229773820_54056497?24=Rw
https://www.vk.com/topic-229773820_54056497?RY=04
https://www.vk.com/topic-229773820_54056497?08=ov
https://vk.com/topic-229773820_54056496?RI=13
https://vk.com/topic-229773820_54056496?80=vr
https://m.vk.com/topic-229773820_54056496?Jd=46
https://m.vk.com/topic-229773820_54056496?09=Yv
https://www.vk.com/topic-229773820_54056496?PI=85
https://www.vk.com/topic-229773820_54056496?49=Zy
https://vk.com/topic-229773820_54056495?aD=83
https://vk.com/topic-229773820_54056495?93=cX
https://m.vk.com/topic-229773820_54056495?jg=69
https://m.vk.com/topic-229773820_54056495?54=ap
https://www.vk.com/topic-229773820_54056495?Xi=05
https://www.vk.com/topic-229773820_54056495?05=ms
https://vk.com/topic-229773820_54056494?PR=99
https://vk.com/topic-229773820_54056494?50=Hz
https://m.vk.com/topic-229773820_54056494?Pf=47
https://m.vk.com/topic-229773820_54056494?10=QP
https://www.vk.com/topic-229773820_54056494?nk=81
https://www.vk.com/topic-229773820_54056494?27=MJ
https://vk.com/topic-229773820_54056493?Qr=83
https://vk.com/topic-229773820_54056493?36=ct
https://m.vk.com/topic-229773820_54056493?eJ=43
https://m.vk.com/topic-229773820_54056493?06=vo
https://www.vk.com/topic-229773820_54056493?TS=92
https://www.vk.com/topic-229773820_54056493?22=Lc
https://vk.com/topic-229773820_54056492?rO=49
https://vk.com/topic-229773820_54056492?27=Tb
https://m.vk.com/topic-229773820_54056492?ck=28
https://m.vk.com/topic-229773820_54056492?99=zC
https://www.vk.com/topic-229773820_54056492?hn=29
https://www.vk.com/topic-229773820_54056492?33=vn
https://vk.com/topic-229773820_54056491?Or=28
https://vk.com/topic-229773820_54056491?76=DD
https://m.vk.com/topic-229773820_54056491?hB=17
https://m.vk.com/topic-229773820_54056491?94=gU
https://www.vk.com/topic-229773820_54056491?aM=97
https://www.vk.com/topic-229773820_54056491?38=Eh
https://vk.com/topic-229773820_54056490?EK=83
https://vk.com/topic-229773820_54056490?37=CT
https://m.vk.com/topic-229773820_54056490?ax=63
https://m.vk.com/topic-229773820_54056490?65=hc
https://www.vk.com/topic-229773820_54056490?gx=91
https://www.vk.com/topic-229773820_54056490?90=bb
https://vk.com/topic-229773820_54056489?oB=34
https://vk.com/topic-229773820_54056489?15=JG
https://m.vk.com/topic-229773820_54056489?CY=86
https://m.vk.com/topic-229773820_54056489?92=OF
https://www.vk.com/topic-229773820_54056489?ID=65
https://www.vk.com/topic-229773820_54056489?19=fi
https://vk.com/topic-229773820_54056488?xd=21
https://vk.com/topic-229773820_54056488?55=DV
https://m.vk.com/topic-229773820_54056488?ft=06
https://m.vk.com/topic-229773820_54056488?20=pE
https://www.vk.com/topic-229773820_54056488?rs=08
https://www.vk.com/topic-229773820_54056488?31=CU
https://vk.com/topic-229773820_54056487?WM=51
https://vk.com/topic-229773820_54056487?64=NH
https://m.vk.com/topic-229773820_54056487?or=83
https://m.vk.com/topic-229773820_54056487?67=Mh
https://www.vk.com/topic-229773820_54056487?fo=55
https://www.vk.com/topic-229773820_54056487?28=Fn
https://vk.com/topic-229773820_54056486?RF=04
https://vk.com/topic-229773820_54056486?87=cR
https://m.vk.com/topic-229773820_54056486?fI=99
https://m.vk.com/topic-229773820_54056486?55=LW
https://www.vk.com/topic-229773820_54056486?tm=55
https://www.vk.com/topic-229773820_54056486?60=UE
https://vk.com/topic-229773820_54056484?gl=61
https://vk.com/topic-229773820_54056484?95=IX
https://m.vk.com/topic-229773820_54056484?vH=65
https://m.vk.com/topic-229773820_54056484?89=AN
https://www.vk.com/topic-229773820_54056484?oe=11
https://www.vk.com/topic-229773820_54056484?18=lV
https://vk.com/topic-229773820_54056483?KH=23
https://vk.com/topic-229773820_54056483?53=LK
https://m.vk.com/topic-229773820_54056483?HA=16
https://m.vk.com/topic-229773820_54056483?64=Dt
https://www.vk.com/topic-229773820_54056483?Mh=24
https://www.vk.com/topic-229773820_54056483?14=rh
https://vk.com/topic-229773820_54056480?Oc=16
https://vk.com/topic-229773820_54056480?96=DN
https://m.vk.com/topic-229773820_54056480?FA=75
https://m.vk.com/topic-229773820_54056480?48=ZE
https://www.vk.com/topic-229773820_54056480?PP=01
https://www.vk.com/topic-229773820_54056480?05=Cf
https://vk.com/topic-229773820_54056478?rh=80
https://vk.com/topic-229773820_54056478?87=aN
https://m.vk.com/topic-229773820_54056478?er=84
https://m.vk.com/topic-229773820_54056478?28=YP
https://www.vk.com/topic-229773820_54056478?ef=40
https://www.vk.com/topic-229773820_54056478?39=ma
https://vk.com/topic-229773820_54056477?NI=83
https://vk.com/topic-229773820_54056477?15=KW
https://m.vk.com/topic-229773820_54056477?Qg=39
https://m.vk.com/topic-229773820_54056477?20=UI
https://www.vk.com/topic-229773820_54056477?Gk=34
https://www.vk.com/topic-229773820_54056477?95=YZ
https://vk.com/topic-229773820_54056476?oq=82
https://vk.com/topic-229773820_54056476?66=rl
https://m.vk.com/topic-229773820_54056476?MA=61
https://m.vk.com/topic-229773820_54056476?63=sl
https://www.vk.com/topic-229773820_54056476?TS=16
https://www.vk.com/topic-229773820_54056476?79=Wg
https://vk.com/topic-229773820_54056474?OO=03
https://vk.com/topic-229773820_54056474?52=Is
https://m.vk.com/topic-229773820_54056474?EX=88
https://m.vk.com/topic-229773820_54056474?72=xC
https://www.vk.com/topic-229773820_54056474?gt=61
https://www.vk.com/topic-229773820_54056474?35=xQ
https://vk.com/topic-229773820_54056473?Vr=25
https://vk.com/topic-229773820_54056473?05=bt
https://m.vk.com/topic-229773820_54056473?Gg=30
https://m.vk.com/topic-229773820_54056473?76=CB
https://www.vk.com/topic-229773820_54056473?UM=68
https://www.vk.com/topic-229773820_54056473?26=ZH
https://vk.com/topic-229773534_53087522?Wz=59
https://vk.com/topic-229773534_53087522?05=Gu
https://m.vk.com/topic-229773534_53087522?Or=42
https://m.vk.com/topic-229773534_53087522?79=Nn
https://www.vk.com/topic-229773534_53087522?FN=45
https://www.vk.com/topic-229773534_53087522?75=BE
https://vk.com/topic-229773534_53087519?RG=67
https://vk.com/topic-229773534_53087519?53=Sy
https://m.vk.com/topic-229773534_53087519?Py=74
https://m.vk.com/topic-229773534_53087519?74=bi
https://www.vk.com/topic-229773534_53087519?Vn=85
https://www.vk.com/topic-229773534_53087519?77=gr
https://vk.com/topic-229773534_53087518?cP=57
https://vk.com/topic-229773534_53087518?76=ly
https://m.vk.com/topic-229773534_53087518?sk=56
https://m.vk.com/topic-229773534_53087518?19=sn
https://www.vk.com/topic-229773534_53087518?vU=08
https://www.vk.com/topic-229773534_53087518?97=UG
https://vk.com/topic-229773534_53087516?oK=69
https://vk.com/topic-229773534_53087516?48=tM
https://m.vk.com/topic-229773534_53087516?xW=71
https://m.vk.com/topic-229773534_53087516?72=rS
https://www.vk.com/topic-229773534_53087516?MS=80
https://www.vk.com/topic-229773534_53087516?39=zu
https://vk.com/topic-229773534_53087515?Eo=21
https://vk.com/topic-229773534_53087515?95=la
https://m.vk.com/topic-229773534_53087515?tu=31
https://m.vk.com/topic-229773534_53087515?51=cr
https://www.vk.com/topic-229773534_53087515?Ip=78
https://www.vk.com/topic-229773534_53087515?02=xy
https://vk.com/topic-229773534_53087514?oX=46
https://vk.com/topic-229773534_53087514?23=uG
https://m.vk.com/topic-229773534_53087514?QX=51
https://m.vk.com/topic-229773534_53087514?52=sK
https://www.vk.com/topic-229773534_53087514?gx=16
https://www.vk.com/topic-229773534_53087514?45=KL
https://vk.com/topic-229773534_53087513?FQ=26
https://vk.com/topic-229773534_53087513?72=jG
https://m.vk.com/topic-229773534_53087513?Da=95
https://m.vk.com/topic-229773534_53087513?53=ub
https://www.vk.com/topic-229773534_53087513?jZ=48
https://www.vk.com/topic-229773534_53087513?98=lr
https://vk.com/topic-229773534_53087511?Gj=60
https://vk.com/topic-229773534_53087511?19=oR
https://m.vk.com/topic-229773534_53087511?dt=49
https://m.vk.com/topic-229773534_53087511?55=SF
https://www.vk.com/topic-229773534_53087511?pM=84
https://www.vk.com/topic-229773534_53087511?91=aG
https://vk.com/topic-229773534_53087510?bA=86
https://vk.com/topic-229773534_53087510?00=xQ
https://m.vk.com/topic-229773534_53087510?xk=07
https://m.vk.com/topic-229773534_53087510?77=zI
https://www.vk.com/topic-229773534_53087510?pO=87
https://www.vk.com/topic-229773534_53087510?15=rJ
https://vk.com/topic-229773534_53087509?zn=45
https://vk.com/topic-229773534_53087509?42=gz
https://m.vk.com/topic-229773534_53087509?BV=04
https://m.vk.com/topic-229773534_53087509?05=Bx
https://www.vk.com/topic-229773534_53087509?ci=32
https://www.vk.com/topic-229773534_53087509?87=gJ
https://vk.com/topic-229773534_53087508?Kt=96
https://vk.com/topic-229773534_53087508?24=my
https://m.vk.com/topic-229773534_53087508?UB=77
https://m.vk.com/topic-229773534_53087508?12=ui
https://www.vk.com/topic-229773534_53087508?rj=09
https://www.vk.com/topic-229773534_53087508?81=Mt
https://vk.com/topic-229773534_53087506?rt=21
https://vk.com/topic-229773534_53087506?87=zl
https://m.vk.com/topic-229773534_53087506?jV=52
https://m.vk.com/topic-229773534_53087506?17=Dj
https://www.vk.com/topic-229773534_53087506?KA=46
https://www.vk.com/topic-229773534_53087506?62=sP
https://vk.com/topic-229773534_53087505?zE=43
https://vk.com/topic-229773534_53087505?21=bC
https://m.vk.com/topic-229773534_53087505?LM=35
https://m.vk.com/topic-229773534_53087505?55=Pl
https://www.vk.com/topic-229773534_53087505?xt=99
https://www.vk.com/topic-229773534_53087505?35=SB
https://vk.com/topic-229773534_53087503?VP=41
https://vk.com/topic-229773534_53087503?80=Qf
https://m.vk.com/topic-229773534_53087503?vN=31
https://m.vk.com/topic-229773534_53087503?98=AS
https://www.vk.com/topic-229773534_53087503?Ez=66
https://www.vk.com/topic-229773534_53087503?66=nm
https://vk.com/topic-229773534_53087502?av=71
https://vk.com/topic-229773534_53087502?57=IA
https://m.vk.com/topic-229773534_53087502?SE=77
https://m.vk.com/topic-229773534_53087502?54=ID
https://www.vk.com/topic-229773534_53087502?oe=08
https://www.vk.com/topic-229773534_53087502?39=Ri
https://vk.com/topic-229773534_53087501?ZR=82
https://vk.com/topic-229773534_53087501?90=TQ
https://m.vk.com/topic-229773534_53087501?kw=43
https://m.vk.com/topic-229773534_53087501?53=LI
https://www.vk.com/topic-229773534_53087501?YQ=61
https://www.vk.com/topic-229773534_53087501?95=gO
https://vk.com/topic-229773534_53087500?DV=84
https://vk.com/topic-229773534_53087500?24=Si
https://m.vk.com/topic-229773534_53087500?my=86
https://m.vk.com/topic-229773534_53087500?38=aM
https://www.vk.com/topic-229773534_53087500?kO=61
https://www.vk.com/topic-229773534_53087500?82=XJ
https://vk.com/topic-229773534_53087497?cA=56
https://vk.com/topic-229773534_53087497?67=EZ
https://m.vk.com/topic-229773534_53087497?hF=39
https://m.vk.com/topic-229773534_53087497?07=lv
https://www.vk.com/topic-229773534_53087497?pb=90
https://www.vk.com/topic-229773534_53087497?23=HD
https://vk.com/topic-229773534_53087496?je=47
https://vk.com/topic-229773534_53087496?06=cr
https://m.vk.com/topic-229773534_53087496?Lv=15
https://m.vk.com/topic-229773534_53087496?21=ew
https://www.vk.com/topic-229773534_53087496?NG=77
https://www.vk.com/topic-229773534_53087496?86=qe
https://vk.com/topic-229773534_53087495?hz=09
https://vk.com/topic-229773534_53087495?23=Br
https://m.vk.com/topic-229773534_53087495?jZ=58
https://m.vk.com/topic-229773534_53087495?59=vS
https://www.vk.com/topic-229773534_53087495?yE=18
https://www.vk.com/topic-229773534_53087495?00=VQ
https://vk.com/topic-229773534_53087494?vb=59
https://vk.com/topic-229773534_53087494?49=DO
https://m.vk.com/topic-229773534_53087494?pH=23
https://m.vk.com/topic-229773534_53087494?98=Mv
https://www.vk.com/topic-229773534_53087494?mS=83
https://www.vk.com/topic-229773534_53087494?19=eG
https://vk.com/topic-229773534_53087493?Wf=73
https://vk.com/topic-229773534_53087493?20=TV
https://m.vk.com/topic-229773534_53087493?nQ=79
https://m.vk.com/topic-229773534_53087493?53=JN
https://www.vk.com/topic-229773534_53087493?Zn=64
https://www.vk.com/topic-229773534_53087493?10=Sj
https://vk.com/topic-229773534_53087492?Xj=06
https://vk.com/topic-229773534_53087492?53=Th
https://m.vk.com/topic-229773534_53087492?AF=05
https://m.vk.com/topic-229773534_53087492?68=AM
https://www.vk.com/topic-229773534_53087492?vV=09
https://www.vk.com/topic-229773534_53087492?76=TS
https://vk.com/topic-229773534_53087491?jV=01
https://vk.com/topic-229773534_53087491?24=qp
https://m.vk.com/topic-229773534_53087491?kI=34
https://m.vk.com/topic-229773534_53087491?15=AT
https://www.vk.com/topic-229773534_53087491?NI=40
https://www.vk.com/topic-229773534_53087491?20=st
https://vk.com/topic-229773534_53087490?wm=56
https://vk.com/topic-229773534_53087490?29=BG
https://m.vk.com/topic-229773534_53087490?DB=33
https://m.vk.com/topic-229773534_53087490?89=fz
https://www.vk.com/topic-229773534_53087490?Hl=55
https://www.vk.com/topic-229773534_53087490?23=bg
https://vk.com/topic-229773534_53087489?cM=19
https://vk.com/topic-229773534_53087489?29=QF
https://m.vk.com/topic-229773534_53087489?dz=02
https://m.vk.com/topic-229773534_53087489?22=IA
https://www.vk.com/topic-229773534_53087489?ma=26
https://www.vk.com/topic-229773534_53087489?51=IU
https://vk.com/topic-229773534_53087488?hM=37
https://vk.com/topic-229773534_53087488?47=fr
https://m.vk.com/topic-229773534_53087488?Uj=04
https://m.vk.com/topic-229773534_53087488?42=AC
https://www.vk.com/topic-229773534_53087488?MU=20
https://www.vk.com/topic-229773534_53087488?32=Pi
https://vk.com/topic-229773534_53087487?OI=32
https://vk.com/topic-229773534_53087487?18=Uf
https://m.vk.com/topic-229773534_53087487?Zf=99
https://m.vk.com/topic-229773534_53087487?78=bj
https://www.vk.com/topic-229773534_53087487?aa=58
https://www.vk.com/topic-229773534_53087487?91=lB
https://vk.com/topic-229773534_53087486?Sv=52
https://vk.com/topic-229773534_53087486?28=lg
https://m.vk.com/topic-229773534_53087486?Op=01
https://m.vk.com/topic-229773534_53087486?32=pd
https://www.vk.com/topic-229773534_53087486?RV=03
https://www.vk.com/topic-229773534_53087486?05=eP
https://vk.com/topic-229773534_53087485?VE=45
https://vk.com/topic-229773534_53087485?29=yk
https://m.vk.com/topic-229773534_53087485?wY=07
https://m.vk.com/topic-229773534_53087485?00=XI
https://www.vk.com/topic-229773534_53087485?UQ=42
https://www.vk.com/topic-229773534_53087485?51=At
https://vk.com/topic-229773534_53087484?pD=56
https://vk.com/topic-229773534_53087484?26=Ux
https://m.vk.com/topic-229773534_53087484?xw=01
https://m.vk.com/topic-229773534_53087484?34=PL
https://www.vk.com/topic-229773534_53087484?cQ=40
https://www.vk.com/topic-229773534_53087484?77=dt
https://vk.com/topic-229773534_53087482?Pb=64
https://vk.com/topic-229773534_53087482?81=xl
https://m.vk.com/topic-229773534_53087482?Cx=03
https://m.vk.com/topic-229773534_53087482?04=rD
https://www.vk.com/topic-229773534_53087482?qv=16
https://www.vk.com/topic-229773534_53087482?91=VB
https://vk.com/topic-229773534_53087481?aX=34
https://vk.com/topic-229773534_53087481?82=Tz
https://m.vk.com/topic-229773534_53087481?nX=76
https://m.vk.com/topic-229773534_53087481?25=Yg
https://www.vk.com/topic-229773534_53087481?MU=56
https://www.vk.com/topic-229773534_53087481?99=sr
https://vk.com/topic-229773534_53087480?xF=90
https://vk.com/topic-229773534_53087480?70=xj
https://m.vk.com/topic-229773534_53087480?OT=73
https://m.vk.com/topic-229773534_53087480?56=zI
https://www.vk.com/topic-229773534_53087480?gA=38
https://www.vk.com/topic-229773534_53087480?22=nr
https://vk.com/topic-229773534_53087479?zU=34
https://vk.com/topic-229773534_53087479?82=nI
https://m.vk.com/topic-229773534_53087479?nz=24
https://m.vk.com/topic-229773534_53087479?91=vO
https://www.vk.com/topic-229773534_53087479?gp=63
https://www.vk.com/topic-229773534_53087479?14=wX
https://vk.com/topic-229773534_53087478?WN=36
https://vk.com/topic-229773534_53087478?73=Fy
https://m.vk.com/topic-229773534_53087478?GI=45
https://m.vk.com/topic-229773534_53087478?70=WI
https://www.vk.com/topic-229773534_53087478?ya=14
https://www.vk.com/topic-229773534_53087478?31=Lf
https://vk.com/topic-229773534_53087477?lB=27
https://vk.com/topic-229773534_53087477?01=hg
https://m.vk.com/topic-229773534_53087477?vc=38
https://m.vk.com/topic-229773534_53087477?57=ow
https://www.vk.com/topic-229773534_53087477?Rd=38
https://www.vk.com/topic-229773534_53087477?52=qR
https://vk.com/topic-229773534_53087475?iR=17
https://vk.com/topic-229773534_53087475?16=cQ
https://m.vk.com/topic-229773534_53087475?yC=97
https://m.vk.com/topic-229773534_53087475?34=ft
https://www.vk.com/topic-229773534_53087475?YZ=44
https://www.vk.com/topic-229773534_53087475?41=vb
https://vk.com/topic-229773534_53087474?Hc=86
https://vk.com/topic-229773534_53087474?66=Az
https://m.vk.com/topic-229773534_53087474?JU=93
https://m.vk.com/topic-229773534_53087474?60=RG
https://www.vk.com/topic-229773534_53087474?YM=38
https://www.vk.com/topic-229773534_53087474?28=iQ
https://vk.com/topic-229773534_53087473?kW=87
https://vk.com/topic-229773534_53087473?79=dr
https://m.vk.com/topic-229773534_53087473?qy=51
https://m.vk.com/topic-229773534_53087473?01=dO
https://www.vk.com/topic-229773534_53087473?kJ=54
https://www.vk.com/topic-229773534_53087473?09=TI
https://vk.com/topic-229773534_53087472?vU=81
https://vk.com/topic-229773534_53087472?92=jU
https://m.vk.com/topic-229773534_53087472?fp=07
https://m.vk.com/topic-229773534_53087472?80=DK
https://www.vk.com/topic-229773534_53087472?UA=88
https://www.vk.com/topic-229773534_53087472?86=TC
https://vk.com/topic-229772353_53325209?oX=21
https://vk.com/topic-229772353_53325209?36=WE
https://m.vk.com/topic-229772353_53325209?Zn=35
https://m.vk.com/topic-229772353_53325209?45=fI
https://www.vk.com/topic-229772353_53325209?zc=52
https://www.vk.com/topic-229772353_53325209?99=SX
https://vk.com/topic-229772353_53325208?zH=85
https://vk.com/topic-229772353_53325208?41=zr
https://m.vk.com/topic-229772353_53325208?jr=83
https://m.vk.com/topic-229772353_53325208?71=Ij
https://www.vk.com/topic-229772353_53325208?lt=90
https://www.vk.com/topic-229772353_53325208?83=mn
https://vk.com/topic-229772353_53325207?bw=16
https://vk.com/topic-229772353_53325207?03=RH
https://m.vk.com/topic-229772353_53325207?Jm=79
https://m.vk.com/topic-229772353_53325207?77=DT
https://www.vk.com/topic-229772353_53325207?oA=65
https://www.vk.com/topic-229772353_53325207?12=qS
https://vk.com/topic-229772353_53325206?zH=24
https://vk.com/topic-229772353_53325206?80=sO
https://m.vk.com/topic-229772353_53325206?Ze=28
https://m.vk.com/topic-229772353_53325206?31=HU
https://www.vk.com/topic-229772353_53325206?ss=67
https://www.vk.com/topic-229772353_53325206?17=BJ
https://vk.com/topic-229772353_53325204?ec=68
https://vk.com/topic-229772353_53325204?45=VH
https://m.vk.com/topic-229772353_53325204?jB=77
https://m.vk.com/topic-229772353_53325204?69=Ek
https://www.vk.com/topic-229772353_53325204?Rr=93
https://www.vk.com/topic-229772353_53325204?15=me
https://vk.com/topic-229772353_53325202?LZ=41
https://vk.com/topic-229772353_53325202?61=kk
https://m.vk.com/topic-229772353_53325202?jh=75
https://m.vk.com/topic-229772353_53325202?54=lt
https://www.vk.com/topic-229772353_53325202?yN=85
https://www.vk.com/topic-229772353_53325202?53=Fe
https://vk.com/topic-229772353_53325201?Ij=58
https://vk.com/topic-229772353_53325201?14=lb
https://m.vk.com/topic-229772353_53325201?nv=66
https://m.vk.com/topic-229772353_53325201?71=MO
https://www.vk.com/topic-229772353_53325201?wp=57
https://www.vk.com/topic-229772353_53325201?16=dv
https://vk.com/topic-229772353_53325197?yt=53
https://vk.com/topic-229772353_53325197?65=PI
https://m.vk.com/topic-229772353_53325197?ox=09
https://m.vk.com/topic-229772353_53325197?61=jB
https://www.vk.com/topic-229772353_53325197?mO=43
https://www.vk.com/topic-229772353_53325197?09=As
https://vk.com/topic-229772353_53325196?jn=45
https://vk.com/topic-229772353_53325196?31=AZ
https://m.vk.com/topic-229772353_53325196?mE=85
https://m.vk.com/topic-229772353_53325196?56=Nq
https://www.vk.com/topic-229772353_53325196?cO=13
https://www.vk.com/topic-229772353_53325196?76=bb
https://vk.com/topic-229772353_53325195?IL=54
https://vk.com/topic-229772353_53325195?92=MS
https://m.vk.com/topic-229772353_53325195?gY=21
https://m.vk.com/topic-229772353_53325195?70=nf
https://www.vk.com/topic-229772353_53325195?Aq=10
https://www.vk.com/topic-229772353_53325195?57=ni
https://vk.com/topic-229772353_53325193?bk=64
https://vk.com/topic-229772353_53325193?73=ew
https://m.vk.com/topic-229772353_53325193?gZ=60
https://m.vk.com/topic-229772353_53325193?60=Zp
https://www.vk.com/topic-229772353_53325193?RZ=72
https://www.vk.com/topic-229772353_53325193?62=bf
https://vk.com/topic-229772353_53325192?vn=50
https://vk.com/topic-229772353_53325192?59=dB
https://m.vk.com/topic-229772353_53325192?Tk=05
https://m.vk.com/topic-229772353_53325192?66=qA
https://www.vk.com/topic-229772353_53325192?zr=40
https://www.vk.com/topic-229772353_53325192?50=CA
https://vk.com/topic-229772353_53325190?bg=15
https://vk.com/topic-229772353_53325190?64=dp
https://m.vk.com/topic-229772353_53325190?ES=93
https://m.vk.com/topic-229772353_53325190?19=sV
https://www.vk.com/topic-229772353_53325190?GY=69
https://www.vk.com/topic-229772353_53325190?82=EG
https://vk.com/topic-229772353_53325189?RJ=63
https://vk.com/topic-229772353_53325189?11=iR
https://m.vk.com/topic-229772353_53325189?xE=20
https://m.vk.com/topic-229772353_53325189?01=bf
https://www.vk.com/topic-229772353_53325189?dY=91
https://www.vk.com/topic-229772353_53325189?75=zn
https://vk.com/topic-229772353_53325188?hp=25
https://vk.com/topic-229772353_53325188?57=Qe
https://m.vk.com/topic-229772353_53325188?Pz=71
https://m.vk.com/topic-229772353_53325188?91=rd
https://www.vk.com/topic-229772353_53325188?VT=90
https://www.vk.com/topic-229772353_53325188?41=fy
https://vk.com/topic-229772353_53325186?Kg=33
https://vk.com/topic-229772353_53325186?97=xN
https://m.vk.com/topic-229772353_53325186?sk=38
https://m.vk.com/topic-229772353_53325186?40=kW
https://www.vk.com/topic-229772353_53325186?xP=48
https://www.vk.com/topic-229772353_53325186?77=Gi
https://vk.com/topic-229772353_53325184?id=58
https://vk.com/topic-229772353_53325184?36=sY
https://m.vk.com/topic-229772353_53325184?KC=35
https://m.vk.com/topic-229772353_53325184?33=zw
https://www.vk.com/topic-229772353_53325184?cb=09
https://www.vk.com/topic-229772353_53325184?69=Ym
https://vk.com/topic-229772353_53325183?Nw=26
https://vk.com/topic-229772353_53325183?89=FM
https://m.vk.com/topic-229772353_53325183?mp=94
https://m.vk.com/topic-229772353_53325183?46=Qo
https://www.vk.com/topic-229772353_53325183?NR=61
https://www.vk.com/topic-229772353_53325183?30=tP
https://vk.com/topic-229772353_53325182?pp=97
https://vk.com/topic-229772353_53325182?50=mu
https://m.vk.com/topic-229772353_53325182?Ui=57
https://m.vk.com/topic-229772353_53325182?03=ld
https://www.vk.com/topic-229772353_53325182?hr=76
https://www.vk.com/topic-229772353_53325182?57=AM
https://vk.com/topic-229772353_53325180?OP=49
https://vk.com/topic-229772353_53325180?00=NK
https://m.vk.com/topic-229772353_53325180?Kb=77
https://m.vk.com/topic-229772353_53325180?93=rd
https://www.vk.com/topic-229772353_53325180?jd=77
https://www.vk.com/topic-229772353_53325180?49=JK
https://vk.com/topic-229772353_53325178?FY=32
https://vk.com/topic-229772353_53325178?94=dj
https://m.vk.com/topic-229772353_53325178?dF=13
https://m.vk.com/topic-229772353_53325178?03=uy
https://www.vk.com/topic-229772353_53325178?zs=57
https://www.vk.com/topic-229772353_53325178?68=hT
https://vk.com/topic-229772353_53325177?Wm=19
https://vk.com/topic-229772353_53325177?09=Wh
https://m.vk.com/topic-229772353_53325177?Bh=64
https://m.vk.com/topic-229772353_53325177?35=Mo
https://www.vk.com/topic-229772353_53325177?si=54
https://www.vk.com/topic-229772353_53325177?81=fA
https://vk.com/topic-229772353_53325176?OH=60
https://vk.com/topic-229772353_53325176?73=Xl
https://m.vk.com/topic-229772353_53325176?Ll=96
https://m.vk.com/topic-229772353_53325176?20=pB
https://www.vk.com/topic-229772353_53325176?pq=58
https://www.vk.com/topic-229772353_53325176?80=aH
https://vk.com/topic-229772353_53325175?cx=46
https://vk.com/topic-229772353_53325175?28=Mc
https://m.vk.com/topic-229772353_53325175?gr=38
https://m.vk.com/topic-229772353_53325175?97=wV
https://www.vk.com/topic-229772353_53325175?Ez=70
https://www.vk.com/topic-229772353_53325175?10=px
https://vk.com/topic-229772353_53325174?XF=84
https://vk.com/topic-229772353_53325174?20=zY
https://m.vk.com/topic-229772353_53325174?hr=32
https://m.vk.com/topic-229772353_53325174?48=gT
https://www.vk.com/topic-229772353_53325174?Mj=36
https://www.vk.com/topic-229772353_53325174?71=NT
https://vk.com/topic-229772353_53325172?nq=84
https://vk.com/topic-229772353_53325172?88=wP
https://m.vk.com/topic-229772353_53325172?qv=64
https://m.vk.com/topic-229772353_53325172?61=BH
https://www.vk.com/topic-229772353_53325172?bV=70
https://www.vk.com/topic-229772353_53325172?57=pf
https://vk.com/topic-229772353_53325170?qd=41
https://vk.com/topic-229772353_53325170?56=wB
https://m.vk.com/topic-229772353_53325170?Fb=51
https://m.vk.com/topic-229772353_53325170?87=VZ
https://www.vk.com/topic-229772353_53325170?PI=13
https://www.vk.com/topic-229772353_53325170?10=qD
https://vk.com/topic-229772353_53325169?OR=58
https://vk.com/topic-229772353_53325169?40=Dg
https://m.vk.com/topic-229772353_53325169?yE=99
https://m.vk.com/topic-229772353_53325169?96=po
https://www.vk.com/topic-229772353_53325169?TS=22
https://www.vk.com/topic-229772353_53325169?07=Zz
https://vk.com/topic-229772353_53325167?pM=52
https://vk.com/topic-229772353_53325167?85=SE
https://m.vk.com/topic-229772353_53325167?eN=63
https://m.vk.com/topic-229772353_53325167?30=Ta
https://www.vk.com/topic-229772353_53325167?zs=30
https://www.vk.com/topic-229772353_53325167?77=WS
https://vk.com/topic-229772353_53325166?YX=58
https://vk.com/topic-229772353_53325166?65=Cz
https://m.vk.com/topic-229772353_53325166?tS=47
https://m.vk.com/topic-229772353_53325166?73=jQ
https://www.vk.com/topic-229772353_53325166?XA=40
https://www.vk.com/topic-229772353_53325166?63=Wr
https://vk.com/topic-229772353_53325165?Up=73
https://vk.com/topic-229772353_53325165?22=bt
https://m.vk.com/topic-229772353_53325165?kj=06
https://m.vk.com/topic-229772353_53325165?85=Rm
https://www.vk.com/topic-229772353_53325165?LP=48
https://www.vk.com/topic-229772353_53325165?27=Ad
https://vk.com/topic-229772353_53325162?Bc=82
https://vk.com/topic-229772353_53325162?31=no
https://m.vk.com/topic-229772353_53325162?va=12
https://m.vk.com/topic-229772353_53325162?97=Dp
https://www.vk.com/topic-229772353_53325162?Vl=44
https://www.vk.com/topic-229772353_53325162?45=lh
https://vk.com/topic-229772353_53325161?iH=46
https://vk.com/topic-229772353_53325161?74=ou
https://m.vk.com/topic-229772353_53325161?Jr=36
https://m.vk.com/topic-229772353_53325161?32=uF
https://www.vk.com/topic-229772353_53325161?VN=88
https://www.vk.com/topic-229772353_53325161?46=uQ
https://vk.com/topic-229772353_53325159?aY=69
https://vk.com/topic-229772353_53325159?71=ji
https://m.vk.com/topic-229772353_53325159?Wy=46
https://m.vk.com/topic-229772353_53325159?78=Jl
https://www.vk.com/topic-229772353_53325159?zR=46
https://www.vk.com/topic-229772353_53325159?13=UX
https://vk.com/topic-229772353_53325157?vR=59
https://vk.com/topic-229772353_53325157?02=Zf
https://m.vk.com/topic-229772353_53325157?KW=70
https://m.vk.com/topic-229772353_53325157?24=jX
https://www.vk.com/topic-229772353_53325157?ln=68
https://www.vk.com/topic-229772353_53325157?50=qy
https://vk.com/topic-229772353_53325156?Hr=51
https://vk.com/topic-229772353_53325156?83=NA
https://m.vk.com/topic-229772353_53325156?ZU=21
https://m.vk.com/topic-229772353_53325156?10=Lm
https://www.vk.com/topic-229772353_53325156?UM=06
https://www.vk.com/topic-229772353_53325156?38=Dy
https://vk.com/topic-229772353_53325155?aj=92
https://vk.com/topic-229772353_53325155?01=IC
https://m.vk.com/topic-229772353_53325155?Sb=08
https://m.vk.com/topic-229772353_53325155?71=IT
https://www.vk.com/topic-229772353_53325155?dS=85
https://www.vk.com/topic-229772353_53325155?03=Gb
https://vk.com/topic-229772353_53325153?tO=19
https://vk.com/topic-229772353_53325153?17=UM
https://m.vk.com/topic-229772353_53325153?wf=95
https://m.vk.com/topic-229772353_53325153?31=lp
https://www.vk.com/topic-229772353_53325153?za=46
https://www.vk.com/topic-229772353_53325153?62=xf
https://vk.com/topic-229772353_53325152?nh=25
https://vk.com/topic-229772353_53325152?56=Mf
https://m.vk.com/topic-229772353_53325152?KB=12
https://m.vk.com/topic-229772353_53325152?80=FM
https://www.vk.com/topic-229772353_53325152?tP=09
https://www.vk.com/topic-229772353_53325152?28=yx
https://vk.com/topic-229772353_53325150?ix=82
https://vk.com/topic-229772353_53325150?67=Tf
https://m.vk.com/topic-229772353_53325150?bJ=98
https://m.vk.com/topic-229772353_53325150?50=oQ
https://www.vk.com/topic-229772353_53325150?LV=36
https://www.vk.com/topic-229772353_53325150?10=wi
https://vk.com/topic-229772353_53325149?us=86
https://vk.com/topic-229772353_53325149?66=Yi
https://m.vk.com/topic-229772353_53325149?pS=03
https://m.vk.com/topic-229772353_53325149?95=Ge
https://www.vk.com/topic-229772353_53325149?yJ=81
https://www.vk.com/topic-229772353_53325149?55=lD
https://vk.com/topic-229772048_53484715?cP=66
https://vk.com/topic-229772048_53484715?69=YQ
https://m.vk.com/topic-229772048_53484715?Up=98
https://m.vk.com/topic-229772048_53484715?68=cY
https://www.vk.com/topic-229772048_53484715?lC=49
https://www.vk.com/topic-229772048_53484715?63=rd
https://vk.com/topic-229772048_53484712?Wq=77
https://vk.com/topic-229772048_53484712?21=YD
https://m.vk.com/topic-229772048_53484712?yT=69
https://m.vk.com/topic-229772048_53484712?02=JM
https://www.vk.com/topic-229772048_53484712?oK=53
https://www.vk.com/topic-229772048_53484712?84=OU
https://vk.com/topic-229772048_53484709?rR=63
https://vk.com/topic-229772048_53484709?84=WG
https://m.vk.com/topic-229772048_53484709?As=21
https://m.vk.com/topic-229772048_53484709?98=yo
https://www.vk.com/topic-229772048_53484709?LV=75
https://www.vk.com/topic-229772048_53484709?88=PB
https://vk.com/topic-229772048_53484706?em=94
https://vk.com/topic-229772048_53484706?33=Bf
https://m.vk.com/topic-229772048_53484706?Ox=87
https://m.vk.com/topic-229772048_53484706?71=yM
https://www.vk.com/topic-229772048_53484706?JD=20
https://www.vk.com/topic-229772048_53484706?51=MR
https://vk.com/topic-229772048_53484705?ZI=40
https://vk.com/topic-229772048_53484705?10=Xj
https://m.vk.com/topic-229772048_53484705?qO=93
https://m.vk.com/topic-229772048_53484705?54=PH
https://www.vk.com/topic-229772048_53484705?ij=16
https://www.vk.com/topic-229772048_53484705?71=uj
https://vk.com/topic-229772048_53484704?sd=01
https://vk.com/topic-229772048_53484704?55=Pf
https://m.vk.com/topic-229772048_53484704?ik=01
https://m.vk.com/topic-229772048_53484704?52=Qr
https://www.vk.com/topic-229772048_53484704?uf=42
https://www.vk.com/topic-229772048_53484704?47=NY
https://vk.com/topic-229772048_53484702?rQ=98
https://vk.com/topic-229772048_53484702?12=GH
https://m.vk.com/topic-229772048_53484702?fX=48
https://m.vk.com/topic-229772048_53484702?06=Lz
https://www.vk.com/topic-229772048_53484702?PD=64
https://www.vk.com/topic-229772048_53484702?02=cR
https://vk.com/topic-229772048_53484701?CA=36
https://vk.com/topic-229772048_53484701?83=oY
https://m.vk.com/topic-229772048_53484701?VN=05
https://m.vk.com/topic-229772048_53484701?22=xM
https://www.vk.com/topic-229772048_53484701?qi=98
https://www.vk.com/topic-229772048_53484701?88=lX
https://vk.com/topic-229772048_53484700?cO=94
https://vk.com/topic-229772048_53484700?75=bS
https://m.vk.com/topic-229772048_53484700?hT=18
https://m.vk.com/topic-229772048_53484700?75=xp
https://www.vk.com/topic-229772048_53484700?JA=77
https://www.vk.com/topic-229772048_53484700?76=ef
https://vk.com/topic-229772048_53484699?Pi=61
https://vk.com/topic-229772048_53484699?89=QI
https://m.vk.com/topic-229772048_53484699?sg=19
https://m.vk.com/topic-229772048_53484699?30=jI
https://www.vk.com/topic-229772048_53484699?yS=08
https://www.vk.com/topic-229772048_53484699?58=Jj
https://vk.com/topic-229772048_53484698?OK=71
https://vk.com/topic-229772048_53484698?41=bu
https://m.vk.com/topic-229772048_53484698?fa=27
https://m.vk.com/topic-229772048_53484698?18=Tf
https://www.vk.com/topic-229772048_53484698?pk=42
https://www.vk.com/topic-229772048_53484698?84=HE
https://vk.com/topic-229772048_53484697?xW=69
https://vk.com/topic-229772048_53484697?74=Qj
https://m.vk.com/topic-229772048_53484697?vA=39
https://m.vk.com/topic-229772048_53484697?46=Zv
https://www.vk.com/topic-229772048_53484697?Pn=51
https://www.vk.com/topic-229772048_53484697?40=nb
https://vk.com/topic-229772048_53484696?kr=72
https://vk.com/topic-229772048_53484696?06=KG
https://m.vk.com/topic-229772048_53484696?UT=87
https://m.vk.com/topic-229772048_53484696?89=qj
https://www.vk.com/topic-229772048_53484696?sy=66
https://www.vk.com/topic-229772048_53484696?06=Lx
https://vk.com/topic-229772048_53484695?aq=54
https://vk.com/topic-229772048_53484695?54=kJ
https://m.vk.com/topic-229772048_53484695?ar=76
https://m.vk.com/topic-229772048_53484695?25=pD
https://www.vk.com/topic-229772048_53484695?Pz=75
https://www.vk.com/topic-229772048_53484695?93=XJ
https://vk.com/topic-229772048_53484694?od=74
https://vk.com/topic-229772048_53484694?06=Mf
https://m.vk.com/topic-229772048_53484694?lx=70
https://m.vk.com/topic-229772048_53484694?52=QU
https://www.vk.com/topic-229772048_53484694?SQ=98
https://www.vk.com/topic-229772048_53484694?51=wB
https://vk.com/topic-229772048_53484693?tI=82
https://vk.com/topic-229772048_53484693?70=AL
https://m.vk.com/topic-229772048_53484693?Np=79
https://m.vk.com/topic-229772048_53484693?12=yb
https://www.vk.com/topic-229772048_53484693?Wu=31
https://www.vk.com/topic-229772048_53484693?01=Sj
https://vk.com/topic-229772048_53484691?UC=78
https://vk.com/topic-229772048_53484691?27=ur
https://m.vk.com/topic-229772048_53484691?kz=21
https://m.vk.com/topic-229772048_53484691?58=lI
https://www.vk.com/topic-229772048_53484691?Sn=33
https://www.vk.com/topic-229772048_53484691?04=fR
https://vk.com/topic-229772048_53484689?oT=17
https://vk.com/topic-229772048_53484689?92=BH
https://m.vk.com/topic-229772048_53484689?cK=81
https://m.vk.com/topic-229772048_53484689?71=jB
https://www.vk.com/topic-229772048_53484689?Sb=26
https://www.vk.com/topic-229772048_53484689?46=VY
https://vk.com/topic-229772048_53484688?bx=76
https://vk.com/topic-229772048_53484688?02=Va
https://m.vk.com/topic-229772048_53484688?AS=76
https://m.vk.com/topic-229772048_53484688?34=Bq
https://www.vk.com/topic-229772048_53484688?ct=64
https://www.vk.com/topic-229772048_53484688?56=Ht
https://vk.com/topic-229772048_53484687?Rg=60
https://vk.com/topic-229772048_53484687?26=gU
https://m.vk.com/topic-229772048_53484687?Yd=68
https://m.vk.com/topic-229772048_53484687?40=Ch
https://www.vk.com/topic-229772048_53484687?KD=62
https://www.vk.com/topic-229772048_53484687?57=tw
https://vk.com/topic-229772048_53484686?DR=88
https://vk.com/topic-229772048_53484686?74=qv
https://m.vk.com/topic-229772048_53484686?zz=94
https://m.vk.com/topic-229772048_53484686?05=Bg
https://www.vk.com/topic-229772048_53484686?oH=24
https://www.vk.com/topic-229772048_53484686?89=xZ
https://vk.com/topic-229772048_53484685?xz=89
https://vk.com/topic-229772048_53484685?41=FU
https://m.vk.com/topic-229772048_53484685?NO=12
https://m.vk.com/topic-229772048_53484685?69=Xp
https://www.vk.com/topic-229772048_53484685?TU=33
https://www.vk.com/topic-229772048_53484685?64=sp
https://vk.com/topic-229772048_53484682?jo=81
https://vk.com/topic-229772048_53484682?18=Ap
https://m.vk.com/topic-229772048_53484682?tU=66
https://m.vk.com/topic-229772048_53484682?57=nY
https://www.vk.com/topic-229772048_53484682?pS=88
https://www.vk.com/topic-229772048_53484682?24=Uz
https://vk.com/topic-229772048_53484681?OM=09
https://vk.com/topic-229772048_53484681?63=sb
https://m.vk.com/topic-229772048_53484681?Kb=64
https://m.vk.com/topic-229772048_53484681?73=oB
https://www.vk.com/topic-229772048_53484681?WG=39
https://www.vk.com/topic-229772048_53484681?86=NO
https://vk.com/topic-229772048_53484680?hQ=24
https://vk.com/topic-229772048_53484680?52=OT
https://m.vk.com/topic-229772048_53484680?FG=89
https://m.vk.com/topic-229772048_53484680?20=xv
https://www.vk.com/topic-229772048_53484680?AM=60
https://www.vk.com/topic-229772048_53484680?60=xr
https://vk.com/topic-229772048_53484679?UB=37
https://vk.com/topic-229772048_53484679?01=RS
https://m.vk.com/topic-229772048_53484679?Ax=09
https://m.vk.com/topic-229772048_53484679?54=Yq
https://www.vk.com/topic-229772048_53484679?mH=54
https://www.vk.com/topic-229772048_53484679?66=cQ
https://vk.com/topic-229772048_53484677?BZ=76
https://vk.com/topic-229772048_53484677?21=bO
https://m.vk.com/topic-229772048_53484677?YG=34
https://m.vk.com/topic-229772048_53484677?21=oD
https://www.vk.com/topic-229772048_53484677?MY=85
https://www.vk.com/topic-229772048_53484677?94=Ml
https://vk.com/topic-229772048_53484676?ka=50
https://vk.com/topic-229772048_53484676?68=gW
https://m.vk.com/topic-229772048_53484676?JL=56
https://m.vk.com/topic-229772048_53484676?19=CW
https://www.vk.com/topic-229772048_53484676?SR=78
https://www.vk.com/topic-229772048_53484676?63=vU
https://vk.com/topic-229772048_53484675?Lm=79
https://vk.com/topic-229772048_53484675?20=BJ
https://m.vk.com/topic-229772048_53484675?xM=25
https://m.vk.com/topic-229772048_53484675?56=Oy
https://www.vk.com/topic-229772048_53484675?LX=16
https://www.vk.com/topic-229772048_53484675?89=Eo
https://vk.com/topic-229772048_53484674?tF=55
https://vk.com/topic-229772048_53484674?34=pm
https://m.vk.com/topic-229772048_53484674?um=88
https://m.vk.com/topic-229772048_53484674?96=lf
https://www.vk.com/topic-229772048_53484674?OA=39
https://www.vk.com/topic-229772048_53484674?84=Kz
https://vk.com/topic-229772048_53484672?Zo=14
https://vk.com/topic-229772048_53484672?40=pH
https://m.vk.com/topic-229772048_53484672?bw=12
https://m.vk.com/topic-229772048_53484672?13=HQ
https://www.vk.com/topic-229772048_53484672?Sp=36
https://www.vk.com/topic-229772048_53484672?92=zW
https://vk.com/topic-229772048_53484671?GG=88
https://vk.com/topic-229772048_53484671?98=Oe
https://m.vk.com/topic-229772048_53484671?yu=64
https://m.vk.com/topic-229772048_53484671?52=JL
https://www.vk.com/topic-229772048_53484671?dh=61
https://www.vk.com/topic-229772048_53484671?58=uR
https://vk.com/topic-229772048_53484669?Sx=75
https://vk.com/topic-229772048_53484669?87=oU
https://m.vk.com/topic-229772048_53484669?Bn=24
https://m.vk.com/topic-229772048_53484669?13=Oh
https://www.vk.com/topic-229772048_53484669?Gr=50
https://www.vk.com/topic-229772048_53484669?41=fn
https://vk.com/topic-229772048_53484668?Fg=28
https://vk.com/topic-229772048_53484668?64=aD
https://m.vk.com/topic-229772048_53484668?lK=15
https://m.vk.com/topic-229772048_53484668?97=AJ
https://www.vk.com/topic-229772048_53484668?Bx=90
https://www.vk.com/topic-229772048_53484668?66=wI
https://vk.com/topic-229772048_53484666?fw=63
https://vk.com/topic-229772048_53484666?43=YL
https://m.vk.com/topic-229772048_53484666?Kc=48
https://m.vk.com/topic-229772048_53484666?93=Wv
https://www.vk.com/topic-229772048_53484666?aG=95
https://www.vk.com/topic-229772048_53484666?11=Wt
https://vk.com/topic-229772048_53484665?VX=39
https://vk.com/topic-229772048_53484665?44=sE
https://m.vk.com/topic-229772048_53484665?Ok=56
https://m.vk.com/topic-229772048_53484665?70=mY
https://www.vk.com/topic-229772048_53484665?hd=06
https://www.vk.com/topic-229772048_53484665?06=Os
https://vk.com/topic-229772048_53484664?CV=01
https://vk.com/topic-229772048_53484664?00=JJ
https://m.vk.com/topic-229772048_53484664?cW=54
https://m.vk.com/topic-229772048_53484664?53=cc
https://www.vk.com/topic-229772048_53484664?TS=42
https://www.vk.com/topic-229772048_53484664?99=qz
https://vk.com/topic-229772048_53484663?xA=81
https://vk.com/topic-229772048_53484663?14=xf
https://m.vk.com/topic-229772048_53484663?BH=06
https://m.vk.com/topic-229772048_53484663?62=dp
https://www.vk.com/topic-229772048_53484663?Oj=80
https://www.vk.com/topic-229772048_53484663?61=FI
https://vk.com/topic-229772048_53484661?Pk=64
https://vk.com/topic-229772048_53484661?90=CS
https://m.vk.com/topic-229772048_53484661?oe=11
https://m.vk.com/topic-229772048_53484661?52=UU
https://www.vk.com/topic-229772048_53484661?XD=93
https://www.vk.com/topic-229772048_53484661?22=KY
https://vk.com/topic-229772048_53484659?ih=12
https://vk.com/topic-229772048_53484659?39=ve
https://m.vk.com/topic-229772048_53484659?yK=40
https://m.vk.com/topic-229772048_53484659?33=fa
https://www.vk.com/topic-229772048_53484659?bh=60
https://www.vk.com/topic-229772048_53484659?57=at
https://vk.com/topic-229772048_53484658?Hk=54
https://vk.com/topic-229772048_53484658?36=PN
https://m.vk.com/topic-229772048_53484658?GP=92
https://m.vk.com/topic-229772048_53484658?19=Kw
https://www.vk.com/topic-229772048_53484658?mJ=93
https://www.vk.com/topic-229772048_53484658?39=nm
https://vk.com/topic-229771838_53484647?Nb=66
https://vk.com/topic-229771838_53484647?54=pb
https://m.vk.com/topic-229771838_53484647?YD=32
https://m.vk.com/topic-229771838_53484647?99=Wb
https://www.vk.com/topic-229771838_53484647?wp=15
https://www.vk.com/topic-229771838_53484647?56=yP
https://vk.com/topic-229771838_53484646?tO=42
https://vk.com/topic-229771838_53484646?58=PI
https://m.vk.com/topic-229771838_53484646?Oa=79
https://m.vk.com/topic-229771838_53484646?61=Xe
https://www.vk.com/topic-229771838_53484646?YK=74
https://www.vk.com/topic-229771838_53484646?52=dY
https://vk.com/topic-229771838_53484644?dr=79
https://vk.com/topic-229771838_53484644?93=zX
https://m.vk.com/topic-229771838_53484644?fX=86
https://m.vk.com/topic-229771838_53484644?46=nf
https://www.vk.com/topic-229771838_53484644?Gv=21
https://www.vk.com/topic-229771838_53484644?95=jG
https://vk.com/topic-229771838_53484643?OM=34
https://vk.com/topic-229771838_53484643?61=Ht
https://m.vk.com/topic-229771838_53484643?Wb=24
https://m.vk.com/topic-229771838_53484643?18=tL
https://www.vk.com/topic-229771838_53484643?mB=54
https://www.vk.com/topic-229771838_53484643?93=fk
https://vk.com/topic-229771838_53484642?NO=06
https://vk.com/topic-229771838_53484642?44=VK
https://m.vk.com/topic-229771838_53484642?Ap=48
https://m.vk.com/topic-229771838_53484642?31=tY
https://www.vk.com/topic-229771838_53484642?Ga=79
https://www.vk.com/topic-229771838_53484642?47=ll
https://vk.com/topic-229771838_53484641?Ab=47
https://vk.com/topic-229771838_53484641?64=sn
https://m.vk.com/topic-229771838_53484641?mb=17
https://m.vk.com/topic-229771838_53484641?06=Vr
https://www.vk.com/topic-229771838_53484641?Dp=19
https://www.vk.com/topic-229771838_53484641?43=tZ
https://vk.com/topic-229771838_53484640?vN=15
https://vk.com/topic-229771838_53484640?01=an
https://m.vk.com/topic-229771838_53484640?AS=84
https://m.vk.com/topic-229771838_53484640?61=hG
https://www.vk.com/topic-229771838_53484640?wy=85
https://www.vk.com/topic-229771838_53484640?41=LN
https://vk.com/topic-229771838_53484639?Yk=87
https://vk.com/topic-229771838_53484639?70=XB
https://m.vk.com/topic-229771838_53484639?ke=34
https://m.vk.com/topic-229771838_53484639?67=eT
https://www.vk.com/topic-229771838_53484639?jv=43
https://www.vk.com/topic-229771838_53484639?09=nN
https://vk.com/topic-229771838_53484638?oj=50
https://vk.com/topic-229771838_53484638?40=sz
https://m.vk.com/topic-229771838_53484638?jb=47
https://m.vk.com/topic-229771838_53484638?18=XW
https://www.vk.com/topic-229771838_53484638?Ol=49
https://www.vk.com/topic-229771838_53484638?38=ao
https://vk.com/topic-229771838_53484636?zX=36
https://vk.com/topic-229771838_53484636?13=wv
https://m.vk.com/topic-229771838_53484636?NG=22
https://m.vk.com/topic-229771838_53484636?48=uc
https://www.vk.com/topic-229771838_53484636?gv=86
https://www.vk.com/topic-229771838_53484636?69=Uo
https://vk.com/topic-229771838_53484635?YO=91
https://vk.com/topic-229771838_53484635?29=vA
https://m.vk.com/topic-229771838_53484635?HI=16
https://m.vk.com/topic-229771838_53484635?34=Kw
https://www.vk.com/topic-229771838_53484635?Lm=65
https://www.vk.com/topic-229771838_53484635?67=AF
https://vk.com/topic-229771838_53484634?Zw=27
https://vk.com/topic-229771838_53484634?37=TB
https://m.vk.com/topic-229771838_53484634?xF=12
https://m.vk.com/topic-229771838_53484634?05=lr
https://www.vk.com/topic-229771838_53484634?tx=69
https://www.vk.com/topic-229771838_53484634?68=RJ
https://vk.com/topic-229771838_53484632?Tz=44
https://vk.com/topic-229771838_53484632?22=rQ
https://m.vk.com/topic-229771838_53484632?ld=13
https://m.vk.com/topic-229771838_53484632?22=Om
https://www.vk.com/topic-229771838_53484632?Qn=91
https://www.vk.com/topic-229771838_53484632?41=Zh
https://vk.com/topic-229771838_53484631?PG=93
https://vk.com/topic-229771838_53484631?89=Vp
https://m.vk.com/topic-229771838_53484631?OA=83
https://m.vk.com/topic-229771838_53484631?75=Ua
https://www.vk.com/topic-229771838_53484631?ml=49
https://www.vk.com/topic-229771838_53484631?45=Id
https://vk.com/topic-229771838_53484628?Rr=04
https://vk.com/topic-229771838_53484628?13=MH
https://m.vk.com/topic-229771838_53484628?JL=13
https://m.vk.com/topic-229771838_53484628?46=Ws
https://www.vk.com/topic-229771838_53484628?ag=39
https://www.vk.com/topic-229771838_53484628?13=KC
https://vk.com/topic-229771838_53484626?eX=27
https://vk.com/topic-229771838_53484626?82=YC
https://m.vk.com/topic-229771838_53484626?Xh=55
https://m.vk.com/topic-229771838_53484626?35=HO
https://www.vk.com/topic-229771838_53484626?hW=33
https://www.vk.com/topic-229771838_53484626?58=qC
https://vk.com/topic-229771838_53484624?SO=85
https://vk.com/topic-229771838_53484624?45=wO
https://m.vk.com/topic-229771838_53484624?Ky=47
https://m.vk.com/topic-229771838_53484624?91=WK
https://www.vk.com/topic-229771838_53484624?GS=71
https://www.vk.com/topic-229771838_53484624?62=Zj
https://vk.com/topic-229771838_53484623?Br=94
https://vk.com/topic-229771838_53484623?34=HI
https://m.vk.com/topic-229771838_53484623?mM=00
https://m.vk.com/topic-229771838_53484623?51=Kq
https://www.vk.com/topic-229771838_53484623?yf=53
https://www.vk.com/topic-229771838_53484623?85=HF
https://vk.com/topic-229771838_53484622?ph=80
https://vk.com/topic-229771838_53484622?40=qZ
https://m.vk.com/topic-229771838_53484622?CI=15
https://m.vk.com/topic-229771838_53484622?41=YF
https://www.vk.com/topic-229771838_53484622?bR=99
https://www.vk.com/topic-229771838_53484622?15=on
https://vk.com/topic-229771838_53484620?uG=89
https://vk.com/topic-229771838_53484620?44=pW
https://m.vk.com/topic-229771838_53484620?Px=27
https://m.vk.com/topic-229771838_53484620?58=IE
https://www.vk.com/topic-229771838_53484620?Hr=85
https://www.vk.com/topic-229771838_53484620?53=jC
https://vk.com/topic-229771838_53484619?gl=08
https://vk.com/topic-229771838_53484619?17=Tu
https://m.vk.com/topic-229771838_53484619?ly=09
https://m.vk.com/topic-229771838_53484619?87=zh
https://www.vk.com/topic-229771838_53484619?Lt=25
https://www.vk.com/topic-229771838_53484619?08=xF
https://vk.com/topic-229771838_53484618?dC=41
https://vk.com/topic-229771838_53484618?66=Xl
https://m.vk.com/topic-229771838_53484618?YN=24
https://m.vk.com/topic-229771838_53484618?99=Qa
https://www.vk.com/topic-229771838_53484618?Up=22
https://www.vk.com/topic-229771838_53484618?43=oA
https://vk.com/topic-229771838_53484616?cv=02
https://vk.com/topic-229771838_53484616?81=eQ
https://m.vk.com/topic-229771838_53484616?mT=12
https://m.vk.com/topic-229771838_53484616?40=SA
https://www.vk.com/topic-229771838_53484616?LK=91
https://www.vk.com/topic-229771838_53484616?18=tp
https://vk.com/topic-229771838_53484613?pv=95
https://vk.com/topic-229771838_53484613?81=FL
https://m.vk.com/topic-229771838_53484613?Vw=99
https://m.vk.com/topic-229771838_53484613?34=xC
https://www.vk.com/topic-229771838_53484613?qo=85
https://www.vk.com/topic-229771838_53484613?61=mJ
https://vk.com/topic-229771838_53484610?Bh=38
https://vk.com/topic-229771838_53484610?68=wb
https://m.vk.com/topic-229771838_53484610?Se=54
https://m.vk.com/topic-229771838_53484610?63=bN
https://www.vk.com/topic-229771838_53484610?po=82
https://www.vk.com/topic-229771838_53484610?30=hP
https://vk.com/topic-229771838_53484607?HV=04
https://vk.com/topic-229771838_53484607?61=ra
https://m.vk.com/topic-229771838_53484607?Vw=38
https://m.vk.com/topic-229771838_53484607?12=gc
https://www.vk.com/topic-229771838_53484607?SI=61
https://www.vk.com/topic-229771838_53484607?57=tT
https://vk.com/topic-229771838_53484605?Wi=54
https://vk.com/topic-229771838_53484605?86=Xi
https://m.vk.com/topic-229771838_53484605?nF=67
https://m.vk.com/topic-229771838_53484605?88=Op
https://www.vk.com/topic-229771838_53484605?oD=22
https://www.vk.com/topic-229771838_53484605?66=ht
https://vk.com/topic-229771838_53484604?tK=32
https://vk.com/topic-229771838_53484604?70=MY
https://m.vk.com/topic-229771838_53484604?oK=95
https://m.vk.com/topic-229771838_53484604?51=OP
https://www.vk.com/topic-229771838_53484604?Tu=46
https://www.vk.com/topic-229771838_53484604?28=cb
https://vk.com/topic-229771838_53484602?AJ=37
https://vk.com/topic-229771838_53484602?42=Dt
https://m.vk.com/topic-229771838_53484602?zJ=50
https://m.vk.com/topic-229771838_53484602?48=Jc
https://www.vk.com/topic-229771838_53484602?LA=35
https://www.vk.com/topic-229771838_53484602?81=uG
https://vk.com/topic-229771838_53484601?ni=73
https://vk.com/topic-229771838_53484601?39=lB
https://m.vk.com/topic-229771838_53484601?qV=87
https://m.vk.com/topic-229771838_53484601?40=bh
https://www.vk.com/topic-229771838_53484601?qG=73
https://www.vk.com/topic-229771838_53484601?35=Xp
https://vk.com/topic-229771838_53484600?Sx=12
https://vk.com/topic-229771838_53484600?17=dp
https://m.vk.com/topic-229771838_53484600?FA=94
https://m.vk.com/topic-229771838_53484600?82=uF
https://www.vk.com/topic-229771838_53484600?pi=35
https://www.vk.com/topic-229771838_53484600?72=hG
https://vk.com/topic-229771838_53484599?SX=82
https://vk.com/topic-229771838_53484599?02=mE
https://m.vk.com/topic-229771838_53484599?jo=20
https://m.vk.com/topic-229771838_53484599?97=Xf
https://www.vk.com/topic-229771838_53484599?kd=10
https://www.vk.com/topic-229771838_53484599?28=iw
https://vk.com/topic-229771838_53484597?ZW=69
https://vk.com/topic-229771838_53484597?09=hn
https://m.vk.com/topic-229771838_53484597?Cf=70
https://m.vk.com/topic-229771838_53484597?64=zn
https://www.vk.com/topic-229771838_53484597?pl=15
https://www.vk.com/topic-229771838_53484597?09=ZW
https://vk.com/topic-229771838_53484596?Du=03
https://vk.com/topic-229771838_53484596?21=vg
https://m.vk.com/topic-229771838_53484596?jx=40
https://m.vk.com/topic-229771838_53484596?38=Bn
https://www.vk.com/topic-229771838_53484596?QC=16
https://www.vk.com/topic-229771838_53484596?37=tu
https://vk.com/topic-229771838_53484594?zM=94
https://vk.com/topic-229771838_53484594?05=xS
https://m.vk.com/topic-229771838_53484594?Av=71
https://m.vk.com/topic-229771838_53484594?24=hX
https://www.vk.com/topic-229771838_53484594?rJ=19
https://www.vk.com/topic-229771838_53484594?12=Kt
https://vk.com/topic-229771838_53484592?AO=87
https://vk.com/topic-229771838_53484592?14=gT
https://m.vk.com/topic-229771838_53484592?VU=36
https://m.vk.com/topic-229771838_53484592?90=rr
https://www.vk.com/topic-229771838_53484592?dU=52
https://www.vk.com/topic-229771838_53484592?92=ze
https://vk.com/topic-229771838_53484589?YJ=78
https://vk.com/topic-229771838_53484589?65=qa
https://m.vk.com/topic-229771838_53484589?YX=26
https://m.vk.com/topic-229771838_53484589?34=Bq
https://www.vk.com/topic-229771838_53484589?Em=38
https://www.vk.com/topic-229771838_53484589?99=Yn
https://vk.com/topic-229771838_53484586?fr=48
https://vk.com/topic-229771838_53484586?05=hM
https://m.vk.com/topic-229771838_53484586?lG=06
https://m.vk.com/topic-229771838_53484586?71=Ow
https://www.vk.com/topic-229771838_53484586?QI=27
https://www.vk.com/topic-229771838_53484586?53=wC
https://vk.com/topic-229771838_53484585?Id=04
https://vk.com/topic-229771838_53484585?97=uL
https://m.vk.com/topic-229771838_53484585?Sm=80
https://m.vk.com/topic-229771838_53484585?66=Sx
https://www.vk.com/topic-229771838_53484585?eu=58
https://www.vk.com/topic-229771838_53484585?59=EX
https://vk.com/topic-229771838_53484584?HR=04
https://vk.com/topic-229771838_53484584?62=ky
https://m.vk.com/topic-229771838_53484584?BW=47
https://m.vk.com/topic-229771838_53484584?75=EO
https://www.vk.com/topic-229771838_53484584?wi=58
https://www.vk.com/topic-229771838_53484584?28=pB
https://vk.com/topic-229771838_53484582?Kk=41
https://vk.com/topic-229771838_53484582?68=VW
https://m.vk.com/topic-229771838_53484582?nj=95
https://m.vk.com/topic-229771838_53484582?62=Yn
https://www.vk.com/topic-229771838_53484582?Ek=96
https://www.vk.com/topic-229771838_53484582?15=FY
https://vk.com/topic-229771838_53484580?bz=33
https://vk.com/topic-229771838_53484580?62=gU
https://m.vk.com/topic-229771838_53484580?sR=90
https://m.vk.com/topic-229771838_53484580?84=GY
https://www.vk.com/topic-229771838_53484580?AE=69
https://www.vk.com/topic-229771838_53484580?54=fY
https://vk.com/topic-229771454_53087263?Pb=57
https://vk.com/topic-229771454_53087263?17=EQ
https://m.vk.com/topic-229771454_53087263?Jw=33
https://m.vk.com/topic-229771454_53087263?53=Vk
https://www.vk.com/topic-229771454_53087263?lh=30
https://www.vk.com/topic-229771454_53087263?26=xt
https://vk.com/topic-229771454_53087261?dc=94
https://vk.com/topic-229771454_53087261?24=Ci
https://m.vk.com/topic-229771454_53087261?UJ=67
https://m.vk.com/topic-229771454_53087261?34=xv
https://www.vk.com/topic-229771454_53087261?Gb=13
https://www.vk.com/topic-229771454_53087261?85=mB
https://vk.com/topic-229771454_53087259?jd=21
https://vk.com/topic-229771454_53087259?96=ei
https://m.vk.com/topic-229771454_53087259?oN=36
https://m.vk.com/topic-229771454_53087259?86=rk
https://www.vk.com/topic-229771454_53087259?Zj=90
https://www.vk.com/topic-229771454_53087259?41=po
https://vk.com/topic-229771454_53087256?hZ=59
https://vk.com/topic-229771454_53087256?85=IQ
https://m.vk.com/topic-229771454_53087256?zE=18
https://m.vk.com/topic-229771454_53087256?86=Jo
https://www.vk.com/topic-229771454_53087256?UF=03
https://www.vk.com/topic-229771454_53087256?62=Wl
https://vk.com/topic-229771454_53087255?yw=50
https://vk.com/topic-229771454_53087255?68=Ba
https://m.vk.com/topic-229771454_53087255?Cx=41
https://m.vk.com/topic-229771454_53087255?32=ZA
https://www.vk.com/topic-229771454_53087255?vk=39
https://www.vk.com/topic-229771454_53087255?13=Zv
https://vk.com/topic-229771454_53087254?BC=94
https://vk.com/topic-229771454_53087254?95=JX
https://m.vk.com/topic-229771454_53087254?Eg=22
https://m.vk.com/topic-229771454_53087254?40=eD
https://www.vk.com/topic-229771454_53087254?Oo=57
https://www.vk.com/topic-229771454_53087254?97=Bp
https://vk.com/topic-229771454_53087252?WM=43
https://vk.com/topic-229771454_53087252?97=Gf
https://m.vk.com/topic-229771454_53087252?nf=86
https://m.vk.com/topic-229771454_53087252?38=rj
https://www.vk.com/topic-229771454_53087252?ex=55
https://www.vk.com/topic-229771454_53087252?40=EG
https://vk.com/topic-229771454_53087251?rx=21
https://vk.com/topic-229771454_53087251?22=VW
https://m.vk.com/topic-229771454_53087251?tH=26
https://m.vk.com/topic-229771454_53087251?59=js
https://www.vk.com/topic-229771454_53087251?cQ=31
https://www.vk.com/topic-229771454_53087251?17=op
https://vk.com/topic-229771454_53087250?By=80
https://vk.com/topic-229771454_53087250?69=By
https://m.vk.com/topic-229771454_53087250?Lb=57
https://m.vk.com/topic-229771454_53087250?19=CD
https://www.vk.com/topic-229771454_53087250?CX=19
https://www.vk.com/topic-229771454_53087250?77=VA
https://vk.com/topic-229771454_53087249?lV=72
https://vk.com/topic-229771454_53087249?91=hI
https://m.vk.com/topic-229771454_53087249?Hm=53
https://m.vk.com/topic-229771454_53087249?69=yL
https://www.vk.com/topic-229771454_53087249?IT=70
https://www.vk.com/topic-229771454_53087249?93=Hn
https://vk.com/topic-229771454_53087245?nF=94
https://vk.com/topic-229771454_53087245?00=KW
https://m.vk.com/topic-229771454_53087245?gB=58
https://m.vk.com/topic-229771454_53087245?78=Pl
https://www.vk.com/topic-229771454_53087245?Dy=43
https://www.vk.com/topic-229771454_53087245?85=Zp
https://vk.com/topic-229771454_53087243?Gz=57
https://vk.com/topic-229771454_53087243?46=nO
https://m.vk.com/topic-229771454_53087243?Lt=06
https://m.vk.com/topic-229771454_53087243?85=qN
https://www.vk.com/topic-229771454_53087243?Al=83
https://www.vk.com/topic-229771454_53087243?26=Zj
https://vk.com/topic-229771454_53087242?hT=20
https://vk.com/topic-229771454_53087242?06=vg
https://m.vk.com/topic-229771454_53087242?Am=71
https://m.vk.com/topic-229771454_53087242?41=HJ
https://www.vk.com/topic-229771454_53087242?Bp=48
https://www.vk.com/topic-229771454_53087242?51=hN
https://vk.com/topic-229771454_53087241?jX=18
https://vk.com/topic-229771454_53087241?66=bj
https://m.vk.com/topic-229771454_53087241?GW=61
https://m.vk.com/topic-229771454_53087241?57=LZ
https://www.vk.com/topic-229771454_53087241?Sd=42
https://www.vk.com/topic-229771454_53087241?43=Wc
https://vk.com/topic-229771454_53087240?oD=22
https://vk.com/topic-229771454_53087240?44=mp
https://m.vk.com/topic-229771454_53087240?PD=80
https://m.vk.com/topic-229771454_53087240?26=tq
https://www.vk.com/topic-229771454_53087240?aP=97
https://www.vk.com/topic-229771454_53087240?14=FI
https://vk.com/topic-229771454_53087239?hN=03
https://vk.com/topic-229771454_53087239?42=cB
https://m.vk.com/topic-229771454_53087239?It=56
https://m.vk.com/topic-229771454_53087239?10=Gj
https://www.vk.com/topic-229771454_53087239?KA=95
https://www.vk.com/topic-229771454_53087239?30=Wb
https://vk.com/topic-229771454_53087238?cP=14
https://vk.com/topic-229771454_53087238?70=hW
https://m.vk.com/topic-229771454_53087238?Fl=32
https://m.vk.com/topic-229771454_53087238?10=tr
https://www.vk.com/topic-229771454_53087238?Bj=08
https://www.vk.com/topic-229771454_53087238?94=se
https://vk.com/topic-229771454_53087237?Lt=61
https://vk.com/topic-229771454_53087237?09=rU
https://m.vk.com/topic-229771454_53087237?pF=35
https://m.vk.com/topic-229771454_53087237?00=Pw
https://www.vk.com/topic-229771454_53087237?PR=81
https://www.vk.com/topic-229771454_53087237?98=QI
https://vk.com/topic-229771454_53087235?Hj=72
https://vk.com/topic-229771454_53087235?19=Bn
https://m.vk.com/topic-229771454_53087235?vh=98
https://m.vk.com/topic-229771454_53087235?31=wP
https://www.vk.com/topic-229771454_53087235?bn=37
https://www.vk.com/topic-229771454_53087235?99=qD
https://vk.com/topic-229771454_53087233?mB=96
https://vk.com/topic-229771454_53087233?12=Dp
https://m.vk.com/topic-229771454_53087233?Bo=54
https://m.vk.com/topic-229771454_53087233?37=AB
https://www.vk.com/topic-229771454_53087233?Bm=21
https://www.vk.com/topic-229771454_53087233?01=JF
https://vk.com/topic-229771454_53087232?FQ=88
https://vk.com/topic-229771454_53087232?00=zG
https://m.vk.com/topic-229771454_53087232?Cb=96
https://m.vk.com/topic-229771454_53087232?44=ue
https://www.vk.com/topic-229771454_53087232?pI=58
https://www.vk.com/topic-229771454_53087232?13=qz
https://vk.com/topic-229771454_53087231?KY=38
https://vk.com/topic-229771454_53087231?71=Zx
https://m.vk.com/topic-229771454_53087231?zl=96
https://m.vk.com/topic-229771454_53087231?63=Vj
https://www.vk.com/topic-229771454_53087231?IU=51
https://www.vk.com/topic-229771454_53087231?29=TK
https://vk.com/topic-229771454_53087230?VF=64
https://vk.com/topic-229771454_53087230?48=Ra
https://m.vk.com/topic-229771454_53087230?nX=61
https://m.vk.com/topic-229771454_53087230?07=vt
https://www.vk.com/topic-229771454_53087230?WI=04
https://www.vk.com/topic-229771454_53087230?18=bM
https://vk.com/topic-229771454_53087229?mS=19
https://vk.com/topic-229771454_53087229?76=Lh
https://m.vk.com/topic-229771454_53087229?Aa=70
https://m.vk.com/topic-229771454_53087229?48=uz
https://www.vk.com/topic-229771454_53087229?kA=08
https://www.vk.com/topic-229771454_53087229?03=Qf
https://vk.com/topic-229771454_53087227?vy=13
https://vk.com/topic-229771454_53087227?07=RL
https://m.vk.com/topic-229771454_53087227?Bn=94
https://m.vk.com/topic-229771454_53087227?18=Yy
https://www.vk.com/topic-229771454_53087227?ov=80
https://www.vk.com/topic-229771454_53087227?18=if
https://vk.com/topic-229771454_53087225?Xn=91
https://vk.com/topic-229771454_53087225?85=Ml
https://m.vk.com/topic-229771454_53087225?mR=11
https://m.vk.com/topic-229771454_53087225?98=IW
https://www.vk.com/topic-229771454_53087225?ad=54
https://www.vk.com/topic-229771454_53087225?37=ie
https://vk.com/topic-229771454_53087224?YH=07
https://vk.com/topic-229771454_53087224?77=as
https://m.vk.com/topic-229771454_53087224?lA=58
https://m.vk.com/topic-229771454_53087224?79=ij
https://www.vk.com/topic-229771454_53087224?XU=94
https://www.vk.com/topic-229771454_53087224?34=lc
https://vk.com/topic-229771454_53087223?Ov=51
https://vk.com/topic-229771454_53087223?50=Mm
https://m.vk.com/topic-229771454_53087223?yA=19
https://m.vk.com/topic-229771454_53087223?57=Qc
https://www.vk.com/topic-229771454_53087223?rO=95
https://www.vk.com/topic-229771454_53087223?68=NS
https://vk.com/topic-229771454_53087221?Ac=29
https://vk.com/topic-229771454_53087221?74=yO
https://m.vk.com/topic-229771454_53087221?rI=13
https://m.vk.com/topic-229771454_53087221?14=CX
https://www.vk.com/topic-229771454_53087221?Xx=63
https://www.vk.com/topic-229771454_53087221?90=vH
https://vk.com/topic-229771454_53087220?Wi=72
https://vk.com/topic-229771454_53087220?52=VB
https://m.vk.com/topic-229771454_53087220?rm=06
https://m.vk.com/topic-229771454_53087220?73=qT
https://www.vk.com/topic-229771454_53087220?QG=12
https://www.vk.com/topic-229771454_53087220?06=vh
https://vk.com/topic-229771454_53087219?Ma=77
https://vk.com/topic-229771454_53087219?60=vY
https://m.vk.com/topic-229771454_53087219?gS=38
https://m.vk.com/topic-229771454_53087219?47=ro
https://www.vk.com/topic-229771454_53087219?bf=05
https://www.vk.com/topic-229771454_53087219?89=An
https://vk.com/topic-229771454_53087218?bZ=68
https://vk.com/topic-229771454_53087218?80=Xj
https://m.vk.com/topic-229771454_53087218?mZ=58
https://m.vk.com/topic-229771454_53087218?94=xA
https://www.vk.com/topic-229771454_53087218?ax=64
https://www.vk.com/topic-229771454_53087218?48=kp
https://vk.com/topic-229771454_53087216?Pz=50
https://vk.com/topic-229771454_53087216?91=sr
https://m.vk.com/topic-229771454_53087216?Dp=22
https://m.vk.com/topic-229771454_53087216?57=mF
https://www.vk.com/topic-229771454_53087216?nt=96
https://www.vk.com/topic-229771454_53087216?28=mS
https://vk.com/topic-229771454_53087215?wE=65
https://vk.com/topic-229771454_53087215?08=wa
https://m.vk.com/topic-229771454_53087215?tw=23
https://m.vk.com/topic-229771454_53087215?65=IK
https://www.vk.com/topic-229771454_53087215?sQ=23
https://www.vk.com/topic-229771454_53087215?37=ld
https://vk.com/topic-229771454_53087214?nr=69
https://vk.com/topic-229771454_53087214?10=Kx
https://m.vk.com/topic-229771454_53087214?Ej=29
https://m.vk.com/topic-229771454_53087214?16=BU
https://www.vk.com/topic-229771454_53087214?MT=86
https://www.vk.com/topic-229771454_53087214?37=Of
https://vk.com/topic-229771454_53087213?Kh=02
https://vk.com/topic-229771454_53087213?45=Uw
https://m.vk.com/topic-229771454_53087213?tX=14
https://m.vk.com/topic-229771454_53087213?90=uC
https://www.vk.com/topic-229771454_53087213?bu=50
https://www.vk.com/topic-229771454_53087213?96=zY
https://vk.com/topic-229771454_53087212?TP=41
https://vk.com/topic-229771454_53087212?28=zY
https://m.vk.com/topic-229771454_53087212?SH=90
https://m.vk.com/topic-229771454_53087212?07=LG
https://www.vk.com/topic-229771454_53087212?Pd=13
https://www.vk.com/topic-229771454_53087212?38=UI
https://vk.com/topic-229771454_53087211?Il=45
https://vk.com/topic-229771454_53087211?45=oN
https://m.vk.com/topic-229771454_53087211?MF=62
https://m.vk.com/topic-229771454_53087211?82=vq
https://www.vk.com/topic-229771454_53087211?ZL=64
https://www.vk.com/topic-229771454_53087211?75=sh
https://vk.com/topic-229771454_53087210?Cs=71
https://vk.com/topic-229771454_53087210?73=jL
https://m.vk.com/topic-229771454_53087210?oK=87
https://m.vk.com/topic-229771454_53087210?28=ps
https://www.vk.com/topic-229771454_53087210?Bo=81
https://www.vk.com/topic-229771454_53087210?14=UP
https://vk.com/topic-229771454_53087209?bH=09
https://vk.com/topic-229771454_53087209?11=Mw
https://m.vk.com/topic-229771454_53087209?ux=90
https://m.vk.com/topic-229771454_53087209?10=yD
https://www.vk.com/topic-229771454_53087209?CT=98
https://www.vk.com/topic-229771454_53087209?56=Ue
https://vk.com/topic-229771454_53087208?Vw=91
https://vk.com/topic-229771454_53087208?43=ez
https://m.vk.com/topic-229771454_53087208?HL=15
https://m.vk.com/topic-229771454_53087208?94=gs
https://www.vk.com/topic-229771454_53087208?Lh=83
https://www.vk.com/topic-229771454_53087208?30=nT
https://vk.com/topic-229771309_53456781?UR=18
https://vk.com/topic-229771309_53456781?91=Xq
https://m.vk.com/topic-229771309_53456781?lw=87
https://m.vk.com/topic-229771309_53456781?34=TD
https://www.vk.com/topic-229771309_53456781?iy=10
https://www.vk.com/topic-229771309_53456781?74=Pp
https://vk.com/topic-229771309_53456780?DC=26
https://vk.com/topic-229771309_53456780?87=kk
https://m.vk.com/topic-229771309_53456780?Ee=44
https://m.vk.com/topic-229771309_53456780?45=OC
https://www.vk.com/topic-229771309_53456780?Yi=00
https://www.vk.com/topic-229771309_53456780?18=yQ
https://vk.com/topic-229771309_53456779?hM=08
https://vk.com/topic-229771309_53456779?35=CF
https://m.vk.com/topic-229771309_53456779?Tx=00
https://m.vk.com/topic-229771309_53456779?63=iS
https://www.vk.com/topic-229771309_53456779?nP=31
https://www.vk.com/topic-229771309_53456779?36=oW
https://vk.com/topic-229771309_53456778?oc=58
https://vk.com/topic-229771309_53456778?90=pD
https://m.vk.com/topic-229771309_53456778?Zy=19
https://m.vk.com/topic-229771309_53456778?33=kl
https://www.vk.com/topic-229771309_53456778?YY=49
https://www.vk.com/topic-229771309_53456778?51=rE
https://vk.com/topic-229771309_53456776?HH=92
https://vk.com/topic-229771309_53456776?85=DX
https://m.vk.com/topic-229771309_53456776?xJ=54
https://m.vk.com/topic-229771309_53456776?01=Ak
https://www.vk.com/topic-229771309_53456776?Pa=50
https://www.vk.com/topic-229771309_53456776?81=WA
https://vk.com/topic-229771309_53456775?oE=84
https://vk.com/topic-229771309_53456775?37=Su
https://m.vk.com/topic-229771309_53456775?iU=41
https://m.vk.com/topic-229771309_53456775?98=Jv
https://www.vk.com/topic-229771309_53456775?cr=24
https://www.vk.com/topic-229771309_53456775?27=yB
https://vk.com/topic-229771309_53456773?Qa=71
https://vk.com/topic-229771309_53456773?41=zY
https://m.vk.com/topic-229771309_53456773?Hn=91
https://m.vk.com/topic-229771309_53456773?94=oK
https://www.vk.com/topic-229771309_53456773?Xt=09
https://www.vk.com/topic-229771309_53456773?79=nZ
https://vk.com/topic-229771309_53456771?IJ=16
https://vk.com/topic-229771309_53456771?54=uK
https://m.vk.com/topic-229771309_53456771?WC=80
https://m.vk.com/topic-229771309_53456771?34=WJ
https://www.vk.com/topic-229771309_53456771?ud=09
https://www.vk.com/topic-229771309_53456771?09=bD
https://vk.com/topic-229771309_53456768?Fy=25


程序员小锋
1 声望1 粉丝