This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Multiply the loop variable by this number: | |
$times: 7; | |
// Pixel to REMs conversion: | |
$px-to-rems: true; | |
// Box Model abbreviations list | |
$box-model-abbr: p, pt, pr, pb, pl, m, mt, mr, mb, ml; | |
$box-model-sides: padding, padding-top, padding-right, padding-bottom, padding-left, margin, margin-top, margin-right, margin-bottom, margin-left; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.24; | |
import './StandardToken.sol'; | |
import './DetailedERC20.sol'; | |
contract SANDER1 is StandardToken, DetailedERC20 { | |
/** | |
* 12 tokens equal 12 songs equal 1 album | |
* uint256 supply |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.24; | |
import './StandardToken.sol'; | |
import './DetailedERC20.sol'; | |
contract SANDER1 is StandardToken, DetailedERC20 { | |
/** | |
* 12 tokens equal 12 songs equal 1 album | |
* uint256 supply |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.24; | |
import './CappedCrowdsale.sol'; | |
import './SANDER1.sol'; | |
import './SafeERC20.sol'; | |
contract SuperCrowdsale is CappedCrowdsale { | |
using SafeERC20 for SANDER1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Sources flattened with hardhat v2.1.2 https://hardhat.org | |
// File @openzeppelin/contracts/utils/introspection/[email protected] | |
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
/** | |
* @dev Interface of the ERC165 standard, as defined in the |