More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 6,259 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 16141473 | 2 hrs ago | IN | 0 CRO | 0.74906145 | ||||
Deposit | 16139048 | 6 hrs ago | IN | 0 CRO | 0.65701005 | ||||
Withdraw | 16138136 | 7 hrs ago | IN | 0 CRO | 0.64614245 | ||||
Withdraw | 16138134 | 7 hrs ago | IN | 0 CRO | 0.73261865 | ||||
Withdraw | 16137193 | 8 hrs ago | IN | 0 CRO | 0.7972435 | ||||
Withdraw | 16137158 | 9 hrs ago | IN | 0 CRO | 0.64582492 | ||||
Deposit | 16136832 | 9 hrs ago | IN | 0 CRO | 0.57071565 | ||||
Deposit | 16136806 | 9 hrs ago | IN | 0 CRO | 0.9021926 | ||||
Withdraw | 16135772 | 11 hrs ago | IN | 0 CRO | 0.48090645 | ||||
Withdraw | 16135224 | 12 hrs ago | IN | 0 CRO | 0.64602125 | ||||
Withdraw | 16135186 | 12 hrs ago | IN | 0 CRO | 0.64602125 | ||||
Deposit | 16133840 | 14 hrs ago | IN | 0 CRO | 0.57071565 | ||||
Withdraw | 16132897 | 15 hrs ago | IN | 0 CRO | 0.6406733 | ||||
Deposit | 16132476 | 16 hrs ago | IN | 0 CRO | 0.730331 | ||||
Withdraw | 16132464 | 16 hrs ago | IN | 0 CRO | 0.7270283 | ||||
Withdraw | 16130478 | 19 hrs ago | IN | 0 CRO | 0.56181349 | ||||
Deposit | 16129722 | 20 hrs ago | IN | 0 CRO | 0.60848965 | ||||
Withdraw | 16129668 | 20 hrs ago | IN | 0 CRO | 0.6406733 | ||||
Withdraw | 16129579 | 20 hrs ago | IN | 0 CRO | 0.64614245 | ||||
Withdraw | 16129550 | 20 hrs ago | IN | 0 CRO | 0.8649842 | ||||
Deposit | 16129545 | 20 hrs ago | IN | 0 CRO | 0.8016976 | ||||
Withdraw | 16129229 | 21 hrs ago | IN | 0 CRO | 0.57063132 | ||||
Deposit | 16129065 | 21 hrs ago | IN | 0 CRO | 0.8869012 | ||||
Deposit | 16129040 | 21 hrs ago | IN | 0 CRO | 0.60842905 | ||||
Deposit | 16128914 | 21 hrs ago | IN | 0 CRO | 0.60842905 |
Loading...
Loading
Contract Name:
MasterBaiter
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./IRewarder.sol"; import "./TackleBox.sol"; import "./IFishingLure.sol"; import "../utils/SafeMathLite.sol"; import { SIG_ROLE } from "../utils/Constants.sol"; contract MasterBaiter is AccessControl, Pausable { using SafeMathLite for uint256; using SafeERC20 for IERC20; /// Info of each user. struct UserInfo { uint256 amount; // How many LP tokens the user has provided. uint256 rewardDebt; // Reward debt } struct PoolInfo { IERC20 lpToken; //address of lp token contract IRewarder[] rewarders; uint256 allocPoint; uint256 lastRewardBlock; uint256 accFRTNPerShare;// Accumulated FRTN per share times 1e12 } IERC20 public frtn; TackleBox public tackleBox; IFishingLure public lure; // The migrator contract. uint256 public frtnPerBlock; uint256 public BONUS_MULTIPLIER = 1; PoolInfo[] public poolInfo; /// Info of each user that stakes LP tokens. mapping(uint256 => mapping(address => UserInfo)) public userInfo; // Total allocation points. Must be the sum of all allocation points in all pools. uint256 public totalAllocPoint = 0; // The block number when FRTN mining starts. uint256 public startBlock; // The ratio of single-sided FRTN pool against totalAllocPoint uint256 public frtnStakingRatio = 300; event Deposit(address indexed user, uint256 indexed pid, uint256 amount); event Withdraw(address indexed user, uint256 indexed pid, uint256 amount); event EmergencyWithdraw(address indexed user, uint256 indexed pid, uint256 amount); event AddPool(uint256 indexed pid, uint256 allocPoints, address lpToken); event UpdatePool(uint256 indexed pid, uint256 lastRewardBlock, uint256 lpSupply, uint256 accFrtnPerShare); event SetPoint(uint256 indexed pid, uint256 allocPoint); event SetRewarders(uint256 indexed pid, IRewarder[] rewarders); event AddRewarder(uint256 indexed pid, IRewarder rewarder); event RemoveRewarder(uint256 indexed pid, IRewarder rewarder); event SetFRTNPerBlock(uint256 frtnPerBlock); event SetTackleBox(address tackleBox); event SetMigrator(address migrator); event SetFrtnStakingRatio(uint256 frtnStakingRatio); constructor( IERC20 _frtn, TackleBox _tackleBox, uint256 _frtnPerBlock ) { frtn = _frtn; tackleBox = _tackleBox; frtnPerBlock = _frtnPerBlock; startBlock = block.number; _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setupRole(SIG_ROLE, msg.sender); // staking pool IRewarder[] memory rewarders; poolInfo.push(PoolInfo({ lpToken: _frtn, rewarders: rewarders, allocPoint: 1000, lastRewardBlock: startBlock, accFRTNPerShare: 0 })); totalAllocPoint = 1000; emit AddPool(0, 1000, address(_frtn)); } function poolLength() external view returns (uint256) { return poolInfo.length; } // Return reward multiplier over the given _from to _to block. function getMultiplier(uint256 _from, uint256 _to) public view returns (uint256) { return _to.sub(_from).mul(BONUS_MULTIPLIER); } function deposit(uint256 _pid, uint256 _amount) external whenNotPaused { require(_pid != 0, "deposit FRTN by staking"); PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; updatePool(_pid); uint256 pending = user.amount.mul(pool.accFRTNPerShare).div(1e12).sub(user.rewardDebt); if (pending > 0) { safeFrtnTransfer(msg.sender, pending); } // Get rewarder rewards uint256 newAmt = user.amount.add(_amount); IRewarder[] memory _rewarders = pool.rewarders; for (uint256 i = 0; i < _rewarders.length; i++) { _rewarders[i].onReward(_pid, msg.sender, newAmt); } if (_amount > 0) { pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount); } user.amount = user.amount.add(_amount); user.rewardDebt = user.amount.mul(pool.accFRTNPerShare).div(1e12); emit Deposit(msg.sender, _pid, _amount); } function withdraw(uint256 _pid, uint256 _amount) external whenNotPaused { require(_pid != 0, "withdraw FRTN by unstaking"); PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; require(user.amount >= _amount, "withdraw amount greater than balanace"); updatePool(_pid); if(user.amount > 0){ uint256 pending = user.amount.mul(pool.accFRTNPerShare).div(1e12).sub(user.rewardDebt); if (pending > 0) { safeFrtnTransfer(msg.sender, pending); } // Get rewarder rewards uint256 newAmt = user.amount.sub(_amount); IRewarder[] memory rewarders = pool.rewarders; for (uint256 i = 0; i < rewarders.length; i++) { rewarders[i].onReward(_pid, msg.sender, newAmt); } } if (_amount > 0) { user.amount = user.amount.sub(_amount); pool.lpToken.safeTransfer(address(msg.sender), _amount); } user.rewardDebt = user.amount.mul(pool.accFRTNPerShare).div(1e12); emit Withdraw(msg.sender, _pid, _amount); } //Deposit FRTN tokens for staking function enterStaking(uint256 _amount) public whenNotPaused { PoolInfo storage pool = poolInfo[0]; UserInfo storage user = userInfo[0][msg.sender]; updatePool(0); if (user.amount > 0) { uint256 pending = user.amount.mul(pool.accFRTNPerShare).div(1e12).sub(user.rewardDebt); if(pending > 0) { safeFrtnTransfer(msg.sender, pending); } } if(_amount > 0) { pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount); user.amount = user.amount.add(_amount); } user.rewardDebt = user.amount.mul(pool.accFRTNPerShare).div(1e12); emit Deposit(msg.sender, 0, _amount); } // Withdraw FRTN tokens from STAKING. function leaveStaking(uint256 _amount) public whenNotPaused { PoolInfo storage pool = poolInfo[0]; UserInfo storage user = userInfo[0][msg.sender]; require(user.amount >= _amount, "withdraw: not good"); updatePool(0); uint256 pending = user.amount.mul(pool.accFRTNPerShare).div(1e12).sub(user.rewardDebt); if(pending > 0) { safeFrtnTransfer(msg.sender, pending); } if(_amount > 0) { user.amount = user.amount.sub(_amount); pool.lpToken.safeTransfer(address(msg.sender), _amount); } user.rewardDebt = user.amount.mul(pool.accFRTNPerShare).div(1e12); emit Withdraw(msg.sender, 0, _amount); } /// @notice withdraw without caring about rewards. EMERGENCY ONLY. /// @dev if the issue comes from craftsman token function emergencyWithdraw(uint256 _pid) external { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; uint256 amount = user.amount; user.amount = 0; user.rewardDebt = 0; pool.lpToken.safeTransfer(address(msg.sender), amount); emit EmergencyWithdraw(msg.sender, _pid, amount); } function massUpdatePools() public { uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; ++pid) { updatePool(pid); } } function updatePool(uint256 _pid) public { PoolInfo storage pool = poolInfo[_pid]; if (block.number <= pool.lastRewardBlock) { return; } uint256 lpSupply = pool.lpToken.balanceOf(address(this)); if (lpSupply == 0) { pool.lastRewardBlock = block.number; return; } uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); uint256 vvsReward = multiplier.mul(frtnPerBlock).mul(pool.allocPoint).div(totalAllocPoint); pool.accFRTNPerShare = pool.accFRTNPerShare.add(vvsReward.mul(1e12).div(lpSupply)); pool.lastRewardBlock = block.number; emit UpdatePool(_pid, pool.lastRewardBlock, lpSupply, pool.accFRTNPerShare); } function pendingFRTN(uint256 _pid, address _user) public view returns (uint256) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accVVSPerShare = pool.accFRTNPerShare; uint256 lpSupply = pool.lpToken.balanceOf(address(this)); if (block.number > pool.lastRewardBlock && lpSupply != 0) { uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); uint256 vvsReward = multiplier.mul(frtnPerBlock).mul(pool.allocPoint).div(totalAllocPoint); accVVSPerShare = accVVSPerShare.add(vvsReward.mul(1e12).div(lpSupply)); } return user.amount.mul(accVVSPerShare).div(1e12).sub(user.rewardDebt); } /// @notice check if rewarder is in pool /// @return bool if rewarder is found /// @return uint256 index of rewarder if found function isRewarderInPool(uint256 _pid, IRewarder _rewarder) public view returns (bool, uint256) { PoolInfo memory pool = poolInfo[_pid]; for (uint256 i = 0; i < pool.rewarders.length; i++) { if (address(pool.rewarders[i]) == address(_rewarder)) { return (true, i); } } return (false, 0); } /// @notice returns all pending token reward for the user /// @return array of (token address, pending token amount) function pendingTokens(uint256 _pid, address _user) external view returns (address[] memory, uint256[] memory) { PoolInfo memory pool = poolInfo[_pid]; // +1 in array to include VVS reward from craftsman uint256 rewardLength = pool.rewarders.length; address[] memory rewardTokens = new address[](rewardLength + 1); uint256[] memory pendingAmounts = new uint256[](rewardLength + 1); // Check on VVS reward rewardTokens[0] = address(frtn); pendingAmounts[0] = pendingFRTN(_pid, _user); // Check from each rewarder IRewarder[] memory rewarders = pool.rewarders; for (uint256 i = 0; i < rewarders.length; i++) { (address token, uint256 amount) = rewarders[i].pendingToken(_pid, _user); rewardTokens[i + 1] = token; pendingAmounts[i + 1] = amount; } return (rewardTokens, pendingAmounts); } // Migrate lp token to another lp contract. Can be called by anyone. We trust that migrator contract is good. function migrate(uint256 _pid) public { require(address(lure) != address(0), "migrate: no migrator"); PoolInfo storage pool = poolInfo[_pid]; IERC20 lpToken = pool.lpToken; uint256 bal = lpToken.balanceOf(address(this)); lpToken.safeApprove(address(lure), bal); IERC20 newLpToken = lure.migrate(lpToken); require(bal == newLpToken.balanceOf(address(this)), "migrate: bad"); pool.lpToken = newLpToken; } //admin function setTackleBox(TackleBox _tackleBox) external onlyRole(DEFAULT_ADMIN_ROLE) { tackleBox = _tackleBox; emit SetTackleBox(address(_tackleBox)); } function transferTackleBoxOwnership() external onlyRole(DEFAULT_ADMIN_ROLE) { tackleBox.transferOwnership(msg.sender); } function setMigrator(IFishingLure _migrator) external onlyRole(DEFAULT_ADMIN_ROLE) { lure = _migrator; emit SetMigrator(address(_migrator)); } function setFrtnStakingRatio(uint256 _frtnStakingRatio) external onlyRole(DEFAULT_ADMIN_ROLE) { require(_frtnStakingRatio <= 2500, "Invalid ratio"); //wanted 0-25% frtnStakingRatio = _frtnStakingRatio; emit SetFrtnStakingRatio(_frtnStakingRatio); updateStakingPool(); } // XXX DO NOT add the same LP token more than once. Rewards will be messed up if you do. function add( uint256 _allocPoint, IERC20 _lpToken ) external onlyRole(DEFAULT_ADMIN_ROLE) { massUpdatePools(); uint256 lastRewardBlock = block.number > startBlock ? block.number : startBlock; totalAllocPoint = totalAllocPoint.add(_allocPoint); IRewarder[] memory rewarders; poolInfo.push(PoolInfo({ lpToken: _lpToken, rewarders: rewarders, allocPoint: _allocPoint, lastRewardBlock: lastRewardBlock, accFRTNPerShare: 0 })); updateStakingPool(); emit AddPool(poolInfo.length - 1, _allocPoint, address(_lpToken)); } /// @notice Add a new pid with rewarder /// @param _pid pid to update /// @param _rewarders the list of rewarder to set /// @param _withUpdate True if massUpdatePools should be called prior to pool updates. function addRewarders( uint256 _pid, IRewarder[] memory _rewarders, bool _withUpdate ) external onlyRole(DEFAULT_ADMIN_ROLE) { require(address(poolInfo[_pid].lpToken) != address(0), "pool not exist"); require(poolInfo[_pid].rewarders.length == 0, "rewarders already set"); if (_withUpdate) { massUpdatePools(); } poolInfo[_pid].rewarders = _rewarders; emit SetRewarders(_pid, _rewarders); } /// @notice add a rewarder to the pid /// @param _pid pid to add rewarder /// @param _rewarder address of rewarder to add function addRewarder(uint256 _pid, IRewarder _rewarder) external onlyRole(DEFAULT_ADMIN_ROLE) { (bool found, ) = isRewarderInPool(_pid, _rewarder); require(found == false, "Rewarder exist"); poolInfo[_pid].rewarders.push(_rewarder); emit AddRewarder(_pid, _rewarder); } /// @notice remove a rewarder from the pid, removing rewarder will save gas for user /// @dev removing rewarder removes any user unclaimed rewarder reward! /// @param _pid pid to remove rewarder /// @param _rewarder address of rewarder to remove function removeRewarder(uint256 _pid, IRewarder _rewarder) external onlyRole(DEFAULT_ADMIN_ROLE) { (bool found, uint256 foundIndex) = isRewarderInPool(_pid, _rewarder); require(found, "No rewarder found"); PoolInfo storage pool = poolInfo[_pid]; for (uint256 i = foundIndex; i < pool.rewarders.length - 1; i++) { pool.rewarders[i] = pool.rewarders[i + 1]; } pool.rewarders.pop(); emit RemoveRewarder(_pid, _rewarder); } // staff function pause() external onlyRole(SIG_ROLE) { _pause(); } function unpause() external onlyRole(SIG_ROLE) { _unpause(); } function setFrtnPerBlock(uint256 _frtnPerBlock) external onlyRole(SIG_ROLE) { frtnPerBlock = _frtnPerBlock; emit SetFRTNPerBlock(_frtnPerBlock); } // Update the given pool's FRTN allocation point. Can only be called by staff. function set(uint256 _pid, uint256 _allocPoint) public onlyRole(SIG_ROLE) { massUpdatePools(); uint256 prevAllocPoint = poolInfo[_pid].allocPoint; poolInfo[_pid].allocPoint = _allocPoint; if (prevAllocPoint != _allocPoint) { totalAllocPoint = totalAllocPoint.sub(prevAllocPoint).add(_allocPoint); updateStakingPool(); } emit SetPoint(_pid, _allocPoint); } //internal function updateStakingPool() internal { uint256 length = poolInfo.length; uint256 points = 0; for (uint256 pid = 1; pid < length; ++pid) { points = points.add(poolInfo[pid].allocPoint); } if (points != 0) { points = points.mul(frtnStakingRatio).div(10000 - frtnStakingRatio); totalAllocPoint = totalAllocPoint.sub(poolInfo[0].allocPoint).add(points); poolInfo[0].allocPoint = points; emit SetPoint(0, points); } } function safeFrtnTransfer(address _to, uint256 _amount) internal { tackleBox.safeFrtnTransfer(_to, _amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(account), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @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. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @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 revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * May emit a {RoleGranted} event. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) 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 // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) 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 // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) 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 // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @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 == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; pragma solidity ^0.8.4; interface IFishingLure { function migrate(IERC20 token) external returns (IERC20); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface IRewarder { function onReward( uint256 _pid, address _user, uint256 _amount ) external; function pendingToken(uint256 pid, address user) external view returns (address rewardToken, uint256 amount); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract TackleBox is Ownable { // The FRTN TOKEN! IERC20 public frtn; constructor( IERC20 _frtn ) { frtn = _frtn; } // Safe FRTN transfer function, just in case if rounding error causes pool to not have enough VVSs. function safeFrtnTransfer(address _to, uint256 _amount) public onlyOwner { uint256 frtnBalance = frtn.balanceOf(address(this)); require(frtnBalance >= _amount, "TackleBox: insufficient balance"); frtn.transfer(_to, _amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; //Roles bytes32 constant UPGRADER_ROLE = keccak256("UPGRADER_ROLE"); bytes32 constant SIG_ROLE = keccak256("SIG_ROLE"); bytes32 constant STAFF_ROLE = keccak256("STAFF_ROLE"); bytes32 constant SERVER_ROLE = keccak256("SERVER_ROLE"); //Scale to be used with SafePct uint16 constant PORT_SCALE = 10_000;
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; library SafeMathLite{ /** * @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; } }
{ "optimizer": { "enabled": true, "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":"contract IERC20","name":"_frtn","type":"address"},{"internalType":"contract TackleBox","name":"_tackleBox","type":"address"},{"internalType":"uint256","name":"_frtnPerBlock","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"allocPoints","type":"uint256"},{"indexed":false,"internalType":"address","name":"lpToken","type":"address"}],"name":"AddPool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"contract IRewarder","name":"rewarder","type":"address"}],"name":"AddRewarder","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"contract IRewarder","name":"rewarder","type":"address"}],"name":"RemoveRewarder","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"frtnPerBlock","type":"uint256"}],"name":"SetFRTNPerBlock","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"frtnStakingRatio","type":"uint256"}],"name":"SetFrtnStakingRatio","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"migrator","type":"address"}],"name":"SetMigrator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"allocPoint","type":"uint256"}],"name":"SetPoint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"contract IRewarder[]","name":"rewarders","type":"address[]"}],"name":"SetRewarders","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tackleBox","type":"address"}],"name":"SetTackleBox","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lpSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"accFrtnPerShare","type":"uint256"}],"name":"UpdatePool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"BONUS_MULTIPLIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IERC20","name":"_lpToken","type":"address"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"contract IRewarder","name":"_rewarder","type":"address"}],"name":"addRewarder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"contract IRewarder[]","name":"_rewarders","type":"address[]"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"addRewarders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"enterStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"frtn","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"frtnPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"frtnStakingRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"getMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","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":"_pid","type":"uint256"},{"internalType":"contract IRewarder","name":"_rewarder","type":"address"}],"name":"isRewarderInPool","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"leaveStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lure","outputs":[{"internalType":"contract IFishingLure","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"migrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingFRTN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingTokens","outputs":[{"internalType":"address[]","name":"","type":"address[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IERC20","name":"lpToken","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accFRTNPerShare","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"contract IRewarder","name":"_rewarder","type":"address"}],"name":"removeRewarder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frtnPerBlock","type":"uint256"}],"name":"setFrtnPerBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frtnStakingRatio","type":"uint256"}],"name":"setFrtnStakingRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IFishingLure","name":"_migrator","type":"address"}],"name":"setMigrator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract TackleBox","name":"_tackleBox","type":"address"}],"name":"setTackleBox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tackleBox","outputs":[{"internalType":"contract TackleBox","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transferTackleBoxOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526001600555600060085561012c600a553480156200002157600080fd5b50604051620037c9380380620037c983398101604081905262000044916200032b565b600180546001600160a81b0319166101006001600160a01b038681169190910291909117909155600280546001600160a01b03191691841691909117905560048190554360095562000098600033620001fa565b620000c47fce80e833f1c3f0c050749e11fed407dc3dacd109611ea11097e9f5eb6abd9aad33620001fa565b6040805160a0810182526001600160a01b038581168252606060208084018281526103e8958501959095526009548285015260006080850181905260068054600181018255915284517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f600590920291820180546001600160a01b0319169190951617845594518051929562000184937ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d40909101929190910190620002aa565b506040828101516002830155606083015160038301556080909201516004909101556103e8600881905581519081526001600160a01b03861660208201526000917f44f06e62408d549dc25356ed3ab6326c665b66ce934c0e8d13bd1957a6031d4c910160405180910390a2505050506200038b565b6200020682826200020a565b5050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1662000206576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620002663390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b82805482825590600052602060002090810192821562000302579160200282015b828111156200030257825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620002cb565b506200031092915062000314565b5090565b5b8082111562000310576000815560010162000315565b60008060006060848603121562000340578283fd5b83516200034d8162000372565b6020850151909350620003608162000372565b80925050604084015190509250925092565b6001600160a01b03811681146200038857600080fd5b50565b61342e806200039b6000396000f3fe608060405234801561001057600080fd5b50600436106102695760003560e01c806351eb05a6116101515780638dbb1e3a116100c3578063b2d0a06811610087578063b2d0a0681461057e578063bebf382214610591578063d547741f1461059a578063e2bbb158146105ad578063e7a2e3e0146105c0578063ffcd4263146105d357600080fd5b80638dbb1e3a146104f657806391d148541461050957806393f1a40b1461051c5780639b8379c514610563578063a217fddf1461057657600080fd5b8063630b5ba111610115578063630b5ba1146104aa57806364f05239146104b257806378a37b86146104ba5780638456cb59146104d257806387e75836146104da5780638aa28550146104ed57600080fd5b806351eb05a6146104465780635312ea8e1461045957806358c2b7f21461046c5780635c975abb1461047557806360256d181461048057600080fd5b8063248a9ca3116101ea57806336f1cbd3116101ae57806336f1cbd3146103e95780633f4ba83a146103fc57806341441d3b14610404578063441a3e7014610417578063454b06081461042a57806348cd4cb11461043d57600080fd5b8063248a9ca31461037a578063261d3ec61461039d5780632b8bbbe8146103b05780632f2ff15d146103c357806336568abe146103d657600080fd5b806316b9d1c91161023157806316b9d1c91461030d57806317caf6f11461032057806319c802f3146103295780631ab06ee51461035457806323cf31181461036757600080fd5b806301ffc9a71461026e5780630580a4de14610296578063081e3eda146102ab5780631058d281146102bd5780631526fe27146102d0575b600080fd5b61028161027c366004612fad565b6105f4565b60405190151581526020015b60405180910390f35b6102a96102a4366004612f66565b61062b565b005b6006545b60405190815260200161028d565b6102a96102cb366004612f66565b610680565b6102e36102de366004612f66565b610816565b604080516001600160a01b039095168552602085019390935291830152606082015260800161028d565b6102af61031b366004612f7e565b61085a565b6102af60085481565b60025461033c906001600160a01b031681565b6040516001600160a01b03909116815260200161028d565b6102a9610362366004613108565b6109dc565b6102a9610375366004612ff1565b610adb565b6102af610388366004612f66565b60009081526020819052604090206001015490565b6102a96103ab366004613025565b610b34565b6102a96103be366004612f7e565b610cc3565b6102a96103d1366004612f7e565b610e38565b6102a96103e4366004612f7e565b610e62565b6102a96103f7366004612f66565b610ee0565b6102a9610f6d565b6102a9610412366004612f66565b610f90565b6102a9610425366004613108565b6110d5565b6102a9610438366004612f66565b6113cb565b6102af60095481565b6102a9610454366004612f66565b611640565b6102a9610467366004612f66565b6117b8565b6102af60045481565b60015460ff16610281565b61049361048e366004612f7e565b61185f565b60408051921515835260208301919091520161028d565b6102a96119b4565b6102a96119db565b60015461033c9061010090046001600160a01b031681565b6102a9611a46565b60035461033c906001600160a01b031681565b6102af60055481565b6102af610504366004613108565b611a66565b610281610517366004612f7e565b611a81565b61054e61052a366004612f7e565b60076020908152600092835260408084209091529082529020805460019091015482565b6040805192835260208301919091520161028d565b6102a9610571366004612f7e565b611aaa565b6102af600081565b6102a961058c366004612ff1565b611c8a565b6102af600a5481565b6102a96105a8366004612f7e565b611ce3565b6102a96105bb366004613108565b611d08565b6102a96105ce366004612f7e565b611fa1565b6105e66105e1366004612f7e565b61208b565b60405161028d9291906131ba565b60006001600160e01b03198216637965db0b60e01b148061062557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000805160206133d983398151915261064381612422565b60048290556040518281527f9eae40036d4e99670ba022c57a1a84252d020991979e50d420dd98d7b96893fe906020015b60405180910390a15050565b61068861242c565b600060066000815481106106ac57634e487b7160e01b600052603260045260246000fd5b600091825260208083203384527f6d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6df90915260409092208054600590920290920192508311156107375760405162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b60448201526064015b60405180910390fd5b6107416000611640565b600061077b826001015461077564e8d4a5100061076f8760040154876000015461247490919063ffffffff16565b90612480565b9061248c565b9050801561078d5761078d3382612498565b83156107b757815461079f908561248c565b825582546107b7906001600160a01b03163386612502565b600483015482546107d29164e8d4a510009161076f91612474565b600183015560405184815260009033907ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568906020015b60405180910390a350505050565b6006818154811061082657600080fd5b600091825260209091206005909102018054600282015460038301546004909301546001600160a01b039092169350919084565b6000806006848154811061087e57634e487b7160e01b600052603260045260246000fd5b600091825260208083208784526007825260408085206001600160a01b0389811687529352808520600460059590950290920184810154815492516370a0823160e01b8152309681019690965290965091949193919216906370a082319060240160206040518083038186803b1580156108f757600080fd5b505afa15801561090b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092f919061300d565b905083600301544311801561094357508015155b156109a9576000610958856003015443611a66565b9050600061098560085461076f886002015461097f6004548761247490919063ffffffff16565b90612474565b90506109a461099d8461076f8464e8d4a51000612474565b8590612565565b935050505b6109d1836001015461077564e8d4a5100061076f86886000015461247490919063ffffffff16565b979650505050505050565b6000805160206133d98339815191526109f481612422565b6109fc6119b4565b600060068481548110610a1f57634e487b7160e01b600052603260045260246000fd5b90600052602060002090600502016002015490508260068581548110610a5557634e487b7160e01b600052603260045260246000fd5b906000526020600020906005020160020181905550828114610a9b57610a9083610a8a8360085461248c90919063ffffffff16565b90612565565b600855610a9b612571565b837fc6a09ced79a68483c1c7fb34c97a6cff1cfdffc7b056a7e7ee5a676420556f6984604051610acd91815260200190565b60405180910390a250505050565b6000610ae681612422565b600380546001600160a01b0319166001600160a01b0384169081179091556040519081527ff40543f3e605deae7fbca26db18ff1de07eda2925d68655836eae4c167444e3290602001610674565b6000610b3f81612422565b60006001600160a01b031660068581548110610b6b57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600590910201546001600160a01b03161415610bc45760405162461bcd60e51b815260206004820152600e60248201526d1c1bdbdb081b9bdd08195e1a5cdd60921b604482015260640161072e565b60068481548110610be557634e487b7160e01b600052603260045260246000fd5b600091825260209091206001600590920201015415610c3e5760405162461bcd60e51b81526020600482015260156024820152741c995dd85c99195c9cc8185b1c9958591e481cd95d605a1b604482015260640161072e565b8115610c4c57610c4c6119b4565b8260068581548110610c6e57634e487b7160e01b600052603260045260246000fd5b90600052602060002090600502016001019080519060200190610c92929190612e88565b50837f6c5ce3f26179b7fa31602098f4e566c4f357a88e42b7d29e51c1cdbb868ff03484604051610acd919061323d565b6000610cce81612422565b610cd66119b4565b60006009544311610ce957600954610ceb565b435b600854909150610cfb9085612565565b6008556040805160a0810182526001600160a01b0385811682526060602080840182815294840189905281840186905260006080850181905260068054600181018255915284517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f600590920291820180546001600160a01b03191691909516178455945180519295610db7937ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d40909101929190910190612e88565b506040820151816002015560608201518160030155608082015181600401555050610de0612571565b600654610def90600190613314565b604080518781526001600160a01b03871660208201527f44f06e62408d549dc25356ed3ab6326c665b66ce934c0e8d13bd1957a6031d4c91015b60405180910390a25050505050565b600082815260208190526040902060010154610e5381612422565b610e5d83836126cb565b505050565b6001600160a01b0381163314610ed25760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161072e565b610edc828261274f565b5050565b6000610eeb81612422565b6109c4821115610f2d5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c696420726174696f60981b604482015260640161072e565b600a8290556040518281527f2b1916385d2954473d2e606f01e8ea44f1095a1ea94443b70527861a07fb34339060200160405180910390a1610edc612571565b6000805160206133d9833981519152610f8581612422565b610f8d6127b4565b50565b610f9861242c565b60006006600081548110610fbc57634e487b7160e01b600052603260045260246000fd5b600091825260208083203384527f6d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6df9091526040832060059092020192509061100390611640565b80541561104c576000611038826001015461077564e8d4a5100061076f8760040154876000015461247490919063ffffffff16565b9050801561104a5761104a3382612498565b505b8215611078578154611069906001600160a01b0316333086612806565b80546110759084612565565b81555b600482015481546110939164e8d4a510009161076f91612474565b600182015560405183815260009033907f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159060200160405180910390a3505050565b6110dd61242c565b8161112a5760405162461bcd60e51b815260206004820152601a60248201527f7769746864726177204652544e20627920756e7374616b696e67000000000000604482015260640161072e565b60006006838154811061114d57634e487b7160e01b600052603260045260246000fd5b6000918252602080832086845260078252604080852033865290925292208054600590920290920192508311156111d45760405162461bcd60e51b815260206004820152602560248201527f776974686472617720616d6f756e742067726561746572207468616e2062616c604482015264616e61636560d81b606482015260840161072e565b6111dd84611640565b80541561134d576000611212826001015461077564e8d4a5100061076f8760040154876000015461247490919063ffffffff16565b90508015611224576112243382612498565b8154600090611233908661248c565b905060008460010180548060200260200160405190810160405280929190818152602001828054801561128f57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611271575b5050505050905060005b8151811015611348578181815181106112c257634e487b7160e01b600052603260045260246000fd5b6020908102919091010151604051633d2f88fd60e11b8152600481018a9052336024820152604481018590526001600160a01b0390911690637a5f11fa90606401600060405180830381600087803b15801561131d57600080fd5b505af1158015611331573d6000803e3d6000fd5b5050505080806113409061336e565b915050611299565b505050505b821561137757805461135f908461248c565b81558154611377906001600160a01b03163385612502565b600482015481546113929164e8d4a510009161076f91612474565b6001820155604051838152849033907ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b56890602001610808565b6003546001600160a01b031661141a5760405162461bcd60e51b815260206004820152601460248201527336b4b3b930ba329d1037379036b4b3b930ba37b960611b604482015260640161072e565b60006006828154811061143d57634e487b7160e01b600052603260045260246000fd5b6000918252602082206005919091020180546040516370a0823160e01b81523060048201529193506001600160a01b0316919082906370a082319060240160206040518083038186803b15801561149357600080fd5b505afa1580156114a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114cb919061300d565b6003549091506114e8906001600160a01b03848116911683612844565b60035460405163ce5494bb60e01b81526001600160a01b038481166004830152600092169063ce5494bb90602401602060405180830381600087803b15801561153057600080fd5b505af1158015611544573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115689190612fd5565b6040516370a0823160e01b81523060048201529091506001600160a01b038216906370a082319060240160206040518083038186803b1580156115aa57600080fd5b505afa1580156115be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e2919061300d565b821461161f5760405162461bcd60e51b815260206004820152600c60248201526b1b5a59dc985d194e8818985960a21b604482015260640161072e565b83546001600160a01b0319166001600160a01b039190911617909255505050565b60006006828154811061166357634e487b7160e01b600052603260045260246000fd5b9060005260206000209060050201905080600301544311611682575050565b80546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156116c557600080fd5b505afa1580156116d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116fd919061300d565b90508061170f57504360039091015550565b600061171f836003015443611a66565b9050600061174660085461076f866002015461097f6004548761247490919063ffffffff16565b905061176961175e8461076f8464e8d4a51000612474565b600486015490612565565b600485018190554360038601819055604080519182526020820186905281019190915285907f3be3541fc42237d611b30329040bfa4569541d156560acdbbae57640d20b8f4690606001610e29565b6000600682815481106117db57634e487b7160e01b600052603260045260246000fd5b60009182526020808320858452600782526040808520338087529352842080548582556001820195909555600590930201805490945091929161182b916001600160a01b03919091169083612502565b604051818152849033907fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae059590602001610808565b60008060006006858154811061188557634e487b7160e01b600052603260045260246000fd5b60009182526020918290206040805160a081018252600590930290910180546001600160a01b0316835260018101805483518187028101870190945280845293949193858301939283018282801561190657602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116118e8575b505050505081526020016002820154815260200160038201548152602001600482015481525050905060005b8160200151518110156119a357846001600160a01b03168260200151828151811061196d57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03161415611991576001935091506119ad9050565b8061199b8161336e565b915050611932565b5060008092509250505b9250929050565b60065460005b81811015610edc576119cb81611640565b6119d48161336e565b90506119ba565b60006119e681612422565b60025460405163f2fde38b60e01b81523360048201526001600160a01b039091169063f2fde38b90602401600060405180830381600087803b158015611a2b57600080fd5b505af1158015611a3f573d6000803e3d6000fd5b5050505050565b6000805160206133d9833981519152611a5e81612422565b610f8d612968565b600554600090611a7a9061097f848661248c565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6000611ab581612422565b600080611ac2858561185f565b9150915081611b075760405162461bcd60e51b8152602060048201526011602482015270139bc81c995dd85c99195c88199bdd5b99607a1b604482015260640161072e565b600060068681548110611b2a57634e487b7160e01b600052603260045260246000fd5b9060005260206000209060050201905060008290505b600182810154611b509190613314565b811015611bfd5781600101816001611b6891906132bd565b81548110611b8657634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001830180546001600160a01b039092169183908110611bc257634e487b7160e01b600052603260045260246000fd5b600091825260209091200180546001600160a01b0319166001600160a01b039290921691909117905580611bf58161336e565b915050611b40565b5080600101805480611c1f57634e487b7160e01b600052603160045260246000fd5b6000828152602090819020600019908301810180546001600160a01b03191690559091019091556040516001600160a01b038716815287917fcb84b447f762f6ea5727904c33ecc1a6628dfb39ec6e2db3e0c5b21b400fd769910160405180910390a2505050505050565b6000611c9581612422565b600280546001600160a01b0319166001600160a01b0384169081179091556040519081527fdf10836f47d34142c4a91afa72831184975a891e5f13e7ea4b04e1fdee2e3faa90602001610674565b600082815260208190526040902060010154611cfe81612422565b610e5d838361274f565b611d1061242c565b81611d5d5760405162461bcd60e51b815260206004820152601760248201527f6465706f736974204652544e206279207374616b696e67000000000000000000604482015260640161072e565b600060068381548110611d8057634e487b7160e01b600052603260045260246000fd5b60009182526020808320868452600782526040808520338652909252922060059091029091019150611db184611640565b6000611ddf826001015461077564e8d4a5100061076f8760040154876000015461247490919063ffffffff16565b90508015611df157611df13382612498565b8154600090611e009086612565565b9050600084600101805480602002602001604051908101604052809291908181526020018280548015611e5c57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611e3e575b5050505050905060005b8151811015611f1557818181518110611e8f57634e487b7160e01b600052603260045260246000fd5b6020908102919091010151604051633d2f88fd60e11b8152600481018a9052336024820152604481018590526001600160a01b0390911690637a5f11fa90606401600060405180830381600087803b158015611eea57600080fd5b505af1158015611efe573d6000803e3d6000fd5b505050508080611f0d9061336e565b915050611e66565b508515611f33578454611f33906001600160a01b0316333089612806565b8354611f3f9087612565565b8085556004860154611f5c9164e8d4a510009161076f9190612474565b6001850155604051868152879033907f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159060200160405180910390a350505050505050565b6000611fac81612422565b6000611fb8848461185f565b5090508015611ffa5760405162461bcd60e51b815260206004820152600e60248201526d14995dd85c99195c88195e1a5cdd60921b604482015260640161072e565b6006848154811061201b57634e487b7160e01b600052603260045260246000fd5b600091825260208083206001600593909302018201805492830181558352918290200180546001600160a01b0386166001600160a01b0319909116811790915560405190815285917f207d27439436ae9975d3a427dc7bc629ad4a4549b033e591cba0fcf3f9071e279101610acd565b6060806000600685815481106120b157634e487b7160e01b600052603260045260246000fd5b60009182526020918290206040805160a081018252600590930290910180546001600160a01b0316835260018101805483518187028101870190945280845293949193858301939283018282801561213257602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612114575b505050505081526020016002820154815260200160038201548152602001600482015481525050905060008160200151519050600081600161217491906132bd565b67ffffffffffffffff81111561219a57634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156121c3578160200160208202803683370190505b50905060006121d38360016132bd565b67ffffffffffffffff8111156121f957634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015612222578160200160208202803683370190505b50905060018054906101000a90046001600160a01b03168260008151811061225a57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b031681525050612284888861085a565b816000815181106122a557634e487b7160e01b600052603260045260246000fd5b60200260200101818152505060008460200151905060005b8151811015612413576000808383815181106122e957634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166348e43af48d8d6040518363ffffffff1660e01b81526004016123309291909182526001600160a01b0316602082015260400190565b604080518083038186803b15801561234757600080fd5b505afa15801561235b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061237f9190612f1d565b909250905081866123918560016132bd565b815181106123af57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039092166020928302919091019091015280856123d48560016132bd565b815181106123f257634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505050808061240b9061336e565b9150506122bd565b50919890975095505050505050565b610f8d81336129a3565b60015460ff16156124725760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161072e565b565b6000611a7a82846132f5565b6000611a7a82846132d5565b6000611a7a8284613314565b60025460405163f514795560e01b81526001600160a01b038481166004830152602482018490529091169063f514795590604401600060405180830381600087803b1580156124e657600080fd5b505af11580156124fa573d6000803e3d6000fd5b505050505050565b6040516001600160a01b038316602482015260448101829052610e5d90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526129fc565b6000611a7a82846132bd565b600654600060015b828110156125d8576125c6600682815481106125a557634e487b7160e01b600052603260045260246000fd5b9060005260206000209060050201600201548361256590919063ffffffff16565b91506125d18161336e565b9050612579565b508015610edc57612600600a546127106125f29190613314565b600a5461076f908490612474565b905061264e81610a8a600660008154811061262b57634e487b7160e01b600052603260045260246000fd5b90600052602060002090600502016002015460085461248c90919063ffffffff16565b60088190555080600660008154811061267757634e487b7160e01b600052603260045260246000fd5b90600052602060002090600502016002018190555060007fc6a09ced79a68483c1c7fb34c97a6cff1cfdffc7b056a7e7ee5a676420556f69826040516126bf91815260200190565b60405180910390a25050565b6126d58282611a81565b610edc576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905561270b3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6127598282611a81565b15610edc576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6127bc612ace565b6001805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6040516001600160a01b038085166024830152831660448201526064810182905261283e9085906323b872dd60e01b9060840161252e565b50505050565b8015806128cd5750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e9060440160206040518083038186803b15801561289357600080fd5b505afa1580156128a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128cb919061300d565b155b6129385760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b606482015260840161072e565b6040516001600160a01b038316602482015260448101829052610e5d90849063095ea7b360e01b9060640161252e565b61297061242c565b6001805460ff1916811790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258336127e9565b6129ad8282611a81565b610edc576129ba81612b17565b6129c5836020612b29565b6040516020016129d6929190613145565b60408051601f198184030181529082905262461bcd60e51b825261072e9160040161328a565b6000612a51826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612d0b9092919063ffffffff16565b805190915015610e5d5780806020019051810190612a6f9190612f4a565b610e5d5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161072e565b60015460ff166124725760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161072e565b60606106256001600160a01b03831660145b60606000612b388360026132f5565b612b439060026132bd565b67ffffffffffffffff811115612b6957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612b93576020820181803683370190505b509050600360fc1b81600081518110612bbc57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612bf957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000612c1d8460026132f5565b612c289060016132bd565b90505b6001811115612cbc576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612c6a57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110612c8e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93612cb581613357565b9050612c2b565b508315611a7a5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161072e565b6060612d1a8484600085612d22565b949350505050565b606082471015612d835760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161072e565b600080866001600160a01b03168587604051612d9f9190613129565b60006040518083038185875af1925050503d8060008114612ddc576040519150601f19603f3d011682016040523d82523d6000602084013e612de1565b606091505b50915091506109d18783838760608315612e59578251612e52576001600160a01b0385163b612e525760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161072e565b5081612d1a565b612d1a8383815115612e6e5781518083602001fd5b8060405162461bcd60e51b815260040161072e919061328a565b828054828255906000526020600020908101928215612edd579160200282015b82811115612edd57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190612ea8565b50612ee9929150612eed565b5090565b5b80821115612ee95760008155600101612eee565b8035612f0d816133ca565b919050565b8035612f0d816133b5565b60008060408385031215612f2f578182fd5b8251612f3a816133b5565b6020939093015192949293505050565b600060208284031215612f5b578081fd5b8151611a7a816133ca565b600060208284031215612f77578081fd5b5035919050565b60008060408385031215612f90578182fd5b823591506020830135612fa2816133b5565b809150509250929050565b600060208284031215612fbe578081fd5b81356001600160e01b031981168114611a7a578182fd5b600060208284031215612fe6578081fd5b8151611a7a816133b5565b600060208284031215613002578081fd5b8135611a7a816133b5565b60006020828403121561301e578081fd5b5051919050565b600080600060608486031215613039578081fd5b8335925060208085013567ffffffffffffffff80821115613058578384fd5b818701915087601f83011261306b578384fd5b81358181111561307d5761307d61339f565b8060051b604051601f19603f830116810181811085821117156130a2576130a261339f565b604052828152858101935084860182860187018c10156130c0578788fd5b8795505b838610156130e9576130d581612f12565b8552600195909501949386019386016130c4565b508097505050505050506130ff60408501612f02565b90509250925092565b6000806040838503121561311a578182fd5b50508035926020909101359150565b6000825161313b81846020870161332b565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161317d81601785016020880161332b565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516131ae81602884016020880161332b565b01602801949350505050565b604080825283519082018190526000906020906060840190828701845b828110156131fc5781516001600160a01b0316845292840192908401906001016131d7565b50505083810382850152845180825285830191830190845b8181101561323057835183529284019291840191600101613214565b5090979650505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561327e5783516001600160a01b031683529284019291840191600101613259565b50909695505050505050565b60208152600082518060208401526132a981604085016020870161332b565b601f01601f19169190910160400192915050565b600082198211156132d0576132d0613389565b500190565b6000826132f057634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561330f5761330f613389565b500290565b60008282101561332657613326613389565b500390565b60005b8381101561334657818101518382015260200161332e565b8381111561283e5750506000910152565b60008161336657613366613389565b506000190190565b600060001982141561338257613382613389565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f8d57600080fd5b8015158114610f8d57600080fdfece80e833f1c3f0c050749e11fed407dc3dacd109611ea11097e9f5eb6abd9aada26469706673582212204c6d5f6103fbde160ffad3eb4d502784165b9fc6e1b0e01f9c8be885ecf599ff64736f6c63430008040033000000000000000000000000af02d78f39c0002d14b95a3be272da02379aff21000000000000000000000000ed29b66f7312ec1a344772c2555fd6ec4572be2f0000000000000000000000000000000000000000000000002020883c0f078000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102695760003560e01c806351eb05a6116101515780638dbb1e3a116100c3578063b2d0a06811610087578063b2d0a0681461057e578063bebf382214610591578063d547741f1461059a578063e2bbb158146105ad578063e7a2e3e0146105c0578063ffcd4263146105d357600080fd5b80638dbb1e3a146104f657806391d148541461050957806393f1a40b1461051c5780639b8379c514610563578063a217fddf1461057657600080fd5b8063630b5ba111610115578063630b5ba1146104aa57806364f05239146104b257806378a37b86146104ba5780638456cb59146104d257806387e75836146104da5780638aa28550146104ed57600080fd5b806351eb05a6146104465780635312ea8e1461045957806358c2b7f21461046c5780635c975abb1461047557806360256d181461048057600080fd5b8063248a9ca3116101ea57806336f1cbd3116101ae57806336f1cbd3146103e95780633f4ba83a146103fc57806341441d3b14610404578063441a3e7014610417578063454b06081461042a57806348cd4cb11461043d57600080fd5b8063248a9ca31461037a578063261d3ec61461039d5780632b8bbbe8146103b05780632f2ff15d146103c357806336568abe146103d657600080fd5b806316b9d1c91161023157806316b9d1c91461030d57806317caf6f11461032057806319c802f3146103295780631ab06ee51461035457806323cf31181461036757600080fd5b806301ffc9a71461026e5780630580a4de14610296578063081e3eda146102ab5780631058d281146102bd5780631526fe27146102d0575b600080fd5b61028161027c366004612fad565b6105f4565b60405190151581526020015b60405180910390f35b6102a96102a4366004612f66565b61062b565b005b6006545b60405190815260200161028d565b6102a96102cb366004612f66565b610680565b6102e36102de366004612f66565b610816565b604080516001600160a01b039095168552602085019390935291830152606082015260800161028d565b6102af61031b366004612f7e565b61085a565b6102af60085481565b60025461033c906001600160a01b031681565b6040516001600160a01b03909116815260200161028d565b6102a9610362366004613108565b6109dc565b6102a9610375366004612ff1565b610adb565b6102af610388366004612f66565b60009081526020819052604090206001015490565b6102a96103ab366004613025565b610b34565b6102a96103be366004612f7e565b610cc3565b6102a96103d1366004612f7e565b610e38565b6102a96103e4366004612f7e565b610e62565b6102a96103f7366004612f66565b610ee0565b6102a9610f6d565b6102a9610412366004612f66565b610f90565b6102a9610425366004613108565b6110d5565b6102a9610438366004612f66565b6113cb565b6102af60095481565b6102a9610454366004612f66565b611640565b6102a9610467366004612f66565b6117b8565b6102af60045481565b60015460ff16610281565b61049361048e366004612f7e565b61185f565b60408051921515835260208301919091520161028d565b6102a96119b4565b6102a96119db565b60015461033c9061010090046001600160a01b031681565b6102a9611a46565b60035461033c906001600160a01b031681565b6102af60055481565b6102af610504366004613108565b611a66565b610281610517366004612f7e565b611a81565b61054e61052a366004612f7e565b60076020908152600092835260408084209091529082529020805460019091015482565b6040805192835260208301919091520161028d565b6102a9610571366004612f7e565b611aaa565b6102af600081565b6102a961058c366004612ff1565b611c8a565b6102af600a5481565b6102a96105a8366004612f7e565b611ce3565b6102a96105bb366004613108565b611d08565b6102a96105ce366004612f7e565b611fa1565b6105e66105e1366004612f7e565b61208b565b60405161028d9291906131ba565b60006001600160e01b03198216637965db0b60e01b148061062557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000805160206133d983398151915261064381612422565b60048290556040518281527f9eae40036d4e99670ba022c57a1a84252d020991979e50d420dd98d7b96893fe906020015b60405180910390a15050565b61068861242c565b600060066000815481106106ac57634e487b7160e01b600052603260045260246000fd5b600091825260208083203384527f6d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6df90915260409092208054600590920290920192508311156107375760405162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b60448201526064015b60405180910390fd5b6107416000611640565b600061077b826001015461077564e8d4a5100061076f8760040154876000015461247490919063ffffffff16565b90612480565b9061248c565b9050801561078d5761078d3382612498565b83156107b757815461079f908561248c565b825582546107b7906001600160a01b03163386612502565b600483015482546107d29164e8d4a510009161076f91612474565b600183015560405184815260009033907ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568906020015b60405180910390a350505050565b6006818154811061082657600080fd5b600091825260209091206005909102018054600282015460038301546004909301546001600160a01b039092169350919084565b6000806006848154811061087e57634e487b7160e01b600052603260045260246000fd5b600091825260208083208784526007825260408085206001600160a01b0389811687529352808520600460059590950290920184810154815492516370a0823160e01b8152309681019690965290965091949193919216906370a082319060240160206040518083038186803b1580156108f757600080fd5b505afa15801561090b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092f919061300d565b905083600301544311801561094357508015155b156109a9576000610958856003015443611a66565b9050600061098560085461076f886002015461097f6004548761247490919063ffffffff16565b90612474565b90506109a461099d8461076f8464e8d4a51000612474565b8590612565565b935050505b6109d1836001015461077564e8d4a5100061076f86886000015461247490919063ffffffff16565b979650505050505050565b6000805160206133d98339815191526109f481612422565b6109fc6119b4565b600060068481548110610a1f57634e487b7160e01b600052603260045260246000fd5b90600052602060002090600502016002015490508260068581548110610a5557634e487b7160e01b600052603260045260246000fd5b906000526020600020906005020160020181905550828114610a9b57610a9083610a8a8360085461248c90919063ffffffff16565b90612565565b600855610a9b612571565b837fc6a09ced79a68483c1c7fb34c97a6cff1cfdffc7b056a7e7ee5a676420556f6984604051610acd91815260200190565b60405180910390a250505050565b6000610ae681612422565b600380546001600160a01b0319166001600160a01b0384169081179091556040519081527ff40543f3e605deae7fbca26db18ff1de07eda2925d68655836eae4c167444e3290602001610674565b6000610b3f81612422565b60006001600160a01b031660068581548110610b6b57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600590910201546001600160a01b03161415610bc45760405162461bcd60e51b815260206004820152600e60248201526d1c1bdbdb081b9bdd08195e1a5cdd60921b604482015260640161072e565b60068481548110610be557634e487b7160e01b600052603260045260246000fd5b600091825260209091206001600590920201015415610c3e5760405162461bcd60e51b81526020600482015260156024820152741c995dd85c99195c9cc8185b1c9958591e481cd95d605a1b604482015260640161072e565b8115610c4c57610c4c6119b4565b8260068581548110610c6e57634e487b7160e01b600052603260045260246000fd5b90600052602060002090600502016001019080519060200190610c92929190612e88565b50837f6c5ce3f26179b7fa31602098f4e566c4f357a88e42b7d29e51c1cdbb868ff03484604051610acd919061323d565b6000610cce81612422565b610cd66119b4565b60006009544311610ce957600954610ceb565b435b600854909150610cfb9085612565565b6008556040805160a0810182526001600160a01b0385811682526060602080840182815294840189905281840186905260006080850181905260068054600181018255915284517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f600590920291820180546001600160a01b03191691909516178455945180519295610db7937ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d40909101929190910190612e88565b506040820151816002015560608201518160030155608082015181600401555050610de0612571565b600654610def90600190613314565b604080518781526001600160a01b03871660208201527f44f06e62408d549dc25356ed3ab6326c665b66ce934c0e8d13bd1957a6031d4c91015b60405180910390a25050505050565b600082815260208190526040902060010154610e5381612422565b610e5d83836126cb565b505050565b6001600160a01b0381163314610ed25760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161072e565b610edc828261274f565b5050565b6000610eeb81612422565b6109c4821115610f2d5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c696420726174696f60981b604482015260640161072e565b600a8290556040518281527f2b1916385d2954473d2e606f01e8ea44f1095a1ea94443b70527861a07fb34339060200160405180910390a1610edc612571565b6000805160206133d9833981519152610f8581612422565b610f8d6127b4565b50565b610f9861242c565b60006006600081548110610fbc57634e487b7160e01b600052603260045260246000fd5b600091825260208083203384527f6d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6df9091526040832060059092020192509061100390611640565b80541561104c576000611038826001015461077564e8d4a5100061076f8760040154876000015461247490919063ffffffff16565b9050801561104a5761104a3382612498565b505b8215611078578154611069906001600160a01b0316333086612806565b80546110759084612565565b81555b600482015481546110939164e8d4a510009161076f91612474565b600182015560405183815260009033907f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159060200160405180910390a3505050565b6110dd61242c565b8161112a5760405162461bcd60e51b815260206004820152601a60248201527f7769746864726177204652544e20627920756e7374616b696e67000000000000604482015260640161072e565b60006006838154811061114d57634e487b7160e01b600052603260045260246000fd5b6000918252602080832086845260078252604080852033865290925292208054600590920290920192508311156111d45760405162461bcd60e51b815260206004820152602560248201527f776974686472617720616d6f756e742067726561746572207468616e2062616c604482015264616e61636560d81b606482015260840161072e565b6111dd84611640565b80541561134d576000611212826001015461077564e8d4a5100061076f8760040154876000015461247490919063ffffffff16565b90508015611224576112243382612498565b8154600090611233908661248c565b905060008460010180548060200260200160405190810160405280929190818152602001828054801561128f57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611271575b5050505050905060005b8151811015611348578181815181106112c257634e487b7160e01b600052603260045260246000fd5b6020908102919091010151604051633d2f88fd60e11b8152600481018a9052336024820152604481018590526001600160a01b0390911690637a5f11fa90606401600060405180830381600087803b15801561131d57600080fd5b505af1158015611331573d6000803e3d6000fd5b5050505080806113409061336e565b915050611299565b505050505b821561137757805461135f908461248c565b81558154611377906001600160a01b03163385612502565b600482015481546113929164e8d4a510009161076f91612474565b6001820155604051838152849033907ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b56890602001610808565b6003546001600160a01b031661141a5760405162461bcd60e51b815260206004820152601460248201527336b4b3b930ba329d1037379036b4b3b930ba37b960611b604482015260640161072e565b60006006828154811061143d57634e487b7160e01b600052603260045260246000fd5b6000918252602082206005919091020180546040516370a0823160e01b81523060048201529193506001600160a01b0316919082906370a082319060240160206040518083038186803b15801561149357600080fd5b505afa1580156114a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114cb919061300d565b6003549091506114e8906001600160a01b03848116911683612844565b60035460405163ce5494bb60e01b81526001600160a01b038481166004830152600092169063ce5494bb90602401602060405180830381600087803b15801561153057600080fd5b505af1158015611544573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115689190612fd5565b6040516370a0823160e01b81523060048201529091506001600160a01b038216906370a082319060240160206040518083038186803b1580156115aa57600080fd5b505afa1580156115be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e2919061300d565b821461161f5760405162461bcd60e51b815260206004820152600c60248201526b1b5a59dc985d194e8818985960a21b604482015260640161072e565b83546001600160a01b0319166001600160a01b039190911617909255505050565b60006006828154811061166357634e487b7160e01b600052603260045260246000fd5b9060005260206000209060050201905080600301544311611682575050565b80546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156116c557600080fd5b505afa1580156116d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116fd919061300d565b90508061170f57504360039091015550565b600061171f836003015443611a66565b9050600061174660085461076f866002015461097f6004548761247490919063ffffffff16565b905061176961175e8461076f8464e8d4a51000612474565b600486015490612565565b600485018190554360038601819055604080519182526020820186905281019190915285907f3be3541fc42237d611b30329040bfa4569541d156560acdbbae57640d20b8f4690606001610e29565b6000600682815481106117db57634e487b7160e01b600052603260045260246000fd5b60009182526020808320858452600782526040808520338087529352842080548582556001820195909555600590930201805490945091929161182b916001600160a01b03919091169083612502565b604051818152849033907fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae059590602001610808565b60008060006006858154811061188557634e487b7160e01b600052603260045260246000fd5b60009182526020918290206040805160a081018252600590930290910180546001600160a01b0316835260018101805483518187028101870190945280845293949193858301939283018282801561190657602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116118e8575b505050505081526020016002820154815260200160038201548152602001600482015481525050905060005b8160200151518110156119a357846001600160a01b03168260200151828151811061196d57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03161415611991576001935091506119ad9050565b8061199b8161336e565b915050611932565b5060008092509250505b9250929050565b60065460005b81811015610edc576119cb81611640565b6119d48161336e565b90506119ba565b60006119e681612422565b60025460405163f2fde38b60e01b81523360048201526001600160a01b039091169063f2fde38b90602401600060405180830381600087803b158015611a2b57600080fd5b505af1158015611a3f573d6000803e3d6000fd5b5050505050565b6000805160206133d9833981519152611a5e81612422565b610f8d612968565b600554600090611a7a9061097f848661248c565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6000611ab581612422565b600080611ac2858561185f565b9150915081611b075760405162461bcd60e51b8152602060048201526011602482015270139bc81c995dd85c99195c88199bdd5b99607a1b604482015260640161072e565b600060068681548110611b2a57634e487b7160e01b600052603260045260246000fd5b9060005260206000209060050201905060008290505b600182810154611b509190613314565b811015611bfd5781600101816001611b6891906132bd565b81548110611b8657634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001830180546001600160a01b039092169183908110611bc257634e487b7160e01b600052603260045260246000fd5b600091825260209091200180546001600160a01b0319166001600160a01b039290921691909117905580611bf58161336e565b915050611b40565b5080600101805480611c1f57634e487b7160e01b600052603160045260246000fd5b6000828152602090819020600019908301810180546001600160a01b03191690559091019091556040516001600160a01b038716815287917fcb84b447f762f6ea5727904c33ecc1a6628dfb39ec6e2db3e0c5b21b400fd769910160405180910390a2505050505050565b6000611c9581612422565b600280546001600160a01b0319166001600160a01b0384169081179091556040519081527fdf10836f47d34142c4a91afa72831184975a891e5f13e7ea4b04e1fdee2e3faa90602001610674565b600082815260208190526040902060010154611cfe81612422565b610e5d838361274f565b611d1061242c565b81611d5d5760405162461bcd60e51b815260206004820152601760248201527f6465706f736974204652544e206279207374616b696e67000000000000000000604482015260640161072e565b600060068381548110611d8057634e487b7160e01b600052603260045260246000fd5b60009182526020808320868452600782526040808520338652909252922060059091029091019150611db184611640565b6000611ddf826001015461077564e8d4a5100061076f8760040154876000015461247490919063ffffffff16565b90508015611df157611df13382612498565b8154600090611e009086612565565b9050600084600101805480602002602001604051908101604052809291908181526020018280548015611e5c57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611e3e575b5050505050905060005b8151811015611f1557818181518110611e8f57634e487b7160e01b600052603260045260246000fd5b6020908102919091010151604051633d2f88fd60e11b8152600481018a9052336024820152604481018590526001600160a01b0390911690637a5f11fa90606401600060405180830381600087803b158015611eea57600080fd5b505af1158015611efe573d6000803e3d6000fd5b505050508080611f0d9061336e565b915050611e66565b508515611f33578454611f33906001600160a01b0316333089612806565b8354611f3f9087612565565b8085556004860154611f5c9164e8d4a510009161076f9190612474565b6001850155604051868152879033907f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159060200160405180910390a350505050505050565b6000611fac81612422565b6000611fb8848461185f565b5090508015611ffa5760405162461bcd60e51b815260206004820152600e60248201526d14995dd85c99195c88195e1a5cdd60921b604482015260640161072e565b6006848154811061201b57634e487b7160e01b600052603260045260246000fd5b600091825260208083206001600593909302018201805492830181558352918290200180546001600160a01b0386166001600160a01b0319909116811790915560405190815285917f207d27439436ae9975d3a427dc7bc629ad4a4549b033e591cba0fcf3f9071e279101610acd565b6060806000600685815481106120b157634e487b7160e01b600052603260045260246000fd5b60009182526020918290206040805160a081018252600590930290910180546001600160a01b0316835260018101805483518187028101870190945280845293949193858301939283018282801561213257602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612114575b505050505081526020016002820154815260200160038201548152602001600482015481525050905060008160200151519050600081600161217491906132bd565b67ffffffffffffffff81111561219a57634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156121c3578160200160208202803683370190505b50905060006121d38360016132bd565b67ffffffffffffffff8111156121f957634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015612222578160200160208202803683370190505b50905060018054906101000a90046001600160a01b03168260008151811061225a57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b031681525050612284888861085a565b816000815181106122a557634e487b7160e01b600052603260045260246000fd5b60200260200101818152505060008460200151905060005b8151811015612413576000808383815181106122e957634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166348e43af48d8d6040518363ffffffff1660e01b81526004016123309291909182526001600160a01b0316602082015260400190565b604080518083038186803b15801561234757600080fd5b505afa15801561235b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061237f9190612f1d565b909250905081866123918560016132bd565b815181106123af57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039092166020928302919091019091015280856123d48560016132bd565b815181106123f257634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505050808061240b9061336e565b9150506122bd565b50919890975095505050505050565b610f8d81336129a3565b60015460ff16156124725760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161072e565b565b6000611a7a82846132f5565b6000611a7a82846132d5565b6000611a7a8284613314565b60025460405163f514795560e01b81526001600160a01b038481166004830152602482018490529091169063f514795590604401600060405180830381600087803b1580156124e657600080fd5b505af11580156124fa573d6000803e3d6000fd5b505050505050565b6040516001600160a01b038316602482015260448101829052610e5d90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526129fc565b6000611a7a82846132bd565b600654600060015b828110156125d8576125c6600682815481106125a557634e487b7160e01b600052603260045260246000fd5b9060005260206000209060050201600201548361256590919063ffffffff16565b91506125d18161336e565b9050612579565b508015610edc57612600600a546127106125f29190613314565b600a5461076f908490612474565b905061264e81610a8a600660008154811061262b57634e487b7160e01b600052603260045260246000fd5b90600052602060002090600502016002015460085461248c90919063ffffffff16565b60088190555080600660008154811061267757634e487b7160e01b600052603260045260246000fd5b90600052602060002090600502016002018190555060007fc6a09ced79a68483c1c7fb34c97a6cff1cfdffc7b056a7e7ee5a676420556f69826040516126bf91815260200190565b60405180910390a25050565b6126d58282611a81565b610edc576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905561270b3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6127598282611a81565b15610edc576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6127bc612ace565b6001805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6040516001600160a01b038085166024830152831660448201526064810182905261283e9085906323b872dd60e01b9060840161252e565b50505050565b8015806128cd5750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e9060440160206040518083038186803b15801561289357600080fd5b505afa1580156128a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128cb919061300d565b155b6129385760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b606482015260840161072e565b6040516001600160a01b038316602482015260448101829052610e5d90849063095ea7b360e01b9060640161252e565b61297061242c565b6001805460ff1916811790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258336127e9565b6129ad8282611a81565b610edc576129ba81612b17565b6129c5836020612b29565b6040516020016129d6929190613145565b60408051601f198184030181529082905262461bcd60e51b825261072e9160040161328a565b6000612a51826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612d0b9092919063ffffffff16565b805190915015610e5d5780806020019051810190612a6f9190612f4a565b610e5d5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161072e565b60015460ff166124725760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161072e565b60606106256001600160a01b03831660145b60606000612b388360026132f5565b612b439060026132bd565b67ffffffffffffffff811115612b6957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612b93576020820181803683370190505b509050600360fc1b81600081518110612bbc57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612bf957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000612c1d8460026132f5565b612c289060016132bd565b90505b6001811115612cbc576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612c6a57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110612c8e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93612cb581613357565b9050612c2b565b508315611a7a5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161072e565b6060612d1a8484600085612d22565b949350505050565b606082471015612d835760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161072e565b600080866001600160a01b03168587604051612d9f9190613129565b60006040518083038185875af1925050503d8060008114612ddc576040519150601f19603f3d011682016040523d82523d6000602084013e612de1565b606091505b50915091506109d18783838760608315612e59578251612e52576001600160a01b0385163b612e525760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161072e565b5081612d1a565b612d1a8383815115612e6e5781518083602001fd5b8060405162461bcd60e51b815260040161072e919061328a565b828054828255906000526020600020908101928215612edd579160200282015b82811115612edd57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190612ea8565b50612ee9929150612eed565b5090565b5b80821115612ee95760008155600101612eee565b8035612f0d816133ca565b919050565b8035612f0d816133b5565b60008060408385031215612f2f578182fd5b8251612f3a816133b5565b6020939093015192949293505050565b600060208284031215612f5b578081fd5b8151611a7a816133ca565b600060208284031215612f77578081fd5b5035919050565b60008060408385031215612f90578182fd5b823591506020830135612fa2816133b5565b809150509250929050565b600060208284031215612fbe578081fd5b81356001600160e01b031981168114611a7a578182fd5b600060208284031215612fe6578081fd5b8151611a7a816133b5565b600060208284031215613002578081fd5b8135611a7a816133b5565b60006020828403121561301e578081fd5b5051919050565b600080600060608486031215613039578081fd5b8335925060208085013567ffffffffffffffff80821115613058578384fd5b818701915087601f83011261306b578384fd5b81358181111561307d5761307d61339f565b8060051b604051601f19603f830116810181811085821117156130a2576130a261339f565b604052828152858101935084860182860187018c10156130c0578788fd5b8795505b838610156130e9576130d581612f12565b8552600195909501949386019386016130c4565b508097505050505050506130ff60408501612f02565b90509250925092565b6000806040838503121561311a578182fd5b50508035926020909101359150565b6000825161313b81846020870161332b565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161317d81601785016020880161332b565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516131ae81602884016020880161332b565b01602801949350505050565b604080825283519082018190526000906020906060840190828701845b828110156131fc5781516001600160a01b0316845292840192908401906001016131d7565b50505083810382850152845180825285830191830190845b8181101561323057835183529284019291840191600101613214565b5090979650505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561327e5783516001600160a01b031683529284019291840191600101613259565b50909695505050505050565b60208152600082518060208401526132a981604085016020870161332b565b601f01601f19169190910160400192915050565b600082198211156132d0576132d0613389565b500190565b6000826132f057634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561330f5761330f613389565b500290565b60008282101561332657613326613389565b500390565b60005b8381101561334657818101518382015260200161332e565b8381111561283e5750506000910152565b60008161336657613366613389565b506000190190565b600060001982141561338257613382613389565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f8d57600080fd5b8015158114610f8d57600080fdfece80e833f1c3f0c050749e11fed407dc3dacd109611ea11097e9f5eb6abd9aada26469706673582212204c6d5f6103fbde160ffad3eb4d502784165b9fc6e1b0e01f9c8be885ecf599ff64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000af02d78f39c0002d14b95a3be272da02379aff21000000000000000000000000ed29b66f7312ec1a344772c2555fd6ec4572be2f0000000000000000000000000000000000000000000000002020883c0f078000
-----Decoded View---------------
Arg [0] : _frtn (address): 0xaF02D78F39C0002D14b95A3bE272DA02379AfF21
Arg [1] : _tackleBox (address): 0xED29B66F7312ec1A344772c2555fD6eC4572BE2F
Arg [2] : _frtnPerBlock (uint256): 2315000000000000000
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000af02d78f39c0002d14b95a3be272da02379aff21
Arg [1] : 000000000000000000000000ed29b66f7312ec1a344772c2555fd6ec4572be2f
Arg [2] : 0000000000000000000000000000000000000000000000002020883c0f078000
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 27 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.