More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 714 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 16971730 | 618 days ago | IN | 0 ETH | 0.00185208 | ||||
Withdraw | 16812148 | 640 days ago | IN | 0 ETH | 0.00174693 | ||||
Withdraw | 16206730 | 725 days ago | IN | 0 ETH | 0.00125642 | ||||
Withdraw | 16006653 | 753 days ago | IN | 0 ETH | 0.00104773 | ||||
Withdraw | 15995229 | 754 days ago | IN | 0 ETH | 0.00124535 | ||||
Withdraw | 15546927 | 817 days ago | IN | 0 ETH | 0.00099637 | ||||
Withdraw | 15546923 | 817 days ago | IN | 0 ETH | 0.00079248 | ||||
Withdraw | 15546888 | 817 days ago | IN | 0 ETH | 0.00087499 | ||||
Withdraw | 15543145 | 818 days ago | IN | 0 ETH | 0.00065876 | ||||
Withdraw Ethers | 15495284 | 825 days ago | IN | 0 ETH | 0.00186542 | ||||
Withdraw | 15380192 | 844 days ago | IN | 0 ETH | 0.00068567 | ||||
Withdraw | 15350395 | 849 days ago | IN | 0 ETH | 0.00091505 | ||||
Withdraw | 15304973 | 856 days ago | IN | 0 ETH | 0.00117827 | ||||
Withdraw | 15270977 | 861 days ago | IN | 0 ETH | 0.00329983 | ||||
Withdraw | 15269835 | 861 days ago | IN | 0 ETH | 0.00074305 | ||||
Withdraw | 15216401 | 869 days ago | IN | 0 ETH | 0.00188516 | ||||
Withdraw | 15199325 | 872 days ago | IN | 0 ETH | 0.00071066 | ||||
Withdraw | 15180155 | 875 days ago | IN | 0 ETH | 0.00443014 | ||||
Withdraw | 15154663 | 879 days ago | IN | 0 ETH | 0.00208049 | ||||
Withdraw | 15154508 | 879 days ago | IN | 0 ETH | 0.00238806 | ||||
Withdraw | 15154502 | 879 days ago | IN | 0 ETH | 0.00281033 | ||||
Withdraw | 15145283 | 881 days ago | IN | 0 ETH | 0.00097158 | ||||
Withdraw | 15143846 | 881 days ago | IN | 0 ETH | 0.00142427 | ||||
Withdraw | 15142199 | 881 days ago | IN | 0 ETH | 0.00359138 | ||||
Withdraw | 15131919 | 883 days ago | IN | 0 ETH | 0.00134501 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
15495284 | 825 days ago | 1.34641778 ETH | ||||
14848247 | 930 days ago | 0.0485 ETH | ||||
14783922 | 941 days ago | 0.08245 ETH | ||||
14611199 | 968 days ago | 0.08431365 ETH | ||||
14503366 | 985 days ago | 0.05887293 ETH | ||||
14235653 | 1026 days ago | 5.79844444 ETH | ||||
14235649 | 1026 days ago | 5.7982199 ETH | ||||
14235232 | 1026 days ago | 7.76 ETH | ||||
14227868 | 1028 days ago | 0.097 ETH | ||||
14205083 | 1031 days ago | 0.08245 ETH | ||||
14203951 | 1031 days ago | 0.07663 ETH | ||||
14193509 | 1033 days ago | 0.10185 ETH | ||||
14192002 | 1033 days ago | 4.85 ETH | ||||
14179730 | 1035 days ago | 0.6305 ETH | ||||
14179567 | 1035 days ago | 0.097 ETH | ||||
14179518 | 1035 days ago | 0.0873 ETH | ||||
14179475 | 1035 days ago | 0.07275 ETH | ||||
14179019 | 1035 days ago | 0.2425 ETH | ||||
14179006 | 1035 days ago | 0.2425 ETH | ||||
14178931 | 1035 days ago | 0.097 ETH | ||||
14178870 | 1035 days ago | 0.2037 ETH | ||||
14178850 | 1035 days ago | 0.1067 ETH | ||||
14178825 | 1035 days ago | 0.24153 ETH | ||||
14178777 | 1035 days ago | 0.097 ETH | ||||
14145761 | 1040 days ago | 0.07275 ETH |
Loading...
Loading
Contract Name:
DragonMarket
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "./BaseAuctionReceiver.sol"; import "./DragonToken.sol"; contract DragonMarket is BaseAuctionReceiver { using SafeMath for uint; using Address for address payable; uint constant WEI_MIN_PRICE = 1e15; //0,001 eth uint constant HOURS_MAX_PERIOD = 24 * 100; //100 days event TokenBought( uint tokenId, uint weiAmount, address indexed newOwner, uint weiHolderAmount, uint weiFeesAmount, address indexed oldOwner); constructor(address accessControl, address dragonToken, uint fees100) BaseAuctionReceiver(accessControl, dragonToken, fees100) { } function weiMinPrice() internal override virtual pure returns (uint) { return WEI_MIN_PRICE; } function maxTotalPeriod() internal override virtual pure returns (uint) { return HOURS_MAX_PERIOD; } function buy(uint tokenId) external payable whenLocked(tokenId) { require(msg.value >= priceOf(tokenId), "DragonMarket: incorrect amount sent to the contract"); require(holderOf(tokenId) != _msgSender(), "DragonMarket: a token holder cannot buy own token. Use the method withdraw instead."); address holder = holderOf(tokenId); _unlock(tokenId); delete _priceSettings[tokenId]; DragonToken(tokenContract()) .safeTransferFrom(address(this), msg.sender, tokenId); uint weiFeesAmount = calcFees(msg.value, feesPercent()); uint weiHolderAmount = msg.value.sub(weiFeesAmount); payable(holder).sendValue(weiHolderAmount); emit TokenBought( tokenId, msg.value, msg.sender, weiHolderAmount, weiFeesAmount, holder); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/math/Math.sol"; import "./utils/BytesLib.sol"; import "./LockableReceiver.sol"; abstract contract BaseAuctionReceiver is LockableReceiver { enum PriceDirection { NONE, UP, DOWN } struct PriceSettings { uint startingPrice; uint finalPrice; uint priceChangePeriod; //in hours uint priceChangeStep; PriceDirection direction; uint timestampAddedAt; } using SafeMath for uint; mapping(uint => PriceSettings) internal _priceSettings; uint private _fees100; constructor (address accessControl, address dragonToken, uint fees100) LockableReceiver(accessControl, dragonToken) { _fees100 = fees100; } function weiMinPrice() internal virtual pure returns (uint) { return 0; } function maxTotalPeriod() internal virtual pure returns (uint) { return 0; } /** * Defines how often the price is changed during 1 hour. 60 by default (every minute). */ function numOfPriceChangesPerHour() internal virtual pure returns (uint) { return 60; } function feesPercent() public virtual view returns (uint) { return _fees100; } function updateFeesPercent(uint newFees100) external virtual onlyRole(CFO_ROLE) { _fees100 = newFees100; } function calcFees(uint weiAmount, uint fees100) internal virtual pure returns (uint) { return weiAmount.div(1e4).mul(fees100); } function readPriceSettings(bytes calldata data) internal virtual pure returns (uint, uint, uint) { uint weiStartingPrice = BytesLib.toUint256(data, 0); uint weiFinalPrice = BytesLib.toUint256(data, 0x20); uint totalPriceChangePeriod = BytesLib.toUint256(data, 0x40); return (weiStartingPrice, weiFinalPrice, totalPriceChangePeriod); } function processERC721(address /*from*/, uint tokenId, bytes calldata data) internal virtual override { (uint weiStartingPrice, uint weiFinalPrice, uint totalPriceChangePeriod) = readPriceSettings(data); uint _weiMinPrice = weiMinPrice(); uint _maxTotalPeriod = maxTotalPeriod(); if (_weiMinPrice > 0) { require(weiStartingPrice >= _weiMinPrice && weiFinalPrice >= _weiMinPrice, "BaseAuctionReceiver: the starting price and the final price cannot be less than weiMinPrice()"); } if (_maxTotalPeriod > 0) { require(totalPriceChangePeriod <= _maxTotalPeriod, "BaseAuctionReceiver: the price change period cannot exceed maxTotalPeriod()"); require(totalPriceChangePeriod >= 12 && totalPriceChangePeriod.mod(12) == 0, "BaseAuctionReceiver: the price change period should be a multiple of 0.5 days"); } uint step; PriceDirection d; (step, d) = calcPriceChangeStep( weiStartingPrice, weiFinalPrice, totalPriceChangePeriod, numOfPriceChangesPerHour()); PriceSettings memory settings = PriceSettings ({ startingPrice: weiStartingPrice, finalPrice: weiFinalPrice, priceChangePeriod: totalPriceChangePeriod, priceChangeStep: step, direction: d, timestampAddedAt: block.timestamp }); _priceSettings[tokenId] = settings; } function priceSettingsOf(uint tokenId) public view returns (PriceSettings memory) { return _priceSettings[tokenId]; } function priceOf(uint tokenId) public view returns (uint) { PriceSettings memory settings = priceSettingsOf(tokenId); if (settings.direction == PriceDirection.NONE) { return settings.startingPrice; } uint max = Math.max(settings.startingPrice, settings.finalPrice); uint min = Math.min(settings.startingPrice, settings.finalPrice); uint diff = max.sub(min); uint totalNumOfPeriodsToFinalPrice = diff.div(settings.priceChangeStep); uint numOfPeriods = (block.timestamp - settings.timestampAddedAt).div(60) .mul(numOfPriceChangesPerHour()).div(60); uint result; if (numOfPeriods > totalNumOfPeriodsToFinalPrice) { result = settings.finalPrice; } else if (settings.direction == PriceDirection.DOWN) { result = settings.startingPrice.sub(settings.priceChangeStep.mul(numOfPeriods)); } else { result = settings.startingPrice.add(settings.priceChangeStep.mul(numOfPeriods)); } return result; } function calcPriceChangeStep( uint weiStartingPrice, uint weiFinalPrice, uint totalPriceChangePeriod, uint _numOfPriceChangesPerHour) internal virtual pure returns (uint, PriceDirection) { if (weiStartingPrice == weiFinalPrice) { return (0, PriceDirection.NONE); } uint max = Math.max(weiStartingPrice, weiFinalPrice); uint min = Math.min(weiStartingPrice, weiFinalPrice); uint diff = max.sub(min); PriceDirection direction = PriceDirection.DOWN; if (max == weiFinalPrice) { direction = PriceDirection.UP; } return (diff.div(totalPriceChangePeriod.mul(_numOfPriceChangesPerHour)), direction); } function withdraw(uint tokenId) public virtual override onlyHolder(tokenId) { delete _priceSettings[tokenId]; super.withdraw(tokenId); } }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "./access/BaseAccessControl.sol"; import "./structs/DragonInfo.sol"; contract DragonToken is ERC721, BaseAccessControl { using Address for address; using Counters for Counters.Counter; Counters.Counter private _dragonIds; // Mapping token id to dragon details mapping(uint => uint) private _info; // Mapping token id to cid mapping(uint => string) private _cids; string private _defaultMetadataCid; address private _dragonCreator; constructor(string memory defaultCid, address accessControl) ERC721("CryptoDragons", "CD") BaseAccessControl(accessControl) { _defaultMetadataCid = defaultCid; } function approveAndCall(address spender, uint256 tokenId, bytes calldata extraData) external returns (bool success) { _approve(spender, tokenId); (bool _success, ) = spender.call( abi.encodeWithSignature("receiveApproval(address,uint256,address,bytes)", _msgSender(), tokenId, address(this), extraData) ); if(!_success) { revert("DragonToken: spender internal error"); } return true; } function tokenURI(uint tokenId) public view virtual override returns (string memory) { string memory cid = _cids[tokenId]; return string(abi.encodePacked("ipfs://", (bytes(cid).length > 0) ? cid : defaultMetadataCid())); } function dragonCreatorAddress() public view returns(address) { return _dragonCreator; } function setDragonCreatorAddress(address newAddress) external onlyRole(CEO_ROLE) { address previousAddress = _dragonCreator; _dragonCreator = newAddress; emit AddressChanged("dragonCreator", previousAddress, newAddress); } function hasMetadataCid(uint tokenId) public view returns(bool) { return bytes(_cids[tokenId]).length > 0; } function setMetadataCid(uint tokenId, string calldata cid) external onlyRole(COO_ROLE) { require(bytes(cid).length >= 46, "DragonToken: bad CID"); require(!hasMetadataCid(tokenId), "DragonToken: CID is already set"); _cids[tokenId] = cid; } function defaultMetadataCid() public view returns (string memory){ return _defaultMetadataCid; } function setDefaultMetadataCid(string calldata newDefaultCid) external onlyRole(COO_ROLE) { _defaultMetadataCid = newDefaultCid; } function dragonInfo(uint dragonId) public view returns (DragonInfo.Details memory) { return DragonInfo.getDetails(_info[dragonId]); } function strengthOf(uint dragonId) external view returns (uint) { DragonInfo.Details memory details = dragonInfo(dragonId); return details.strength > 0 ? details.strength : DragonInfo.calcStrength(details.genes); } function isSiblings(uint dragon1Id, uint dragon2Id) external view returns (bool) { DragonInfo.Details memory info1 = dragonInfo(dragon1Id); DragonInfo.Details memory info2 = dragonInfo(dragon2Id); return (info1.generation > 1 && info2.generation > 1) && //the 1st generation of dragons doesn't have siblings (info1.parent1Id == info2.parent1Id || info1.parent1Id == info2.parent2Id || info1.parent2Id == info2.parent1Id || info1.parent2Id == info2.parent2Id); } function isParent(uint dragon1Id, uint dragon2Id) external view returns (bool) { DragonInfo.Details memory info = dragonInfo(dragon1Id); return info.parent1Id == dragon2Id || info.parent2Id == dragon2Id; } function mint(address to, DragonInfo.Details calldata info) external returns (uint) { require(_msgSender() == dragonCreatorAddress(), "DragonToken: not enough privileges to call the method"); _dragonIds.increment(); uint newDragonId = uint(_dragonIds.current()); _info[newDragonId] = DragonInfo.getValue(info); _mint(to, newDragonId); return newDragonId; } function setStrength(uint dragonId) external returns (uint) { DragonInfo.Details memory details = dragonInfo(dragonId); if (details.strength == 0) { details.strength = DragonInfo.calcStrength(details.genes); _info[dragonId] = DragonInfo.getValue(details); } return details.strength; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a / b + (a % b == 0 ? 0 : 1); } }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.0; library BytesLib { function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) { require(_bytes.length >= _start + 20, "toAddress_outOfBounds"); address tempAddress; assembly { tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000) } return tempAddress; } function toUint256(bytes memory _bytes, uint _start) internal pure returns (uint) { require(_bytes.length >= _start + 32, "toUint256_outOfBounds"); uint tempUint; assembly { tempUint := mload(add(add(_bytes, 0x20), _start)) } return tempUint; } function toTuple128(bytes memory _bytes, uint256 _start) internal pure returns (uint, uint) { require(_bytes.length >= _start + 32, "toTuple16_outOfBounds"); uint tempUint; uint n1; uint n2; assembly { tempUint := mload(add(add(_bytes, 0x20), _start)) n1 := and(shr(0x80, tempUint), 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF) n2 := and(tempUint, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF) } return (n1, n2); } }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "./access/BaseAccessControl.sol"; abstract contract LockableReceiver is BaseAccessControl, IERC721Receiver { using Address for address payable; address private _tokenContractAddress; mapping(uint => address) private _lockedTokens; event TokenLocked(uint tokenId, address indexed holder); event TokenWithdrawn(uint tokenId, address indexed holder); event EthersWithdrawn(address indexed operator, address indexed to, uint amount); constructor (address accessControl, address tokenContractAddress) BaseAccessControl(accessControl) { _tokenContractAddress = tokenContractAddress; } modifier whenLocked(uint tokenId) { require(isLocked(tokenId), "LockableReceiver: token must be locked"); _; } modifier onlyHolder(uint tokenId) { require(holderOf(tokenId) == _msgSender(), "LockableReceiver: caller is not the token holder"); _; } function onERC721Received(address operator, address /*from*/, uint /*tokenId*/, bytes calldata /*data*/) external virtual override returns (bytes4) { require(operator == address(this), "LockableReceiver: the caller is not a valid operator"); return this.onERC721Received.selector; } function receiveApproval(address sender, uint tokenId, address _tokenContract, bytes calldata data) external virtual { require(tokenContract() == _msgSender(), "LockableReceiver: not enough privileges to call the method"); require(_tokenContract == tokenContract(), "LockableReceiver: unable to receive the given token"); IERC721(tokenContract()).safeTransferFrom(sender, address(this), tokenId, data); _lock(tokenId, sender); processERC721(sender, tokenId, data); } function processERC721(address from, uint tokenId, bytes calldata data) internal virtual { } function _lock(uint tokenId, address holder) internal { _lockedTokens[tokenId] = holder; emit TokenLocked(tokenId, holder); } function _unlock(uint tokenId) internal { delete _lockedTokens[tokenId]; } function tokenContract() public view returns (address) { return _tokenContractAddress; } function setTokenContract(address newAddress) external onlyRole(CEO_ROLE) { address previousAddress = _tokenContractAddress; _tokenContractAddress = newAddress; emit AddressChanged("tokenContract", previousAddress, newAddress); } function isLocked(uint tokenId) public view returns (bool) { return _lockedTokens[tokenId] != address(0); } function holderOf(uint tokenId) public view returns (address) { return _lockedTokens[tokenId]; } function withdrawEthers(uint amount, address payable to) external virtual onlyRole(CFO_ROLE) { to.sendValue(amount); emit EthersWithdrawn(_msgSender(), to, amount); } function withdraw(uint tokenId) public virtual onlyHolder(tokenId) { _transferTokenToHolder(tokenId); emit TokenWithdrawn(tokenId, _msgSender()); } function _transferTokenToHolder(uint tokenId) internal virtual { address holder = holderOf(tokenId); if (holder != address(0)) { IERC721(tokenContract()).safeTransferFrom(address(this), holder, tokenId); _unlock(tokenId); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/IAccessControl.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "../interfaces/IChangeableVariables.sol"; abstract contract BaseAccessControl is Context, IChangeableVariables { bytes32 public constant CEO_ROLE = keccak256("CEO"); bytes32 public constant CFO_ROLE = keccak256("CFO"); bytes32 public constant COO_ROLE = keccak256("COO"); address private _accessControl; modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } constructor (address accessControl) Context() { _accessControl = accessControl; } function accessControlAddress() public view returns (address) { return _accessControl; } function setAccessControlAddress(address newAddress) external onlyRole(CEO_ROLE) { address previousAddress = _accessControl; _accessControl = newAddress; emit AddressChanged("accessControl", previousAddress, newAddress); } function hasRole(bytes32 role, address account) public view returns (bool) { return IAccessControl(accessControlAddress()).hasRole(role, account); } function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.0; interface IChangeableVariables { event AddressChanged(string fieldName, address previousAddress, address newAddress); event ValueChanged(string fieldName, uint previousValue, uint newValue); event BoolValueChanged(string fieldName, bool previousValue, bool newValue); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.0; library DragonInfo { uint constant MASK = 0xF000000000000000000000000; enum Types { Unknown, Common, Rare16, Rare17, Rare18, Rare19, Epic20, Epic21, Epic22, Epic23, Epic24, Legendary } struct Details { uint genes; uint eggId; uint parent1Id; uint parent2Id; uint generation; uint strength; Types dragonType; } function getDetails(uint value) internal pure returns (Details memory) { return Details ( { genes: uint256(uint104(value)), parent1Id: uint256(uint32(value >> 104)), parent2Id: uint256(uint32(value >> 136)), generation: uint256(uint16(value >> 168)), strength: uint256(uint16(value >> 184)), dragonType: Types(uint16(value >> 200)), eggId: uint256(uint32(value >> 216)) } ); } function getValue(Details memory details) internal pure returns (uint) { uint result = uint(details.genes); result |= details.parent1Id << 104; result |= details.parent2Id << 136; result |= details.generation << 168; result |= details.strength << 184; result |= uint(details.dragonType) << 200; result |= details.eggId << 216; return result; } function calcType(uint genes) internal pure returns (Types) { uint mask = MASK; uint numRare = 0; uint numEpic = 0; for (uint i = 0; i < 10; i++) { //just Rare and Epic genes are important to check if (genes & mask > 0) { if (i < 5) { //Epic-range numEpic++; } else { //Rare-range numRare++; } } mask = mask >> 4; } Types result = Types.Unknown; if (numEpic == 5 && numRare == 5) { result = Types.Legendary; } else if (numEpic < 5 && numRare == 5) { result = Types(6 + numEpic); } else if (numEpic == 0 && numRare < 5) { result = Types(1 + numRare); } else if (numEpic == 0 && numRare == 0) { result = Types.Common; } return result; } function calcStrength(uint genes) internal pure returns (uint) { uint mask = MASK; uint strength = 0; for (uint i = 0; i < 25; i++) { uint gLevel = (genes & mask) >> ((24 - i) * 4); if (i < 6) { //Epic strength += 3 * (25 - i) * gLevel; } else if (i < 10) { //Rare strength += 2 * (25 - i) * gLevel; } else { //Common-range if (gLevel > 0) { strength += (25 - i) * gLevel; } else { strength += (25 - i); } } mask = mask >> 4; } return strength; } function calcGeneration(uint g1, uint g2) internal pure returns (uint) { return (g1 >= g2 ? g1 : g2) + 1; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"accessControl","type":"address"},{"internalType":"address","name":"dragonToken","type":"address"},{"internalType":"uint256","name":"fees100","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"fieldName","type":"string"},{"indexed":false,"internalType":"address","name":"previousAddress","type":"address"},{"indexed":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"AddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"fieldName","type":"string"},{"indexed":false,"internalType":"bool","name":"previousValue","type":"bool"},{"indexed":false,"internalType":"bool","name":"newValue","type":"bool"}],"name":"BoolValueChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EthersWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"weiAmount","type":"uint256"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"},{"indexed":false,"internalType":"uint256","name":"weiHolderAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"weiFeesAmount","type":"uint256"},{"indexed":true,"internalType":"address","name":"oldOwner","type":"address"}],"name":"TokenBought","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"holder","type":"address"}],"name":"TokenLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"holder","type":"address"}],"name":"TokenWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"fieldName","type":"string"},{"indexed":false,"internalType":"uint256","name":"previousValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"ValueChanged","type":"event"},{"inputs":[],"name":"CEO_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CFO_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COO_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accessControlAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"feesPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"holderOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"priceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"priceSettingsOf","outputs":[{"components":[{"internalType":"uint256","name":"startingPrice","type":"uint256"},{"internalType":"uint256","name":"finalPrice","type":"uint256"},{"internalType":"uint256","name":"priceChangePeriod","type":"uint256"},{"internalType":"uint256","name":"priceChangeStep","type":"uint256"},{"internalType":"enum BaseAuctionReceiver.PriceDirection","name":"direction","type":"uint8"},{"internalType":"uint256","name":"timestampAddedAt","type":"uint256"}],"internalType":"struct BaseAuctionReceiver.PriceSettings","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"receiveApproval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setAccessControlAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setTokenContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFees100","type":"uint256"}],"name":"updateFeesPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address payable","name":"to","type":"address"}],"name":"withdrawEthers","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200343438038062003434833981810160405281019062000037919062000102565b828282828281806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505080600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505080600481905550505050505050620001ca565b600081519050620000e58162000196565b92915050565b600081519050620000fc81620001b0565b92915050565b6000806000606084860312156200011857600080fd5b60006200012886828701620000d4565b93505060206200013b86828701620000d4565b92505060406200014e86828701620000eb565b9150509250925092565b600062000165826200016c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b620001a18162000158565b8114620001ad57600080fd5b50565b620001bb816200018c565b8114620001c757600080fd5b50565b61325a80620001da6000396000f3fe6080604052600436106101145760003560e01c80639f6f50ed116100a0578063d96a094a11610064578063d96a094a146103b1578063dbacc237146103cd578063dfbfbab31461040a578063e8d56b8b14610435578063f6aacfb11461045e57610114565b80639f6f50ed146102b8578063b514be63146102e3578063b9186d7d1461030e578063bbcd5bbe1461034b578063d7c8e7711461037457610114565b80633acfd44f116100e75780633acfd44f146101d157806355a373d6146101fc57806366741377146102275780638f4ffcb11461025257806391d148541461027b57610114565b8063150b7a0214610119578063263f8811146101565780632a6e5e111461017f5780632e1a7d4d146101a8575b600080fd5b34801561012557600080fd5b50610140600480360381019061013b9190611ffe565b61049b565b60405161014d9190612b65565b60405180910390f35b34801561016257600080fd5b5061017d60048036038101906101789190612163565b61051e565b005b34801561018b57600080fd5b506101a660048036038101906101a1919061218c565b61055b565b005b3480156101b457600080fd5b506101cf60048036038101906101ca9190612163565b610627565b005b3480156101dd57600080fd5b506101e6610704565b6040516101f39190612b21565b60405180910390f35b34801561020857600080fd5b50610211610728565b60405161021e9190612a66565b60405180910390f35b34801561023357600080fd5b5061023c610752565b6040516102499190612a66565b60405180910390f35b34801561025e57600080fd5b506102796004803603810190610274919061207e565b61077b565b005b34801561028757600080fd5b506102a2600480360381019061029d9190612127565b610903565b6040516102af9190612b06565b60405180910390f35b3480156102c457600080fd5b506102cd61099f565b6040516102da9190612b21565b60405180910390f35b3480156102ef57600080fd5b506102f86109c3565b6040516103059190612b21565b60405180910390f35b34801561031a57600080fd5b5061033560048036038101906103309190612163565b6109e7565b6040516103429190612df5565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190611fd5565b610c37565b005b34801561038057600080fd5b5061039b60048036038101906103969190612163565b610d0f565b6040516103a89190612dda565b60405180910390f35b6103cb60048036038101906103c69190612163565b610df5565b005b3480156103d957600080fd5b506103f460048036038101906103ef9190612163565b6110ac565b6040516104019190612a66565b60405180910390f35b34801561041657600080fd5b5061041f6110e9565b60405161042c9190612df5565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190611fd5565b6110f3565b005b34801561046a57600080fd5b5061048560048036038101906104809190612163565b6111c9565b6040516104929190612b06565b60405180910390f35b60003073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161461050b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050290612c9e565b60405180910390fd5b63150b7a0260e01b905095945050505050565b7f33fa24d9aab6b79237248a16094d5f78ea83bb51e42c123ce925a264e7d816cc6105508161054b611235565b61123d565b816004819055505050565b7f33fa24d9aab6b79237248a16094d5f78ea83bb51e42c123ce925a264e7d816cc61058d81610588611235565b61123d565b6105b6838373ffffffffffffffffffffffffffffffffffffffff166112da90919063ffffffff16565b8173ffffffffffffffffffffffffffffffffffffffff166105d5611235565b73ffffffffffffffffffffffffffffffffffffffff167f372bb9ce23c45af0229f3ad425305ebadfb790c0b0453fa3077a02d7d8c987bb8560405161061a9190612df5565b60405180910390a3505050565b80610630611235565b73ffffffffffffffffffffffffffffffffffffffff1661064f826110ac565b73ffffffffffffffffffffffffffffffffffffffff16146106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90612c1e565b60405180910390fd5b600360008381526020019081526020016000206000808201600090556001820160009055600282016000905560038201600090556004820160006101000a81549060ff021916905560058201600090555050610700826113ce565b5050565b7fefa080c67ecf4a6bf40c9dc64173420c08f359250ca6562d7c80f7c7b9b1396981565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610783611235565b73ffffffffffffffffffffffffffffffffffffffff166107a1610728565b73ffffffffffffffffffffffffffffffffffffffff16146107f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ee90612bc2565b60405180910390fd5b6107ff610728565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461086c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086390612c5e565b60405180910390fd5b610874610728565b73ffffffffffffffffffffffffffffffffffffffff1663b88d4fde86308786866040518663ffffffff1660e01b81526004016108b4959493929190612ab8565b600060405180830381600087803b1580156108ce57600080fd5b505af11580156108e2573d6000803e3d6000fd5b505050506108f084866114ae565b6108fc85858484611552565b5050505050565b600061090d610752565b73ffffffffffffffffffffffffffffffffffffffff166391d1485484846040518363ffffffff1660e01b8152600401610947929190612b3c565b60206040518083038186803b15801561095f57600080fd5b505afa158015610973573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061099791906120fe565b905092915050565b7f33fa24d9aab6b79237248a16094d5f78ea83bb51e42c123ce925a264e7d816cc81565b7fdc0d7a095c4e917ecbeb7deda7c942ff9744013d419e37549215a413915e421d81565b6000806109f383610d0f565b905060006002811115610a2f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81608001516002811115610a6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415610a7f578060000151915050610c32565b6000610a93826000015183602001516117bc565b90506000610aa9836000015184602001516117d6565b90506000610ac082846117ef90919063ffffffff16565b90506000610adb85606001518361180590919063ffffffff16565b90506000610b2e603c610b20610aef61181b565b610b12603c8b60a0015142610b049190612f79565b61180590919063ffffffff16565b61182490919063ffffffff16565b61180590919063ffffffff16565b9050600082821115610b465786602001519050610c27565b600280811115610b7f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b87608001516002811115610bbc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415610bf657610bef610bdc83896060015161182490919063ffffffff16565b88600001516117ef90919063ffffffff16565b9050610c26565b610c23610c1083896060015161182490919063ffffffff16565b886000015161183a90919063ffffffff16565b90505b5b809750505050505050505b919050565b7fdc0d7a095c4e917ecbeb7deda7c942ff9744013d419e37549215a413915e421d610c6981610c64611235565b61123d565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f4ca142703425bec1d507d5581fac3a3e61eadcbeafbd7c0a03e2897d96de1cc58184604051610d02929190612d3e565b60405180910390a1505050565b610d17611eb4565b600360008381526020019081526020016000206040518060c0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820160009054906101000a900460ff166002811115610da8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6002811115610de0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81526020016005820154815250509050919050565b80610dff816111c9565b610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590612c3e565b60405180910390fd5b610e47826109e7565b341015610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8090612d7a565b60405180910390fd5b610e91611235565b73ffffffffffffffffffffffffffffffffffffffff16610eb0836110ac565b73ffffffffffffffffffffffffffffffffffffffff161415610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe90612d9a565b60405180910390fd5b6000610f12836110ac565b9050610f1d83611850565b600360008481526020019081526020016000206000808201600090556001820160009055600282016000905560038201600090556004820160006101000a81549060ff021916905560058201600090555050610f77610728565b73ffffffffffffffffffffffffffffffffffffffff166342842e0e3033866040518463ffffffff1660e01b8152600401610fb393929190612a81565b600060405180830381600087803b158015610fcd57600080fd5b505af1158015610fe1573d6000803e3d6000fd5b505050506000610ff834610ff36110e9565b611889565b9050600061100f82346117ef90919063ffffffff16565b905061103a818473ffffffffffffffffffffffffffffffffffffffff166112da90919063ffffffff16565b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f055398db1e28fe2bca29e95358809ee348e69266e67198d3e16fa68f834e967d8734858760405161109d9493929190612e10565b60405180910390a35050505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600454905090565b7fdc0d7a095c4e917ecbeb7deda7c942ff9744013d419e37549215a413915e421d61112581611120611235565b61123d565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050826000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f4ca142703425bec1d507d5581fac3a3e61eadcbeafbd7c0a03e2897d96de1cc581846040516111bc929190612be2565b60405180910390a1505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b6112478282610903565b6112d65761126c8173ffffffffffffffffffffffffffffffffffffffff1660146118ba565b61127a8360001c60206118ba565b60405160200161128b929190612a2c565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd9190612b80565b60405180910390fd5b5050565b8047101561131d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131490612cfe565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161134390612a17565b60006040518083038185875af1925050503d8060008114611380576040519150601f19603f3d011682016040523d82523d6000602084013e611385565b606091505b50509050806113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c090612cde565b60405180910390fd5b505050565b806113d7611235565b73ffffffffffffffffffffffffffffffffffffffff166113f6826110ac565b73ffffffffffffffffffffffffffffffffffffffff161461144c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144390612c1e565b60405180910390fd5b61145582611bb4565b61145d611235565b73ffffffffffffffffffffffffffffffffffffffff167f61dc2e6e64c7a742717c1eae2958f9bc011c40d616afd06af648eff740c2b04d836040516114a29190612df5565b60405180910390a25050565b806002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f9ecfd70e9ff36df72989324a49559383d39f9290d700b10cf5ac10dcb68d2643836040516115469190612df5565b60405180910390a25050565b60008060006115618585611c79565b9250925092506000611571611d89565b9050600061157d611d98565b905060008211156115d8578185101580156115985750818410155b6115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90612c7e565b60405180910390fd5b5b60008111156116885780831115611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b90612dba565b60405180910390fd5b600c831015801561164857506000611646600c85611da290919063ffffffff16565b145b611687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167e90612cbe565b60405180910390fd5b5b60008061169e87878761169961181b565b611db8565b809250819350505060006040518060c00160405280898152602001888152602001878152602001848152602001836002811115611704577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b815260200142815250905080600360008d81526020019081526020016000206000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a81548160ff0219169083600281111561179c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555060a08201518160050155905050505050505050505050505050565b6000818310156117cc57816117ce565b825b905092915050565b60008183106117e557816117e7565b825b905092915050565b600081836117fd9190612f79565b905092915050565b600081836118139190612eee565b905092915050565b6000603c905090565b600081836118329190612f1f565b905092915050565b600081836118489190612e98565b905092915050565b6002600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550565b60006118b2826118a46127108661180590919063ffffffff16565b61182490919063ffffffff16565b905092915050565b6060600060028360026118cd9190612f1f565b6118d79190612e98565b67ffffffffffffffff811115611916577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156119485781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106119a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611a30577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611a709190612f1f565b611a7a9190612e98565b90505b6001811115611b66577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611ae2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110611b1f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611b5f906130a4565b9050611a7d565b5060008414611baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba190612ba2565b60405180910390fd5b8091505092915050565b6000611bbf826110ac565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c7557611bfd610728565b73ffffffffffffffffffffffffffffffffffffffff166342842e0e3083856040518463ffffffff1660e01b8152600401611c3993929190612a81565b600060405180830381600087803b158015611c5357600080fd5b505af1158015611c67573d6000803e3d6000fd5b50505050611c7482611850565b5b5050565b600080600080611cce86868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506000611e4d565b90506000611d2187878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506020611e4d565b90506000611d7488888080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506040611e4d565b90508282829550955095505050509250925092565b600066038d7ea4c68000905090565b6000610960905090565b60008183611db091906130ce565b905092915050565b60008084861415611dcf5760008091509150611e44565b6000611ddb87876117bc565b90506000611de988886117d6565b90506000611e0082846117ef90919063ffffffff16565b905060006002905088841415611e1557600190505b611e3a611e2b888a61182490919063ffffffff16565b8361180590919063ffffffff16565b8195509550505050505b94509492505050565b6000602082611e5c9190612e98565b83511015611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9690612d1e565b60405180910390fd5b60008260208501015190508091505092915050565b6040518060c001604052806000815260200160008152602001600081526020016000815260200160006002811115611f15577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8152602001600081525090565b600081359050611f31816131b1565b92915050565b600081359050611f46816131c8565b92915050565b600081519050611f5b816131df565b92915050565b600081359050611f70816131f6565b92915050565b60008083601f840112611f8857600080fd5b8235905067ffffffffffffffff811115611fa157600080fd5b602083019150836001820283011115611fb957600080fd5b9250929050565b600081359050611fcf8161320d565b92915050565b600060208284031215611fe757600080fd5b6000611ff584828501611f22565b91505092915050565b60008060008060006080868803121561201657600080fd5b600061202488828901611f22565b955050602061203588828901611f22565b945050604061204688828901611fc0565b935050606086013567ffffffffffffffff81111561206357600080fd5b61206f88828901611f76565b92509250509295509295909350565b60008060008060006080868803121561209657600080fd5b60006120a488828901611f22565b95505060206120b588828901611fc0565b94505060406120c688828901611f22565b935050606086013567ffffffffffffffff8111156120e357600080fd5b6120ef88828901611f76565b92509250509295509295909350565b60006020828403121561211057600080fd5b600061211e84828501611f4c565b91505092915050565b6000806040838503121561213a57600080fd5b600061214885828601611f61565b925050602061215985828601611f22565b9150509250929050565b60006020828403121561217557600080fd5b600061218384828501611fc0565b91505092915050565b6000806040838503121561219f57600080fd5b60006121ad85828601611fc0565b92505060206121be85828601611f37565b9150509250929050565b6121d181612fad565b82525050565b6121e081612fd1565b82525050565b6121ef81612fdd565b82525050565b6121fe81612fe7565b82525050565b60006122108385612e60565b935061221d838584613062565b6122268361318c565b840190509392505050565b61223a81613050565b82525050565b600061224b82612e55565b6122558185612e7c565b9350612265818560208601613071565b61226e8161318c565b840191505092915050565b600061228482612e55565b61228e8185612e8d565b935061229e818560208601613071565b80840191505092915050565b60006122b7602083612e7c565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b60006122f7603a83612e7c565b91507f4c6f636b61626c6552656365697665723a206e6f7420656e6f7567682070726960008301527f76696c6567657320746f2063616c6c20746865206d6574686f640000000000006020830152604082019050919050565b600061235d600d83612e7c565b91507f616363657373436f6e74726f6c000000000000000000000000000000000000006000830152602082019050919050565b600061239d603083612e7c565b91507f4c6f636b61626c6552656365697665723a2063616c6c6572206973206e6f742060008301527f74686520746f6b656e20686f6c646572000000000000000000000000000000006020830152604082019050919050565b6000612403602683612e7c565b91507f4c6f636b61626c6552656365697665723a20746f6b656e206d7573742062652060008301527f6c6f636b656400000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612469603383612e7c565b91507f4c6f636b61626c6552656365697665723a20756e61626c6520746f207265636560008301527f6976652074686520676976656e20746f6b656e000000000000000000000000006020830152604082019050919050565b60006124cf605d83612e7c565b91507f4261736541756374696f6e52656365697665723a20746865207374617274696e60008301527f6720707269636520616e64207468652066696e616c2070726963652063616e6e60208301527f6f74206265206c657373207468616e207765694d696e507269636528290000006040830152606082019050919050565b600061255b603483612e7c565b91507f4c6f636b61626c6552656365697665723a207468652063616c6c65722069732060008301527f6e6f7420612076616c6964206f70657261746f720000000000000000000000006020830152604082019050919050565b60006125c1604d83612e7c565b91507f4261736541756374696f6e52656365697665723a20746865207072696365206360008301527f68616e676520706572696f642073686f756c642062652061206d756c7469706c60208301527f65206f6620302e352064617973000000000000000000000000000000000000006040830152606082019050919050565b600061264d603a83612e7c565b91507f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008301527f6563697069656e74206d617920686176652072657665727465640000000000006020830152604082019050919050565b60006126b3601d83612e7c565b91507f416464726573733a20696e73756666696369656e742062616c616e63650000006000830152602082019050919050565b60006126f3601583612e7c565b91507f746f55696e743235365f6f75744f66426f756e647300000000000000000000006000830152602082019050919050565b6000612733600d83612e7c565b91507f746f6b656e436f6e7472616374000000000000000000000000000000000000006000830152602082019050919050565b6000612773600083612e71565b9150600082019050919050565b600061278d601783612e8d565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b60006127cd603383612e7c565b91507f447261676f6e4d61726b65743a20696e636f727265637420616d6f756e74207360008301527f656e7420746f2074686520636f6e7472616374000000000000000000000000006020830152604082019050919050565b6000612833605383612e7c565b91507f447261676f6e4d61726b65743a206120746f6b656e20686f6c6465722063616e60008301527f6e6f7420627579206f776e20746f6b656e2e2055736520746865206d6574686f60208301527f6420776974686472617720696e73746561642e000000000000000000000000006040830152606082019050919050565b60006128bf604b83612e7c565b91507f4261736541756374696f6e52656365697665723a20746865207072696365206360008301527f68616e676520706572696f642063616e6e6f7420657863656564206d6178546f60208301527f74616c506572696f6428290000000000000000000000000000000000000000006040830152606082019050919050565b600061294b601183612e8d565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b60c08201600082015161299460008501826129f9565b5060208201516129a760208501826129f9565b5060408201516129ba60408501826129f9565b5060608201516129cd60608501826129f9565b5060808201516129e06080850182612231565b5060a08201516129f360a08501826129f9565b50505050565b612a0281613046565b82525050565b612a1181613046565b82525050565b6000612a2282612766565b9150819050919050565b6000612a3782612780565b9150612a438285612279565b9150612a4e8261293e565b9150612a5a8284612279565b91508190509392505050565b6000602082019050612a7b60008301846121c8565b92915050565b6000606082019050612a9660008301866121c8565b612aa360208301856121c8565b612ab06040830184612a08565b949350505050565b6000608082019050612acd60008301886121c8565b612ada60208301876121c8565b612ae76040830186612a08565b8181036060830152612afa818486612204565b90509695505050505050565b6000602082019050612b1b60008301846121d7565b92915050565b6000602082019050612b3660008301846121e6565b92915050565b6000604082019050612b5160008301856121e6565b612b5e60208301846121c8565b9392505050565b6000602082019050612b7a60008301846121f5565b92915050565b60006020820190508181036000830152612b9a8184612240565b905092915050565b60006020820190508181036000830152612bbb816122aa565b9050919050565b60006020820190508181036000830152612bdb816122ea565b9050919050565b60006060820190508181036000830152612bfb81612350565b9050612c0a60208301856121c8565b612c1760408301846121c8565b9392505050565b60006020820190508181036000830152612c3781612390565b9050919050565b60006020820190508181036000830152612c57816123f6565b9050919050565b60006020820190508181036000830152612c778161245c565b9050919050565b60006020820190508181036000830152612c97816124c2565b9050919050565b60006020820190508181036000830152612cb78161254e565b9050919050565b60006020820190508181036000830152612cd7816125b4565b9050919050565b60006020820190508181036000830152612cf781612640565b9050919050565b60006020820190508181036000830152612d17816126a6565b9050919050565b60006020820190508181036000830152612d37816126e6565b9050919050565b60006060820190508181036000830152612d5781612726565b9050612d6660208301856121c8565b612d7360408301846121c8565b9392505050565b60006020820190508181036000830152612d93816127c0565b9050919050565b60006020820190508181036000830152612db381612826565b9050919050565b60006020820190508181036000830152612dd3816128b2565b9050919050565b600060c082019050612def600083018461297e565b92915050565b6000602082019050612e0a6000830184612a08565b92915050565b6000608082019050612e256000830187612a08565b612e326020830186612a08565b612e3f6040830185612a08565b612e4c6060830184612a08565b95945050505050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ea382613046565b9150612eae83613046565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ee357612ee26130ff565b5b828201905092915050565b6000612ef982613046565b9150612f0483613046565b925082612f1457612f1361312e565b5b828204905092915050565b6000612f2a82613046565b9150612f3583613046565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f6e57612f6d6130ff565b5b828202905092915050565b6000612f8482613046565b9150612f8f83613046565b925082821015612fa257612fa16130ff565b5b828203905092915050565b6000612fb882613026565b9050919050565b6000612fca82613026565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60008190506130218261319d565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061305b82613013565b9050919050565b82818337600083830152505050565b60005b8381101561308f578082015181840152602081019050613074565b8381111561309e576000848401525b50505050565b60006130af82613046565b915060008214156130c3576130c26130ff565b5b600182039050919050565b60006130d982613046565b91506130e483613046565b9250826130f4576130f361312e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000601f19601f8301169050919050565b600381106131ae576131ad61315d565b5b50565b6131ba81612fad565b81146131c557600080fd5b50565b6131d181612fbf565b81146131dc57600080fd5b50565b6131e881612fd1565b81146131f357600080fd5b50565b6131ff81612fdd565b811461320a57600080fd5b50565b61321681613046565b811461322157600080fd5b5056fea264697066735822122085f3c6106eab7614f71b4427fa96b4efc9fa4902e31d2c018e24ae1d1dd88d5464736f6c63430008000033000000000000000000000000c713a40aa9bff56aee0e8ff9542b758d83af9fea0000000000000000000000003943cf9bd3aca41a66ec911a6395727db274856e000000000000000000000000000000000000000000000000000000000000012c
Deployed Bytecode
0x6080604052600436106101145760003560e01c80639f6f50ed116100a0578063d96a094a11610064578063d96a094a146103b1578063dbacc237146103cd578063dfbfbab31461040a578063e8d56b8b14610435578063f6aacfb11461045e57610114565b80639f6f50ed146102b8578063b514be63146102e3578063b9186d7d1461030e578063bbcd5bbe1461034b578063d7c8e7711461037457610114565b80633acfd44f116100e75780633acfd44f146101d157806355a373d6146101fc57806366741377146102275780638f4ffcb11461025257806391d148541461027b57610114565b8063150b7a0214610119578063263f8811146101565780632a6e5e111461017f5780632e1a7d4d146101a8575b600080fd5b34801561012557600080fd5b50610140600480360381019061013b9190611ffe565b61049b565b60405161014d9190612b65565b60405180910390f35b34801561016257600080fd5b5061017d60048036038101906101789190612163565b61051e565b005b34801561018b57600080fd5b506101a660048036038101906101a1919061218c565b61055b565b005b3480156101b457600080fd5b506101cf60048036038101906101ca9190612163565b610627565b005b3480156101dd57600080fd5b506101e6610704565b6040516101f39190612b21565b60405180910390f35b34801561020857600080fd5b50610211610728565b60405161021e9190612a66565b60405180910390f35b34801561023357600080fd5b5061023c610752565b6040516102499190612a66565b60405180910390f35b34801561025e57600080fd5b506102796004803603810190610274919061207e565b61077b565b005b34801561028757600080fd5b506102a2600480360381019061029d9190612127565b610903565b6040516102af9190612b06565b60405180910390f35b3480156102c457600080fd5b506102cd61099f565b6040516102da9190612b21565b60405180910390f35b3480156102ef57600080fd5b506102f86109c3565b6040516103059190612b21565b60405180910390f35b34801561031a57600080fd5b5061033560048036038101906103309190612163565b6109e7565b6040516103429190612df5565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190611fd5565b610c37565b005b34801561038057600080fd5b5061039b60048036038101906103969190612163565b610d0f565b6040516103a89190612dda565b60405180910390f35b6103cb60048036038101906103c69190612163565b610df5565b005b3480156103d957600080fd5b506103f460048036038101906103ef9190612163565b6110ac565b6040516104019190612a66565b60405180910390f35b34801561041657600080fd5b5061041f6110e9565b60405161042c9190612df5565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190611fd5565b6110f3565b005b34801561046a57600080fd5b5061048560048036038101906104809190612163565b6111c9565b6040516104929190612b06565b60405180910390f35b60003073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161461050b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050290612c9e565b60405180910390fd5b63150b7a0260e01b905095945050505050565b7f33fa24d9aab6b79237248a16094d5f78ea83bb51e42c123ce925a264e7d816cc6105508161054b611235565b61123d565b816004819055505050565b7f33fa24d9aab6b79237248a16094d5f78ea83bb51e42c123ce925a264e7d816cc61058d81610588611235565b61123d565b6105b6838373ffffffffffffffffffffffffffffffffffffffff166112da90919063ffffffff16565b8173ffffffffffffffffffffffffffffffffffffffff166105d5611235565b73ffffffffffffffffffffffffffffffffffffffff167f372bb9ce23c45af0229f3ad425305ebadfb790c0b0453fa3077a02d7d8c987bb8560405161061a9190612df5565b60405180910390a3505050565b80610630611235565b73ffffffffffffffffffffffffffffffffffffffff1661064f826110ac565b73ffffffffffffffffffffffffffffffffffffffff16146106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90612c1e565b60405180910390fd5b600360008381526020019081526020016000206000808201600090556001820160009055600282016000905560038201600090556004820160006101000a81549060ff021916905560058201600090555050610700826113ce565b5050565b7fefa080c67ecf4a6bf40c9dc64173420c08f359250ca6562d7c80f7c7b9b1396981565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610783611235565b73ffffffffffffffffffffffffffffffffffffffff166107a1610728565b73ffffffffffffffffffffffffffffffffffffffff16146107f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ee90612bc2565b60405180910390fd5b6107ff610728565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461086c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086390612c5e565b60405180910390fd5b610874610728565b73ffffffffffffffffffffffffffffffffffffffff1663b88d4fde86308786866040518663ffffffff1660e01b81526004016108b4959493929190612ab8565b600060405180830381600087803b1580156108ce57600080fd5b505af11580156108e2573d6000803e3d6000fd5b505050506108f084866114ae565b6108fc85858484611552565b5050505050565b600061090d610752565b73ffffffffffffffffffffffffffffffffffffffff166391d1485484846040518363ffffffff1660e01b8152600401610947929190612b3c565b60206040518083038186803b15801561095f57600080fd5b505afa158015610973573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061099791906120fe565b905092915050565b7f33fa24d9aab6b79237248a16094d5f78ea83bb51e42c123ce925a264e7d816cc81565b7fdc0d7a095c4e917ecbeb7deda7c942ff9744013d419e37549215a413915e421d81565b6000806109f383610d0f565b905060006002811115610a2f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81608001516002811115610a6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415610a7f578060000151915050610c32565b6000610a93826000015183602001516117bc565b90506000610aa9836000015184602001516117d6565b90506000610ac082846117ef90919063ffffffff16565b90506000610adb85606001518361180590919063ffffffff16565b90506000610b2e603c610b20610aef61181b565b610b12603c8b60a0015142610b049190612f79565b61180590919063ffffffff16565b61182490919063ffffffff16565b61180590919063ffffffff16565b9050600082821115610b465786602001519050610c27565b600280811115610b7f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b87608001516002811115610bbc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415610bf657610bef610bdc83896060015161182490919063ffffffff16565b88600001516117ef90919063ffffffff16565b9050610c26565b610c23610c1083896060015161182490919063ffffffff16565b886000015161183a90919063ffffffff16565b90505b5b809750505050505050505b919050565b7fdc0d7a095c4e917ecbeb7deda7c942ff9744013d419e37549215a413915e421d610c6981610c64611235565b61123d565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f4ca142703425bec1d507d5581fac3a3e61eadcbeafbd7c0a03e2897d96de1cc58184604051610d02929190612d3e565b60405180910390a1505050565b610d17611eb4565b600360008381526020019081526020016000206040518060c0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820160009054906101000a900460ff166002811115610da8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6002811115610de0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81526020016005820154815250509050919050565b80610dff816111c9565b610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590612c3e565b60405180910390fd5b610e47826109e7565b341015610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8090612d7a565b60405180910390fd5b610e91611235565b73ffffffffffffffffffffffffffffffffffffffff16610eb0836110ac565b73ffffffffffffffffffffffffffffffffffffffff161415610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe90612d9a565b60405180910390fd5b6000610f12836110ac565b9050610f1d83611850565b600360008481526020019081526020016000206000808201600090556001820160009055600282016000905560038201600090556004820160006101000a81549060ff021916905560058201600090555050610f77610728565b73ffffffffffffffffffffffffffffffffffffffff166342842e0e3033866040518463ffffffff1660e01b8152600401610fb393929190612a81565b600060405180830381600087803b158015610fcd57600080fd5b505af1158015610fe1573d6000803e3d6000fd5b505050506000610ff834610ff36110e9565b611889565b9050600061100f82346117ef90919063ffffffff16565b905061103a818473ffffffffffffffffffffffffffffffffffffffff166112da90919063ffffffff16565b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f055398db1e28fe2bca29e95358809ee348e69266e67198d3e16fa68f834e967d8734858760405161109d9493929190612e10565b60405180910390a35050505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600454905090565b7fdc0d7a095c4e917ecbeb7deda7c942ff9744013d419e37549215a413915e421d61112581611120611235565b61123d565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050826000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f4ca142703425bec1d507d5581fac3a3e61eadcbeafbd7c0a03e2897d96de1cc581846040516111bc929190612be2565b60405180910390a1505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b6112478282610903565b6112d65761126c8173ffffffffffffffffffffffffffffffffffffffff1660146118ba565b61127a8360001c60206118ba565b60405160200161128b929190612a2c565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd9190612b80565b60405180910390fd5b5050565b8047101561131d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131490612cfe565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161134390612a17565b60006040518083038185875af1925050503d8060008114611380576040519150601f19603f3d011682016040523d82523d6000602084013e611385565b606091505b50509050806113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c090612cde565b60405180910390fd5b505050565b806113d7611235565b73ffffffffffffffffffffffffffffffffffffffff166113f6826110ac565b73ffffffffffffffffffffffffffffffffffffffff161461144c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144390612c1e565b60405180910390fd5b61145582611bb4565b61145d611235565b73ffffffffffffffffffffffffffffffffffffffff167f61dc2e6e64c7a742717c1eae2958f9bc011c40d616afd06af648eff740c2b04d836040516114a29190612df5565b60405180910390a25050565b806002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f9ecfd70e9ff36df72989324a49559383d39f9290d700b10cf5ac10dcb68d2643836040516115469190612df5565b60405180910390a25050565b60008060006115618585611c79565b9250925092506000611571611d89565b9050600061157d611d98565b905060008211156115d8578185101580156115985750818410155b6115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90612c7e565b60405180910390fd5b5b60008111156116885780831115611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b90612dba565b60405180910390fd5b600c831015801561164857506000611646600c85611da290919063ffffffff16565b145b611687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167e90612cbe565b60405180910390fd5b5b60008061169e87878761169961181b565b611db8565b809250819350505060006040518060c00160405280898152602001888152602001878152602001848152602001836002811115611704577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b815260200142815250905080600360008d81526020019081526020016000206000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a81548160ff0219169083600281111561179c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555060a08201518160050155905050505050505050505050505050565b6000818310156117cc57816117ce565b825b905092915050565b60008183106117e557816117e7565b825b905092915050565b600081836117fd9190612f79565b905092915050565b600081836118139190612eee565b905092915050565b6000603c905090565b600081836118329190612f1f565b905092915050565b600081836118489190612e98565b905092915050565b6002600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550565b60006118b2826118a46127108661180590919063ffffffff16565b61182490919063ffffffff16565b905092915050565b6060600060028360026118cd9190612f1f565b6118d79190612e98565b67ffffffffffffffff811115611916577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156119485781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106119a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611a30577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611a709190612f1f565b611a7a9190612e98565b90505b6001811115611b66577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611ae2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110611b1f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611b5f906130a4565b9050611a7d565b5060008414611baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba190612ba2565b60405180910390fd5b8091505092915050565b6000611bbf826110ac565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c7557611bfd610728565b73ffffffffffffffffffffffffffffffffffffffff166342842e0e3083856040518463ffffffff1660e01b8152600401611c3993929190612a81565b600060405180830381600087803b158015611c5357600080fd5b505af1158015611c67573d6000803e3d6000fd5b50505050611c7482611850565b5b5050565b600080600080611cce86868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506000611e4d565b90506000611d2187878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506020611e4d565b90506000611d7488888080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506040611e4d565b90508282829550955095505050509250925092565b600066038d7ea4c68000905090565b6000610960905090565b60008183611db091906130ce565b905092915050565b60008084861415611dcf5760008091509150611e44565b6000611ddb87876117bc565b90506000611de988886117d6565b90506000611e0082846117ef90919063ffffffff16565b905060006002905088841415611e1557600190505b611e3a611e2b888a61182490919063ffffffff16565b8361180590919063ffffffff16565b8195509550505050505b94509492505050565b6000602082611e5c9190612e98565b83511015611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9690612d1e565b60405180910390fd5b60008260208501015190508091505092915050565b6040518060c001604052806000815260200160008152602001600081526020016000815260200160006002811115611f15577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8152602001600081525090565b600081359050611f31816131b1565b92915050565b600081359050611f46816131c8565b92915050565b600081519050611f5b816131df565b92915050565b600081359050611f70816131f6565b92915050565b60008083601f840112611f8857600080fd5b8235905067ffffffffffffffff811115611fa157600080fd5b602083019150836001820283011115611fb957600080fd5b9250929050565b600081359050611fcf8161320d565b92915050565b600060208284031215611fe757600080fd5b6000611ff584828501611f22565b91505092915050565b60008060008060006080868803121561201657600080fd5b600061202488828901611f22565b955050602061203588828901611f22565b945050604061204688828901611fc0565b935050606086013567ffffffffffffffff81111561206357600080fd5b61206f88828901611f76565b92509250509295509295909350565b60008060008060006080868803121561209657600080fd5b60006120a488828901611f22565b95505060206120b588828901611fc0565b94505060406120c688828901611f22565b935050606086013567ffffffffffffffff8111156120e357600080fd5b6120ef88828901611f76565b92509250509295509295909350565b60006020828403121561211057600080fd5b600061211e84828501611f4c565b91505092915050565b6000806040838503121561213a57600080fd5b600061214885828601611f61565b925050602061215985828601611f22565b9150509250929050565b60006020828403121561217557600080fd5b600061218384828501611fc0565b91505092915050565b6000806040838503121561219f57600080fd5b60006121ad85828601611fc0565b92505060206121be85828601611f37565b9150509250929050565b6121d181612fad565b82525050565b6121e081612fd1565b82525050565b6121ef81612fdd565b82525050565b6121fe81612fe7565b82525050565b60006122108385612e60565b935061221d838584613062565b6122268361318c565b840190509392505050565b61223a81613050565b82525050565b600061224b82612e55565b6122558185612e7c565b9350612265818560208601613071565b61226e8161318c565b840191505092915050565b600061228482612e55565b61228e8185612e8d565b935061229e818560208601613071565b80840191505092915050565b60006122b7602083612e7c565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b60006122f7603a83612e7c565b91507f4c6f636b61626c6552656365697665723a206e6f7420656e6f7567682070726960008301527f76696c6567657320746f2063616c6c20746865206d6574686f640000000000006020830152604082019050919050565b600061235d600d83612e7c565b91507f616363657373436f6e74726f6c000000000000000000000000000000000000006000830152602082019050919050565b600061239d603083612e7c565b91507f4c6f636b61626c6552656365697665723a2063616c6c6572206973206e6f742060008301527f74686520746f6b656e20686f6c646572000000000000000000000000000000006020830152604082019050919050565b6000612403602683612e7c565b91507f4c6f636b61626c6552656365697665723a20746f6b656e206d7573742062652060008301527f6c6f636b656400000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612469603383612e7c565b91507f4c6f636b61626c6552656365697665723a20756e61626c6520746f207265636560008301527f6976652074686520676976656e20746f6b656e000000000000000000000000006020830152604082019050919050565b60006124cf605d83612e7c565b91507f4261736541756374696f6e52656365697665723a20746865207374617274696e60008301527f6720707269636520616e64207468652066696e616c2070726963652063616e6e60208301527f6f74206265206c657373207468616e207765694d696e507269636528290000006040830152606082019050919050565b600061255b603483612e7c565b91507f4c6f636b61626c6552656365697665723a207468652063616c6c65722069732060008301527f6e6f7420612076616c6964206f70657261746f720000000000000000000000006020830152604082019050919050565b60006125c1604d83612e7c565b91507f4261736541756374696f6e52656365697665723a20746865207072696365206360008301527f68616e676520706572696f642073686f756c642062652061206d756c7469706c60208301527f65206f6620302e352064617973000000000000000000000000000000000000006040830152606082019050919050565b600061264d603a83612e7c565b91507f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008301527f6563697069656e74206d617920686176652072657665727465640000000000006020830152604082019050919050565b60006126b3601d83612e7c565b91507f416464726573733a20696e73756666696369656e742062616c616e63650000006000830152602082019050919050565b60006126f3601583612e7c565b91507f746f55696e743235365f6f75744f66426f756e647300000000000000000000006000830152602082019050919050565b6000612733600d83612e7c565b91507f746f6b656e436f6e7472616374000000000000000000000000000000000000006000830152602082019050919050565b6000612773600083612e71565b9150600082019050919050565b600061278d601783612e8d565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b60006127cd603383612e7c565b91507f447261676f6e4d61726b65743a20696e636f727265637420616d6f756e74207360008301527f656e7420746f2074686520636f6e7472616374000000000000000000000000006020830152604082019050919050565b6000612833605383612e7c565b91507f447261676f6e4d61726b65743a206120746f6b656e20686f6c6465722063616e60008301527f6e6f7420627579206f776e20746f6b656e2e2055736520746865206d6574686f60208301527f6420776974686472617720696e73746561642e000000000000000000000000006040830152606082019050919050565b60006128bf604b83612e7c565b91507f4261736541756374696f6e52656365697665723a20746865207072696365206360008301527f68616e676520706572696f642063616e6e6f7420657863656564206d6178546f60208301527f74616c506572696f6428290000000000000000000000000000000000000000006040830152606082019050919050565b600061294b601183612e8d565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b60c08201600082015161299460008501826129f9565b5060208201516129a760208501826129f9565b5060408201516129ba60408501826129f9565b5060608201516129cd60608501826129f9565b5060808201516129e06080850182612231565b5060a08201516129f360a08501826129f9565b50505050565b612a0281613046565b82525050565b612a1181613046565b82525050565b6000612a2282612766565b9150819050919050565b6000612a3782612780565b9150612a438285612279565b9150612a4e8261293e565b9150612a5a8284612279565b91508190509392505050565b6000602082019050612a7b60008301846121c8565b92915050565b6000606082019050612a9660008301866121c8565b612aa360208301856121c8565b612ab06040830184612a08565b949350505050565b6000608082019050612acd60008301886121c8565b612ada60208301876121c8565b612ae76040830186612a08565b8181036060830152612afa818486612204565b90509695505050505050565b6000602082019050612b1b60008301846121d7565b92915050565b6000602082019050612b3660008301846121e6565b92915050565b6000604082019050612b5160008301856121e6565b612b5e60208301846121c8565b9392505050565b6000602082019050612b7a60008301846121f5565b92915050565b60006020820190508181036000830152612b9a8184612240565b905092915050565b60006020820190508181036000830152612bbb816122aa565b9050919050565b60006020820190508181036000830152612bdb816122ea565b9050919050565b60006060820190508181036000830152612bfb81612350565b9050612c0a60208301856121c8565b612c1760408301846121c8565b9392505050565b60006020820190508181036000830152612c3781612390565b9050919050565b60006020820190508181036000830152612c57816123f6565b9050919050565b60006020820190508181036000830152612c778161245c565b9050919050565b60006020820190508181036000830152612c97816124c2565b9050919050565b60006020820190508181036000830152612cb78161254e565b9050919050565b60006020820190508181036000830152612cd7816125b4565b9050919050565b60006020820190508181036000830152612cf781612640565b9050919050565b60006020820190508181036000830152612d17816126a6565b9050919050565b60006020820190508181036000830152612d37816126e6565b9050919050565b60006060820190508181036000830152612d5781612726565b9050612d6660208301856121c8565b612d7360408301846121c8565b9392505050565b60006020820190508181036000830152612d93816127c0565b9050919050565b60006020820190508181036000830152612db381612826565b9050919050565b60006020820190508181036000830152612dd3816128b2565b9050919050565b600060c082019050612def600083018461297e565b92915050565b6000602082019050612e0a6000830184612a08565b92915050565b6000608082019050612e256000830187612a08565b612e326020830186612a08565b612e3f6040830185612a08565b612e4c6060830184612a08565b95945050505050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ea382613046565b9150612eae83613046565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ee357612ee26130ff565b5b828201905092915050565b6000612ef982613046565b9150612f0483613046565b925082612f1457612f1361312e565b5b828204905092915050565b6000612f2a82613046565b9150612f3583613046565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f6e57612f6d6130ff565b5b828202905092915050565b6000612f8482613046565b9150612f8f83613046565b925082821015612fa257612fa16130ff565b5b828203905092915050565b6000612fb882613026565b9050919050565b6000612fca82613026565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60008190506130218261319d565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061305b82613013565b9050919050565b82818337600083830152505050565b60005b8381101561308f578082015181840152602081019050613074565b8381111561309e576000848401525b50505050565b60006130af82613046565b915060008214156130c3576130c26130ff565b5b600182039050919050565b60006130d982613046565b91506130e483613046565b9250826130f4576130f361312e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000601f19601f8301169050919050565b600381106131ae576131ad61315d565b5b50565b6131ba81612fad565b81146131c557600080fd5b50565b6131d181612fbf565b81146131dc57600080fd5b50565b6131e881612fd1565b81146131f357600080fd5b50565b6131ff81612fdd565b811461320a57600080fd5b50565b61321681613046565b811461322157600080fd5b5056fea264697066735822122085f3c6106eab7614f71b4427fa96b4efc9fa4902e31d2c018e24ae1d1dd88d5464736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c713a40aa9bff56aee0e8ff9542b758d83af9fea0000000000000000000000003943cf9bd3aca41a66ec911a6395727db274856e000000000000000000000000000000000000000000000000000000000000012c
-----Decoded View---------------
Arg [0] : accessControl (address): 0xc713A40AA9bfF56aeE0E8fF9542b758d83af9fEa
Arg [1] : dragonToken (address): 0x3943cF9BD3ACA41a66eC911A6395727DB274856E
Arg [2] : fees100 (uint256): 300
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000c713a40aa9bff56aee0e8ff9542b758d83af9fea
Arg [1] : 0000000000000000000000003943cf9bd3aca41a66ec911a6395727db274856e
Arg [2] : 000000000000000000000000000000000000000000000000000000000000012c
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.