Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- Voting
- Optimization enabled
- true
- Compiler version
- v0.8.17+commit.8df45f5f
- Optimization runs
- 200
- EVM Version
- default
- Verified at
- 2025-04-30T20:33:32.360371Z
Constructor Arguments
0x000000000000000000000000c2b89a74e1f6bb035c4c6adf45f5931e9ca537ff0000000000000000000000009f95ec66321a392da3a440eee7d9fce2e25a6a02
Arg [0] (address) : 0xc2b89a74e1f6bb035c4c6adf45f5931e9ca537ff
Arg [1] (address) : 0x9f95ec66321a392da3a440eee7d9fce2e25a6a02
contracts/governance/Voting.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.7;
pragma abicoder v2;
// OpenZeppelin v4
import { Staking } from "./Staking.sol";
import { Delegator } from "./Delegator.sol";
/**
* @title Voting
* @author Railgun Contributors
* @notice Governance contract for railgun, handles voting.
*/
contract Voting {
// Time offsets from publish time, offset times are relative to voteCallTime
uint256 public constant SPONSOR_WINDOW = 30 days;
uint256 public constant VOTING_START_OFFSET = 2 days; // Should be > interval size of staking snapshots
uint256 public constant VOTING_YAY_END_OFFSET = 5 days;
uint256 public constant VOTING_NAY_END_OFFSET = 6 days;
uint256 public constant EXECUTION_START_OFFSET = 7 days;
uint256 public constant EXECUTION_END_OFFSET = 14 days;
uint256 public constant SPONSOR_LOCKOUT_TIME = 7 days;
// Threshold constants
uint256 public constant QUORUM = 2000000e18; // 2 million, 18 decimal places
uint256 public constant PROPOSAL_SPONSOR_THRESHOLD = 500000e18; // 500 thousand, 18 decimal places
// Proposal has been created
event Proposal(uint256 indexed id, address indexed proposer);
// Proposal has been sponsored
event Sponsorship(uint256 indexed id, address indexed sponsor, uint256 amount);
// Proposal has been unsponsored
event SponsorshipRevocation(uint256 indexed id, address indexed sponsor, uint256 amount);
// Proposal vote called
event VoteCall(uint256 indexed id);
// Vote cast on proposal
event VoteCast(uint256 indexed id, address indexed voter, bool affirmative, uint256 votes);
// Proposal executed
event Execution(uint256 indexed id);
// Proposal executed
event VoteKeySet(address indexed account, address votingKey);
// Errors event
error ExecutionFailed(uint256 index, bytes data);
// Function call
struct Call {
address callContract;
bytes data;
uint256 value;
}
// Governance proposals
struct ProposalStruct {
// Execution status
bool executed;
// Proposal Data
address proposer;
string proposalDocument; // IPFS hash
Call[] actions;
// Event timestamps
uint256 publishTime;
uint256 voteCallTime; // If vote call time is 0, proposal hasn't gone to vote
// Sponsorship info
uint256 sponsorship;
mapping(address => uint256) sponsors;
// Vote data
// Amount of voting power used for accounts, used for fractional voting from contracts
mapping(address => uint256) voted;
uint256 yayVotes;
uint256 nayVotes;
// Staking snapshots
uint256 sponsorInterval;
uint256 votingInterval;
}
// Proposals id => proposal data
ProposalStruct[] public proposals;
// Voting keys
mapping(address => address) public votingKey;
// Last sponsored proposal data
struct LastSponsored {
uint256 lastSponsorTime;
uint256 proposalID;
}
mapping(address => LastSponsored) public lastSponsored;
/* solhint-disable var-name-mixedcase */
Staking public immutable STAKING_CONTRACT;
Delegator public immutable DELEGATOR_CONTRACT;
/* solhint-enable var-name-mixedcase */
// Only voting key modifier
modifier onlyVotingKey(address _account) {
// Only voting key or main key can call
require(
msg.sender == _account || msg.sender == votingKey[_account],
"Voting: Caller not authorized"
);
_;
}
/**
* @notice Sets governance token ID and delegator contract
*/
constructor(Staking _stakingContract, Delegator _delegator) {
STAKING_CONTRACT = _stakingContract;
DELEGATOR_CONTRACT = _delegator;
}
/**
* @notice Gets length of proposals array
* @return length
*/
function proposalsLength() external view returns (uint256) {
return proposals.length;
}
/**
* @notice Gets actions from proposal document
* @dev Gets actions from proposal as nested arrays won't be returned on public getter
* @param _id - Proposal to get actions of
* @return actions
*/
function getActions(uint256 _id) external view returns (Call[] memory) {
return proposals[_id].actions;
}
/**
* @notice Gets sponsor amount an account has given to a proposal
* @dev Gets actions from proposal as mappings wont be returned on public getter
* @param _id - Proposal to get sponsor amount of
* @param _account - Account to get sponsor amount for
* @return sponsor amount
*/
function getSponsored(uint256 _id, address _account) external view returns (uint256) {
return proposals[_id].sponsors[_account];
}
/**
* @notice Gets votes cast by an account on a particular proposal
* @dev Gets votes from proposal as mappings wont be returned on public getter
* @param _id - Proposal to get votes for
* @param _account - Account to get votes for
* @return votes amount
*/
function getVotes(uint256 _id, address _account) external view returns (uint256) {
return proposals[_id].voted[_account];
}
/**
* @notice Sets voting key for account
* @param _votingKey - voting key address
*/
function setVotingKey(address _votingKey) external {
votingKey[msg.sender] = _votingKey;
emit VoteKeySet(msg.sender, _votingKey);
}
/**
* @notice Creates governance proposal
* @param _proposalDocument - IPFS multihash of proposal document
* @param _actions - actions to take
*/
function createProposal(
string calldata _proposalDocument,
Call[] calldata _actions
) external returns (uint256) {
// Don't allow proposals with no actions
require(_actions.length > 0, "Voting: No actions specified");
uint256 proposalID = proposals.length;
ProposalStruct storage proposal = proposals.push();
// Store proposer
proposal.proposer = msg.sender;
// Store proposal document
proposal.proposalDocument = _proposalDocument;
// Store published time
proposal.publishTime = block.timestamp;
// Store sponsor voting snapshot interval
proposal.sponsorInterval = STAKING_CONTRACT.currentInterval();
// Loop over actions and copy manually as solidity doesn't support copying struct arrays from calldata
for (uint256 i = 0; i < _actions.length; i += 1) {
proposal.actions.push(Call(_actions[i].callContract, _actions[i].data, _actions[i].value));
}
// Emit event
emit Proposal(proposalID, msg.sender);
return proposalID;
}
/**
* @notice Sponsor proposal
* @param _id - id of proposal to sponsor
* @param _amount - amount to sponsor with
* @param _account - account to vote with
* @param _hint - hint for snapshot search
*/
function sponsorProposal(
uint256 _id,
uint256 _amount,
address _account,
uint256 _hint
) external onlyVotingKey(_account) {
// Prevent proposal spam
require(
lastSponsored[_account].proposalID == _id ||
block.timestamp - lastSponsored[_account].lastSponsorTime > 7 days,
"Voting: Can only sponsor one proposal per week"
);
ProposalStruct storage proposal = proposals[_id];
// Check proposal hasn't already gone to vote
require(proposal.voteCallTime == 0, "Voting: Gone to vote");
// Check proposal is still in sponsor window
require(
block.timestamp < proposal.publishTime + SPONSOR_WINDOW,
"Voting: Sponsoring window passed"
);
// Set last sponsored info
lastSponsored[_account].proposalID = _id;
lastSponsored[_account].lastSponsorTime = block.timestamp;
// Get address sponsor voting power
Staking.AccountSnapshot memory snapshot = STAKING_CONTRACT.accountSnapshotAt(
_account,
proposal.sponsorInterval,
_hint
);
// Can't sponsor with more than voting power
require(
proposal.sponsors[_account] + _amount <= snapshot.votingPower,
"Voting: Not enough voting power"
);
// Update address sponsorship amount on proposal
proposal.sponsors[_account] += _amount;
// Update sponsor total
proposal.sponsorship += _amount;
// Emit event
emit Sponsorship(_id, _account, _amount);
}
/**
* @notice Unsponsor proposal
* @param _id - id of proposal to sponsor
* @param _account - account to vote with
* @param _amount - amount to sponsor with
*/
function unsponsorProposal(
uint256 _id,
uint256 _amount,
address _account
) external onlyVotingKey(_account) {
ProposalStruct storage proposal = proposals[_id];
// Check proposal hasn't already gone to vote
require(proposal.voteCallTime == 0, "Voting: Gone to vote");
// Check proposal is still in sponsor window
require(
block.timestamp < proposal.publishTime + SPONSOR_WINDOW,
"Voting: Sponsoring window passed"
);
// Can't unsponsor more than sponsored
require(_amount <= proposal.sponsors[_account], "Voting: Amount greater than sponsored");
// Update address sponsorship amount on proposal
proposal.sponsors[_account] -= _amount;
// Update sponsor total
proposal.sponsorship -= _amount;
// Emit event
emit SponsorshipRevocation(_id, _account, _amount);
}
/**
* @notice Call vote
* @param _id - id of proposal to call to vote
*/
function callVote(uint256 _id) external {
ProposalStruct storage proposal = proposals[_id];
// Check proposal hasn't exceeded sponsor window
require(
block.timestamp < proposal.publishTime + SPONSOR_WINDOW,
"Voting: Sponsoring window passed"
);
// Check proposal hasn't already gone to vote
require(proposal.voteCallTime == 0, "Voting: Proposal already gone to vote");
// Proposal must meet sponsorship threshold
require(
proposal.sponsorship >= PROPOSAL_SPONSOR_THRESHOLD,
"Voting: Sponsor threshold not met"
);
// Log vote time (also marks proposal as ready to vote)
proposal.voteCallTime = block.timestamp;
// Log governance token snapshot interval
// VOTING_START_OFFSET must be greater than snapshot interval of governance token for this to work correctly
proposal.votingInterval = STAKING_CONTRACT.currentInterval();
// Emit event
emit VoteCall(_id);
}
/**
* @notice Vote on proposal
* @param _id - id of proposal to call to vote
* @param _amount - amount of voting power to allocate
* @param _affirmative - whether to vote yay (true) or nay (false) on this proposal
* @param _account - account to vote with
* @param _hint - hint for snapshot search
*/
function vote(
uint256 _id,
uint256 _amount,
bool _affirmative,
address _account,
uint256 _hint
) external onlyVotingKey(_account) {
ProposalStruct storage proposal = proposals[_id];
// Check vote has been called
require(proposal.voteCallTime > 0, "Voting: Vote hasn't been called for this proposal");
// Check Voting window has opened
require(
block.timestamp > proposal.voteCallTime + VOTING_START_OFFSET,
"Voting: Voting window hasn't opened"
);
// Check voting window hasn't closed (voting window length conditional on )
if (_affirmative) {
require(
block.timestamp < proposal.voteCallTime + VOTING_YAY_END_OFFSET,
"Voting: Affirmative voting window has closed"
);
} else {
require(
block.timestamp < proposal.voteCallTime + VOTING_NAY_END_OFFSET,
"Voting: Negative voting window has closed"
);
}
// Get address voting power
Staking.AccountSnapshot memory snapshot = STAKING_CONTRACT.accountSnapshotAt(
_account,
proposal.votingInterval,
_hint
);
// Check address isn't voting with more voting power than it has
require(
proposal.voted[_account] + _amount <= snapshot.votingPower,
"Voting: Not enough voting power to cast this vote"
);
// Update account voted amount
proposal.voted[_account] += _amount;
// Update voting totals
if (_affirmative) {
proposal.yayVotes += _amount;
} else {
proposal.nayVotes += _amount;
}
// Emit event
emit VoteCast(_id, _account, _affirmative, _amount);
}
/**
* @notice Execute proposal
* @param _id - id of proposal to execute
*/
function executeProposal(uint256 _id) external {
ProposalStruct storage proposal = proposals[_id];
// Check proposal has been called to vote
require(proposal.voteCallTime > 0, "Voting: Vote hasn't been called for this proposal");
// Check quorum has been reached
require(proposal.yayVotes >= QUORUM, "Voting: Quorum hasn't been reached");
// Check vote passed
require(proposal.yayVotes > proposal.nayVotes, "Voting: Proposal hasn't passed vote");
// Check we're in execution window
require(
block.timestamp > proposal.voteCallTime + EXECUTION_START_OFFSET,
"Voting: Execution window hasn't opened"
);
require(
block.timestamp < proposal.voteCallTime + EXECUTION_END_OFFSET,
"Voting: Execution window has closed"
);
// Check proposal hasn't been executed before
require(!proposal.executed, "Voting: Proposal has already been executed");
// Mark proposal as executed
proposal.executed = true;
Call[] memory actions = proposal.actions;
// Loop over actions and execute
for (uint256 i = 0; i < actions.length; i += 1) {
// Execute action
(bool successful, bytes memory returnData) = DELEGATOR_CONTRACT.callContract(
actions[i].callContract,
actions[i].data,
actions[i].value
);
// If an action fails to execute, catch and bubble up reason with revert
if (!successful) {
revert ExecutionFailed(i, returnData);
}
}
// Emit event
emit Execution(_id);
}
}
@openzeppelin/contracts/access/Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling 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);
}
}
@openzeppelin/contracts/token/ERC20/IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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);
}
@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/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.
*
* ==== Security Considerations
*
* There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
* expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
* considered as an intention to spend the allowance in any specific way. The second is that because permits have
* built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
* take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
* generally recommended is:
*
* ```solidity
* function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
* try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
* doThing(..., value);
* }
*
* function doThing(..., uint256 value) public {
* token.safeTransferFrom(msg.sender, address(this), value);
* ...
* }
* ```
*
* Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
* `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
* {SafeERC20-safeTransferFrom}).
*
* Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
* contracts should have entry points that don't rely on permit.
*/
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].
*
* CAUTION: See Security Considerations above.
*/
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);
}
@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/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;
/**
* @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
/**
* @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
* calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
*/
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));
}
/**
* @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 oldAllowance = token.allowance(address(this), spender);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
}
/**
* @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
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");
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
}
}
/**
* @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
* to be set to zero before setting it to a non-zero value, such as USDT.
*/
function forceApprove(IERC20 token, address spender, uint256 value) internal {
bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);
if (!_callOptionalReturnBool(token, approvalCall)) {
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
_callOptionalReturn(token, approvalCall);
}
}
/**
* @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
* Revert on invalid signature.
*/
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");
require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation 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).
*
* This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
*/
function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
// 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 cannot use {Address-functionCall} here since this should return false
// and not revert is the subcall reverts.
(bool success, bytes memory returndata) = address(token).call(data);
return
success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
}
}
@openzeppelin/contracts/utils/Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [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://consensys.net/diligence/blog/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.8.0/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);
}
}
}
@openzeppelin/contracts/utils/Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}
@openzeppelin/contracts/utils/math/Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1, "Math: mulDiv overflow");
///////////////////////////////////////////////
// 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 256, 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 << 3) < value ? 1 : 0);
}
}
}
contracts/governance/Delegator.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.7;
pragma abicoder v2;
// OpenZeppelin v4
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
/**
* @title Delegator
* @author Railgun Contributors
* @notice 'Owner' contract for all railgun contracts
* delegates permissions to other contracts (voter, role)
*/
contract Delegator is Ownable {
/*
Mapping structure is calling address => contract => function signature
0 is used as a wildcard, so permission for contract 0 is permission for
any contract, and permission for function signature 0 is permission for
any function.
Comments below use * to signify wildcard and . notation to separate address/contract/function.
caller.*.* allows caller to call any function on any contract
caller.X.* allows caller to call any function on contract X
caller.*.Y allows caller to call function Y on any contract
*/
mapping(address => mapping(address => mapping(bytes4 => bool))) public permissions;
event GrantPermission(
address indexed caller,
address indexed contractAddress,
bytes4 indexed selector
);
event RevokePermission(
address indexed caller,
address indexed contractAddress,
bytes4 indexed selector
);
/**
* @notice Sets initial admin
*/
constructor(address _admin) {
Ownable.transferOwnership(_admin);
}
/**
* @notice Sets permission bit
* @dev See comment on permissions mapping for wildcard format
* @param _caller - caller to set permissions for
* @param _contract - contract to set permissions for
* @param _selector - selector to set permissions for
* @param _permission - permission bit to set
*/
function setPermission(
address _caller,
address _contract,
bytes4 _selector,
bool _permission
) public onlyOwner {
// If permission set is different to new permission then we execute, otherwise skip
if (permissions[_caller][_contract][_selector] != _permission) {
// Set permission bit
permissions[_caller][_contract][_selector] = _permission;
// Emit event
if (_permission) {
emit GrantPermission(_caller, _contract, _selector);
} else {
emit RevokePermission(_caller, _contract, _selector);
}
}
}
/**
* @notice Checks if caller has permission to execute function
* @param _caller - caller to check permissions for
* @param _contract - contract to check
* @param _selector - function signature to check
* @return if caller has permission
*/
function checkPermission(
address _caller,
address _contract,
bytes4 _selector
) public view returns (bool) {
/*
See comment on permissions mapping for structure
Comments below use * to signify wildcard and . notation to separate contract/function
*/
return (_caller == Ownable.owner() ||
permissions[_caller][_contract][_selector] || // Owner always has global permissions
permissions[_caller][_contract][0x0] || // Permission for function is given
permissions[_caller][address(0)][_selector] || // Permission for _contract.* is given
permissions[_caller][address(0)][0x0]); // Global permission is given
}
/**
* @notice Calls function
* @dev calls to functions on this contract are intercepted and run directly
* this is so the voting contract doesn't need to have special cases for calling
* functions other than this one.
* @param _contract - contract to call
* @param _data - calldata to pass to contract
* @return success - whether call succeeded
* @return returnData - return data from function call
*/
function callContract(
address _contract,
bytes calldata _data,
uint256 _value
) public returns (bool success, bytes memory returnData) {
// Get selector
bytes4 selector = bytes4(_data);
// Intercept calls to this contract
if (_contract == address(this)) {
if (selector == this.setPermission.selector) {
// Decode call data
(address caller, address calledContract, bytes4 _permissionSelector, bool permission) = abi
.decode(abi.encodePacked(_data[4:]), (address, address, bytes4, bool));
// Call setPermission
setPermission(caller, calledContract, _permissionSelector, permission);
// Return success with empty ReturnData bytes
bytes memory empty;
return (true, empty);
} else if (selector == this.transferOwnership.selector) {
// Decode call data
address newOwner = abi.decode(abi.encodePacked(_data[4:]), (address));
// Call transferOwnership
Ownable.transferOwnership(newOwner);
// Return success with empty ReturnData bytes
bytes memory empty;
return (true, empty);
} else if (selector == this.renounceOwnership.selector) {
// Call renounceOwnership
Ownable.renounceOwnership();
// Return success with empty ReturnData bytes
bytes memory empty;
return (true, empty);
} else {
// Return failed with empty ReturnData bytes
bytes memory empty;
return (false, empty);
}
}
// Check permissions
require(
checkPermission(msg.sender, _contract, selector),
"Delegator: Caller doesn't have permission"
);
// Call external contract and return
// solhint-disable-next-line avoid-low-level-calls
return _contract.call{ value: _value }(_data);
}
}
contracts/governance/Staking.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.7;
pragma abicoder v2;
// OpenZeppelin v4
import { Math } from "@openzeppelin/contracts/utils/math/Math.sol";
import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
/**
* @title Snapshot
* @author Railgun Contributors
* @notice Governance contract for railgun, handles staking, voting power, and snapshotting
* @dev Snapshots cannot be taken during interval 0
* wait till interval 1 before utilizing snapshots
*/
contract Staking {
using SafeERC20 for IERC20;
// Constants
uint256 public constant STAKE_LOCKTIME = 30 days;
uint256 public constant SNAPSHOT_INTERVAL = 1 days;
// Staking token
IERC20 public stakingToken;
// Time of deployment
// solhint-disable-next-line var-name-mixedcase
uint256 public immutable DEPLOY_TIME = block.timestamp;
// New stake created
event Stake(address indexed account, uint256 indexed stakeID, uint256 amount);
// Stake unlocked (coins removed from voting pool, 30 day delay before claiming is allowed)
event Unlock(address indexed account, uint256 indexed stakeID);
// Stake claimed
event Claim(address indexed account, uint256 indexed stakeID);
// Delegate claimed
event Delegate(
address indexed owner,
address indexed _from,
address indexed to,
uint256 stakeID,
uint256 amount
);
// Total staked
uint256 public totalStaked = 0;
// Snapshots for globals
struct GlobalsSnapshot {
uint256 interval;
uint256 totalVotingPower;
uint256 totalStaked;
}
GlobalsSnapshot[] private globalsSnapshots;
// Stake
struct StakeStruct {
address delegate; // Address stake voting power is delegated to
uint256 amount; // Amount of tokens on this stake
uint256 staketime; // Time this stake was created
uint256 locktime; // Time this stake can be claimed (if 0, unlock hasn't been initiated)
uint256 claimedTime; // Time this stake was claimed (if 0, stake hasn't been claimed)
}
// Stake mapping
// address => stakeID => stake
mapping(address => StakeStruct[]) public stakes;
// Voting power for each account
mapping(address => uint256) public votingPower;
// Snapshots for accounts
struct AccountSnapshot {
uint256 interval;
uint256 votingPower;
}
mapping(address => AccountSnapshot[]) private accountSnapshots;
/**
* @notice Sets staking token
* @param _stakingToken - time to get interval of
*/
constructor(IERC20 _stakingToken) {
stakingToken = _stakingToken;
// Use address 0 to store inverted totalVotingPower
votingPower[address(0)] = type(uint256).max;
}
/**
* @notice Gets total voting power in system
* @return totalVotingPower
*/
function totalVotingPower() public view returns (uint256) {
return ~votingPower[address(0)];
}
/**
* @notice Gets length of stakes array for address
* @param _account - address to retrieve stakes array of
* @return length
*/
function stakesLength(address _account) external view returns (uint256) {
return stakes[_account].length;
}
/**
* @notice Gets interval at time
* @param _time - time to get interval of
* @return interval
*/
function intervalAtTime(uint256 _time) public view returns (uint256) {
require(_time >= DEPLOY_TIME, "Staking: Requested time is before contract was deployed");
return (_time - DEPLOY_TIME) / SNAPSHOT_INTERVAL;
}
/**
* @notice Gets current interval
* @return interval
*/
function currentInterval() public view returns (uint256) {
return intervalAtTime(block.timestamp);
}
/**
* @notice Returns interval of latest global snapshot
* @return Latest global snapshot interval
*/
function latestGlobalsSnapshotInterval() public view returns (uint256) {
if (globalsSnapshots.length > 0) {
// If a snapshot exists return the interval it was taken
return globalsSnapshots[globalsSnapshots.length - 1].interval;
} else {
// Else default to 0
return 0;
}
}
/**
* @notice Returns interval of latest account snapshot
* @param _account - account to get latest snapshot of
* @return Latest account snapshot interval
*/
function latestAccountSnapshotInterval(address _account) public view returns (uint256) {
if (accountSnapshots[_account].length > 0) {
// If a snapshot exists return the interval it was taken
return accountSnapshots[_account][accountSnapshots[_account].length - 1].interval;
} else {
// Else default to 0
return 0;
}
}
/**
* @notice Returns length of snapshot array
* @param _account - account to get snapshot array length of
* @return Snapshot array length
*/
function accountSnapshotLength(address _account) external view returns (uint256) {
return accountSnapshots[_account].length;
}
/**
* @notice Returns length of snapshot array
* @return Snapshot array length
*/
function globalsSnapshotLength() external view returns (uint256) {
return globalsSnapshots.length;
}
/**
* @notice Returns global snapshot at index
* @param _index - account to get latest snapshot of
* @return Globals snapshot
*/
function globalsSnapshot(uint256 _index) external view returns (GlobalsSnapshot memory) {
return globalsSnapshots[_index];
}
/**
* @notice Returns account snapshot at index
* @param _account - account to get snapshot of
* @param _index - index to get snapshot at
* @return Account snapshot
*/
function accountSnapshot(
address _account,
uint256 _index
) external view returns (AccountSnapshot memory) {
return accountSnapshots[_account][_index];
}
/**
* @notice Checks if account and globals snapshots need updating and updates
* @param _account - Account to take snapshot for
*/
function snapshot(address _account) internal {
uint256 _currentInterval = currentInterval();
// If latest global snapshot is less than current interval, push new snapshot
if (latestGlobalsSnapshotInterval() < _currentInterval) {
globalsSnapshots.push(GlobalsSnapshot(_currentInterval, totalVotingPower(), totalStaked));
}
// If latest account snapshot is less than current interval, push new snapshot
// Skip if account is 0 address
if (_account != address(0) && latestAccountSnapshotInterval(_account) < _currentInterval) {
accountSnapshots[_account].push(AccountSnapshot(_currentInterval, votingPower[_account]));
}
}
/**
* @notice Moves voting power in response to delegation or stake/unstake
* @param _from - account to move voting power fom
* @param _to - account to move voting power to
* @param _amount - amount of voting power to move
*/
function moveVotingPower(address _from, address _to, uint256 _amount) internal {
votingPower[_from] -= _amount;
votingPower[_to] += _amount;
}
/**
* @notice Updates vote delegation
* @param _stakeID - stake to delegate
* @param _to - address to delegate to
*/
function delegate(uint256 _stakeID, address _to) public {
StakeStruct storage _stake = stakes[msg.sender][_stakeID];
require(_stake.locktime == 0, "Staking: Stake unlocked");
require(_to != address(0), "Staking: Can't delegate to 0 address");
if (_stake.delegate != _to) {
// Check if snapshot needs to be taken
snapshot(_stake.delegate); // From
snapshot(_to); // To
// Move voting power to delegatee
moveVotingPower(_stake.delegate, _to, _stake.amount);
// Emit event
emit Delegate(msg.sender, _stake.delegate, _to, _stakeID, _stake.amount);
// Update delegation
_stake.delegate = _to;
}
}
/**
* @notice Delegates voting power of stake back to self
* @param _stakeID - stake to delegate back to self
*/
function undelegate(uint256 _stakeID) external {
delegate(_stakeID, msg.sender);
}
/**
* @notice Gets global state at interval
* @param _interval - interval to get state at
* @return state
*/
function globalsSnapshotAtSearch(
uint256 _interval
) internal view returns (GlobalsSnapshot memory) {
// Index of element
uint256 index;
// High/low for binary search to find index
// https://en.wikipedia.org/wiki/Binary_search_algorithm
uint256 low = 0;
uint256 high = globalsSnapshots.length;
while (low < high) {
uint256 mid = Math.average(low, high);
// Note that mid will always be strictly less than high (i.e. it will be a valid array index)
// because Math.average rounds down (it does integer division with truncation).
if (globalsSnapshots[mid].interval > _interval) {
high = mid;
} else {
low = mid + 1;
}
}
// At this point `low` is the exclusive upper bound. Find the inclusive upper bounds and set to index
if (low > 0 && globalsSnapshots[low - 1].interval == _interval) {
return globalsSnapshots[low - 1];
} else {
index = low;
}
// If index is equal to snapshot array length, then no update was made after the requested
// snapshot interval. This means the latest value is the right one.
if (index == globalsSnapshots.length) {
return GlobalsSnapshot(_interval, totalVotingPower(), totalStaked);
} else {
return globalsSnapshots[index];
}
}
/**
* @notice Gets global state at interval
* @param _interval - interval to get state at
* @param _hint - off-chain computed index of interval
* @return state
*/
function globalsSnapshotAt(
uint256 _interval,
uint256 _hint
) external view returns (GlobalsSnapshot memory) {
require(_interval <= currentInterval(), "Staking: Interval out of bounds");
// Check if hint is correct, else fall back to binary search
if (
_hint <= globalsSnapshots.length &&
(_hint == 0 || globalsSnapshots[_hint - 1].interval < _interval) &&
(_hint == globalsSnapshots.length || globalsSnapshots[_hint].interval >= _interval)
) {
// The hint is correct
if (_hint < globalsSnapshots.length) return globalsSnapshots[_hint];
else return GlobalsSnapshot(_interval, totalVotingPower(), totalStaked);
} else return globalsSnapshotAtSearch(_interval);
}
/**
* @notice Gets account state at interval
* @param _account - account to get state for
* @param _interval - interval to get state at
* @return state
*/
function accountSnapshotAtSearch(
address _account,
uint256 _interval
) internal view returns (AccountSnapshot memory) {
// Get account snapshots array
AccountSnapshot[] storage snapshots = accountSnapshots[_account];
// Index of element
uint256 index;
// High/low for binary search to find index
// https://en.wikipedia.org/wiki/Binary_search_algorithm
uint256 low = 0;
uint256 high = snapshots.length;
while (low < high) {
uint256 mid = Math.average(low, high);
// Note that mid will always be strictly less than high (i.e. it will be a valid array index)
// because Math.average rounds down (it does integer division with truncation).
if (snapshots[mid].interval > _interval) {
high = mid;
} else {
low = mid + 1;
}
}
// At this point `low` is the exclusive upper bound. Find the inclusive upper bounds and set to index
if (low > 0 && snapshots[low - 1].interval == _interval) {
return snapshots[low - 1];
} else {
index = low;
}
// If index is equal to snapshot array length, then no update was made after the requested
// snapshot interval. This means the latest value is the right one.
if (index == snapshots.length) {
return AccountSnapshot(_interval, votingPower[_account]);
} else {
return snapshots[index];
}
}
/**
* @notice Gets account state at interval
* @param _account - account to get state for
* @param _interval - interval to get state at
* @param _hint - off-chain computed index of interval
* @return state
*/
function accountSnapshotAt(
address _account,
uint256 _interval,
uint256 _hint
) external view returns (AccountSnapshot memory) {
require(_interval <= currentInterval(), "Staking: Interval out of bounds");
// Get account snapshots array
AccountSnapshot[] storage snapshots = accountSnapshots[_account];
// Check if hint is correct, else fall back to binary search
if (
_hint <= snapshots.length &&
(_hint == 0 || snapshots[_hint - 1].interval < _interval) &&
(_hint == snapshots.length || snapshots[_hint].interval >= _interval)
) {
// The hint is correct
if (_hint < snapshots.length) return snapshots[_hint];
else return AccountSnapshot(_interval, votingPower[_account]);
} else return accountSnapshotAtSearch(_account, _interval);
}
/**
* @notice Stake tokens
* @dev This contract should be approve()'d for _amount
* @param _amount - Amount to stake
* @return stake ID
*/
function stake(uint256 _amount) public returns (uint256) {
// Check if amount is not 0
require(_amount > 0, "Staking: Amount not set");
// Check if snapshot needs to be taken
snapshot(msg.sender);
// Get stakeID
uint256 stakeID = stakes[msg.sender].length;
// Set stake values
stakes[msg.sender].push(StakeStruct(msg.sender, _amount, block.timestamp, 0, 0));
// Increment global staked
totalStaked += _amount;
// Add voting power
moveVotingPower(address(0), msg.sender, _amount);
// Transfer tokens
stakingToken.safeTransferFrom(msg.sender, address(this), _amount);
// Emit event
emit Stake(msg.sender, stakeID, _amount);
return stakeID;
}
/**
* @notice Unlock stake tokens
* @param _stakeID - Stake to unlock
*/
function unlock(uint256 _stakeID) public {
require(stakes[msg.sender][_stakeID].locktime == 0, "Staking: Stake already unlocked");
// Check if snapshot needs to be taken
snapshot(msg.sender);
// Set stake locktime
stakes[msg.sender][_stakeID].locktime = block.timestamp + STAKE_LOCKTIME;
// Remove voting power
moveVotingPower(
stakes[msg.sender][_stakeID].delegate,
address(0),
stakes[msg.sender][_stakeID].amount
);
// Emit event
emit Unlock(msg.sender, _stakeID);
}
/**
* @notice Claim stake token
* @param _stakeID - Stake to claim
*/
function claim(uint256 _stakeID) public {
require(
stakes[msg.sender][_stakeID].locktime != 0 &&
stakes[msg.sender][_stakeID].locktime < block.timestamp,
"Staking: Stake not unlocked"
);
require(stakes[msg.sender][_stakeID].claimedTime == 0, "Staking: Stake already claimed");
// Check if snapshot needs to be taken
snapshot(msg.sender);
// Set stake claimed time
stakes[msg.sender][_stakeID].claimedTime = block.timestamp;
// Decrement global staked
totalStaked -= stakes[msg.sender][_stakeID].amount;
// Transfer tokens
stakingToken.safeTransfer(msg.sender, stakes[msg.sender][_stakeID].amount);
// Emit event
emit Claim(msg.sender, _stakeID);
}
}
Compiler Settings
{"outputSelection":{"*":{"*":["storageLayout","abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata"],"":["ast"]}},"optimizer":{"runs":200,"enabled":true},"libraries":{}}
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_stakingContract","internalType":"contract Staking"},{"type":"address","name":"_delegator","internalType":"contract Delegator"}]},{"type":"error","name":"ExecutionFailed","inputs":[{"type":"uint256","name":"index","internalType":"uint256"},{"type":"bytes","name":"data","internalType":"bytes"}]},{"type":"event","name":"Execution","inputs":[{"type":"uint256","name":"id","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"event","name":"Proposal","inputs":[{"type":"uint256","name":"id","internalType":"uint256","indexed":true},{"type":"address","name":"proposer","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Sponsorship","inputs":[{"type":"uint256","name":"id","internalType":"uint256","indexed":true},{"type":"address","name":"sponsor","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"SponsorshipRevocation","inputs":[{"type":"uint256","name":"id","internalType":"uint256","indexed":true},{"type":"address","name":"sponsor","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"VoteCall","inputs":[{"type":"uint256","name":"id","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"event","name":"VoteCast","inputs":[{"type":"uint256","name":"id","internalType":"uint256","indexed":true},{"type":"address","name":"voter","internalType":"address","indexed":true},{"type":"bool","name":"affirmative","internalType":"bool","indexed":false},{"type":"uint256","name":"votes","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"VoteKeySet","inputs":[{"type":"address","name":"account","internalType":"address","indexed":true},{"type":"address","name":"votingKey","internalType":"address","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract Delegator"}],"name":"DELEGATOR_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"EXECUTION_END_OFFSET","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"EXECUTION_START_OFFSET","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"PROPOSAL_SPONSOR_THRESHOLD","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"QUORUM","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"SPONSOR_LOCKOUT_TIME","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"SPONSOR_WINDOW","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract Staking"}],"name":"STAKING_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"VOTING_NAY_END_OFFSET","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"VOTING_START_OFFSET","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"VOTING_YAY_END_OFFSET","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"callVote","inputs":[{"type":"uint256","name":"_id","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"createProposal","inputs":[{"type":"string","name":"_proposalDocument","internalType":"string"},{"type":"tuple[]","name":"_actions","internalType":"struct Voting.Call[]","components":[{"type":"address","name":"callContract","internalType":"address"},{"type":"bytes","name":"data","internalType":"bytes"},{"type":"uint256","name":"value","internalType":"uint256"}]}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"executeProposal","inputs":[{"type":"uint256","name":"_id","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"tuple[]","name":"","internalType":"struct Voting.Call[]","components":[{"type":"address","name":"callContract","internalType":"address"},{"type":"bytes","name":"data","internalType":"bytes"},{"type":"uint256","name":"value","internalType":"uint256"}]}],"name":"getActions","inputs":[{"type":"uint256","name":"_id","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getSponsored","inputs":[{"type":"uint256","name":"_id","internalType":"uint256"},{"type":"address","name":"_account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getVotes","inputs":[{"type":"uint256","name":"_id","internalType":"uint256"},{"type":"address","name":"_account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"lastSponsorTime","internalType":"uint256"},{"type":"uint256","name":"proposalID","internalType":"uint256"}],"name":"lastSponsored","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"executed","internalType":"bool"},{"type":"address","name":"proposer","internalType":"address"},{"type":"string","name":"proposalDocument","internalType":"string"},{"type":"uint256","name":"publishTime","internalType":"uint256"},{"type":"uint256","name":"voteCallTime","internalType":"uint256"},{"type":"uint256","name":"sponsorship","internalType":"uint256"},{"type":"uint256","name":"yayVotes","internalType":"uint256"},{"type":"uint256","name":"nayVotes","internalType":"uint256"},{"type":"uint256","name":"sponsorInterval","internalType":"uint256"},{"type":"uint256","name":"votingInterval","internalType":"uint256"}],"name":"proposals","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"proposalsLength","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setVotingKey","inputs":[{"type":"address","name":"_votingKey","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"sponsorProposal","inputs":[{"type":"uint256","name":"_id","internalType":"uint256"},{"type":"uint256","name":"_amount","internalType":"uint256"},{"type":"address","name":"_account","internalType":"address"},{"type":"uint256","name":"_hint","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"unsponsorProposal","inputs":[{"type":"uint256","name":"_id","internalType":"uint256"},{"type":"uint256","name":"_amount","internalType":"uint256"},{"type":"address","name":"_account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"vote","inputs":[{"type":"uint256","name":"_id","internalType":"uint256"},{"type":"uint256","name":"_amount","internalType":"uint256"},{"type":"bool","name":"_affirmative","internalType":"bool"},{"type":"address","name":"_account","internalType":"address"},{"type":"uint256","name":"_hint","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"votingKey","inputs":[{"type":"address","name":"","internalType":"address"}]}]
Contract Creation Code
0x60c06040523480156200001157600080fd5b506040516200237838038062002378833981016040819052620000349162000065565b6001600160a01b039182166080521660a052620000a4565b6001600160a01b03811681146200006257600080fd5b50565b600080604083850312156200007957600080fd5b825162000086816200004c565b602084015190925062000099816200004c565b809150509250929050565b60805160a05161228b620000ed600039600081816102a9015261083701526000818161036f01528181610bec01528181610ecc0152818161116b01526115b7015261228b6000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806351ec8bd7116100de5780639f31490d11610097578063da19ddfb11610071578063da19ddfb1461036a578063de3479df14610391578063df4c119a14610324578063f4f624e5146103a457600080fd5b80639f31490d14610324578063b84882b31461032e578063b84bddf41461034157600080fd5b806351ec8bd71461029157806359383bf5146102a457806368197360146102e35780636b10b120146102f65780636d0799321461030957806389508d151461031357600080fd5b80632e80d9b6116101305780632e80d9b614610227578063328dd9821461023957806342f87abf1461025957806344c7c8671461026357806349fe1f6d1461026b5780634f5268751461027e57600080fd5b8063013cf08b1461017857806305fe07fb146101aa5780630d61b519146101c25780630fe0554d146101d7578063191d79a7146101e15780631af74bc31461021d575b600080fd5b61018b6101863660046119d9565b6103b7565b6040516101a19a99989796959493929190611a42565b60405180910390f35b6101b46212750081565b6040519081526020016101a1565b6101d56101d03660046119d9565b6104ac565b005b6101b462278d0081565b6102086101ef366004611ac6565b6002602052600090815260409020805460019091015482565b604080519283526020830191909152016101a1565b6101b46206978081565b6101b46a01a784379d99db4200000081565b61024c6102473660046119d9565b61098f565b6040516101a19190611ae8565b6101b46207e90081565b6000546101b4565b6101d56102793660046119d9565b610ac4565b6101d561028c366004611b85565b610ca0565b6101b461029f366004611bd5565b611098565b6102cb7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101a1565b6101b46102f1366004611c9a565b611387565b6101d5610304366004611cc6565b6113cd565b6101b46202a30081565b6101b46969e10de76676d080000081565b6101b462093a8081565b6101d561033c366004611ac6565b61173c565b6102cb61034f366004611ac6565b6001602052600090815260409020546001600160a01b031681565b6102cb7f000000000000000000000000000000000000000000000000000000000000000081565b6101b461039f366004611c9a565b61179e565b6101d56103b2366004611d03565b6117e3565b600081815481106103c757600080fd5b60009182526020909120600c90910201805460018201805460ff831694506101009092046001600160a01b031692916103ff90611d38565b80601f016020809104026020016040519081016040528092919081815260200182805461042b90611d38565b80156104785780601f1061044d57610100808354040283529160200191610478565b820191906000526020600020905b81548152906001019060200180831161045b57829003601f168201915b50505050509080600301549080600401549080600501549080600801549080600901549080600a01549080600b015490508a565b60008082815481106104c0576104c0611d72565b90600052602060002090600c0201905060008160040154116104fd5760405162461bcd60e51b81526004016104f490611d88565b60405180910390fd5b6a01a784379d99db42000000816008015410156105675760405162461bcd60e51b815260206004820152602260248201527f566f74696e673a2051756f72756d206861736e2774206265656e207265616368604482015261195960f21b60648201526084016104f4565b80600901548160080154116105ca5760405162461bcd60e51b815260206004820152602360248201527f566f74696e673a2050726f706f73616c206861736e27742070617373656420766044820152626f746560e81b60648201526084016104f4565b62093a8081600401546105dd9190611def565b421161063a5760405162461bcd60e51b815260206004820152602660248201527f566f74696e673a20457865637574696f6e2077696e646f77206861736e2774206044820152651bdc195b995960d21b60648201526084016104f4565b62127500816004015461064d9190611def565b42106106a75760405162461bcd60e51b815260206004820152602360248201527f566f74696e673a20457865637574696f6e2077696e646f772068617320636c6f6044820152621cd95960ea1b60648201526084016104f4565b805460ff161561070c5760405162461bcd60e51b815260206004820152602a60248201527f566f74696e673a2050726f706f73616c2068617320616c7265616479206265656044820152691b88195e1958dd5d195960b21b60648201526084016104f4565b805460ff191660011781556002810180546040805160208084028201810190925282815260009390929091849084015b8282101561082057600084815260209081902060408051606081019091526003850290910180546001600160a01b03168252600181018054929391929184019161078590611d38565b80601f01602080910402602001604051908101604052809291908181526020018280546107b190611d38565b80156107fe5780601f106107d3576101008083540402835291602001916107fe565b820191906000526020600020905b8154815290600101906020018083116107e157829003601f168201915b505050505081526020016002820154815250508152602001906001019061073c565b50505050905060005b815181101561095e576000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c6b295c185858151811061087657610876611d72565b60200260200101516000015186868151811061089457610894611d72565b6020026020010151602001518787815181106108b2576108b2611d72565b6020026020010151604001516040518463ffffffff1660e01b81526004016108dc93929190611e02565b6000604051808303816000875af11580156108fb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526109239190810190611e4c565b9150915081610949578281604051632c4029e960e01b81526004016104f4929190611f0f565b506109579050600182611def565b9050610829565b5060405183907f33e13ecb54c3076d8e8bb8c2881800a4d972b792045ffae98fdf46df365fed7590600090a2505050565b6060600082815481106109a4576109a4611d72565b90600052602060002090600c0201600201805480602002602001604051908101604052809291908181526020016000905b82821015610ab957600084815260209081902060408051606081019091526003850290910180546001600160a01b031682526001810180549293919291840191610a1e90611d38565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4a90611d38565b8015610a975780601f10610a6c57610100808354040283529160200191610a97565b820191906000526020600020905b815481529060010190602001808311610a7a57829003601f168201915b50505050508152602001600282015481525050815260200190600101906109d5565b505050509050919050565b6000808281548110610ad857610ad8611d72565b90600052602060002090600c0201905062278d008160030154610afb9190611def565b4210610b195760405162461bcd60e51b81526004016104f490611f30565b600481015415610b795760405162461bcd60e51b815260206004820152602560248201527f566f74696e673a2050726f706f73616c20616c726561647920676f6e6520746f60448201526420766f746560d81b60648201526084016104f4565b6969e10de76676d080000081600501541015610be15760405162461bcd60e51b815260206004820152602160248201527f566f74696e673a2053706f6e736f72207468726573686f6c64206e6f74206d656044820152601d60fa1b60648201526084016104f4565b4281600401819055507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663363487bc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c6c9190611f65565b600b82015560405182907f4bebca4d6e9291871f8e494321fae9eba02c07d0844ff387b8efd20c7a41de3290600090a25050565b81336001600160a01b0382161480610cd157506001600160a01b038181166000908152600160205260409020541633145b610ced5760405162461bcd60e51b81526004016104f490611f7e565b6000808781548110610d0157610d01611d72565b90600052602060002090600c020190506000816004015411610d355760405162461bcd60e51b81526004016104f490611d88565b6202a3008160040154610d489190611def565b4211610da25760405162461bcd60e51b815260206004820152602360248201527f566f74696e673a20566f74696e672077696e646f77206861736e2774206f70656044820152621b995960ea1b60648201526084016104f4565b8415610e2357620697808160040154610dbb9190611def565b4210610e1e5760405162461bcd60e51b815260206004820152602c60248201527f566f74696e673a2041666669726d617469766520766f74696e672077696e646f60448201526b1dc81a185cc818db1bdcd95960a21b60648201526084016104f4565b610e96565b6207e9008160040154610e369190611def565b4210610e965760405162461bcd60e51b815260206004820152602960248201527f566f74696e673a204e6567617469766520766f74696e672077696e646f772068604482015268185cc818db1bdcd95960ba1b60648201526084016104f4565b600b81015460405163046a32f360e11b81526001600160a01b0386811660048301526024820192909252604481018590526000917f000000000000000000000000000000000000000000000000000000000000000016906308d465e6906064016040805180830381865afa158015610f12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f369190611fb5565b9050806020015187836007016000886001600160a01b03166001600160a01b0316815260200190815260200160002054610f709190611def565b1115610fd85760405162461bcd60e51b815260206004820152603160248201527f566f74696e673a204e6f7420656e6f75676820766f74696e6720706f77657220604482015270746f2063617374207468697320766f746560781b60648201526084016104f4565b6001600160a01b038516600090815260078301602052604081208054899290611002908490611def565b9091555050851561102c57868260080160008282546110219190611def565b909155506110469050565b868260090160008282546110409190611def565b90915550505b604080518715158152602081018990526001600160a01b038716918a917fcbdf6214089cba887ecbf35a0b6a734589959c9763342c756bb2a80ca2bc9f6e910160405180910390a35050505050505050565b6000816110e75760405162461bcd60e51b815260206004820152601c60248201527f566f74696e673a204e6f20616374696f6e73207370656369666965640000000060448201526064016104f4565b600080546001810182559080527f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563600c82029081018054610100600160a81b0319163361010002178155907f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5640161115f878983612053565b504281600301819055507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663363487bc6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111eb9190611f65565b600a82015560005b8481101561134f5781600201604051806060016040528088888581811061121c5761121c611d72565b905060200281019061122e9190612114565b61123c906020810190611ac6565b6001600160a01b0316815260200188888581811061125c5761125c611d72565b905060200281019061126e9190612114565b61127c906020810190612134565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050908252506020018888858181106112c8576112c8611d72565b90506020028101906112da9190612114565b6040013590528154600180820184556000938452602093849020835160039093020180546001600160a01b0319166001600160a01b0390931692909217825592820151919290919082019061132f9082612182565b5060409190910151600290910155611348600182611def565b90506111f3565b50604051339083907fe56c149b9a4f632c327b2bc8b691ebfd0d76354ca7b678faea1effbd9d9f223d90600090a35095945050505050565b600080838154811061139b5761139b611d72565b600091825260208083206001600160a01b03861684526007600c90930201919091019052604090205490505b92915050565b81336001600160a01b03821614806113fe57506001600160a01b038181166000908152600160205260409020541633145b61141a5760405162461bcd60e51b81526004016104f490611f7e565b6001600160a01b03831660009081526002602052604090206001015485148061146857506001600160a01b03831660009081526002602052604090205462093a80906114669042612242565b115b6114cb5760405162461bcd60e51b815260206004820152602e60248201527f566f74696e673a2043616e206f6e6c792073706f6e736f72206f6e652070726f60448201526d706f73616c20706572207765656b60901b60648201526084016104f4565b60008086815481106114df576114df611d72565b90600052602060002090600c02019050806004015460001461153a5760405162461bcd60e51b8152602060048201526014602482015273566f74696e673a20476f6e6520746f20766f746560601b60448201526064016104f4565b62278d00816003015461154d9190611def565b421061156b5760405162461bcd60e51b81526004016104f490611f30565b6001600160a01b03848116600081815260026020526040808220600181018b9055429055600a850154905163046a32f360e11b81526004810193909352602483015260448201869052917f000000000000000000000000000000000000000000000000000000000000000016906308d465e6906064016040805180830381865afa1580156115fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116219190611fb5565b9050806020015186836006016000886001600160a01b03166001600160a01b031681526020019081526020016000205461165b9190611def565b11156116a95760405162461bcd60e51b815260206004820152601f60248201527f566f74696e673a204e6f7420656e6f75676820766f74696e6720706f7765720060448201526064016104f4565b6001600160a01b0385166000908152600683016020526040812080548892906116d3908490611def565b92505081905550858260050160008282546116ee9190611def565b90915550506040518681526001600160a01b0386169088907fdf1985be8066f51229b5a3b530a445682812a3c384a5414ed34fa80e892dce0a9060200160405180910390a350505050505050565b3360008181526001602090815260409182902080546001600160a01b0319166001600160a01b03861690811790915591519182527f54b2c36a8e9609b3856a128ab0d9388e54e17d25dcc1b3332e9a2bfe8a5a12e2910160405180910390a250565b60008083815481106117b2576117b2611d72565b600091825260208083206001600160a01b03861684526006600c909302019190910190526040902054905092915050565b80336001600160a01b038216148061181457506001600160a01b038181166000908152600160205260409020541633145b6118305760405162461bcd60e51b81526004016104f490611f7e565b600080858154811061184457611844611d72565b90600052602060002090600c02019050806004015460001461189f5760405162461bcd60e51b8152602060048201526014602482015273566f74696e673a20476f6e6520746f20766f746560601b60448201526064016104f4565b62278d0081600301546118b29190611def565b42106118d05760405162461bcd60e51b81526004016104f490611f30565b6001600160a01b03831660009081526006820160205260409020548411156119485760405162461bcd60e51b815260206004820152602560248201527f566f74696e673a20416d6f756e742067726561746572207468616e2073706f6e6044820152641cdbdc995960da1b60648201526084016104f4565b6001600160a01b038316600090815260068201602052604081208054869290611972908490612242565b925050819055508381600501600082825461198d9190612242565b90915550506040518481526001600160a01b0384169086907feabb9788e481eecaf208dddaa2d5c986c2177e4b1b00cc25792b87c9ed00e7b29060200160405180910390a35050505050565b6000602082840312156119eb57600080fd5b5035919050565b60005b83811015611a0d5781810151838201526020016119f5565b50506000910152565b60008151808452611a2e8160208601602086016119f2565b601f01601f19169290920160200192915050565b8a151581526001600160a01b038a16602082015261014060408201819052600090611a6f8382018c611a16565b606084019a909a525050608081019690965260a086019490945260c085019290925260e0840152610100830152610120909101529392505050565b80356001600160a01b0381168114611ac157600080fd5b919050565b600060208284031215611ad857600080fd5b611ae182611aaa565b9392505050565b60006020808301818452808551808352604092508286019150828160051b87010184880160005b83811015611b6657888303603f19018552815180516001600160a01b0316845287810151606089860181905290611b4882870182611a16565b92890151958901959095525094870194925090860190600101611b0f565b509098975050505050505050565b8015158114611b8257600080fd5b50565b600080600080600060a08688031215611b9d57600080fd5b85359450602086013593506040860135611bb681611b74565b9250611bc460608701611aaa565b949793965091946080013592915050565b60008060008060408587031215611beb57600080fd5b843567ffffffffffffffff80821115611c0357600080fd5b818701915087601f830112611c1757600080fd5b813581811115611c2657600080fd5b886020828501011115611c3857600080fd5b602092830196509450908601359080821115611c5357600080fd5b818701915087601f830112611c6757600080fd5b813581811115611c7657600080fd5b8860208260051b8501011115611c8b57600080fd5b95989497505060200194505050565b60008060408385031215611cad57600080fd5b82359150611cbd60208401611aaa565b90509250929050565b60008060008060808587031215611cdc57600080fd5b8435935060208501359250611cf360408601611aaa565b9396929550929360600135925050565b600080600060608486031215611d1857600080fd5b8335925060208401359150611d2f60408501611aaa565b90509250925092565b600181811c90821680611d4c57607f821691505b602082108103611d6c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b60208082526031908201527f566f74696e673a20566f7465206861736e2774206265656e2063616c6c656420604082015270199bdc881d1a1a5cc81c1c9bdc1bdcd85b607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156113c7576113c7611dd9565b6001600160a01b0384168152606060208201819052600090611e2690830185611a16565b9050826040830152949350505050565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215611e5f57600080fd5b8251611e6a81611b74565b602084015190925067ffffffffffffffff80821115611e8857600080fd5b818501915085601f830112611e9c57600080fd5b815181811115611eae57611eae611e36565b604051601f8201601f19908116603f01168101908382118183101715611ed657611ed6611e36565b81604052828152886020848701011115611eef57600080fd5b611f008360208301602088016119f2565b80955050505050509250929050565b828152604060208201526000611f286040830184611a16565b949350505050565b6020808252818101527f566f74696e673a2053706f6e736f72696e672077696e646f7720706173736564604082015260600190565b600060208284031215611f7757600080fd5b5051919050565b6020808252601d908201527f566f74696e673a2043616c6c6572206e6f7420617574686f72697a6564000000604082015260600190565b600060408284031215611fc757600080fd5b6040516040810181811067ffffffffffffffff82111715611fea57611fea611e36565b604052825181526020928301519281019290925250919050565b601f82111561204e57600081815260208120601f850160051c8101602086101561202b5750805b601f850160051c820191505b8181101561204a57828155600101612037565b5050505b505050565b67ffffffffffffffff83111561206b5761206b611e36565b61207f836120798354611d38565b83612004565b6000601f8411600181146120b3576000851561209b5750838201355b600019600387901b1c1916600186901b17835561210d565b600083815260209020601f19861690835b828110156120e457868501358255602094850194600190920191016120c4565b50868210156121015760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b60008235605e1983360301811261212a57600080fd5b9190910192915050565b6000808335601e1984360301811261214b57600080fd5b83018035915067ffffffffffffffff82111561216657600080fd5b60200191503681900382131561217b57600080fd5b9250929050565b815167ffffffffffffffff81111561219c5761219c611e36565b6121b0816121aa8454611d38565b84612004565b602080601f8311600181146121e557600084156121cd5750858301515b600019600386901b1c1916600185901b17855561204a565b600085815260208120601f198616915b82811015612214578886015182559484019460019091019084016121f5565b50858210156122325787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b818103818111156113c7576113c7611dd956fea2646970667358221220386fc2a1e70505560b4cf0096070ba55eed67c96157c35d53ef4b58ef06d2e4964736f6c63430008110033000000000000000000000000c2b89a74e1f6bb035c4c6adf45f5931e9ca537ff0000000000000000000000009f95ec66321a392da3a440eee7d9fce2e25a6a02
Deployed ByteCode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c806351ec8bd7116100de5780639f31490d11610097578063da19ddfb11610071578063da19ddfb1461036a578063de3479df14610391578063df4c119a14610324578063f4f624e5146103a457600080fd5b80639f31490d14610324578063b84882b31461032e578063b84bddf41461034157600080fd5b806351ec8bd71461029157806359383bf5146102a457806368197360146102e35780636b10b120146102f65780636d0799321461030957806389508d151461031357600080fd5b80632e80d9b6116101305780632e80d9b614610227578063328dd9821461023957806342f87abf1461025957806344c7c8671461026357806349fe1f6d1461026b5780634f5268751461027e57600080fd5b8063013cf08b1461017857806305fe07fb146101aa5780630d61b519146101c25780630fe0554d146101d7578063191d79a7146101e15780631af74bc31461021d575b600080fd5b61018b6101863660046119d9565b6103b7565b6040516101a19a99989796959493929190611a42565b60405180910390f35b6101b46212750081565b6040519081526020016101a1565b6101d56101d03660046119d9565b6104ac565b005b6101b462278d0081565b6102086101ef366004611ac6565b6002602052600090815260409020805460019091015482565b604080519283526020830191909152016101a1565b6101b46206978081565b6101b46a01a784379d99db4200000081565b61024c6102473660046119d9565b61098f565b6040516101a19190611ae8565b6101b46207e90081565b6000546101b4565b6101d56102793660046119d9565b610ac4565b6101d561028c366004611b85565b610ca0565b6101b461029f366004611bd5565b611098565b6102cb7f0000000000000000000000009f95ec66321a392da3a440eee7d9fce2e25a6a0281565b6040516001600160a01b0390911681526020016101a1565b6101b46102f1366004611c9a565b611387565b6101d5610304366004611cc6565b6113cd565b6101b46202a30081565b6101b46969e10de76676d080000081565b6101b462093a8081565b6101d561033c366004611ac6565b61173c565b6102cb61034f366004611ac6565b6001602052600090815260409020546001600160a01b031681565b6102cb7f000000000000000000000000c2b89a74e1f6bb035c4c6adf45f5931e9ca537ff81565b6101b461039f366004611c9a565b61179e565b6101d56103b2366004611d03565b6117e3565b600081815481106103c757600080fd5b60009182526020909120600c90910201805460018201805460ff831694506101009092046001600160a01b031692916103ff90611d38565b80601f016020809104026020016040519081016040528092919081815260200182805461042b90611d38565b80156104785780601f1061044d57610100808354040283529160200191610478565b820191906000526020600020905b81548152906001019060200180831161045b57829003601f168201915b50505050509080600301549080600401549080600501549080600801549080600901549080600a01549080600b015490508a565b60008082815481106104c0576104c0611d72565b90600052602060002090600c0201905060008160040154116104fd5760405162461bcd60e51b81526004016104f490611d88565b60405180910390fd5b6a01a784379d99db42000000816008015410156105675760405162461bcd60e51b815260206004820152602260248201527f566f74696e673a2051756f72756d206861736e2774206265656e207265616368604482015261195960f21b60648201526084016104f4565b80600901548160080154116105ca5760405162461bcd60e51b815260206004820152602360248201527f566f74696e673a2050726f706f73616c206861736e27742070617373656420766044820152626f746560e81b60648201526084016104f4565b62093a8081600401546105dd9190611def565b421161063a5760405162461bcd60e51b815260206004820152602660248201527f566f74696e673a20457865637574696f6e2077696e646f77206861736e2774206044820152651bdc195b995960d21b60648201526084016104f4565b62127500816004015461064d9190611def565b42106106a75760405162461bcd60e51b815260206004820152602360248201527f566f74696e673a20457865637574696f6e2077696e646f772068617320636c6f6044820152621cd95960ea1b60648201526084016104f4565b805460ff161561070c5760405162461bcd60e51b815260206004820152602a60248201527f566f74696e673a2050726f706f73616c2068617320616c7265616479206265656044820152691b88195e1958dd5d195960b21b60648201526084016104f4565b805460ff191660011781556002810180546040805160208084028201810190925282815260009390929091849084015b8282101561082057600084815260209081902060408051606081019091526003850290910180546001600160a01b03168252600181018054929391929184019161078590611d38565b80601f01602080910402602001604051908101604052809291908181526020018280546107b190611d38565b80156107fe5780601f106107d3576101008083540402835291602001916107fe565b820191906000526020600020905b8154815290600101906020018083116107e157829003601f168201915b505050505081526020016002820154815250508152602001906001019061073c565b50505050905060005b815181101561095e576000807f0000000000000000000000009f95ec66321a392da3a440eee7d9fce2e25a6a026001600160a01b031663c6b295c185858151811061087657610876611d72565b60200260200101516000015186868151811061089457610894611d72565b6020026020010151602001518787815181106108b2576108b2611d72565b6020026020010151604001516040518463ffffffff1660e01b81526004016108dc93929190611e02565b6000604051808303816000875af11580156108fb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526109239190810190611e4c565b9150915081610949578281604051632c4029e960e01b81526004016104f4929190611f0f565b506109579050600182611def565b9050610829565b5060405183907f33e13ecb54c3076d8e8bb8c2881800a4d972b792045ffae98fdf46df365fed7590600090a2505050565b6060600082815481106109a4576109a4611d72565b90600052602060002090600c0201600201805480602002602001604051908101604052809291908181526020016000905b82821015610ab957600084815260209081902060408051606081019091526003850290910180546001600160a01b031682526001810180549293919291840191610a1e90611d38565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4a90611d38565b8015610a975780601f10610a6c57610100808354040283529160200191610a97565b820191906000526020600020905b815481529060010190602001808311610a7a57829003601f168201915b50505050508152602001600282015481525050815260200190600101906109d5565b505050509050919050565b6000808281548110610ad857610ad8611d72565b90600052602060002090600c0201905062278d008160030154610afb9190611def565b4210610b195760405162461bcd60e51b81526004016104f490611f30565b600481015415610b795760405162461bcd60e51b815260206004820152602560248201527f566f74696e673a2050726f706f73616c20616c726561647920676f6e6520746f60448201526420766f746560d81b60648201526084016104f4565b6969e10de76676d080000081600501541015610be15760405162461bcd60e51b815260206004820152602160248201527f566f74696e673a2053706f6e736f72207468726573686f6c64206e6f74206d656044820152601d60fa1b60648201526084016104f4565b4281600401819055507f000000000000000000000000c2b89a74e1f6bb035c4c6adf45f5931e9ca537ff6001600160a01b031663363487bc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c6c9190611f65565b600b82015560405182907f4bebca4d6e9291871f8e494321fae9eba02c07d0844ff387b8efd20c7a41de3290600090a25050565b81336001600160a01b0382161480610cd157506001600160a01b038181166000908152600160205260409020541633145b610ced5760405162461bcd60e51b81526004016104f490611f7e565b6000808781548110610d0157610d01611d72565b90600052602060002090600c020190506000816004015411610d355760405162461bcd60e51b81526004016104f490611d88565b6202a3008160040154610d489190611def565b4211610da25760405162461bcd60e51b815260206004820152602360248201527f566f74696e673a20566f74696e672077696e646f77206861736e2774206f70656044820152621b995960ea1b60648201526084016104f4565b8415610e2357620697808160040154610dbb9190611def565b4210610e1e5760405162461bcd60e51b815260206004820152602c60248201527f566f74696e673a2041666669726d617469766520766f74696e672077696e646f60448201526b1dc81a185cc818db1bdcd95960a21b60648201526084016104f4565b610e96565b6207e9008160040154610e369190611def565b4210610e965760405162461bcd60e51b815260206004820152602960248201527f566f74696e673a204e6567617469766520766f74696e672077696e646f772068604482015268185cc818db1bdcd95960ba1b60648201526084016104f4565b600b81015460405163046a32f360e11b81526001600160a01b0386811660048301526024820192909252604481018590526000917f000000000000000000000000c2b89a74e1f6bb035c4c6adf45f5931e9ca537ff16906308d465e6906064016040805180830381865afa158015610f12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f369190611fb5565b9050806020015187836007016000886001600160a01b03166001600160a01b0316815260200190815260200160002054610f709190611def565b1115610fd85760405162461bcd60e51b815260206004820152603160248201527f566f74696e673a204e6f7420656e6f75676820766f74696e6720706f77657220604482015270746f2063617374207468697320766f746560781b60648201526084016104f4565b6001600160a01b038516600090815260078301602052604081208054899290611002908490611def565b9091555050851561102c57868260080160008282546110219190611def565b909155506110469050565b868260090160008282546110409190611def565b90915550505b604080518715158152602081018990526001600160a01b038716918a917fcbdf6214089cba887ecbf35a0b6a734589959c9763342c756bb2a80ca2bc9f6e910160405180910390a35050505050505050565b6000816110e75760405162461bcd60e51b815260206004820152601c60248201527f566f74696e673a204e6f20616374696f6e73207370656369666965640000000060448201526064016104f4565b600080546001810182559080527f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563600c82029081018054610100600160a81b0319163361010002178155907f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5640161115f878983612053565b504281600301819055507f000000000000000000000000c2b89a74e1f6bb035c4c6adf45f5931e9ca537ff6001600160a01b031663363487bc6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111eb9190611f65565b600a82015560005b8481101561134f5781600201604051806060016040528088888581811061121c5761121c611d72565b905060200281019061122e9190612114565b61123c906020810190611ac6565b6001600160a01b0316815260200188888581811061125c5761125c611d72565b905060200281019061126e9190612114565b61127c906020810190612134565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050908252506020018888858181106112c8576112c8611d72565b90506020028101906112da9190612114565b6040013590528154600180820184556000938452602093849020835160039093020180546001600160a01b0319166001600160a01b0390931692909217825592820151919290919082019061132f9082612182565b5060409190910151600290910155611348600182611def565b90506111f3565b50604051339083907fe56c149b9a4f632c327b2bc8b691ebfd0d76354ca7b678faea1effbd9d9f223d90600090a35095945050505050565b600080838154811061139b5761139b611d72565b600091825260208083206001600160a01b03861684526007600c90930201919091019052604090205490505b92915050565b81336001600160a01b03821614806113fe57506001600160a01b038181166000908152600160205260409020541633145b61141a5760405162461bcd60e51b81526004016104f490611f7e565b6001600160a01b03831660009081526002602052604090206001015485148061146857506001600160a01b03831660009081526002602052604090205462093a80906114669042612242565b115b6114cb5760405162461bcd60e51b815260206004820152602e60248201527f566f74696e673a2043616e206f6e6c792073706f6e736f72206f6e652070726f60448201526d706f73616c20706572207765656b60901b60648201526084016104f4565b60008086815481106114df576114df611d72565b90600052602060002090600c02019050806004015460001461153a5760405162461bcd60e51b8152602060048201526014602482015273566f74696e673a20476f6e6520746f20766f746560601b60448201526064016104f4565b62278d00816003015461154d9190611def565b421061156b5760405162461bcd60e51b81526004016104f490611f30565b6001600160a01b03848116600081815260026020526040808220600181018b9055429055600a850154905163046a32f360e11b81526004810193909352602483015260448201869052917f000000000000000000000000c2b89a74e1f6bb035c4c6adf45f5931e9ca537ff16906308d465e6906064016040805180830381865afa1580156115fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116219190611fb5565b9050806020015186836006016000886001600160a01b03166001600160a01b031681526020019081526020016000205461165b9190611def565b11156116a95760405162461bcd60e51b815260206004820152601f60248201527f566f74696e673a204e6f7420656e6f75676820766f74696e6720706f7765720060448201526064016104f4565b6001600160a01b0385166000908152600683016020526040812080548892906116d3908490611def565b92505081905550858260050160008282546116ee9190611def565b90915550506040518681526001600160a01b0386169088907fdf1985be8066f51229b5a3b530a445682812a3c384a5414ed34fa80e892dce0a9060200160405180910390a350505050505050565b3360008181526001602090815260409182902080546001600160a01b0319166001600160a01b03861690811790915591519182527f54b2c36a8e9609b3856a128ab0d9388e54e17d25dcc1b3332e9a2bfe8a5a12e2910160405180910390a250565b60008083815481106117b2576117b2611d72565b600091825260208083206001600160a01b03861684526006600c909302019190910190526040902054905092915050565b80336001600160a01b038216148061181457506001600160a01b038181166000908152600160205260409020541633145b6118305760405162461bcd60e51b81526004016104f490611f7e565b600080858154811061184457611844611d72565b90600052602060002090600c02019050806004015460001461189f5760405162461bcd60e51b8152602060048201526014602482015273566f74696e673a20476f6e6520746f20766f746560601b60448201526064016104f4565b62278d0081600301546118b29190611def565b42106118d05760405162461bcd60e51b81526004016104f490611f30565b6001600160a01b03831660009081526006820160205260409020548411156119485760405162461bcd60e51b815260206004820152602560248201527f566f74696e673a20416d6f756e742067726561746572207468616e2073706f6e6044820152641cdbdc995960da1b60648201526084016104f4565b6001600160a01b038316600090815260068201602052604081208054869290611972908490612242565b925050819055508381600501600082825461198d9190612242565b90915550506040518481526001600160a01b0384169086907feabb9788e481eecaf208dddaa2d5c986c2177e4b1b00cc25792b87c9ed00e7b29060200160405180910390a35050505050565b6000602082840312156119eb57600080fd5b5035919050565b60005b83811015611a0d5781810151838201526020016119f5565b50506000910152565b60008151808452611a2e8160208601602086016119f2565b601f01601f19169290920160200192915050565b8a151581526001600160a01b038a16602082015261014060408201819052600090611a6f8382018c611a16565b606084019a909a525050608081019690965260a086019490945260c085019290925260e0840152610100830152610120909101529392505050565b80356001600160a01b0381168114611ac157600080fd5b919050565b600060208284031215611ad857600080fd5b611ae182611aaa565b9392505050565b60006020808301818452808551808352604092508286019150828160051b87010184880160005b83811015611b6657888303603f19018552815180516001600160a01b0316845287810151606089860181905290611b4882870182611a16565b92890151958901959095525094870194925090860190600101611b0f565b509098975050505050505050565b8015158114611b8257600080fd5b50565b600080600080600060a08688031215611b9d57600080fd5b85359450602086013593506040860135611bb681611b74565b9250611bc460608701611aaa565b949793965091946080013592915050565b60008060008060408587031215611beb57600080fd5b843567ffffffffffffffff80821115611c0357600080fd5b818701915087601f830112611c1757600080fd5b813581811115611c2657600080fd5b886020828501011115611c3857600080fd5b602092830196509450908601359080821115611c5357600080fd5b818701915087601f830112611c6757600080fd5b813581811115611c7657600080fd5b8860208260051b8501011115611c8b57600080fd5b95989497505060200194505050565b60008060408385031215611cad57600080fd5b82359150611cbd60208401611aaa565b90509250929050565b60008060008060808587031215611cdc57600080fd5b8435935060208501359250611cf360408601611aaa565b9396929550929360600135925050565b600080600060608486031215611d1857600080fd5b8335925060208401359150611d2f60408501611aaa565b90509250925092565b600181811c90821680611d4c57607f821691505b602082108103611d6c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b60208082526031908201527f566f74696e673a20566f7465206861736e2774206265656e2063616c6c656420604082015270199bdc881d1a1a5cc81c1c9bdc1bdcd85b607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156113c7576113c7611dd9565b6001600160a01b0384168152606060208201819052600090611e2690830185611a16565b9050826040830152949350505050565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215611e5f57600080fd5b8251611e6a81611b74565b602084015190925067ffffffffffffffff80821115611e8857600080fd5b818501915085601f830112611e9c57600080fd5b815181811115611eae57611eae611e36565b604051601f8201601f19908116603f01168101908382118183101715611ed657611ed6611e36565b81604052828152886020848701011115611eef57600080fd5b611f008360208301602088016119f2565b80955050505050509250929050565b828152604060208201526000611f286040830184611a16565b949350505050565b6020808252818101527f566f74696e673a2053706f6e736f72696e672077696e646f7720706173736564604082015260600190565b600060208284031215611f7757600080fd5b5051919050565b6020808252601d908201527f566f74696e673a2043616c6c6572206e6f7420617574686f72697a6564000000604082015260600190565b600060408284031215611fc757600080fd5b6040516040810181811067ffffffffffffffff82111715611fea57611fea611e36565b604052825181526020928301519281019290925250919050565b601f82111561204e57600081815260208120601f850160051c8101602086101561202b5750805b601f850160051c820191505b8181101561204a57828155600101612037565b5050505b505050565b67ffffffffffffffff83111561206b5761206b611e36565b61207f836120798354611d38565b83612004565b6000601f8411600181146120b3576000851561209b5750838201355b600019600387901b1c1916600186901b17835561210d565b600083815260209020601f19861690835b828110156120e457868501358255602094850194600190920191016120c4565b50868210156121015760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b60008235605e1983360301811261212a57600080fd5b9190910192915050565b6000808335601e1984360301811261214b57600080fd5b83018035915067ffffffffffffffff82111561216657600080fd5b60200191503681900382131561217b57600080fd5b9250929050565b815167ffffffffffffffff81111561219c5761219c611e36565b6121b0816121aa8454611d38565b84612004565b602080601f8311600181146121e557600084156121cd5750858301515b600019600386901b1c1916600185901b17855561204a565b600085815260208120601f198616915b82811015612214578886015182559484019460019091019084016121f5565b50858210156122325787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b818103818111156113c7576113c7611dd956fea2646970667358221220386fc2a1e70505560b4cf0096070ba55eed67c96157c35d53ef4b58ef06d2e4964736f6c63430008110033