Get the ARM Foundation Model
Download ARM Foundation Model: http://www.arm.com/products/tools/models/fast-models/foundation-model.php.
Try the model: ./models/Linux64_GCC-4.7/Foundation_Platform --image examples/hello.axf
ERROR: cpu0.gicv3_cpu_if: Virtual LPIs can not be supported in GICv2 only mode. Defaulting virtual lpi support to false.
terminal_0: Listening for serial connection on port 5000
terminal_1: Listening for serial connection on port 5001
terminal_2: Listening for serial connection on port 5002
terminal_3: Listening for serial connection on port 5003
Simulation is started
Hello, 64-bit world!
ARM Software Stack
ARM Architecture has two worlds / execution environment: Trusted World and Non-Trusted World. These two execution environments run at the same time.
Non-Trusted world cannot access Trusted World. It protects trusted information (such as payment details) to be accessed by malicious software running in Non-Trusted world - although risks exist if the Trusted World is not configured properly or the interface between both Worlds are not correctly designed.
Most ARM (and non-ARM) platforms have different types of memory:
- Trusted ROM: This memory is read-only. It contains the code that is executed at the early stage of the boot process.
- Trusted SRAM: This memory is non-persistent (ie: the memory does not contain valid data at boot time) and can only contain data from the Trusted World.
- DRAM: This memory is also non-persistent it can be configured as partially Trusted and Non-Trusted.
- Non-Volatile memory (NVM): This memory is persistent; it can be eXecute-In-Place (XIP - ie: you can execute code located in the memory - NOR Flash technology can be used for XIP code) or Non-XIP (such as NAND, eMMC, SD card).
The Open-Source ARM Software stack contains these following modules:
- ARM Trusted Firmware: it provides a reference implementation of secure world software for ARMv8-A cores.
- UEFI: UEFI is a specification for Boot firmware. Tianocore (or EDK2) is an Open-Source implementation of this specification
- Linux Kernel
- Device Tree: Contain a static description of the platform. The device tree is passed to Linux kernel at boot time by UEFI. The aim of the device tree is to allow a same Linux kernel binary to run on various platforms of a same CPU architecture.
- File System: Any Linux file system - Debian, Ubuntu, Android, ...
Run the full stack from pre-built binaries
Download the archive that contains ARM Trusted Firmware, UEFI binaries, Linux Kernel and Device Tree at http://snapshots.linaro.org/member-builds/armlt-platforms-release/16/fvp-latest-oe-uefi.zip (5.9 MB)
Download OpenEmbedded Minimal filesystem at https://releases.linaro.org/openembedded/juno-lsk/15.09/lt-vexpress64-openembeddedminimal-armv8-gcc-4.920150912-729.img.gz (54.9M)
Launch it!
export MODEL=$PWD/Foundation_Platformpkg/models/Linux64_GCC-4.7/Foundation_Platform
export DISK=$PWD/prebuilt/lt-vexpress64-openembedded_minimal-armv8-gcc-4.9_20150912-729.img
./prebuilt/run_model.sh ./prebuilt/
Build and run the full stack
The initial step is to download the AArch64 toolchain archive http://releases.linaro.org/14.11/components/toolchain/binaries/aarch64-linux-gnu/gcc-linaro-4.9-2014.11-x8664aarch64-linux-gnu.tar.xz.
The location where you will unpack the archive will be defined as <your-toolchain-path>
in the rest of the document.
Build the software stack in a couple of command lines
Use Google's repo
tool. Let's build the software stack with the Linaro recommended instructions.
From this document https://community.arm.com/docs/DOC-10831, we have the choice between:
- Linaro Stable Kernel (LSK)
- Linaro Tracking Kernel (Latest)
If we want to run Android later on without to have to switch the Linux kernel, we should go for LSK.
Install repo: https://source.android.com/source/downloading.html#installing-repo
Get the source
mkdir repo_src && cd repo_src
repo init -u https://git.linaro.org/landing-teams/working/arm/manifest -b 15.11 -m pinned-lsk.xml
repo sync -j8
Build the sources
export CROSS_COMPILE=<your-toolchain-path>/gcc-linaro-5.1-2015.08-x86_64_aarch64-linux-gnu/bin/aarch64-linux-gnu-
./build-scripts/build-all.sh fvp-oe
./build-scripts/build-all.sh fvp-oe package
Run the newly built binaries
./prebuilt/run_model.sh src/output/fvp-oe/uefi
Build the software stack components by components
Create the directory that will contain all the ARM Software stack components:
mkdir src && cd src
export CROSS_COMPILE=<your-toolchain-path>/gcc-linaro-4.9-2014.11-x86_64_aarch64-linux-gnu/bin/aarch64-linux-gnu-
Build UEFI
Clone the UEFI repository
git clone https://github.com/tianocore/edk2.git
cd edk2
Edit the default Linux command line in ArmPlatformPkg/ArmVExpressPkg/ArmVExpress-FVP-AArch64.dsc
to remove the initrd
(defined by the argument -f
) as we want to boot the Open Embedded disk image and we do not use an initrd
for our Linux kernel.
diff --git a/ArmPlatformPkg/ArmVExpressPkg/ArmVExpress-FVP-AArch64.dsc b/ArmPlatformPkg/ArmVExpressPkg/ArmVExpress-FVP-AArch64.dsc
index f82de7e..30e3cb5 100644
--- a/ArmPlatformPkg/ArmVExpressPkg/ArmVExpress-FVP-AArch64.dsc
+++ b/ArmPlatformPkg/ArmVExpressPkg/ArmVExpress-FVP-AArch64.dsc
@@ -167,7 +167,7 @@
#
gArmPlatformTokenSpaceGuid.PcdDefaultBootDescription|L"Linux from SemiHosting"
gArmPlatformTokenSpaceGuid.PcdDefaultBootDevicePath|L"Fv(87940482-FC81-41C3-87E6-399CF85AC8A0)/LinuxLoader.efi"
- gArmPlatformTokenSpaceGuid.PcdDefaultBootArgument|L"VenHw(C5B9C74A-6D72-4719-99AB-C59F199091EB)/Image -f VenHw(C5B9C74A-6D72-4719-99AB-C59F199091EB)/filesystem.cpio.gz -c \"console=ttyAMA0 earlycon=pl011,0x1c090000 debug user_debug=31 loglevel=9\""
+ gArmPlatformTokenSpaceGuid.PcdDefaultBootArgument|L"VenHw(C5B9C74A-6D72-4719-99AB-C59F199091EB)/Image -c \"console=ttyAMA0 earlycon=pl011,0x1c090000 debug user_debug=31 loglevel=9 root=/dev/vda2\""
# Use the serial console (ConIn & ConOut) and the Graphic driver (ConOut)
gArmPlatformTokenSpaceGuid.PcdDefaultConOutPaths|L"VenHw(D3987D4B-971A-435F-8CAF-4967EB627241)/Uart(38400,8,N,1)/VenPcAnsi();VenHw(407B400
Build UEFI
make -f ArmPlatformPkg/Scripts/Makefile EDK2_TOOLCHAIN=GCC49 EDK2_ARCH=AARCH64 EDK2_DSC=ArmPlatformPkg/ArmVExpressPkg/ArmVExpress-FVP-AArch64.dsc GCC49_AARCH64_PREFIX=${CROSS_COMPILE} EDK2_MACROS="-DUSE_ARM_BDS=1"
USE_ARM_BDS
should be used because the default BDS (UEFI Boot Manager) expects Linux kernel to be part of the EFI Boot partition which does not exist on the Linaro file system. The ARM BDS can load the Linux kernel and device tree from semihosting.
(...)
Fd File Name:FVP_AARCH64_EFI_SEC
Generate Region at Offset 0x0
Region Size = 0x80000
Region Name = FV
Generating FVMAIN_SEC FV
#####
Generate Region at Offset 0x0
Region Size = 0x80000
Region Name = FV
Fd File Name:FVP_AARCH64_EFI
Generate Region at Offset 0x0
Region Size = 0x280000
Region Name = FV
Generating FVMAIN_COMPACT FV
####
Generating FVMAIN FV
####################################
########################################
########################################
########
Generate Region at Offset 0x0
Region Size = 0x280000
Region Name = FV
GUID cross reference file can be found at /home/olivier/src/edk2/Build/ArmVExpress-FVP-AArch64/DEBUG_GCC49/FV/Guid.xref
FV Space Information
FVMAIN_SEC [8%Full] 524288 total, 45056 used, 479232 free
FVMAIN_COMPACT [27%Full] 2621440 total, 716984 used, 1904456 free
FVMAIN [99%Full] 4963200 total, 4963168 used, 32 free
- Done -
Build end time: 10:18:55, Dec.10 2015
Build total time: 00:02:11
Warning: 'fip_create' tool is not in the PATH. The UEFI binary will not be added in the Firmware Image Package (FIP).
Build ARM Trusted Firmware
Clone the repository
git clone https://github.com/ARM-software/arm-trusted-firmware.git
cd arm-trusted-firmware
Build ARM Trusted Firmware in DEBUG
mode:
$ make PLAT=fvp all fip BL33=/home/olivier/src/edk2/Build/ArmVExpress-FVP-AArch64/DEBUG_GCC49/FV/FVP_AARCH64_EFI.fd DEBUG=1
(...)
Firmware Image Package ToC:
---------------------------
- Trusted Boot Firmware BL2: offset=0xB0, size=0x6008
file: './build/fvp/debug/bl2.bin'
- EL3 Runtime Firmware BL3-1: offset=0x60B8, size=0x8010
file: './build/fvp/debug/bl31.bin'
- Non-Trusted Firmware BL3-3: offset=0xE0C8, size=0x280000
file: '/home/olivier/src/edk2/Build/ArmVExpress-FVP-AArch64/DEBUG_GCC49/FV/FVP_AARCH64_EFI.fd'
---------------------------
Creating "build/fvp/debug/fip.bin"
Built build/fvp/debug/fip.bin successfully
Build Linux kernel
Clone the repository and use the branch linux-linaro-lsk-v4.1
git clone https://git.linaro.org/kernel/linux-linaro-stable.git -b linux-linaro-lsk-v4.1
cd linux-linaro-stable
Build the Linux kernel
$ make ARCH=arm64 defconfig
$ make ARCH=arm64 -j8 Image
(...)
LD vmlinux
SORTEX vmlinux
SYSMAP System.map
OBJCOPY arch/arm64/boot/Image
Run the newly built software stack
Create symbolic link in the current directory to allow UEFI to find the Linux kernel and Device Tree.
ln -s linux-linaro-stable/arch/arm64/boot/Image
ln -s arm-trusted-firmware/fdts/fvp-foundation-gicv3-psci.dtb
Launch the model
../Foundation_Platformpkg/models/Linux64_GCC-4.7/Foundation_Platform --cores=4 --secure-memory --visualization --gicv3 --data="$PWD/arm-trusted-firmware/build/fvp/debug/bl1.bin"@0x0 --data="$PWD/arm-trusted-firmware/build/fvp/debug/fip.bin"@0x08000000 --block-device="/home/olivier/prebuilt/lt-vexpress64-openembedded_minimal-armv8-gcc-4.9_20150912-729.img"
Some notes:
Linux NFS Boot on the ARM Foundation Model
NFS Boot allows to directly make changes to the file system from your host machine without the need to mount the disk image every time.
Ensure your Linux kernel support NFS
To enable NFS Boot you need to ensure your ARM Foundation Model Linux kernel has support for the Ethernet SMSC 91C111 controller. Check the configuration file of your Linux kernel source tree:
$ grep SMSC .config
CONFIG_NET_VENDOR_SMSC=y
CONFIG_SMSC911X=y
# CONFIG_SMSC911X_ARCH_HOOKS is not set
# CONFIG_SMSC9420 is not set
# CONFIG_SMSC_PHY is not set
# CONFIG_FB_SMSCUFX is not set
CONFIG_SMSC911X
is set so it means you can use the ARM Foundation Model network controller with your current kernel binaries. If it is not set then you need to enable it in your kernel configuration and rebuild the kernel.
Configure Network support on the ARM Foundation Model
Start the model with the bridge network:
sudo ../Foundation_Platformpkg/models/Linux64_GCC-4.7/Foundation_Platform --cores=4 --secure-memory --visualization --gicv3 --data="$PWD/arm-trusted-firmware/build/fvp/debug/bl1.bin"@0x0 --data="$PWD/arm-trusted-firmware/build/fvp/debug/fip.bin"@0x08000000 --block-device="/home/olivier/prebuilt/lt-vexpress64-openembedded_minimal-armv8-gcc-4.9_20150912-729.img" --network=bridged &
sleep 5
sudo ifconfig ARM0 192.168.1.1 netmask 255.255.255.0
On the target:
sudo ifconfig eth0 192.168.1.2 netmask 255.255.255.0
Note: NAT network with the option --network=nat
instead of --network=bridged
also works.
More information on the network configuration here.
Setting up the NFS server on your host machine
We will need to copy the file system of your disk image onto your local disk. Let's have a look at the partitions present on your disk image and their locations - fdisk
will help us:
$ /sbin/fdisk -lu ../prebuilt/lt-vexpress64-openembedded_minimal-armv8-gcc-4.9_20150912-729.img
Disk ../prebuilt/lt-vexpress64-openembedded_minimal-armv8-gcc-4.9_20150912-729.img: 3221 MB, 3221225472 bytes
255 heads, 63 sectors/track, 391 cylinders, total 6291456 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
../prebuilt/lt-vexpress64-openembedded_minimal-armv8-gcc-4.9_20150912-729.img1 * 63 155646 77792 e W95 FAT16 (LBA)
../prebuilt/lt-vexpress64-openembedded_minimal-armv8-gcc-4.9_20150912-729.img2 155648 6291455 3067904 83 Linux
You can see the Linux partition starts at the sector number 155648. fidsk
says the sector size is 512 bytes.
We use losetup
to mount the disk image on /dev/loop0
:
$ losetup /dev/loop0 ../prebuilt/lt-vexpress64-openembedded_minimal-armv8-gcc-4.9_20150912-729.img -o $((155648 * 512))
file -s /dev/loop0
confirms us the Linux partition is actually a ext4 partition:
/dev/loop0: Linux rev 1.0 ext4 filesystem data, UUID=a9c947eb-c956-4c39-af5d-1fe3509121a9, volume name "rootfs" (needs journal recovery) (extents) (large files) (huge files)
We finally can mount the device /dev/loop0
to access the partition as part of our file system:
mkdir /tmp/disk
mount /dev/loop0 /tmp/disk
Now the disk image is mounted, we can copy its content to the directory /srv/nfs/lt-vexpress64-openembedded_minimal-armv8
:
sudo mkdir /srv/nfs
sudo mount -o loop,offset=$((155648 * 512)) ../prebuilt/lt-vexpress64-openembedded_minimal-armv8-gcc-4.9_20150912-729.img /tmp/disk
sudo cp -ax /tmp/disk /srv/nfs/lt-vexpress64-openembedded_minimal-armv8
umount /dev/loop0
losetup -d /dev/loop0
Setting up NFS server
Check your Linux distribution documentation. For instance a simple installation on the Ubuntu distribution can be found here.
After installing NFS server, make sure the NFS service is started. You can also test your NFS installation is correctly set up by mounting the NFS file system on your host machine:
$ mkdir /tmp/open-embedded
$ sudo mount localhost:/srv/nfs/lt-vexpress64-openembedded_minimal-armv8 /tmp/open-embedded
$ ls /tmp/open-embedded/
bin boot dev EFI etc home lib lost+found media mnt proc run sbin sys tmp usr var
Next stage is to check whether you can mount the filesystem from the ARM Foundation model.
If you have any issue you can get the NFS error by looking at /var/log/syslog
on the host machine: tail -n 20 /var/log/syslog
Once you manage to access the NFS file system from the model, you can now change the Linux kernel command line in UEFI in the file ArmPlatformPkg/ArmVExpressPkg/ArmVExpress-FVP-AArch64.dsc
at the line gArmPlatformTokenSpaceGuid.PcdDefaultBootArgument|(..)
.
Replace root=/dev/vda2
by one of the following arguments:
- DHCP:
ip=dhcp root=/dev/nfs nfsroot=192.168.0.10:/srv/nfs/lt-vexpress64-openembedded_minimal-armv8,vers=3 rw
- Static IP:
ip=192.168.1.2:::255.255.255.0::eth0:: root=/dev/nfs nfsroot=192.168.1.1:/srv/nfs/lt-vexpress64-openembedded_minimal-armv8,vers=3 rw
Now, you know how to change and rebuild every components of the ARM Software stack!
Anonymous
on 16/12/2021 07:37
?????? ?????????? https://porno-vyebal.top/ ???? ??????????
?????????? ?????? https://porno-vyebal.top/categories/%D0%9A%D1%83%D0%BD%D0%B8%D0%BB%D0%B8%D0%BD%D0%B3%D1%83%D1%81/ ?????????? ? ????
<a href=https://sbwebb.net/2020/10/11/hello-world/#comment-167>????? ????????? ???? ???????</a>
<a href=http://www.totalfutbolclub.co/photodune-4026532-green-tshirt-isolated-on-white-background-m-yellow/#comment-280>??????? ??? ????? ?????</a>
<a href=https://healthbeneffitss.com/biofit-side-effects/#comment-182>????? ??????? ??????? ???????</a>
<a href=https://www.davidiq.com/support/viewtopic.php?t=1453>??????? ????? ???? ???????</a>
<a href=https://elco.tistory.com/api>??????? ????? ?????? ?????</a>
<a href=https://thebendelite.com/forum/news-politics/%d0%ba%d1%80%d0%b0%d1%81%d0%b8%d0%b2%d0%be%d0%b5-%d1%80%d1%83%d1%81%d1%81%d0%ba%d0%be%d0%b5-%d0%bf%d0%be%d1%80%d0%bd%d0%be-%d1%81-%d1%80%d0%b0%d0%b7%d0%b3%d0%be%d0%b2%d0%be%d1%80%d0%b0%d0%bc%d0%b8/>???????? ??????? ????? ? ???????????</a>
<a href=https://alexweiss.org/2021/03/09/hello-world/#comment-886>??????? ????? ???? ???</a>
<a href=https://ssl13.dsbsv.net/sohmeisha.com/publics/index/3/step=confirm/b_id=7/r_id=1/fid=32ce1badf1daf9184aa63ea8d99164a2>????? ??????? ?????</a>
<a href=http://chilehacedeporte.cl/foro/index.php/topic,2759.new.html#new>??????? ????? ????? ?????</a>
<a href=https://www.djeppink.eu/nl/boek/de-toren-van-babel-staat-brussel?page=1108#comment-154833>???????? ????????? ????? ??????</a>
d25d82d
Anonymous
on 19/12/2021 17:41
????? 365 ?????? https://365porno.pro/ ????? 365 ??????? ?? ??????? ?????????
????? 365 ?????? https://365porno.pro/categories/%D0%BD%D0%B0+%D0%BB%D0%B8%D1%86%D0%BE/ ????? 365 space
<a href=https://vcc.vn/blog/macbook-pro-16-inch-bat-ngo-giam-gia-300-usd-tren-amazon.html>????? ???? ?????? ???</a>
<a href=https://atelier-test.eu/2021/08/10/hello-world/#comment-1087>??? ????? ??????? ??????? ?????</a>
<a href=http://dfe.mstu.edu.ru/registration/?mode=add&msg=1>???????? ????? ??????????</a>
<a href=http://utsubukidouji.com/publics/index/3/b_id=7/r_id=1/fid=a1ffe662666afdd7b0aef8d93e6fd06a>????? ?????? ??????? ???????</a>
<a href=https://www.instarem.com/blog/tax-basics-for-expats-in-malaysia/#comment-146776>????? ??????? ?????</a>
<a href=https://alaves.elcorreo.com/foro/viewtopic.php?f=9&t=305>??????? ????? ?????? ??????</a>
<a href=https://tootiesmith.com/tootie-smith-sets-sight-on-clackamas-commission-seat/#comment-11755>???? ? ???????? ????????</a>
<a href=http://litbooks.ru/knigi/dvojnoe_grazhdanstvo_rf_i_rossiya/>???????? ????????? ????? ???? ???????</a>
<a href=http://www.halartec.com/jbcgi/board/?p=detail&code=board1&id=2572&page=1&acode=&no=>????? ????????? ???????</a>
<a href=https://www.m2woman.com/120-years-of-continuous-wine-production/#comment-14237>???????? ????</a>
6f5_7a0
Anonymous
on 22/12/2021 14:15
??????? ??????? ??? ????? https://pornuha.pro/ ??????? ???????
??????? ????? ????? https://pornuha.pro/categories/%D0%9B%D0%B5%D1%81%D0%B1%D0%B8%D1%8F%D0%BD%D0%BA%D0%B8/
<a href=http://weiniangbbs.com/forum.php?mod=viewthread&tid=178839&extra=>??????? ????? ????</a>
<a href=http://xqbhzspw.cocolog-nifty.com/blog/2013/02/l-babe.html>????????? ????? ???????</a>
<a href=http://forum.freerider-oberberg.de/viewtopic.php?f=3&t=84&p=805644#p805644>?????? ??????? ????? ???</a>
<a href=https://gonetobeach.com/property/5294-pine-lane-path/#comment-8942>????? ?????? ??????????</a>
<a href=https://youeblog.com/hello-world/#comment-1359>????? ??????? ?????????? ??????</a>
<a href=https://www.kkt-shop.ru/blog/rabota-na-maiskih-2021#comment_11496>??????? ????? ?????? ? ??????? ????????</a>
<a href=http://viviendasprefabricadas.mx/?gb=1#top>??????? ???????? ???????? ?????</a>
<a href=https://www.obxrealestate.net/index.php?q=news/income-generator.html>??????? ????? ???????</a>
<a href=http://520fx.xyz/forum.php?mod=viewthread&tid=24635&extra=>????? ??????? ???</a>
<a href=https://www.funerariagandra.com/falecido/MARIA-DA-CONCEICAO-MAGALHAES/1089#mensagens>????? ??????? ????? ?????????</a>
d25d82d
Anonymous
on 22/12/2021 18:20
??????? ????? ??????????? https://rossija-porno.com/ ????? ?? ??????? ????? ?? ???????
??????? ????? ?????????? ? ?????? ????? https://rossija-porno.com/categories/sport/
<a href=https://www.homecomp.co.il/forum/%D7%AA%D7%99%D7%A7%D7%95%D7%9F-%D7%9E%D7%97%D7%A9%D7%91-%D7%A0%D7%99%D7%99%D7%93/37341-%D0%BF%D0%BE%D1%80%D0%BD%D0%BE-%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-%D0%B1%D0%BE%D0%BB%D1%8C%D1%88%D0%BE%D0%B5-%D0%B1%D0%BB%D0%BE%D0%BD%D0%B4%D0%B8%D0%BD%D0%BA%D0%B0#37341>????? ????? ??????? ?????????</a>
<a href=https://forum.mine-society.fr/viewtopic.php?f=12&t=54782>???????? ???? ????? ??????</a>
<a href=http://andromeda-coders.ru/viewtopic.php?f=8&t=879&p=26867#p26867>???????? ???? ????? ???????? ??????</a>
<a href=http://ashraf-kateb.com/en/guestbook>????? ????? ?????? ??????? ??????</a>
<a href=https://uniadmission.com/accredited-uk-universities-for-uae-ministry-of-education-scholarship-program/comment-page-3/#comment-4363>?????????? ??? ???????? ?????</a>
<a href=http://craftserver.pl/Temat-%D1%81%D0%BA%D0%B0%D1%87%D0%B0%D1%82%D1%8C-%D1%80%D1%83%D1%81%D1%81%D0%BA%D0%BE%D0%B5-%D0%BF%D0%BE%D1%80%D0%BD%D0%BE-%D0%BA%D1%80%D1%83%D0%BF%D0%BD%D1%8B%D0%BC-%D0%BF%D0%BB%D0%B0%D0%BD%D0%BE%D0%BC>??????? ??????? ????? ??????? ??????</a>
<a href=http://www.macarenahamilton.com/hello-world#comment-608>???? ?</a>
<a href=http://www.halotracks.org/forum/topic/31171-%D1%81%D0%BC%D0%BE%D1%82%D1%80%D0%B5%D1%82%D1%8C-%D1%84%D0%B8%D0%BB%D1%8C%D0%BC%D1%8B-%D0%BE%D0%BD%D0%BB%D0%B0%D0%B9%D0%BD-%D1%80%D0%B5%D0%B3%D0%B8%D1%81%D1%82%D1%80%D0%B0%D1%86%D0%B8%D0%B8-%D0%BF%D0%BE%D1%80%D0%BD%D0%BE/>???????? ?????? ?????? ??????????? ?????</a>
<a href=http://dpgm.ir/node/557?page=1#comment-70>????? ?????? ??????? ? ???????? ????????</a>
<a href=https://indiadreamholidays.in/places-to-visit-in-mauritius/#comment-355778>????? ??? ??????</a>
82de57c
Anonymous
on 26/12/2021 02:42
????? ?????? ? hd ???????? https://ebuca.club/ ????? hd ???????
????? ????? ?????? ??????? ?????? https://ebuca.club/categories/%D0%9B%D1%8E%D0%B1%D0%B8%D1%82%D0%B5%D0%BB%D1%8C%D1%81%D0%BA%D0%BE%D0%B5/ ????? hd ??????? ??????
<a href=https://ebuca.club/>????? ????? ?????? ?????? ??? ??????????? </a>
<a href=http://forum.freerider-oberberg.de/viewtopic.php?f=3&t=84&p=826082#p826082>????? ???? ???? ????</a>
<a href=https://moricafe8843.blog.ss-blog.jp/2021-11-09?comment_success=2021-12-26T07:20:23&time=1640470823>?????? ????????? ????? ???????</a>
<a href=http://acthemeswin7.mex.tl/?gb=1#top>???? ? ???????? ???????? ?????</a>
<a href=https://dongyiakiralyihaztitkai.eoldal.hu/cikkek/dong-yi-letoltheto.html#block-comments>????? ???? ???? ????????</a>
<a href=http://blocpost.ru/blog/nestandartnye-metallicheskie-dveri#comment_30509>????? ????? ???????? ?????</a>
<a href=https://foro.cuatrolibertades.org/viewtopic.php?f=9&t=12414>???????? ????????? ????? ???????? ?????</a>
<a href=https://ai4wifi.com/wi-fiwhere-we-go-when-we-leave-the-now-part-1-of-3/#comment-1374>???????? ????? ????? ???????</a>
<a href=http://niimigas.com/publics/index/5/b_id=9/r_id=1/fid=8ab9ece00184ebb172f09a5c1f062749>????? ?????? ??????? ? ??????? ??????</a>
<a href=https://360rmi.com/a-carefree-summer-is-possible/#comment-2128>????? ??????? ???????</a>
<a href=http://eatq.az/2016/09/20/vivamus-aliquam-ictum/#comment-8291>????? ??????? ? ???? ?????????</a>
720050b
Anonymous
on 30/12/2021 08:05
???????? ?????? ????????? ????? ?????? ???????? https://trahtv.club/ ???? ??????? ?????
?????? ????? https://trahtv.club/categories/%D0%96%D0%B5%D1%81%D1%82%D0%BA%D0%BE%D0%B5/
<a href=https://impactusleadership.com/what-has-you-tangled-up/#comment-235>????? ?????? ???????? ????</a>
<a href=https://kong.shahrlab.ir/support/topic/%d0%bf%d0%be%d1%80%d0%bd%d0%be-%d0%b2%d0%b8%d0%b4%d0%b5%d0%be-%d0%bc%d0%be%d0%bb%d0%be%d0%b4%d0%be%d0%b9-%d0%bf%d0%b5%d1%80%d0%b2%d1%8b%d0%b9/>????? ????? ??????? ??????</a>
<a href=https://www.protetyka.edu.pl/./14/technik-dentystyczny-a-protetyk?show=3319#a3319>???? ??????? ??????</a>
<a href=http://einsatzverbandnord.de/index.php/guestbook/index/index>??? ????? ????? ???????? ?????? ?????????</a>
<a href=http://askingnova.com/question/%d0%b3%d0%be%d0%bb%d1%8b%d0%b5-%d0%b4%d0%b5%d0%b2%d1%83%d1%88%d0%ba%d0%b8-%d0%b2-%d1%81%d0%b5%d1%82%d0%b8>????? ??????? ? ????</a>
<a href=http://nbcsports.infored.mx/?gb=1#top>??????? ????? ???? ?? ???????</a>
<a href=https://vietmecgroup.com/kem-tri-nam-yanhee.html#comment-54885>???????? ????? ???? ????? ??????</a>
<a href=http://dearteacher.com/content/skinny-books-sets-1-7?page=272#comment-13609>????? ?????? ???????</a>
<a href=https://artharojgar.com/article/4310>????? ???? ??????? ???????</a>
<a href=https://coronavirus.dev/?p=1#comment-5371>????? ??????? ?????? ?? ?????</a>
4720050
Anonymous
on 31/12/2021 00:12
???????? ????????? ? ??????????? ????? ???????? https://suchonok.com/ ????? ???? ??????
??????? ????? ??????? ???? https://suchonok.com/categories/%D0%9E%D1%82+%D0%9F%D0%B5%D1%80%D0%B2%D0%BE%D0%B3%D0%BE+%D0%9B%D0%B8%D1%86%D0%B0/
<a href=https://thehealthedge.com/the-many-health-benefits-of-fasting/#comment-5254>????? ???? ???????? ???????</a>
<a href=https://jewelsmuller.com/index.php/2020/05/06/hello-world/#comment-1539>????? ???????? ???? ????</a>
<a href=https://dating.pokrov.com/forum/viewtopic.php?p=158728&sid=852bd7a67b8e8c0814abefe16014a942#158728>????? ???? ??????</a>
<a href=https://www.gdlawyers.cn/reviews#comment-1527>????? ?????? ????????</a>
<a href=https://blog.petzzshop.com/koi-baligi/#comment-9238>????? ???????? ? ????????</a>
<a href=https://www.hoteltouat.dz/touat/2018/11/30/adrar-tour/#comment-438643>????? ?????? ?????</a>
<a href=https://haxcore.net/forum/showthread.php?tid=11>???????? ?????? ??????? ?????</a>
<a href=http://jvculturaing.mex.tl/?gb=1#top>????? ??????? ???? ???????</a>
<a href=http://forum.findvpshost.com/index.php?topic=55270.new#new>????? ???? ??????</a>
<a href=https://23yflagler.com/el-machadato-de-trump/#comment-359929>???? ????? ?????? ??????</a>
57cee20
Anonymous
on 31/12/2021 23:21
?????????? ??????? https://faporn.top/ ??????? ???????? ????????? ??? ??????????? ? ???
??????? ? ??????? https://faporn.top/categories/vtroem/
<a href=https://www.mazdaci.com/Thread-%D0%BF%D0%BE%D1%80%D0%BD%D0%BE-%D0%BE%D0%BD%D0%BB%D0%B0%D0%B9%D0%BD-%D0%B7%D1%80%D0%B5%D0%BB%D1%8B%D0%B5-%D1%81-%D0%BC%D0%BE%D0%BB%D0%BE%D0%B4%D1%8B%D0%BC%D0%B8>????? ?????? ?????? ? ????????</a>
<a href=http://c-nag.com/>????? ?????? ???</a>
<a href=http://154.8.201.195/forum.php?mod=viewthread&tid=883571&extra=>?????? ????? ???????</a>
<a href=http://reacharound.club/viewtopic.php?f=4&t=72856&p=252614#p252614>???????? ?????? ????? 2019</a>
<a href=https://www.koutantei.net/otoiawase/confirm.htm>????? ?????? ?????? ?????????</a>
<a href=https://real-forum.com/threads/samyj-pervyj-kurs-turinabol-solo.14/page-10#post-14606>????? ???????? ????? ???????? ?????????</a>
<a href=https://kisallatomazeger.eoldal.hu/cikkek/vendegkonyv.html#block-comments>??????? ????? ?????</a>
<a href=http://www.nilgunceartgallery.com/#comment-12933>????? ?????? ?????? ?? 60</a>
<a href=https://vksbentre.gov.vn/index.php/hi-a-ap-phap-lut/2001-2019-10-10-08-00-20>??????? ?????? ???????? ???? ?????</a>
<a href=http://cherkassy.prombaza77.com/products/byki-aberdin-angusskoj-porody#comment_1561016>????? ??????? ??? ??????????</a>
a6d8e47
Anonymous
on 02/01/2022 07:08
??????? ????? ????? ? ??????????? https://rasha-porno.com/ ????? ?? ??????? ????? ? ??????????
??????? ????? ????? ?????? ??????????? https://rasha-porno.com/categories/%D0%A1%D1%82%D1%80%D0%B0%D1%81%D1%82%D0%BD%D1%8B%D0%B9+%D0%A1%D0%B5%D0%BA%D1%81/
<a href=https://selenagomezmagyarorszag.eoldal.hu/cikkek/dalszovegek/magic.html#block-comments>????? ????? ??????? ???????</a>
<a href=https://mishkamasha.ru/smotret-online/v-gostyah-u-skazki-54-seriya/>????? ????? ??????? ??????</a>
<a href=http://pffi.net/mission/sign-up-to-serve/?ferr=1&fkey=16272618&fId=49611>???????? ????? ???? ???</a>
<a href=https://houseofviri.com/showthread.php?tid=19484>????? ??????? ???????</a>
<a href=https://professionalprograms.umbc.edu/industrial-organizational-psychology/?tfa_next=%2Fforms%2Fview%2F83%2F1dd4a17c1bfc5f9c695dc925dcd9720b%2F16417%26sid%3Df3756dd6311805ae767bb148f44cbdb1>????? ????? ???? ????????</a>
<a href=https://arudhaa.com/2018/06/17/hello-world-2/#comment-2549>???????? ????? ?????? ????????</a>
<a href=http://forexqanda.com/2568/%D1%81%D0%BA%D1%80%D1%8B%D1%82%D0%BD%D1%8B%D0%B5-%D0%B7%D0%B0%D0%BA%D1%83%D0%BF%D0%BA%D0%B8-%D0%BF%D1%80%D0%BE%D0%B4%D1%83%D0%BA%D1%82%D0%BE%D0%B2-%D0%B2%D0%B7%D0%B0%D0%B8%D0%BC%D0%BE%D0%B4%D0%B5%D0%B9%D1%81%D1%82%D0%B2%D0%BE%D0%B2%D0%B0%D1%82%D1%8C-%D1%84%D0%BE%D1%80%D1%83%D0%BC%D0%BE%D0%BC-%D0%B8%D0%BD%D1%82%D0%B5%D1%80%D0%BD%D0%B5%D1%82?show=2603#a2603>???? ? ???? ????? ????</a>
<a href=http://qdivertido.mex.tl/?gb=1#top>???? ? 13</a>
<a href=https://www.gdlawyers.cn/reviews#comment-1536>????? ??????? ? ??????</a>
<a href=https://drtrupiano.com/which-tummy-tuck-is-right-for-you/#comment-441>??????? ????? ????????</a>
d8e4720
Anonymous
on 04/01/2022 22:41
????? 2 ??????? 1 ?????? https://fuck-girl.xyz/ ????? ???????? ??????
???????? ????? ?????? ????????? ? ??? ??? https://fuck-girl.xyz/categories/%D0%A0%D0%B0%D0%BA%D0%BE%D0%BC/
<a href=http://bellezaycalidad.mex.tl/?gb=1#top>???????? ???????? ????? ?????</a>
<a href=https://riift.in/etiam-laoreet-sem-eget-eros-rhoncus-5/#comment-246>???????? ????? ????? ??????? ????</a>
<a href=http://imageinstudios.com/blog/2020/04/28/coming-back-soon/#comment-2599>????? ??????? ????? ?????</a>
<a href=https://treefy.org/2019/09/10/can-trees-really-save-the-climate/#comment-232987>???????? ????? ????? ???????</a>
<a href=https://jozefsmit.co.za/2019/03/28/hello-world/#comment-2464>?????? ????? ??????? ??????</a>
<a href=https://thehealthedge.com/the-many-health-benefits-of-fasting/#comment-5284>??????? ? ?????? ???????? ? ?????</a>
<a href=https://housesoflove.com/2020/08/31/revitalize-your-home-revitalize-yourself/#comment-2199>???? ????? ???????</a>
<a href=https://mireiavalbuena.com.es/fluxbb/viewtopic.php?pid=154099#p154099>????? ???????? ?????</a>
<a href=http://www.thamuang-kan.go.th/webboard/index.php?topic=20991.new#new>???? ?</a>
<a href=http://www.stek.cz/svatekhudby/2007/forum.htm>????? ????? ??????? ??????</a>
06da6d8