├── .gitignore ├── README.md ├── box-img-lg.png ├── box-img-sm.png ├── bs-config.json ├── contracts ├── Divies.sol ├── F3Devents.sol ├── F3DexternalSettings.sol ├── FoMo3Dlong.sol ├── Hourglass.sol ├── JIincForwarder.sol ├── PlayerBook.sol ├── TeamJust.sol ├── interface │ ├── DiviesInterface.sol │ ├── F3DexternalSettingsInterface.sol │ ├── HourglassInterface.sol │ ├── JIincForwarderInterface.sol │ ├── JIincInterfaceForForwarder.sol │ ├── PlayerBookInterface.sol │ ├── PlayerBookReceiverInterface.sol │ ├── TeamJustInterface.sol │ └── otherFoMo3D.sol ├── library │ ├── F3DKeysCalcLong.sol │ ├── F3Ddatasets.sol │ ├── MSFun.sol │ ├── NameFilter.sol │ ├── SafeMath.sol │ └── UintCompressor.sol └── modularLong.sol ├── flattener.sh ├── migrations ├── 1_initial_migration.js ├── 2_deploy_petcore.js └── 3_deploy_gene.js ├── package.json ├── src └── images │ ├── wechat.jpeg │ └── xiaomiquan.png └── truffle.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/README.md -------------------------------------------------------------------------------- /box-img-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/box-img-lg.png -------------------------------------------------------------------------------- /box-img-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/box-img-sm.png -------------------------------------------------------------------------------- /bs-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/bs-config.json -------------------------------------------------------------------------------- /contracts/Divies.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/Divies.sol -------------------------------------------------------------------------------- /contracts/F3Devents.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/F3Devents.sol -------------------------------------------------------------------------------- /contracts/F3DexternalSettings.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/F3DexternalSettings.sol -------------------------------------------------------------------------------- /contracts/FoMo3Dlong.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/FoMo3Dlong.sol -------------------------------------------------------------------------------- /contracts/Hourglass.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/Hourglass.sol -------------------------------------------------------------------------------- /contracts/JIincForwarder.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/JIincForwarder.sol -------------------------------------------------------------------------------- /contracts/PlayerBook.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/PlayerBook.sol -------------------------------------------------------------------------------- /contracts/TeamJust.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/TeamJust.sol -------------------------------------------------------------------------------- /contracts/interface/DiviesInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/interface/DiviesInterface.sol -------------------------------------------------------------------------------- /contracts/interface/F3DexternalSettingsInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/interface/F3DexternalSettingsInterface.sol -------------------------------------------------------------------------------- /contracts/interface/HourglassInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/interface/HourglassInterface.sol -------------------------------------------------------------------------------- /contracts/interface/JIincForwarderInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/interface/JIincForwarderInterface.sol -------------------------------------------------------------------------------- /contracts/interface/JIincInterfaceForForwarder.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/interface/JIincInterfaceForForwarder.sol -------------------------------------------------------------------------------- /contracts/interface/PlayerBookInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/interface/PlayerBookInterface.sol -------------------------------------------------------------------------------- /contracts/interface/PlayerBookReceiverInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/interface/PlayerBookReceiverInterface.sol -------------------------------------------------------------------------------- /contracts/interface/TeamJustInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/interface/TeamJustInterface.sol -------------------------------------------------------------------------------- /contracts/interface/otherFoMo3D.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/interface/otherFoMo3D.sol -------------------------------------------------------------------------------- /contracts/library/F3DKeysCalcLong.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/library/F3DKeysCalcLong.sol -------------------------------------------------------------------------------- /contracts/library/F3Ddatasets.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/library/F3Ddatasets.sol -------------------------------------------------------------------------------- /contracts/library/MSFun.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/library/MSFun.sol -------------------------------------------------------------------------------- /contracts/library/NameFilter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/library/NameFilter.sol -------------------------------------------------------------------------------- /contracts/library/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/library/SafeMath.sol -------------------------------------------------------------------------------- /contracts/library/UintCompressor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/library/UintCompressor.sol -------------------------------------------------------------------------------- /contracts/modularLong.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/contracts/modularLong.sol -------------------------------------------------------------------------------- /flattener.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/flattener.sh -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_petcore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/migrations/2_deploy_petcore.js -------------------------------------------------------------------------------- /migrations/3_deploy_gene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/migrations/3_deploy_gene.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/package.json -------------------------------------------------------------------------------- /src/images/wechat.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/src/images/wechat.jpeg -------------------------------------------------------------------------------- /src/images/xiaomiquan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/src/images/xiaomiquan.png -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reedhong/fomo3d_clone/HEAD/truffle.js --------------------------------------------------------------------------------