ETH Price: $2,513.46 (+0.89%)

Contract

0xdC27Ad4351ceC2099C438DAE9f39AA38dBd50901
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Execute109979572020-10-05 20:43:301483 days ago1601930610IN
0xdC27Ad43...8dBd50901
0 ETH0.0051992252
Queue109847192020-10-03 19:09:161486 days ago1601752156IN
0xdC27Ad43...8dBd50901
0 ETH0.01127049110
Cast Vote109831382020-10-03 13:09:331486 days ago1601730573IN
0xdC27Ad43...8dBd50901
0 ETH0.0085837193
Cast Vote109829852020-10-03 12:32:361486 days ago1601728356IN
0xdC27Ad43...8dBd50901
0 ETH0.0060409267
Cast Vote109828292020-10-03 11:53:211486 days ago1601726001IN
0xdC27Ad43...8dBd50901
0 ETH0.0049589655
Cast Vote109827822020-10-03 11:44:241486 days ago1601725464IN
0xdC27Ad43...8dBd50901
0 ETH0.0033405437
Cast Vote109827562020-10-03 11:38:061486 days ago1601725086IN
0xdC27Ad43...8dBd50901
0 ETH0.0054097860
Cast Vote109826542020-10-03 11:12:201486 days ago1601723540IN
0xdC27Ad43...8dBd50901
0 ETH0.0046884752
Cast Vote109825712020-10-03 10:51:431486 days ago1601722303IN
0xdC27Ad43...8dBd50901
0 ETH0.0053196159
Cast Vote109822832020-10-03 9:49:471486 days ago1601718587IN
0xdC27Ad43...8dBd50901
0 ETH0.0054097860
Cast Vote109822602020-10-03 9:44:381486 days ago1601718278IN
0xdC27Ad43...8dBd50901
0 ETH0.0041474946
Cast Vote109821652020-10-03 9:26:011486 days ago1601717161IN
0xdC27Ad43...8dBd50901
0 ETH0.004703849
Cast Vote109821052020-10-03 9:14:211486 days ago1601716461IN
0xdC27Ad43...8dBd50901
0 ETH0.0043336848
Cast Vote109818572020-10-03 8:19:491486 days ago1601713189IN
0xdC27Ad43...8dBd50901
0 ETH0.0013066849
Cast Vote109818562020-10-03 8:19:141486 days ago1601713154IN
0xdC27Ad43...8dBd50901
0 ETH0.005030850
Cast Vote109817112020-10-03 7:48:541486 days ago1601711334IN
0xdC27Ad43...8dBd50901
0 ETH0.0044179849
Cast Vote109816722020-10-03 7:41:561486 days ago1601710916IN
0xdC27Ad43...8dBd50901
0 ETH0.0041474946
Cast Vote109815962020-10-03 7:24:251486 days ago1601709865IN
0xdC27Ad43...8dBd50901
0 ETH0.0041474946
Cast Vote109813312020-10-03 6:26:371486 days ago1601706397IN
0xdC27Ad43...8dBd50901
0 ETH0.0047287647
Cast Vote109801102020-10-03 1:42:391486 days ago1601689359IN
0xdC27Ad43...8dBd50901
0 ETH0.0040573345
Cast Vote109800362020-10-03 1:26:431486 days ago1601688403IN
0xdC27Ad43...8dBd50901
0 ETH0.0044239649
Cast Vote109799432020-10-03 1:07:071486 days ago1601687227IN
0xdC27Ad43...8dBd50901
0 ETH0.0047186848
Cast Vote109795162020-10-02 23:25:221486 days ago1601681122IN
0xdC27Ad43...8dBd50901
0 ETH0.0040305441
Cast Vote109794232020-10-02 23:02:321486 days ago1601679752IN
0xdC27Ad43...8dBd50901
0 ETH0.0047186848
Cast Vote109793982020-10-02 22:58:161486 days ago1601679496IN
0xdC27Ad43...8dBd50901
0 ETH0.0041474946
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
PPGovernorL1

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, BSD-3-Clause license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-09-18
*/

/*
https://powerpool.finance/

          wrrrw r wrr
         ppwr rrr wppr0       prwwwrp                                 prwwwrp                   wr0
        rr 0rrrwrrprpwp0      pp   pr  prrrr0 pp   0r  prrrr0  0rwrrr pp   pr  prrrr0  prrrr0    r0
        rrp pr   wr00rrp      prwww0  pp   wr pp w00r prwwwpr  0rw    prwww0  pp   wr pp   wr    r0
        r0rprprwrrrp pr0      pp      wr   pr pp rwwr wr       0r     pp      wr   pr wr   pr    r0
         prwr wrr0wpwr        00        www0   0w0ww    www0   0w     00        www0    www0   0www0
          wrr ww0rrrr

*/

// File: powerpool-governance/contracts/interfaces/CvpInterface.sol

pragma solidity ^0.5.16;

interface CvpInterface {
  /// @notice EIP-20 token name for this token
  function name() external view returns (string memory);

  /// @notice EIP-20 token symbol for this token
  function symbol() external view returns (string memory);

  /// @notice EIP-20 token decimals for this token
  function decimals() external view returns (uint8);

  /// @notice Total number of tokens in circulation
  function totalSupply() external view returns (uint);

  /// @notice A record of each accounts delegate
  function delegates(address _addr) external view returns (address);

  /// @notice The number of checkpoints for each account
  function numCheckpoints(address _addr) external view returns (uint32);

  /// @notice The EIP-712 typehash for the contract's domain
  function DOMAIN_TYPEHASH() external view returns (bytes32);

  /// @notice The EIP-712 typehash for the delegation struct used by the contract
  function DELEGATION_TYPEHASH() external view returns (bytes32);

  /// @notice A record of states for signing / validating signatures
  function nonces(address _addr) external view returns (uint);

  /// @notice An event thats emitted when an account changes its delegate
  event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

  /// @notice An event thats emitted when a delegate account's vote balance changes
  event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

  /// @notice The standard EIP-20 transfer event
  event Transfer(address indexed from, address indexed to, uint256 amount);

  /// @notice The standard EIP-20 approval event
  event Approval(address indexed owner, address indexed spender, uint256 amount);

  /**
   * @notice Get the number of tokens `spender` is approved to spend on behalf of `account`
   * @param account The address of the account holding the funds
   * @param spender The address of the account spending the funds
   * @return The number of tokens approved
   */
  function allowance(address account, address spender) external view returns (uint);

  /**
   * @notice Approve `spender` to transfer up to `amount` from `src`
   * @dev This will overwrite the approval amount for `spender`
   *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
   * @param spender The address of the account which may transfer tokens
   * @param rawAmount The number of tokens that are approved (2^256-1 means infinite)
   * @return Whether or not the approval succeeded
   */
  function approve(address spender, uint rawAmount) external returns (bool);

  /**
   * @notice Get the number of tokens held by the `account`
   * @param account The address of the account to get the balance of
   * @return The number of tokens held
   */
  function balanceOf(address account) external view returns (uint);

  /**
   * @notice Transfer `amount` tokens from `msg.sender` to `dst`
   * @param dst The address of the destination account
   * @param rawAmount The number of tokens to transfer
   * @return Whether or not the transfer succeeded
   */
  function transfer(address dst, uint rawAmount) external returns (bool);

  /**
   * @notice Transfer `amount` tokens from `src` to `dst`
   * @param src The address of the source account
   * @param dst The address of the destination account
   * @param rawAmount The number of tokens to transfer
   * @return Whether or not the transfer succeeded
   */
  function transferFrom(address src, address dst, uint rawAmount) external returns (bool);

  /**
   * @notice Delegate votes from `msg.sender` to `delegatee`
   * @param delegatee The address to delegate votes to
   */
  function delegate(address delegatee) external;

  /**
   * @notice Delegates votes from signatory to `delegatee`
   * @param delegatee The address to delegate votes to
   * @param nonce The contract state required to match the signature
   * @param expiry The time at which to expire the signature
   * @param v The recovery byte of the signature
   * @param r Half of the ECDSA signature pair
   * @param s Half of the ECDSA signature pair
   */
  function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s) external;

  /**
   * @notice Gets the current votes balance for `account`
   * @param account The address to get votes balance
   * @return The number of current votes for `account`
   */
  function getCurrentVotes(address account) external view returns (uint96);

  /**
   * @notice Determine the prior number of votes for an account as of a block number
   * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
   * @param account The address of the account to check
   * @param blockNumber The block number to get the vote balance at
   * @return The number of votes the account had as of the given block
   */
  function getPriorVotes(address account, uint blockNumber) external view returns (uint96);
}

// File: powerpool-governance/contracts/interfaces/GovernorAlphaInterface.sol

pragma solidity ^0.5.16;
pragma experimental ABIEncoderV2;


contract GovernorAlphaInterface {
  /// @notice The name of this contract
  function name() external view returns (string memory);

  /// @notice The number of votes in support of a proposal required in order for a quorum to be reached and for a vote to succeed
  function quorumVotes() external pure returns (uint);

  /// @notice The number of votes required in order for a voter to become a proposer
  function proposalThreshold() external pure returns (uint);

  /// @notice The maximum number of actions that can be included in a proposal
  function proposalMaxOperations() external pure returns (uint);

  /// @notice The delay before voting on a proposal may take place, once proposed
  function votingDelay() external pure returns (uint);

  /// @notice The duration of voting on a proposal, in blocks
  function votingPeriod() external pure returns (uint);

  /// @notice The address of the PowerPool Protocol Timelock
  function timelock() external view returns (TimelockInterface);

  /// @notice The address of the Governor Guardian
  function guardian() external view returns (address);

  /// @notice The total number of proposals
  function proposalCount() external view returns (uint);

  /// @notice The official record of all proposals ever proposed
  function proposals(uint _id) external view returns (
    uint id,
    address proposer,
    uint eta,
    uint startBlock,
    uint endBlock,
    uint forVotes,
    uint againstVotes,
    bool canceled,
    bool executed
  );

  enum ProposalState {
    Pending,
    Active,
    Canceled,
    Defeated,
    Succeeded,
    Queued,
    Expired,
    Executed
  }

  /// @notice Ballot receipt record for a voter
  struct Receipt {
    /// @notice Whether or not a vote has been cast
    bool hasVoted;

    /// @notice Whether or not the voter supports the proposal
    bool support;

    /// @notice The number of votes the voter had, which were cast
    uint256 votes;
  }

  /// @notice The latest proposal for each proposer
  function latestProposalIds(address _addr) external view returns (uint);

  /// @notice The EIP-712 typehash for the contract's domain
  function DOMAIN_TYPEHASH() external view returns (bytes32);

  /// @notice The EIP-712 typehash for the ballot struct used by the contract
  function BALLOT_TYPEHASH() external view returns (bytes32);

  /// @notice An event emitted when a new proposal is created
  event ProposalCreated(uint indexed id, address indexed proposer, address[] targets, uint[] values, string[] signatures, bytes[] calldatas, uint startBlock, uint endBlock, string description);

  /// @notice An event emitted when a vote has been cast on a proposal
  event VoteCast(address indexed voter, uint indexed proposalId, bool indexed support, uint votes);

  /// @notice An event emitted when a proposal has been canceled
  event ProposalCanceled(uint indexed id);

  /// @notice An event emitted when a proposal has been queued in the Timelock
  event ProposalQueued(uint indexed id, uint eta);

  /// @notice An event emitted when a proposal has been executed in the Timelock
  event ProposalExecuted(uint indexed id);

  function propose(address[] memory targets, uint[] memory values, string[] memory signatures, bytes[] memory calldatas, string memory description) public returns (uint);

  function queue(uint proposalId) public;

  function execute(uint proposalId) public payable;

  function cancel(uint proposalId) public;

  function getActions(uint proposalId) public view returns (address[] memory targets, uint[] memory values, string[] memory signatures, bytes[] memory calldatas);

  function getReceipt(uint proposalId, address voter) public view returns (Receipt memory);

  function getVoteSources() external view returns (address[] memory);

  function state(uint proposalId) public view returns (ProposalState);

  function castVote(uint proposalId, bool support) public;

  function castVoteBySig(uint proposalId, bool support, uint8 v, bytes32 r, bytes32 s) public;

  function __acceptAdmin() public;

  function __abdicate() public ;

  function __queueSetTimelockPendingAdmin(address newPendingAdmin, uint eta) public;

  function __executeSetTimelockPendingAdmin(address newPendingAdmin, uint eta) public;
}

interface TimelockInterface {
  function delay() external view returns (uint);
  function GRACE_PERIOD() external view returns (uint);
  function acceptAdmin() external;
  function queuedTransactions(bytes32 hash) external view returns (bool);
  function queueTransaction(address target, uint value, string calldata signature, bytes calldata data, uint eta) external returns (bytes32);
  function cancelTransaction(address target, uint value, string calldata signature, bytes calldata data, uint eta) external;
  function executeTransaction(address target, uint value, string calldata signature, bytes calldata data, uint eta) external payable returns (bytes memory);
}

// File: powerpool-governance/contracts/PPGovernorL1.sol

pragma solidity ^0.5.16;


contract PPGovernorL1 is GovernorAlphaInterface {
  /// @notice The name of this contract
  string public constant name = "PowerPool Governor L1";

  /// @notice The number of votes in support of a proposal required in order for a quorum to be reached and for a vote to succeed
  function quorumVotes() public pure returns (uint) { return 400000e18; } // 400,000 = 0.4% of Cvp

  /// @notice The number of votes required in order for a voter to become a proposer
  function proposalThreshold() public pure returns (uint) { return 10000e18; } // 10,000 = 0.01% of Cvp

  /// @notice The maximum number of actions that can be included in a proposal
  function proposalMaxOperations() public pure returns (uint) { return 10; } // 10 actions

  /// @notice The delay before voting on a proposal may take place, once proposed
  function votingDelay() public pure returns (uint) { return 1; } // 1 block

  /// @notice The duration of voting on a proposal, in blocks
  function votingPeriod() public pure returns (uint) { return 17280; } // ~3 days in blocks (assuming 15s blocks)

  /// @notice The address of the PowerPool Protocol Timelock
  TimelockInterface public timelock;

  /// @notice The addresses of the PowerPool-compatible vote sources
  address[] public voteSources;

  /// @notice The address of the Governor Guardian
  address public guardian;

  /// @notice The total number of proposals
  uint public proposalCount;

  struct Proposal {
    /// @notice Unique id for looking up a proposal
    uint id;

    /// @notice Creator of the proposal
    address proposer;

    /// @notice The timestamp that the proposal will be available for execution, set once the vote succeeds
    uint eta;

    /// @notice the ordered list of target addresses for calls to be made
    address[] targets;

    /// @notice The ordered list of values (i.e. msg.value) to be passed to the calls to be made
    uint[] values;

    /// @notice The ordered list of function signatures to be called
    string[] signatures;

    /// @notice The ordered list of calldata to be passed to each call
    bytes[] calldatas;

    /// @notice The block at which voting begins: holders must delegate their votes prior to this block
    uint startBlock;

    /// @notice The block at which voting ends: votes must be cast prior to this block
    uint endBlock;

    /// @notice Current number of votes in favor of this proposal
    uint forVotes;

    /// @notice Current number of votes in opposition to this proposal
    uint againstVotes;

    /// @notice Flag marking whether the proposal has been canceled
    bool canceled;

    /// @notice Flag marking whether the proposal has been executed
    bool executed;

    /// @notice Receipts of ballots for the entire set of voters
    mapping (address => Receipt) receipts;
  }

  /// @notice The official record of all proposals ever proposed
  mapping (uint => Proposal) public proposals;

  /// @notice The latest proposal for each proposer
  mapping (address => uint) public latestProposalIds;

  /// @notice The EIP-712 typehash for the contract's domain
  bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

  /// @notice The EIP-712 typehash for the ballot struct used by the contract
  bytes32 public constant BALLOT_TYPEHASH = keccak256("Ballot(uint256 proposalId,bool support)");

  /// @notice An event emitted when a new proposal is created
  event ProposalCreated(uint id, address proposer, address[] targets, uint[] values, string[] signatures, bytes[] calldatas, uint startBlock, uint endBlock, string description);

  /// @notice An event emitted when a vote has been cast on a proposal
  event VoteCast(address voter, uint proposalId, bool support, uint votes);

  /// @notice An event emitted when a proposal has been canceled
  event ProposalCanceled(uint id);

  /// @notice An event emitted when a proposal has been queued in the Timelock
  event ProposalQueued(uint id, uint eta);

  /// @notice An event emitted when a proposal has been executed in the Timelock
  event ProposalExecuted(uint id);

  constructor(address timelock_, address[] memory voteSources_, address guardian_) public {
    require(voteSources_.length > 0, "GovernorAlpha::constructor: voteSources can't be empty");

    timelock = TimelockInterface(timelock_);
    voteSources = voteSources_;
    guardian = guardian_;
  }

  function propose(address[] memory targets, uint[] memory values, string[] memory signatures, bytes[] memory calldatas, string memory description) public returns (uint) {
    require(getPriorVotes(msg.sender, sub256(block.number, 1)) > proposalThreshold(), "GovernorAlpha::propose: proposer votes below proposal threshold");
    require(targets.length == values.length && targets.length == signatures.length && targets.length == calldatas.length, "GovernorAlpha::propose: proposal function information arity mismatch");
    require(targets.length != 0, "GovernorAlpha::propose: must provide actions");
    require(targets.length <= proposalMaxOperations(), "GovernorAlpha::propose: too many actions");

    uint latestProposalId = latestProposalIds[msg.sender];
    if (latestProposalId != 0) {
      ProposalState proposersLatestProposalState = state(latestProposalId);
      require(proposersLatestProposalState != ProposalState.Active, "GovernorAlpha::propose: one live proposal per proposer, found an already active proposal");
      require(proposersLatestProposalState != ProposalState.Pending, "GovernorAlpha::propose: one live proposal per proposer, found an already pending proposal");
    }

    uint startBlock = add256(block.number, votingDelay());
    uint endBlock = add256(startBlock, votingPeriod());

    proposalCount++;
    Proposal memory newProposal = Proposal({
    id: proposalCount,
    proposer: msg.sender,
    eta: 0,
    targets: targets,
    values: values,
    signatures: signatures,
    calldatas: calldatas,
    startBlock: startBlock,
    endBlock: endBlock,
    forVotes: 0,
    againstVotes: 0,
    canceled: false,
    executed: false
    });

    proposals[newProposal.id] = newProposal;
    latestProposalIds[newProposal.proposer] = newProposal.id;

    emit ProposalCreated(newProposal.id, msg.sender, targets, values, signatures, calldatas, startBlock, endBlock, description);
    return newProposal.id;
  }

  function queue(uint proposalId) public {
    require(state(proposalId) == ProposalState.Succeeded, "GovernorAlpha::queue: proposal can only be queued if it is succeeded");
    Proposal storage proposal = proposals[proposalId];
    uint eta = add256(block.timestamp, timelock.delay());
    for (uint i = 0; i < proposal.targets.length; i++) {
      _queueOrRevert(proposal.targets[i], proposal.values[i], proposal.signatures[i], proposal.calldatas[i], eta);
    }
    proposal.eta = eta;
    emit ProposalQueued(proposalId, eta);
  }

  function _queueOrRevert(address target, uint value, string memory signature, bytes memory data, uint eta) internal {
    require(!timelock.queuedTransactions(keccak256(abi.encode(target, value, signature, data, eta))), "GovernorAlpha::_queueOrRevert: proposal action already queued at eta");
    timelock.queueTransaction(target, value, signature, data, eta);
  }

  function execute(uint proposalId) public payable {
    require(state(proposalId) == ProposalState.Queued, "GovernorAlpha::execute: proposal can only be executed if it is queued");
    Proposal storage proposal = proposals[proposalId];
    proposal.executed = true;
    for (uint i = 0; i < proposal.targets.length; i++) {
      timelock.executeTransaction.value(proposal.values[i])(proposal.targets[i], proposal.values[i], proposal.signatures[i], proposal.calldatas[i], proposal.eta);
    }
    emit ProposalExecuted(proposalId);
  }

  function cancel(uint proposalId) public {
    ProposalState state = state(proposalId);
    require(state != ProposalState.Executed, "GovernorAlpha::cancel: cannot cancel executed proposal");

    Proposal storage proposal = proposals[proposalId];
    require(msg.sender == guardian || getPriorVotes(proposal.proposer, sub256(block.number, 1)) < proposalThreshold(), "GovernorAlpha::cancel: proposer above threshold");

    proposal.canceled = true;
    for (uint i = 0; i < proposal.targets.length; i++) {
      timelock.cancelTransaction(proposal.targets[i], proposal.values[i], proposal.signatures[i], proposal.calldatas[i], proposal.eta);
    }

    emit ProposalCanceled(proposalId);
  }

  function getActions(uint proposalId) public view returns (address[] memory targets, uint[] memory values, string[] memory signatures, bytes[] memory calldatas) {
    Proposal storage p = proposals[proposalId];
    return (p.targets, p.values, p.signatures, p.calldatas);
  }

  function getReceipt(uint proposalId, address voter) public view returns (Receipt memory) {
    return proposals[proposalId].receipts[voter];
  }

  function state(uint proposalId) public view returns (ProposalState) {
    require(proposalCount >= proposalId && proposalId > 0, "GovernorAlpha::state: invalid proposal id");
    Proposal storage proposal = proposals[proposalId];
    if (proposal.canceled) {
      return ProposalState.Canceled;
    } else if (block.number <= proposal.startBlock) {
      return ProposalState.Pending;
    } else if (block.number <= proposal.endBlock) {
      return ProposalState.Active;
    } else if (proposal.forVotes <= proposal.againstVotes || proposal.forVotes < quorumVotes()) {
      return ProposalState.Defeated;
    } else if (proposal.eta == 0) {
      return ProposalState.Succeeded;
    } else if (proposal.executed) {
      return ProposalState.Executed;
    } else if (block.timestamp >= add256(proposal.eta, timelock.GRACE_PERIOD())) {
      return ProposalState.Expired;
    } else {
      return ProposalState.Queued;
    }
  }

  function getPriorVotes(address account, uint256 blockNumber) public view returns (uint256) {
    uint256 total = 0;
    uint256 len = voteSources.length;

    for (uint256 i = 0; i < len; i++) {
      total = add256(total, CvpInterface(voteSources[i]).getPriorVotes(account, blockNumber));
    }

    return total;
  }

  function getVoteSources() external view returns (address[] memory) {
    return voteSources;
  }

  function castVote(uint proposalId, bool support) public {
    return _castVote(msg.sender, proposalId, support);
  }

  function castVoteBySig(uint proposalId, bool support, uint8 v, bytes32 r, bytes32 s) public {
    bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
    bytes32 structHash = keccak256(abi.encode(BALLOT_TYPEHASH, proposalId, support));
    bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    address signatory = ecrecover(digest, v, r, s);
    require(signatory != address(0), "GovernorAlpha::castVoteBySig: invalid signature");
    return _castVote(signatory, proposalId, support);
  }

  function _castVote(address voter, uint proposalId, bool support) internal {
    require(state(proposalId) == ProposalState.Active, "GovernorAlpha::_castVote: voting is closed");
    Proposal storage proposal = proposals[proposalId];
    Receipt storage receipt = proposal.receipts[voter];
    require(receipt.hasVoted == false, "GovernorAlpha::_castVote: voter already voted");
    uint256 votes = getPriorVotes(voter, proposal.startBlock);

    if (support) {
      proposal.forVotes = add256(proposal.forVotes, votes);
    } else {
      proposal.againstVotes = add256(proposal.againstVotes, votes);
    }

    receipt.hasVoted = true;
    receipt.support = support;
    receipt.votes = votes;

    emit VoteCast(voter, proposalId, support, votes);
  }

  function __acceptAdmin() public {
    require(msg.sender == guardian, "GovernorAlpha::__acceptAdmin: sender must be gov guardian");
    timelock.acceptAdmin();
  }

  function __abdicate() public {
    require(msg.sender == guardian, "GovernorAlpha::__abdicate: sender must be gov guardian");
    guardian = address(0);
  }

  function __queueSetTimelockPendingAdmin(address newPendingAdmin, uint eta) public {
    require(msg.sender == guardian, "GovernorAlpha::__queueSetTimelockPendingAdmin: sender must be gov guardian");
    timelock.queueTransaction(address(timelock), 0, "setPendingAdmin(address)", abi.encode(newPendingAdmin), eta);
  }

  function __executeSetTimelockPendingAdmin(address newPendingAdmin, uint eta) public {
    require(msg.sender == guardian, "GovernorAlpha::__executeSetTimelockPendingAdmin: sender must be gov guardian");
    timelock.executeTransaction(address(timelock), 0, "setPendingAdmin(address)", abi.encode(newPendingAdmin), eta);
  }

  function add256(uint256 a, uint256 b) internal pure returns (uint) {
    uint c = a + b;
    require(c >= a, "addition overflow");
    return c;
  }

  function sub256(uint256 a, uint256 b) internal pure returns (uint) {
    require(b <= a, "subtraction underflow");
    return a - b;
  }

  function getChainId() internal pure returns (uint) {
    uint chainId;
    assembly { chainId := chainid() }
    return chainId;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"timelock_","type":"address"},{"internalType":"address[]","name":"voteSources_","type":"address[]"},{"internalType":"address","name":"guardian_","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"ProposalCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"address","name":"proposer","type":"address"},{"indexed":false,"internalType":"address[]","name":"targets","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"},{"indexed":false,"internalType":"string[]","name":"signatures","type":"string[]"},{"indexed":false,"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"indexed":false,"internalType":"uint256","name":"startBlock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endBlock","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"ProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"eta","type":"uint256"}],"name":"ProposalQueued","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"bool","name":"support","type":"bool"},{"indexed":false,"internalType":"uint256","name":"votes","type":"uint256"}],"name":"VoteCast","type":"event"},{"constant":true,"inputs":[],"name":"BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"__abdicate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"__acceptAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newPendingAdmin","type":"address"},{"internalType":"uint256","name":"eta","type":"uint256"}],"name":"__executeSetTimelockPendingAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newPendingAdmin","type":"address"},{"internalType":"uint256","name":"eta","type":"uint256"}],"name":"__queueSetTimelockPendingAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"cancel","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"bool","name":"support","type":"bool"}],"name":"castVote","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"bool","name":"support","type":"bool"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"castVoteBySig","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"execute","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"getActions","outputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"string[]","name":"signatures","type":"string[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"voter","type":"address"}],"name":"getReceipt","outputs":[{"components":[{"internalType":"bool","name":"hasVoted","type":"bool"},{"internalType":"bool","name":"support","type":"bool"},{"internalType":"uint256","name":"votes","type":"uint256"}],"internalType":"struct GovernorAlphaInterface.Receipt","name":"","type":"tuple"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getVoteSources","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"guardian","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"latestProposalIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"proposalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"proposalMaxOperations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"proposalThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"proposals","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"proposer","type":"address"},{"internalType":"uint256","name":"eta","type":"uint256"},{"internalType":"uint256","name":"startBlock","type":"uint256"},{"internalType":"uint256","name":"endBlock","type":"uint256"},{"internalType":"uint256","name":"forVotes","type":"uint256"},{"internalType":"uint256","name":"againstVotes","type":"uint256"},{"internalType":"bool","name":"canceled","type":"bool"},{"internalType":"bool","name":"executed","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"string[]","name":"signatures","type":"string[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"string","name":"description","type":"string"}],"name":"propose","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"queue","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"quorumVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"state","outputs":[{"internalType":"enum GovernorAlphaInterface.ProposalState","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"timelock","outputs":[{"internalType":"contract TimelockInterface","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"voteSources","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"votingDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"votingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"}]

60806040523480156200001157600080fd5b5060405162003b4138038062003b418339810160408190526200003491620001eb565b6000825111620000615760405162461bcd60e51b81526004016200005890620002b8565b60405180910390fd5b600080546001600160a01b0319166001600160a01b038516179055815162000091906001906020850190620000bb565b50600280546001600160a01b0319166001600160a01b039290921691909117905550620003479050565b82805482825590600052602060002090810192821562000113579160200282015b828111156200011357825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620000dc565b506200012192915062000125565b5090565b6200014c91905b80821115620001215780546001600160a01b03191681556001016200012c565b90565b80516200015c816200032d565b92915050565b600082601f8301126200017457600080fd5b81516200018b6200018582620002f1565b620002ca565b91508181835260208401935060208101905083856020840282011115620001b157600080fd5b60005b83811015620001e15781620001ca88826200014f565b8452506020928301929190910190600101620001b4565b5050505092915050565b6000806000606084860312156200020157600080fd5b60006200020f86866200014f565b93505060208401516001600160401b038111156200022c57600080fd5b6200023a8682870162000162565b92505060406200024d868287016200014f565b9150509250925092565b60006200026660368362000312565b7f476f7665726e6f72416c7068613a3a636f6e7374727563746f723a20766f746581527f536f75726365732063616e277420626520656d70747900000000000000000000602082015260400192915050565b602080825281016200015c8162000257565b6040518181016001600160401b0381118282101715620002e957600080fd5b604052919050565b60006001600160401b038211156200030857600080fd5b5060209081020190565b90815260200190565b60006001600160a01b0382166200015c565b62000338816200031b565b81146200034457600080fd5b50565b6137ea80620003576000396000f3fe6080604052600436106101c25760003560e01c8063760fbc13116100f7578063d33219b411610095578063deaaa7cc11610064578063deaaa7cc146104d6578063e23a9a52146104eb578063f986a16f14610518578063fe0d94c114610538576101c2565b8063d33219b41461045f578063da35c66414610481578063da95691a14610496578063ddf0b009146104b6576101c2565b806391500671116100d157806391500671146103f3578063b58131b014610413578063b9a6196114610428578063c53636031461043d576101c2565b8063760fbc13146103a9578063782d6fe1146103be5780637bdbe4d0146103de576101c2565b806324bc1a64116101645780633e4f49e61161013e5780633e4f49e61461031a57806340e58ee514610347578063452a9320146103675780634634c61f14610389576101c2565b806324bc1a64146102c0578063328dd982146102d55780633932abb114610305576101c2565b806315373e3d116101a057806315373e3d1461024957806317977c611461026b57806320606b701461028b57806321f43e42146102a0576101c2565b8063013cf08b146101c757806302a251a31461020557806306fdde0314610227575b600080fd5b3480156101d357600080fd5b506101e76101e2366004612452565b61054b565b6040516101fc9998979695949392919061359b565b60405180910390f35b34801561021157600080fd5b5061021a6105a4565b6040516101fc91906132d5565b34801561023357600080fd5b5061023c6105ab565b6040516101fc9190613384565b34801561025557600080fd5b506102696102643660046124a0565b6105dc565b005b34801561027757600080fd5b5061021a610286366004612295565b6105eb565b34801561029757600080fd5b5061021a6105fd565b3480156102ac57600080fd5b506102696102bb3660046122bb565b610614565b3480156102cc57600080fd5b5061021a6106fb565b3480156102e157600080fd5b506102f56102f0366004612452565b610709565b6040516101fc9493929190613288565b34801561031157600080fd5b5061021a610998565b34801561032657600080fd5b5061033a610335366004612452565b61099d565b6040516101fc9190613376565b34801561035357600080fd5b50610269610362366004612452565b610b1f565b34801561037357600080fd5b5061037c610d0a565b6040516101fc919061312f565b34801561039557600080fd5b506102696103a43660046124d0565b610d19565b3480156103b557600080fd5b50610269610eae565b3480156103ca57600080fd5b5061021a6103d93660046122bb565b610eea565b3480156103ea57600080fd5b5061021a610fc1565b3480156103ff57600080fd5b5061026961040e3660046122bb565b610fc6565b34801561041f57600080fd5b5061021a61109b565b34801561043457600080fd5b506102696110a9565b34801561044957600080fd5b5061045261112e565b6040516101fc9190613277565b34801561046b57600080fd5b50610474611190565b6040516101fc9190613368565b34801561048d57600080fd5b5061021a61119f565b3480156104a257600080fd5b5061021a6104b13660046122f5565b6111a5565b3480156104c257600080fd5b506102696104d1366004612452565b61153f565b3480156104e257600080fd5b5061021a6117a9565b3480156104f757600080fd5b5061050b610506366004612470565b6117b5565b6040516101fc91906134e5565b34801561052457600080fd5b5061037c610533366004612452565b611816565b610269610546366004612452565b61183d565b6004602052600090815260409020805460018201546002830154600784015460088501546009860154600a870154600b9097015495966001600160a01b0390951695939492939192909160ff8082169161010090041689565b6143805b90565b60405180604001604052806015815260200174506f776572506f6f6c20476f7665726e6f72204c3160581b81525081565b6105e7338383611a02565b5050565b60056020526000908152604090205481565b60405161060990613119565b604051809103902081565b6002546001600160a01b031633146106475760405162461bcd60e51b815260040161063e906133c5565b60405180910390fd5b600080546040516001600160a01b0390911691630825f38f9183919061067190879060200161312f565b604051602081830303815290604052856040518563ffffffff1660e01b81526004016106a0949392919061313d565b600060405180830381600087803b1580156106ba57600080fd5b505af11580156106ce573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526106f6919081019061241d565b505050565b6954b40b1f852bda00000090565b6060806060806000600460008781526020019081526020016000209050806003018160040182600501836006018380548060200260200160405190810160405280929190818152602001828054801561078b57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161076d575b50505050509350828054806020026020016040519081016040528092919081815260200182805480156107dd57602002820191906000526020600020905b8154815260200190600101908083116107c9575b5050505050925081805480602002602001604051908101604052809291908181526020016000905b828210156108b05760008481526020908190208301805460408051601f600260001961010060018716150201909416939093049283018590048502810185019091528181529283018282801561089c5780601f106108715761010080835404028352916020019161089c565b820191906000526020600020905b81548152906001019060200180831161087f57829003601f168201915b505050505081526020019060010190610805565b50505050915080805480602002602001604051908101604052809291908181526020016000905b828210156109825760008481526020908190208301805460408051601f600260001961010060018716150201909416939093049283018590048502810185019091528181529283018282801561096e5780601f106109435761010080835404028352916020019161096e565b820191906000526020600020905b81548152906001019060200180831161095157829003601f168201915b5050505050815260200190600101906108d7565b5050505090509450945094509450509193509193565b600190565b600081600354101580156109b15750600082115b6109cd5760405162461bcd60e51b815260040161063e906133d5565b6000828152600460205260409020600b81015460ff16156109f2576002915050610b1a565b80600701544311610a07576000915050610b1a565b80600801544311610a1c576001915050610b1a565b80600a01548160090154111580610a3d5750610a366106fb565b8160090154105b15610a4c576003915050610b1a565b6002810154610a5f576004915050610b1a565b600b810154610100900460ff1615610a7b576007915050610b1a565b6002810154600054604080516360d143f160e11b81529051610b0493926001600160a01b03169163c1a287e2916004808301926020929190829003018186803b158015610ac757600080fd5b505afa158015610adb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610aff91908101906123ff565b611b28565b4210610b14576006915050610b1a565b60059150505b919050565b6000610b2a8261099d565b90506007816007811115610b3a57fe5b1415610b585760405162461bcd60e51b815260040161063e906134a5565b60008281526004602052604090206002546001600160a01b0316331480610ba55750610b8261109b565b600180830154610ba3916001600160a01b03909116906103d9904390611b54565b105b610bc15760405162461bcd60e51b815260040161063e90613445565b600b8101805460ff1916600117905560005b6003820154811015610ccd576000546003830180546001600160a01b039092169163591fcdfe919084908110610c0557fe5b6000918252602090912001546004850180546001600160a01b039092169185908110610c2d57fe5b9060005260206000200154856005018581548110610c4757fe5b90600052602060002001866006018681548110610c6057fe5b9060005260206000200187600201546040518663ffffffff1660e01b8152600401610c8f959493929190613236565b600060405180830381600087803b158015610ca957600080fd5b505af1158015610cbd573d6000803e3d6000fd5b505060019092019150610bd39050565b507f789cf55be980739dad1d0699b93b58e806b51c9d96619bfa8fe0a28abaa7b30c83604051610cfd91906132d5565b60405180910390a1505050565b6002546001600160a01b031681565b6000604051610d2790613119565b604080519182900382208282019091526015825274506f776572506f6f6c20476f7665726e6f72204c3160581b6020909201919091527fbfed68727d6036daef4e2ec4e11ace56e8d896523691b3356523e65253747329610d86611b7c565b30604051602001610d9a94939291906132e3565b6040516020818303038152906040528051906020012090506000604051610dc090613124565b604051908190038120610dd99189908990602001613318565b60405160208183030381529060405280519060200120905060008282604051602001610e069291906130e8565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610e439493929190613340565b6020604051602081039080840390855afa158015610e65573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610e985760405162461bcd60e51b815260040161063e90613485565b610ea3818a8a611a02565b505050505050505050565b6002546001600160a01b03163314610ed85760405162461bcd60e51b815260040161063e906134d5565b600280546001600160a01b0319169055565b6001546000908190815b81811015610fb557610fab8360018381548110610f0d57fe5b60009182526020909120015460405163782d6fe160e01b81526001600160a01b039091169063782d6fe190610f48908b908b9060040161318c565b60206040518083038186803b158015610f6057600080fd5b505afa158015610f74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610f989190810190612538565b6bffffffffffffffffffffffff16611b28565b9250600101610ef4565b50909150505b92915050565b600a90565b6002546001600160a01b03163314610ff05760405162461bcd60e51b815260040161063e90613405565b600080546040516001600160a01b0390911691633a66f9019183919061101a90879060200161312f565b604051602081830303815290604052856040518563ffffffff1660e01b8152600401611049949392919061313d565b602060405180830381600087803b15801561106357600080fd5b505af1158015611077573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506106f691908101906123ff565b69021e19e0c9bab240000090565b6002546001600160a01b031633146110d35760405162461bcd60e51b815260040161063e90613395565b6000805460408051630e18b68160e01b815290516001600160a01b0390921692630e18b6819260048084019382900301818387803b15801561111457600080fd5b505af1158015611128573d6000803e3d6000fd5b50505050565b6060600180548060200260200160405190810160405280929190818152602001828054801561118657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611168575b5050505050905090565b6000546001600160a01b031681565b60035481565b60006111af61109b565b6111be336103d9436001611b54565b116111db5760405162461bcd60e51b815260040161063e90613475565b845186511480156111ed575083518651145b80156111fa575082518651145b6112165760405162461bcd60e51b815260040161063e90613435565b85516112345760405162461bcd60e51b815260040161063e90613465565b61123c610fc1565b8651111561125c5760405162461bcd60e51b815260040161063e90613415565b3360009081526005602052604090205480156112d957600061127d8261099d565b9050600181600781111561128d57fe5b14156112ab5760405162461bcd60e51b815260040161063e90613495565b60008160078111156112b957fe5b14156112d75760405162461bcd60e51b815260040161063e906133f5565b505b60006112e743610aff610998565b905060006112f782610aff6105a4565b600380546001019055905061130a611cdf565b604051806101a001604052806003548152602001336001600160a01b03168152602001600081526020018b81526020018a815260200189815260200188815260200184815260200183815260200160008152602001600081526020016000151581526020016000151581525090508060046000836000015181526020019081526020016000206000820151816000015560208201518160010160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506040820151816002015560608201518160030190805190602001906113ed929190611d54565b5060808201518051611409916004840191602090910190611db9565b5060a08201518051611425916005840191602090910190611e00565b5060c08201518051611441916006840191602090910190611e59565b5060e082015181600701556101008201518160080155610120820151816009015561014082015181600a015561016082015181600b0160006101000a81548160ff02191690831515021790555061018082015181600b0160016101000a81548160ff02191690831515021790555090505080600001516005600083602001516001600160a01b03166001600160a01b03168152602001908152602001600020819055507f7d84a6263ae0d98d3329bd7b46bb4e8d6f98cd35a7adb45c274c8b7fd5ebd5e08160000151338c8c8c8c89898e604051611527999897969594939291906134f3565b60405180910390a15193505050505b95945050505050565b600461154a8261099d565b600781111561155557fe5b146115725760405162461bcd60e51b815260040161063e906133a5565b600081815260046020818152604080842084548251630d48571f60e31b815292519195946115c79442946001600160a01b0390931693636a42b8f8938084019390829003018186803b158015610ac757600080fd5b905060005b600383015481101561176f576117678360030182815481106115ea57fe5b6000918252602090912001546004850180546001600160a01b03909216918490811061161257fe5b906000526020600020015485600501848154811061162c57fe5b600091825260209182902001805460408051601f60026000196101006001871615020190941693909304928301859004850281018501909152818152928301828280156116ba5780601f1061168f576101008083540402835291602001916116ba565b820191906000526020600020905b81548152906001019060200180831161169d57829003601f168201915b50505050508660060185815481106116ce57fe5b600091825260209182902001805460408051601f600260001961010060018716150201909416939093049283018590048502810185019091528181529283018282801561175c5780601f106117315761010080835404028352916020019161175c565b820191906000526020600020905b81548152906001019060200180831161173f57829003601f168201915b505050505086611b80565b6001016115cc565b50600282018190556040517f9a2e42fd6722813d69113e7d0079d3d940171428df7373df9c7f7617cfda289290610cfd9085908490613621565b60405161060990613124565b6117bd611eb2565b5060009182526004602090815260408084206001600160a01b03939093168452600c9092018152918190208151606081018352815460ff8082161515835261010090910416151593810193909352600101549082015290565b6001818154811061182357fe5b6000918252602090912001546001600160a01b0316905081565b60056118488261099d565b600781111561185357fe5b146118705760405162461bcd60e51b815260040161063e906133b5565b6000818152600460205260408120600b8101805461ff001916610100179055905b60038201548110156119c6576000546004830180546001600160a01b0390921691630825f38f9190849081106118c357fe5b90600052602060002001548460030184815481106118dd57fe5b6000918252602090912001546004860180546001600160a01b03909216918690811061190557fe5b906000526020600020015486600501868154811061191f57fe5b9060005260206000200187600601878154811061193857fe5b9060005260206000200188600201546040518763ffffffff1660e01b8152600401611967959493929190613236565b6000604051808303818588803b15801561198057600080fd5b505af1158015611994573d6000803e3d6000fd5b50505050506040513d6000823e601f3d908101601f191682016040526119bd919081019061241d565b50600101611891565b507f712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f826040516119f691906132d5565b60405180910390a15050565b6001611a0d8361099d565b6007811115611a1857fe5b14611a355760405162461bcd60e51b815260040161063e906134b5565b60008281526004602090815260408083206001600160a01b0387168452600c8101909252909120805460ff1615611a7e5760405162461bcd60e51b815260040161063e906133e5565b6000611a8e868460070154610eea565b90508315611aae57611aa4836009015482611b28565b6009840155611ac2565b611abc83600a015482611b28565b600a8401555b8154600160ff19909116811761ff0019166101008615150217835582018190556040517f877856338e13f63d0c36822ff0ef736b80934cd90574a3a5bc9262c39d217c4690611b189088908890889086906131a7565b60405180910390a1505050505050565b600082820183811015611b4d5760405162461bcd60e51b815260040161063e90613425565b9392505050565b600082821115611b765760405162461bcd60e51b815260040161063e906134c5565b50900390565b4690565b6000546040516001600160a01b039091169063f2b0653790611bae90889088908890889088906020016131dc565b604051602081830303815290604052805190602001206040518263ffffffff1660e01b8152600401611be091906132d5565b60206040518083038186803b158015611bf857600080fd5b505afa158015611c0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611c3091908101906123e1565b15611c4d5760405162461bcd60e51b815260040161063e90613455565b600054604051633a66f90160e01b81526001600160a01b0390911690633a66f90190611c8590889088908890889088906004016131dc565b602060405180830381600087803b158015611c9f57600080fd5b505af1158015611cb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611cd791908101906123ff565b505050505050565b604051806101a001604052806000815260200160006001600160a01b031681526020016000815260200160608152602001606081526020016060815260200160608152602001600081526020016000815260200160008152602001600081526020016000151581526020016000151581525090565b828054828255906000526020600020908101928215611da9579160200282015b82811115611da957825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190611d74565b50611db5929150611ed2565b5090565b828054828255906000526020600020908101928215611df4579160200282015b82811115611df4578251825591602001919060010190611dd9565b50611db5929150611ef6565b828054828255906000526020600020908101928215611e4d579160200282015b82811115611e4d5782518051611e3d918491602090910190611f10565b5091602001919060010190611e20565b50611db5929150611f7d565b828054828255906000526020600020908101928215611ea6579160200282015b82811115611ea65782518051611e96918491602090910190611f10565b5091602001919060010190611e79565b50611db5929150611fa0565b604080516060810182526000808252602082018190529181019190915290565b6105a891905b80821115611db55780546001600160a01b0319168155600101611ed8565b6105a891905b80821115611db55760008155600101611efc565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611f5157805160ff1916838001178555611df4565b82800160010185558215611df45791820182811115611df4578251825591602001919060010190611dd9565b6105a891905b80821115611db5576000611f978282611fc3565b50600101611f83565b6105a891905b80821115611db5576000611fba8282611fc3565b50600101611fa6565b50805460018160011615610100020316600290046000825580601f10611fe95750612007565b601f0160209004906000526020600020908101906120079190611ef6565b50565b8035610fbb8161376f565b600082601f83011261202657600080fd5b813561203961203482613656565b61362f565b9150818183526020840193506020810190508385602084028201111561205e57600080fd5b60005b8381101561208a5781612074888261200a565b8452506020928301929190910190600101612061565b5050505092915050565b600082601f8301126120a557600080fd5b81356120b361203482613656565b81815260209384019390925082018360005b8381101561208a57813586016120db88826121ea565b84525060209283019291909101906001016120c5565b600082601f83011261210257600080fd5b813561211061203482613656565b81815260209384019390925082018360005b8381101561208a578135860161213888826121ea565b8452506020928301929190910190600101612122565b600082601f83011261215f57600080fd5b813561216d61203482613656565b9150818183526020840193506020810190508385602084028201111561219257600080fd5b60005b8381101561208a57816121a888826121d4565b8452506020928301929190910190600101612195565b8035610fbb81613783565b8051610fbb81613783565b8035610fbb8161378c565b8051610fbb8161378c565b600082601f8301126121fb57600080fd5b813561220961203482613677565b9150808252602083016020830185838301111561222557600080fd5b612230838284613723565b50505092915050565b600082601f83011261224a57600080fd5b815161225861203482613677565b9150808252602083016020830185838301111561227457600080fd5b61223083828461372f565b8035610fbb81613795565b8051610fbb8161379e565b6000602082840312156122a757600080fd5b60006122b3848461200a565b949350505050565b600080604083850312156122ce57600080fd5b60006122da858561200a565b92505060206122eb858286016121d4565b9150509250929050565b600080600080600060a0868803121561230d57600080fd5b853567ffffffffffffffff81111561232457600080fd5b61233088828901612015565b955050602086013567ffffffffffffffff81111561234d57600080fd5b6123598882890161214e565b945050604086013567ffffffffffffffff81111561237657600080fd5b612382888289016120f1565b935050606086013567ffffffffffffffff81111561239f57600080fd5b6123ab88828901612094565b925050608086013567ffffffffffffffff8111156123c857600080fd5b6123d4888289016121ea565b9150509295509295909350565b6000602082840312156123f357600080fd5b60006122b384846121c9565b60006020828403121561241157600080fd5b60006122b384846121df565b60006020828403121561242f57600080fd5b815167ffffffffffffffff81111561244657600080fd5b6122b384828501612239565b60006020828403121561246457600080fd5b60006122b384846121d4565b6000806040838503121561248357600080fd5b600061248f85856121d4565b92505060206122eb8582860161200a565b600080604083850312156124b357600080fd5b60006124bf85856121d4565b92505060206122eb858286016121be565b600080600080600060a086880312156124e857600080fd5b60006124f488886121d4565b9550506020612505888289016121be565b94505060406125168882890161227f565b9350506060612527888289016121d4565b92505060806123d4888289016121d4565b60006020828403121561254a57600080fd5b60006122b3848461228a565b60006125628383612591565b505060200190565b6000611b4d8383612733565b60006125628383612719565b61258b816136fb565b82525050565b61258b816136be565b60006125a5826136b1565b6125af81856136b5565b93506125ba8361369f565b8060005b838110156125e85781516125d28882612556565b97506125dd8361369f565b9250506001016125be565b509495945050505050565b60006125fe826136b1565b61260881856136b5565b93508360208202850161261a8561369f565b8060005b858110156126545784840389528151612637858261256a565b94506126428361369f565b60209a909a019992505060010161261e565b5091979650505050505050565b600061266c826136b1565b61267681856136b5565b9350836020820285016126888561369f565b8060005b8581101561265457848403895281516126a5858261256a565b94506126b08361369f565b60209a909a019992505060010161268c565b60006126cd826136b1565b6126d781856136b5565b93506126e28361369f565b8060005b838110156125e85781516126fa8882612576565b97506127058361369f565b9250506001016126e6565b61258b816136c9565b61258b816105a8565b61258b61272e826105a8565b6105a8565b600061273e826136b1565b61274881856136b5565b935061275881856020860161372f565b6127618161375b565b9093019392505050565b60008154600181166000811461278857600181146127ae576127ed565b607f600283041661279981876136b5565b60ff19841681529550506020850192506127ed565b600282046127bc81876136b5565b95506127c7856136a5565b60005b828110156127e6578154888201526001909101906020016127ca565b8701945050505b505092915050565b61258b81613702565b61258b8161370d565b61258b81613718565b600061281d6039836136b5565b7f476f7665726e6f72416c7068613a3a5f5f61636365707441646d696e3a20736581527f6e646572206d75737420626520676f7620677561726469616e00000000000000602082015260400192915050565b600061287c6044836136b5565b7f476f7665726e6f72416c7068613a3a71756575653a2070726f706f73616c206381527f616e206f6e6c79206265207175657565642069662069742069732073756363656020820152631959195960e21b604082015260600192915050565b60006128e86045836136b5565b7f476f7665726e6f72416c7068613a3a657865637574653a2070726f706f73616c81527f2063616e206f6e6c7920626520657865637574656420696620697420697320716020820152641d595d595960da1b604082015260600192915050565b6000612955600283610b1a565b61190160f01b815260020192915050565b6000612973604c836136b5565b7f476f7665726e6f72416c7068613a3a5f5f6578656375746553657454696d656c81527f6f636b50656e64696e6741646d696e3a2073656e646572206d7573742062652060208201526b33b7bb1033bab0b93234b0b760a11b604082015260600192915050565b60006129e76018836136b5565b7f73657450656e64696e6741646d696e2861646472657373290000000000000000815260200192915050565b6000612a206029836136b5565b7f476f7665726e6f72416c7068613a3a73746174653a20696e76616c69642070728152681bdc1bdcd85b081a5960ba1b602082015260400192915050565b6000612a6b602d836136b5565b7f476f7665726e6f72416c7068613a3a5f63617374566f74653a20766f7465722081526c185b1c9958591e481d9bdd1959609a1b602082015260400192915050565b6000612aba6059836136b5565b7f476f7665726e6f72416c7068613a3a70726f706f73653a206f6e65206c69766581527f2070726f706f73616c207065722070726f706f7365722c20666f756e6420616e60208201527f20616c72656164792070656e64696e672070726f706f73616c00000000000000604082015260600192915050565b6000612b3f604a836136b5565b7f476f7665726e6f72416c7068613a3a5f5f717565756553657454696d656c6f6381527f6b50656e64696e6741646d696e3a2073656e646572206d75737420626520676f6020820152693b1033bab0b93234b0b760b11b604082015260600192915050565b6000612bb16028836136b5565b7f476f7665726e6f72416c7068613a3a70726f706f73653a20746f6f206d616e7981526720616374696f6e7360c01b602082015260400192915050565b6000612bfb6011836136b5565b706164646974696f6e206f766572666c6f7760781b815260200192915050565b6000612c28604383610b1a565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b6000612c93602783610b1a565b7f42616c6c6f742875696e743235362070726f706f73616c49642c626f6f6c20738152667570706f72742960c81b602082015260270192915050565b6000612cdc6044836136b5565b7f476f7665726e6f72416c7068613a3a70726f706f73653a2070726f706f73616c81527f2066756e6374696f6e20696e666f726d6174696f6e206172697479206d69736d6020820152630c2e8c6d60e31b604082015260600192915050565b6000612d48602f836136b5565b7f476f7665726e6f72416c7068613a3a63616e63656c3a2070726f706f7365722081526e18589bdd99481d1a1c995cda1bdb19608a1b602082015260400192915050565b6000612d996044836136b5565b7f476f7665726e6f72416c7068613a3a5f71756575654f725265766572743a207081527f726f706f73616c20616374696f6e20616c7265616479207175657565642061746020820152632065746160e01b604082015260600192915050565b6000612e05602c836136b5565b7f476f7665726e6f72416c7068613a3a70726f706f73653a206d7573742070726f81526b7669646520616374696f6e7360a01b602082015260400192915050565b6000612e53603f836136b5565b7f476f7665726e6f72416c7068613a3a70726f706f73653a2070726f706f73657281527f20766f7465732062656c6f772070726f706f73616c207468726573686f6c6400602082015260400192915050565b6000612eb2602f836136b5565b7f476f7665726e6f72416c7068613a3a63617374566f746542795369673a20696e81526e76616c6964207369676e617475726560881b602082015260400192915050565b6000612f036058836136b5565b7f476f7665726e6f72416c7068613a3a70726f706f73653a206f6e65206c69766581527f2070726f706f73616c207065722070726f706f7365722c20666f756e6420616e60208201527f20616c7265616479206163746976652070726f706f73616c0000000000000000604082015260600192915050565b6000612f886036836136b5565b7f476f7665726e6f72416c7068613a3a63616e63656c3a2063616e6e6f742063618152751b98d95b08195e1958dd5d1959081c1c9bdc1bdcd85b60521b602082015260400192915050565b6000612fe0602a836136b5565b7f476f7665726e6f72416c7068613a3a5f63617374566f74653a20766f74696e67815269081a5cc818db1bdcd95960b21b602082015260400192915050565b600061302c6015836136b5565b747375627472616374696f6e20756e646572666c6f7760581b815260200192915050565b600061305d6036836136b5565b7f476f7665726e6f72416c7068613a3a5f5f61626469636174653a2073656e6465815275391036bab9ba1031329033b7bb1033bab0b93234b0b760511b602082015260400192915050565b805160608301906130b98482612710565b5060208201516130cc6020850182612710565b5060408201516111286040850182612719565b61258b816136e4565b60006130f382612948565b91506130ff8285612722565b60208201915061310f8284612722565b5060200192915050565b6000610fbb82612c1b565b6000610fbb82612c86565b60208101610fbb8284612591565b60a0810161314b8287612591565b6131586020830186612807565b8181036040830152613169816129da565b9050818103606083015261317d8185612733565b90506115366080830184612719565b6040810161319a8285612591565b611b4d6020830184612719565b608081016131b58287612591565b6131c26020830186612719565b6131cf6040830185612710565b6115366060830184612719565b60a081016131ea8288612591565b6131f76020830187612719565b81810360408301526132098186612733565b9050818103606083015261321d8185612733565b905061322c6080830184612719565b9695505050505050565b60a081016132448288612591565b6132516020830187612719565b8181036040830152613263818661276b565b9050818103606083015261321d818561276b565b60208082528101611b4d818461259a565b60808082528101613299818761259a565b905081810360208301526132ad81866126c2565b905081810360408301526132c18185612661565b9050818103606083015261322c81846125f3565b60208101610fbb8284612719565b608081016132f18287612719565b6132fe6020830186612719565b61330b6040830185612719565b6115366060830184612591565b606081016133268286612719565b6133336020830185612719565b6122b36040830184612710565b6080810161334e8287612719565b61335b60208301866130df565b6131cf6040830185612719565b60208101610fbb82846127f5565b60208101610fbb82846127fe565b60208082528101611b4d8184612733565b60208082528101610fbb81612810565b60208082528101610fbb8161286f565b60208082528101610fbb816128db565b60208082528101610fbb81612966565b60208082528101610fbb81612a13565b60208082528101610fbb81612a5e565b60208082528101610fbb81612aad565b60208082528101610fbb81612b32565b60208082528101610fbb81612ba4565b60208082528101610fbb81612bee565b60208082528101610fbb81612ccf565b60208082528101610fbb81612d3b565b60208082528101610fbb81612d8c565b60208082528101610fbb81612df8565b60208082528101610fbb81612e46565b60208082528101610fbb81612ea5565b60208082528101610fbb81612ef6565b60208082528101610fbb81612f7b565b60208082528101610fbb81612fd3565b60208082528101610fbb8161301f565b60208082528101610fbb81613050565b60608101610fbb82846130a8565b6101208101613502828c612719565b61350f602083018b612582565b8181036040830152613521818a61259a565b9050818103606083015261353581896126c2565b905081810360808301526135498188612661565b905081810360a083015261355d81876125f3565b905061356c60c0830186612719565b61357960e0830185612719565b81810361010083015261358c8184612733565b9b9a5050505050505050505050565b61012081016135aa828c612719565b6135b7602083018b612591565b6135c4604083018a612719565b6135d16060830189612719565b6135de6080830188612719565b6135eb60a0830187612719565b6135f860c0830186612719565b61360560e0830185612710565b613613610100830184612710565b9a9950505050505050505050565b6040810161319a8285612719565b60405181810167ffffffffffffffff8111828210171561364e57600080fd5b604052919050565b600067ffffffffffffffff82111561366d57600080fd5b5060209081020190565b600067ffffffffffffffff82111561368e57600080fd5b506020601f91909101601f19160190565b60200190565b60009081526020902090565b5190565b90815260200190565b6000610fbb826136d8565b151590565b80610b1a81613765565b6001600160a01b031690565b60ff1690565b6bffffffffffffffffffffffff1690565b6000610fbb825b6000610fbb826136be565b6000610fbb826136ce565b6000610fbb826105a8565b82818337506000910152565b60005b8381101561374a578181015183820152602001613732565b838111156111285750506000910152565b601f01601f191690565b6008811061200757fe5b613778816136be565b811461200757600080fd5b613778816136c9565b613778816105a8565b613778816136e4565b613778816136ea56fea365627a7a723158205aebc4f3ff8c336334b3a72d8b37d9209db39c4e2da2f343e0f9758bc77911c56c6578706572696d656e74616cf564736f6c63430005100040000000000000000000000000a40522994c6c85e5717cd12d5f50de50a2a2c4e30000000000000000000000000000000000000000000000000000000000000060000000000000000000000000b258302c3f209491d604165549079680708581cc000000000000000000000000000000000000000000000000000000000000000200000000000000000000000038e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca1000000000000000000000000c0b5c7f2f5b5c6cdcc75aebb73ac8b5d87c68dcc

Deployed Bytecode

0x6080604052600436106101c25760003560e01c8063760fbc13116100f7578063d33219b411610095578063deaaa7cc11610064578063deaaa7cc146104d6578063e23a9a52146104eb578063f986a16f14610518578063fe0d94c114610538576101c2565b8063d33219b41461045f578063da35c66414610481578063da95691a14610496578063ddf0b009146104b6576101c2565b806391500671116100d157806391500671146103f3578063b58131b014610413578063b9a6196114610428578063c53636031461043d576101c2565b8063760fbc13146103a9578063782d6fe1146103be5780637bdbe4d0146103de576101c2565b806324bc1a64116101645780633e4f49e61161013e5780633e4f49e61461031a57806340e58ee514610347578063452a9320146103675780634634c61f14610389576101c2565b806324bc1a64146102c0578063328dd982146102d55780633932abb114610305576101c2565b806315373e3d116101a057806315373e3d1461024957806317977c611461026b57806320606b701461028b57806321f43e42146102a0576101c2565b8063013cf08b146101c757806302a251a31461020557806306fdde0314610227575b600080fd5b3480156101d357600080fd5b506101e76101e2366004612452565b61054b565b6040516101fc9998979695949392919061359b565b60405180910390f35b34801561021157600080fd5b5061021a6105a4565b6040516101fc91906132d5565b34801561023357600080fd5b5061023c6105ab565b6040516101fc9190613384565b34801561025557600080fd5b506102696102643660046124a0565b6105dc565b005b34801561027757600080fd5b5061021a610286366004612295565b6105eb565b34801561029757600080fd5b5061021a6105fd565b3480156102ac57600080fd5b506102696102bb3660046122bb565b610614565b3480156102cc57600080fd5b5061021a6106fb565b3480156102e157600080fd5b506102f56102f0366004612452565b610709565b6040516101fc9493929190613288565b34801561031157600080fd5b5061021a610998565b34801561032657600080fd5b5061033a610335366004612452565b61099d565b6040516101fc9190613376565b34801561035357600080fd5b50610269610362366004612452565b610b1f565b34801561037357600080fd5b5061037c610d0a565b6040516101fc919061312f565b34801561039557600080fd5b506102696103a43660046124d0565b610d19565b3480156103b557600080fd5b50610269610eae565b3480156103ca57600080fd5b5061021a6103d93660046122bb565b610eea565b3480156103ea57600080fd5b5061021a610fc1565b3480156103ff57600080fd5b5061026961040e3660046122bb565b610fc6565b34801561041f57600080fd5b5061021a61109b565b34801561043457600080fd5b506102696110a9565b34801561044957600080fd5b5061045261112e565b6040516101fc9190613277565b34801561046b57600080fd5b50610474611190565b6040516101fc9190613368565b34801561048d57600080fd5b5061021a61119f565b3480156104a257600080fd5b5061021a6104b13660046122f5565b6111a5565b3480156104c257600080fd5b506102696104d1366004612452565b61153f565b3480156104e257600080fd5b5061021a6117a9565b3480156104f757600080fd5b5061050b610506366004612470565b6117b5565b6040516101fc91906134e5565b34801561052457600080fd5b5061037c610533366004612452565b611816565b610269610546366004612452565b61183d565b6004602052600090815260409020805460018201546002830154600784015460088501546009860154600a870154600b9097015495966001600160a01b0390951695939492939192909160ff8082169161010090041689565b6143805b90565b60405180604001604052806015815260200174506f776572506f6f6c20476f7665726e6f72204c3160581b81525081565b6105e7338383611a02565b5050565b60056020526000908152604090205481565b60405161060990613119565b604051809103902081565b6002546001600160a01b031633146106475760405162461bcd60e51b815260040161063e906133c5565b60405180910390fd5b600080546040516001600160a01b0390911691630825f38f9183919061067190879060200161312f565b604051602081830303815290604052856040518563ffffffff1660e01b81526004016106a0949392919061313d565b600060405180830381600087803b1580156106ba57600080fd5b505af11580156106ce573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526106f6919081019061241d565b505050565b6954b40b1f852bda00000090565b6060806060806000600460008781526020019081526020016000209050806003018160040182600501836006018380548060200260200160405190810160405280929190818152602001828054801561078b57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161076d575b50505050509350828054806020026020016040519081016040528092919081815260200182805480156107dd57602002820191906000526020600020905b8154815260200190600101908083116107c9575b5050505050925081805480602002602001604051908101604052809291908181526020016000905b828210156108b05760008481526020908190208301805460408051601f600260001961010060018716150201909416939093049283018590048502810185019091528181529283018282801561089c5780601f106108715761010080835404028352916020019161089c565b820191906000526020600020905b81548152906001019060200180831161087f57829003601f168201915b505050505081526020019060010190610805565b50505050915080805480602002602001604051908101604052809291908181526020016000905b828210156109825760008481526020908190208301805460408051601f600260001961010060018716150201909416939093049283018590048502810185019091528181529283018282801561096e5780601f106109435761010080835404028352916020019161096e565b820191906000526020600020905b81548152906001019060200180831161095157829003601f168201915b5050505050815260200190600101906108d7565b5050505090509450945094509450509193509193565b600190565b600081600354101580156109b15750600082115b6109cd5760405162461bcd60e51b815260040161063e906133d5565b6000828152600460205260409020600b81015460ff16156109f2576002915050610b1a565b80600701544311610a07576000915050610b1a565b80600801544311610a1c576001915050610b1a565b80600a01548160090154111580610a3d5750610a366106fb565b8160090154105b15610a4c576003915050610b1a565b6002810154610a5f576004915050610b1a565b600b810154610100900460ff1615610a7b576007915050610b1a565b6002810154600054604080516360d143f160e11b81529051610b0493926001600160a01b03169163c1a287e2916004808301926020929190829003018186803b158015610ac757600080fd5b505afa158015610adb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610aff91908101906123ff565b611b28565b4210610b14576006915050610b1a565b60059150505b919050565b6000610b2a8261099d565b90506007816007811115610b3a57fe5b1415610b585760405162461bcd60e51b815260040161063e906134a5565b60008281526004602052604090206002546001600160a01b0316331480610ba55750610b8261109b565b600180830154610ba3916001600160a01b03909116906103d9904390611b54565b105b610bc15760405162461bcd60e51b815260040161063e90613445565b600b8101805460ff1916600117905560005b6003820154811015610ccd576000546003830180546001600160a01b039092169163591fcdfe919084908110610c0557fe5b6000918252602090912001546004850180546001600160a01b039092169185908110610c2d57fe5b9060005260206000200154856005018581548110610c4757fe5b90600052602060002001866006018681548110610c6057fe5b9060005260206000200187600201546040518663ffffffff1660e01b8152600401610c8f959493929190613236565b600060405180830381600087803b158015610ca957600080fd5b505af1158015610cbd573d6000803e3d6000fd5b505060019092019150610bd39050565b507f789cf55be980739dad1d0699b93b58e806b51c9d96619bfa8fe0a28abaa7b30c83604051610cfd91906132d5565b60405180910390a1505050565b6002546001600160a01b031681565b6000604051610d2790613119565b604080519182900382208282019091526015825274506f776572506f6f6c20476f7665726e6f72204c3160581b6020909201919091527fbfed68727d6036daef4e2ec4e11ace56e8d896523691b3356523e65253747329610d86611b7c565b30604051602001610d9a94939291906132e3565b6040516020818303038152906040528051906020012090506000604051610dc090613124565b604051908190038120610dd99189908990602001613318565b60405160208183030381529060405280519060200120905060008282604051602001610e069291906130e8565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610e439493929190613340565b6020604051602081039080840390855afa158015610e65573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610e985760405162461bcd60e51b815260040161063e90613485565b610ea3818a8a611a02565b505050505050505050565b6002546001600160a01b03163314610ed85760405162461bcd60e51b815260040161063e906134d5565b600280546001600160a01b0319169055565b6001546000908190815b81811015610fb557610fab8360018381548110610f0d57fe5b60009182526020909120015460405163782d6fe160e01b81526001600160a01b039091169063782d6fe190610f48908b908b9060040161318c565b60206040518083038186803b158015610f6057600080fd5b505afa158015610f74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610f989190810190612538565b6bffffffffffffffffffffffff16611b28565b9250600101610ef4565b50909150505b92915050565b600a90565b6002546001600160a01b03163314610ff05760405162461bcd60e51b815260040161063e90613405565b600080546040516001600160a01b0390911691633a66f9019183919061101a90879060200161312f565b604051602081830303815290604052856040518563ffffffff1660e01b8152600401611049949392919061313d565b602060405180830381600087803b15801561106357600080fd5b505af1158015611077573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506106f691908101906123ff565b69021e19e0c9bab240000090565b6002546001600160a01b031633146110d35760405162461bcd60e51b815260040161063e90613395565b6000805460408051630e18b68160e01b815290516001600160a01b0390921692630e18b6819260048084019382900301818387803b15801561111457600080fd5b505af1158015611128573d6000803e3d6000fd5b50505050565b6060600180548060200260200160405190810160405280929190818152602001828054801561118657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611168575b5050505050905090565b6000546001600160a01b031681565b60035481565b60006111af61109b565b6111be336103d9436001611b54565b116111db5760405162461bcd60e51b815260040161063e90613475565b845186511480156111ed575083518651145b80156111fa575082518651145b6112165760405162461bcd60e51b815260040161063e90613435565b85516112345760405162461bcd60e51b815260040161063e90613465565b61123c610fc1565b8651111561125c5760405162461bcd60e51b815260040161063e90613415565b3360009081526005602052604090205480156112d957600061127d8261099d565b9050600181600781111561128d57fe5b14156112ab5760405162461bcd60e51b815260040161063e90613495565b60008160078111156112b957fe5b14156112d75760405162461bcd60e51b815260040161063e906133f5565b505b60006112e743610aff610998565b905060006112f782610aff6105a4565b600380546001019055905061130a611cdf565b604051806101a001604052806003548152602001336001600160a01b03168152602001600081526020018b81526020018a815260200189815260200188815260200184815260200183815260200160008152602001600081526020016000151581526020016000151581525090508060046000836000015181526020019081526020016000206000820151816000015560208201518160010160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506040820151816002015560608201518160030190805190602001906113ed929190611d54565b5060808201518051611409916004840191602090910190611db9565b5060a08201518051611425916005840191602090910190611e00565b5060c08201518051611441916006840191602090910190611e59565b5060e082015181600701556101008201518160080155610120820151816009015561014082015181600a015561016082015181600b0160006101000a81548160ff02191690831515021790555061018082015181600b0160016101000a81548160ff02191690831515021790555090505080600001516005600083602001516001600160a01b03166001600160a01b03168152602001908152602001600020819055507f7d84a6263ae0d98d3329bd7b46bb4e8d6f98cd35a7adb45c274c8b7fd5ebd5e08160000151338c8c8c8c89898e604051611527999897969594939291906134f3565b60405180910390a15193505050505b95945050505050565b600461154a8261099d565b600781111561155557fe5b146115725760405162461bcd60e51b815260040161063e906133a5565b600081815260046020818152604080842084548251630d48571f60e31b815292519195946115c79442946001600160a01b0390931693636a42b8f8938084019390829003018186803b158015610ac757600080fd5b905060005b600383015481101561176f576117678360030182815481106115ea57fe5b6000918252602090912001546004850180546001600160a01b03909216918490811061161257fe5b906000526020600020015485600501848154811061162c57fe5b600091825260209182902001805460408051601f60026000196101006001871615020190941693909304928301859004850281018501909152818152928301828280156116ba5780601f1061168f576101008083540402835291602001916116ba565b820191906000526020600020905b81548152906001019060200180831161169d57829003601f168201915b50505050508660060185815481106116ce57fe5b600091825260209182902001805460408051601f600260001961010060018716150201909416939093049283018590048502810185019091528181529283018282801561175c5780601f106117315761010080835404028352916020019161175c565b820191906000526020600020905b81548152906001019060200180831161173f57829003601f168201915b505050505086611b80565b6001016115cc565b50600282018190556040517f9a2e42fd6722813d69113e7d0079d3d940171428df7373df9c7f7617cfda289290610cfd9085908490613621565b60405161060990613124565b6117bd611eb2565b5060009182526004602090815260408084206001600160a01b03939093168452600c9092018152918190208151606081018352815460ff8082161515835261010090910416151593810193909352600101549082015290565b6001818154811061182357fe5b6000918252602090912001546001600160a01b0316905081565b60056118488261099d565b600781111561185357fe5b146118705760405162461bcd60e51b815260040161063e906133b5565b6000818152600460205260408120600b8101805461ff001916610100179055905b60038201548110156119c6576000546004830180546001600160a01b0390921691630825f38f9190849081106118c357fe5b90600052602060002001548460030184815481106118dd57fe5b6000918252602090912001546004860180546001600160a01b03909216918690811061190557fe5b906000526020600020015486600501868154811061191f57fe5b9060005260206000200187600601878154811061193857fe5b9060005260206000200188600201546040518763ffffffff1660e01b8152600401611967959493929190613236565b6000604051808303818588803b15801561198057600080fd5b505af1158015611994573d6000803e3d6000fd5b50505050506040513d6000823e601f3d908101601f191682016040526119bd919081019061241d565b50600101611891565b507f712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f826040516119f691906132d5565b60405180910390a15050565b6001611a0d8361099d565b6007811115611a1857fe5b14611a355760405162461bcd60e51b815260040161063e906134b5565b60008281526004602090815260408083206001600160a01b0387168452600c8101909252909120805460ff1615611a7e5760405162461bcd60e51b815260040161063e906133e5565b6000611a8e868460070154610eea565b90508315611aae57611aa4836009015482611b28565b6009840155611ac2565b611abc83600a015482611b28565b600a8401555b8154600160ff19909116811761ff0019166101008615150217835582018190556040517f877856338e13f63d0c36822ff0ef736b80934cd90574a3a5bc9262c39d217c4690611b189088908890889086906131a7565b60405180910390a1505050505050565b600082820183811015611b4d5760405162461bcd60e51b815260040161063e90613425565b9392505050565b600082821115611b765760405162461bcd60e51b815260040161063e906134c5565b50900390565b4690565b6000546040516001600160a01b039091169063f2b0653790611bae90889088908890889088906020016131dc565b604051602081830303815290604052805190602001206040518263ffffffff1660e01b8152600401611be091906132d5565b60206040518083038186803b158015611bf857600080fd5b505afa158015611c0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611c3091908101906123e1565b15611c4d5760405162461bcd60e51b815260040161063e90613455565b600054604051633a66f90160e01b81526001600160a01b0390911690633a66f90190611c8590889088908890889088906004016131dc565b602060405180830381600087803b158015611c9f57600080fd5b505af1158015611cb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611cd791908101906123ff565b505050505050565b604051806101a001604052806000815260200160006001600160a01b031681526020016000815260200160608152602001606081526020016060815260200160608152602001600081526020016000815260200160008152602001600081526020016000151581526020016000151581525090565b828054828255906000526020600020908101928215611da9579160200282015b82811115611da957825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190611d74565b50611db5929150611ed2565b5090565b828054828255906000526020600020908101928215611df4579160200282015b82811115611df4578251825591602001919060010190611dd9565b50611db5929150611ef6565b828054828255906000526020600020908101928215611e4d579160200282015b82811115611e4d5782518051611e3d918491602090910190611f10565b5091602001919060010190611e20565b50611db5929150611f7d565b828054828255906000526020600020908101928215611ea6579160200282015b82811115611ea65782518051611e96918491602090910190611f10565b5091602001919060010190611e79565b50611db5929150611fa0565b604080516060810182526000808252602082018190529181019190915290565b6105a891905b80821115611db55780546001600160a01b0319168155600101611ed8565b6105a891905b80821115611db55760008155600101611efc565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611f5157805160ff1916838001178555611df4565b82800160010185558215611df45791820182811115611df4578251825591602001919060010190611dd9565b6105a891905b80821115611db5576000611f978282611fc3565b50600101611f83565b6105a891905b80821115611db5576000611fba8282611fc3565b50600101611fa6565b50805460018160011615610100020316600290046000825580601f10611fe95750612007565b601f0160209004906000526020600020908101906120079190611ef6565b50565b8035610fbb8161376f565b600082601f83011261202657600080fd5b813561203961203482613656565b61362f565b9150818183526020840193506020810190508385602084028201111561205e57600080fd5b60005b8381101561208a5781612074888261200a565b8452506020928301929190910190600101612061565b5050505092915050565b600082601f8301126120a557600080fd5b81356120b361203482613656565b81815260209384019390925082018360005b8381101561208a57813586016120db88826121ea565b84525060209283019291909101906001016120c5565b600082601f83011261210257600080fd5b813561211061203482613656565b81815260209384019390925082018360005b8381101561208a578135860161213888826121ea565b8452506020928301929190910190600101612122565b600082601f83011261215f57600080fd5b813561216d61203482613656565b9150818183526020840193506020810190508385602084028201111561219257600080fd5b60005b8381101561208a57816121a888826121d4565b8452506020928301929190910190600101612195565b8035610fbb81613783565b8051610fbb81613783565b8035610fbb8161378c565b8051610fbb8161378c565b600082601f8301126121fb57600080fd5b813561220961203482613677565b9150808252602083016020830185838301111561222557600080fd5b612230838284613723565b50505092915050565b600082601f83011261224a57600080fd5b815161225861203482613677565b9150808252602083016020830185838301111561227457600080fd5b61223083828461372f565b8035610fbb81613795565b8051610fbb8161379e565b6000602082840312156122a757600080fd5b60006122b3848461200a565b949350505050565b600080604083850312156122ce57600080fd5b60006122da858561200a565b92505060206122eb858286016121d4565b9150509250929050565b600080600080600060a0868803121561230d57600080fd5b853567ffffffffffffffff81111561232457600080fd5b61233088828901612015565b955050602086013567ffffffffffffffff81111561234d57600080fd5b6123598882890161214e565b945050604086013567ffffffffffffffff81111561237657600080fd5b612382888289016120f1565b935050606086013567ffffffffffffffff81111561239f57600080fd5b6123ab88828901612094565b925050608086013567ffffffffffffffff8111156123c857600080fd5b6123d4888289016121ea565b9150509295509295909350565b6000602082840312156123f357600080fd5b60006122b384846121c9565b60006020828403121561241157600080fd5b60006122b384846121df565b60006020828403121561242f57600080fd5b815167ffffffffffffffff81111561244657600080fd5b6122b384828501612239565b60006020828403121561246457600080fd5b60006122b384846121d4565b6000806040838503121561248357600080fd5b600061248f85856121d4565b92505060206122eb8582860161200a565b600080604083850312156124b357600080fd5b60006124bf85856121d4565b92505060206122eb858286016121be565b600080600080600060a086880312156124e857600080fd5b60006124f488886121d4565b9550506020612505888289016121be565b94505060406125168882890161227f565b9350506060612527888289016121d4565b92505060806123d4888289016121d4565b60006020828403121561254a57600080fd5b60006122b3848461228a565b60006125628383612591565b505060200190565b6000611b4d8383612733565b60006125628383612719565b61258b816136fb565b82525050565b61258b816136be565b60006125a5826136b1565b6125af81856136b5565b93506125ba8361369f565b8060005b838110156125e85781516125d28882612556565b97506125dd8361369f565b9250506001016125be565b509495945050505050565b60006125fe826136b1565b61260881856136b5565b93508360208202850161261a8561369f565b8060005b858110156126545784840389528151612637858261256a565b94506126428361369f565b60209a909a019992505060010161261e565b5091979650505050505050565b600061266c826136b1565b61267681856136b5565b9350836020820285016126888561369f565b8060005b8581101561265457848403895281516126a5858261256a565b94506126b08361369f565b60209a909a019992505060010161268c565b60006126cd826136b1565b6126d781856136b5565b93506126e28361369f565b8060005b838110156125e85781516126fa8882612576565b97506127058361369f565b9250506001016126e6565b61258b816136c9565b61258b816105a8565b61258b61272e826105a8565b6105a8565b600061273e826136b1565b61274881856136b5565b935061275881856020860161372f565b6127618161375b565b9093019392505050565b60008154600181166000811461278857600181146127ae576127ed565b607f600283041661279981876136b5565b60ff19841681529550506020850192506127ed565b600282046127bc81876136b5565b95506127c7856136a5565b60005b828110156127e6578154888201526001909101906020016127ca565b8701945050505b505092915050565b61258b81613702565b61258b8161370d565b61258b81613718565b600061281d6039836136b5565b7f476f7665726e6f72416c7068613a3a5f5f61636365707441646d696e3a20736581527f6e646572206d75737420626520676f7620677561726469616e00000000000000602082015260400192915050565b600061287c6044836136b5565b7f476f7665726e6f72416c7068613a3a71756575653a2070726f706f73616c206381527f616e206f6e6c79206265207175657565642069662069742069732073756363656020820152631959195960e21b604082015260600192915050565b60006128e86045836136b5565b7f476f7665726e6f72416c7068613a3a657865637574653a2070726f706f73616c81527f2063616e206f6e6c7920626520657865637574656420696620697420697320716020820152641d595d595960da1b604082015260600192915050565b6000612955600283610b1a565b61190160f01b815260020192915050565b6000612973604c836136b5565b7f476f7665726e6f72416c7068613a3a5f5f6578656375746553657454696d656c81527f6f636b50656e64696e6741646d696e3a2073656e646572206d7573742062652060208201526b33b7bb1033bab0b93234b0b760a11b604082015260600192915050565b60006129e76018836136b5565b7f73657450656e64696e6741646d696e2861646472657373290000000000000000815260200192915050565b6000612a206029836136b5565b7f476f7665726e6f72416c7068613a3a73746174653a20696e76616c69642070728152681bdc1bdcd85b081a5960ba1b602082015260400192915050565b6000612a6b602d836136b5565b7f476f7665726e6f72416c7068613a3a5f63617374566f74653a20766f7465722081526c185b1c9958591e481d9bdd1959609a1b602082015260400192915050565b6000612aba6059836136b5565b7f476f7665726e6f72416c7068613a3a70726f706f73653a206f6e65206c69766581527f2070726f706f73616c207065722070726f706f7365722c20666f756e6420616e60208201527f20616c72656164792070656e64696e672070726f706f73616c00000000000000604082015260600192915050565b6000612b3f604a836136b5565b7f476f7665726e6f72416c7068613a3a5f5f717565756553657454696d656c6f6381527f6b50656e64696e6741646d696e3a2073656e646572206d75737420626520676f6020820152693b1033bab0b93234b0b760b11b604082015260600192915050565b6000612bb16028836136b5565b7f476f7665726e6f72416c7068613a3a70726f706f73653a20746f6f206d616e7981526720616374696f6e7360c01b602082015260400192915050565b6000612bfb6011836136b5565b706164646974696f6e206f766572666c6f7760781b815260200192915050565b6000612c28604383610b1a565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b6000612c93602783610b1a565b7f42616c6c6f742875696e743235362070726f706f73616c49642c626f6f6c20738152667570706f72742960c81b602082015260270192915050565b6000612cdc6044836136b5565b7f476f7665726e6f72416c7068613a3a70726f706f73653a2070726f706f73616c81527f2066756e6374696f6e20696e666f726d6174696f6e206172697479206d69736d6020820152630c2e8c6d60e31b604082015260600192915050565b6000612d48602f836136b5565b7f476f7665726e6f72416c7068613a3a63616e63656c3a2070726f706f7365722081526e18589bdd99481d1a1c995cda1bdb19608a1b602082015260400192915050565b6000612d996044836136b5565b7f476f7665726e6f72416c7068613a3a5f71756575654f725265766572743a207081527f726f706f73616c20616374696f6e20616c7265616479207175657565642061746020820152632065746160e01b604082015260600192915050565b6000612e05602c836136b5565b7f476f7665726e6f72416c7068613a3a70726f706f73653a206d7573742070726f81526b7669646520616374696f6e7360a01b602082015260400192915050565b6000612e53603f836136b5565b7f476f7665726e6f72416c7068613a3a70726f706f73653a2070726f706f73657281527f20766f7465732062656c6f772070726f706f73616c207468726573686f6c6400602082015260400192915050565b6000612eb2602f836136b5565b7f476f7665726e6f72416c7068613a3a63617374566f746542795369673a20696e81526e76616c6964207369676e617475726560881b602082015260400192915050565b6000612f036058836136b5565b7f476f7665726e6f72416c7068613a3a70726f706f73653a206f6e65206c69766581527f2070726f706f73616c207065722070726f706f7365722c20666f756e6420616e60208201527f20616c7265616479206163746976652070726f706f73616c0000000000000000604082015260600192915050565b6000612f886036836136b5565b7f476f7665726e6f72416c7068613a3a63616e63656c3a2063616e6e6f742063618152751b98d95b08195e1958dd5d1959081c1c9bdc1bdcd85b60521b602082015260400192915050565b6000612fe0602a836136b5565b7f476f7665726e6f72416c7068613a3a5f63617374566f74653a20766f74696e67815269081a5cc818db1bdcd95960b21b602082015260400192915050565b600061302c6015836136b5565b747375627472616374696f6e20756e646572666c6f7760581b815260200192915050565b600061305d6036836136b5565b7f476f7665726e6f72416c7068613a3a5f5f61626469636174653a2073656e6465815275391036bab9ba1031329033b7bb1033bab0b93234b0b760511b602082015260400192915050565b805160608301906130b98482612710565b5060208201516130cc6020850182612710565b5060408201516111286040850182612719565b61258b816136e4565b60006130f382612948565b91506130ff8285612722565b60208201915061310f8284612722565b5060200192915050565b6000610fbb82612c1b565b6000610fbb82612c86565b60208101610fbb8284612591565b60a0810161314b8287612591565b6131586020830186612807565b8181036040830152613169816129da565b9050818103606083015261317d8185612733565b90506115366080830184612719565b6040810161319a8285612591565b611b4d6020830184612719565b608081016131b58287612591565b6131c26020830186612719565b6131cf6040830185612710565b6115366060830184612719565b60a081016131ea8288612591565b6131f76020830187612719565b81810360408301526132098186612733565b9050818103606083015261321d8185612733565b905061322c6080830184612719565b9695505050505050565b60a081016132448288612591565b6132516020830187612719565b8181036040830152613263818661276b565b9050818103606083015261321d818561276b565b60208082528101611b4d818461259a565b60808082528101613299818761259a565b905081810360208301526132ad81866126c2565b905081810360408301526132c18185612661565b9050818103606083015261322c81846125f3565b60208101610fbb8284612719565b608081016132f18287612719565b6132fe6020830186612719565b61330b6040830185612719565b6115366060830184612591565b606081016133268286612719565b6133336020830185612719565b6122b36040830184612710565b6080810161334e8287612719565b61335b60208301866130df565b6131cf6040830185612719565b60208101610fbb82846127f5565b60208101610fbb82846127fe565b60208082528101611b4d8184612733565b60208082528101610fbb81612810565b60208082528101610fbb8161286f565b60208082528101610fbb816128db565b60208082528101610fbb81612966565b60208082528101610fbb81612a13565b60208082528101610fbb81612a5e565b60208082528101610fbb81612aad565b60208082528101610fbb81612b32565b60208082528101610fbb81612ba4565b60208082528101610fbb81612bee565b60208082528101610fbb81612ccf565b60208082528101610fbb81612d3b565b60208082528101610fbb81612d8c565b60208082528101610fbb81612df8565b60208082528101610fbb81612e46565b60208082528101610fbb81612ea5565b60208082528101610fbb81612ef6565b60208082528101610fbb81612f7b565b60208082528101610fbb81612fd3565b60208082528101610fbb8161301f565b60208082528101610fbb81613050565b60608101610fbb82846130a8565b6101208101613502828c612719565b61350f602083018b612582565b8181036040830152613521818a61259a565b9050818103606083015261353581896126c2565b905081810360808301526135498188612661565b905081810360a083015261355d81876125f3565b905061356c60c0830186612719565b61357960e0830185612719565b81810361010083015261358c8184612733565b9b9a5050505050505050505050565b61012081016135aa828c612719565b6135b7602083018b612591565b6135c4604083018a612719565b6135d16060830189612719565b6135de6080830188612719565b6135eb60a0830187612719565b6135f860c0830186612719565b61360560e0830185612710565b613613610100830184612710565b9a9950505050505050505050565b6040810161319a8285612719565b60405181810167ffffffffffffffff8111828210171561364e57600080fd5b604052919050565b600067ffffffffffffffff82111561366d57600080fd5b5060209081020190565b600067ffffffffffffffff82111561368e57600080fd5b506020601f91909101601f19160190565b60200190565b60009081526020902090565b5190565b90815260200190565b6000610fbb826136d8565b151590565b80610b1a81613765565b6001600160a01b031690565b60ff1690565b6bffffffffffffffffffffffff1690565b6000610fbb825b6000610fbb826136be565b6000610fbb826136ce565b6000610fbb826105a8565b82818337506000910152565b60005b8381101561374a578181015183820152602001613732565b838111156111285750506000910152565b601f01601f191690565b6008811061200757fe5b613778816136be565b811461200757600080fd5b613778816136c9565b613778816105a8565b613778816136e4565b613778816136ea56fea365627a7a723158205aebc4f3ff8c336334b3a72d8b37d9209db39c4e2da2f343e0f9758bc77911c56c6578706572696d656e74616cf564736f6c63430005100040

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000a40522994c6c85e5717cd12d5f50de50a2a2c4e30000000000000000000000000000000000000000000000000000000000000060000000000000000000000000b258302c3f209491d604165549079680708581cc000000000000000000000000000000000000000000000000000000000000000200000000000000000000000038e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca1000000000000000000000000c0b5c7f2f5b5c6cdcc75aebb73ac8b5d87c68dcc

-----Decoded View---------------
Arg [0] : timelock_ (address): 0xA40522994c6C85E5717Cd12D5F50dE50a2A2c4e3
Arg [1] : voteSources_ (address[]): 0x38e4adB44ef08F22F5B5b76A8f0c2d0dCbE7DcA1,0xC0B5c7f2F5b5c6CDcc75AeBB73Ac8B5d87C68DcC
Arg [2] : guardian_ (address): 0xB258302C3f209491d604165549079680708581Cc

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000a40522994c6c85e5717cd12d5f50de50a2a2c4e3
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 000000000000000000000000b258302c3f209491d604165549079680708581cc
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [4] : 00000000000000000000000038e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca1
Arg [5] : 000000000000000000000000c0b5c7f2f5b5c6cdcc75aebb73ac8b5d87c68dcc


Deployed Bytecode Sourcemap

11080:13474:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14033:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14033:43:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;12060:68;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12060:68:0;;;:::i;:::-;;;;;;;;11174:53;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11174:53:0;;;:::i;:::-;;;;;;;;21610:118;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;21610:118:0;;;;;;;;:::i;:::-;;14136:50;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14136:50:0;;;;;;;;:::i;14255:122::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14255:122:0;;;:::i;23780:326::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;23780:326:0;;;;;;;;:::i;11365:71::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11365:71:0;;;:::i;19781:277::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;19781:277:0;;;;;;;;:::i;:::-;;;;;;;;;;;11917:63;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11917:63:0;;;:::i;20216:951::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;20216:951:0;;;;;;;;:::i;:::-;;;;;;;;19071:704;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;19071:704:0;;;;;;;;:::i;12436:23::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12436:23:0;;;:::i;:::-;;;;;;;;21734:599;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;21734:599:0;;;;;;;;:::i;23289:159::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23289:159:0;;;:::i;21173:327::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;21173:327:0;;;;;;;;:::i;11740:74::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11740:74:0;;;:::i;23454:320::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;23454:320:0;;;;;;;;:::i;11553:76::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11553:76:0;;;:::i;23117:166::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23117:166:0;;;:::i;21506:98::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21506:98:0;;;:::i;:::-;;;;;;;;12239:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12239:33:0;;;:::i;:::-;;;;;;;;12511:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12511:25:0;;;:::i;15614:1985::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15614:1985:0;;;;;;;;:::i;17605:541::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;17605:541:0;;;;;;;;:::i;14463:94::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14463:94:0;;;:::i;20064:146::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;20064:146:0;;;;;;;;:::i;:::-;;;;;;;;12349:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12349:28:0;;;;;;;;:::i;18524:541::-;;;;;;;;;:::i;14033:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14033:43:0;;;;;;;;;;;;;;;;;;;;;;:::o;12060:68::-;12120:5;12060:68;;:::o;11174:53::-;;;;;;;;;;;;;;-1:-1:-1;;;11174:53:0;;;;:::o;21610:118::-;21680:42;21690:10;21702;21714:7;21680:9;:42::i;:::-;21610:118;;:::o;14136:50::-;;;;;;;;;;;;;:::o;14255:122::-;14297:80;;;;;;;;;;;;;;14255:122;:::o;23780:326::-;23893:8;;-1:-1:-1;;;;;23893:8:0;23879:10;:22;23871:111;;;;-1:-1:-1;;;23871:111:0;;;;;;;;;;;;;;;;;23989:8;;;24067:27;;-1:-1:-1;;;;;23989:8:0;;;;:27;;:8;;;24067:27;;24078:15;;24067:27;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;24067:27:0;;;24096:3;23989:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23989:111:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23989:111:0;;;;;;39:16:-1;36:1;17:17;2:54;101:4;23989:111:0;80:15:-1;;;-1:-1;;76:31;65:43;;120:4;113:20;23989:111:0;;;;;;;;;;23780:326;;:::o;11365:71::-;11424:9;11365:71;:::o;19781:277::-;19839:24;19865:20;19887:26;19915:24;19948:18;19969:9;:21;19979:10;19969:21;;;;;;;;;;;19948:42;;20005:1;:9;;20016:1;:8;;20026:1;:12;;20040:1;:11;;19997:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19997:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;19997:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;19997:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19781:277;;;;;:::o;11917:63::-;11976:1;11917:63;:::o;20216:951::-;20269:13;20316:10;20299:13;;:27;;:45;;;;;20343:1;20330:10;:14;20299:45;20291:99;;;;-1:-1:-1;;;20291:99:0;;;;;;;;;20397:25;20425:21;;;:9;:21;;;;;20457:17;;;;;;20453:709;;;20492:22;20485:29;;;;;20453:709;20548:8;:19;;;20532:12;:35;20528:634;;20585:21;20578:28;;;;;20528:634;20640:8;:17;;;20624:12;:33;20620:542;;20675:20;20668:27;;;;;20620:542;20734:8;:21;;;20713:8;:17;;;:42;;:79;;;;20779:13;:11;:13::i;:::-;20759:8;:17;;;:33;20713:79;20709:453;;;20810:22;20803:29;;;;;20709:453;20850:12;;;;20846:316;;20885:23;20878:30;;;;;20846:316;20926:17;;;;;;;;;20922:240;;;20961:22;20954:29;;;;;20922:240;21027:12;;;;21041:8;;:23;;;-1:-1:-1;;;21041:23:0;;;;21020:45;;21027:12;-1:-1:-1;;;;;21041:8:0;;:21;;:23;;;;;;;;;;;;;;:8;:23;;;5:2:-1;;;;30:1;27;20:12;5:2;21041:23:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21041:23:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;21041:23:0;;;;;;;;;21020:6;:45::i;:::-;21001:15;:64;20997:165;;21083:21;21076:28;;;;;20997:165;21134:20;21127:27;;;20216:951;;;;:::o;19071:704::-;19118:19;19140:17;19146:10;19140:5;:17::i;:::-;19118:39;-1:-1:-1;19181:22:0;19172:5;:31;;;;;;;;;;19164:98;;;;-1:-1:-1;;;19164:98:0;;;;;;;;;19271:25;19299:21;;;:9;:21;;;;;19349:8;;-1:-1:-1;;;;;19349:8:0;19335:10;:22;;:105;;;19421:19;:17;:19::i;:::-;19375:17;;;;;19361:57;;-1:-1:-1;;;;;19375:17:0;;;;19394:23;;19401:12;;19394:6;:23::i;19361:57::-;:79;19335:105;19327:165;;;;-1:-1:-1;;;19327:165:0;;;;;;;;;19501:17;;;:24;;-1:-1:-1;;19501:24:0;19521:4;19501:24;;;:17;19532:196;19553:16;;;:23;19549:27;;19532:196;;;19592:8;;19619:16;;;:19;;-1:-1:-1;;;;;19592:8:0;;;;:26;;19619:16;19636:1;;19619:19;;;;;;;;;;;;;;;;19640:15;;;:18;;-1:-1:-1;;;;;19619:19:0;;;;19656:1;;19640:18;;;;;;;;;;;;;;19660:8;:19;;19680:1;19660:22;;;;;;;;;;;;;;;19684:8;:18;;19703:1;19684:21;;;;;;;;;;;;;;;19707:8;:12;;;19592:128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19592:128:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;19578:3:0;;;;;-1:-1:-1;19532:196:0;;-1:-1:-1;19532:196:0;;;19741:28;19758:10;19741:28;;;;;;;;;;;;;;;19071:704;;;:::o;12436:23::-;;;-1:-1:-1;;;;;12436:23:0;;:::o;21734:599::-;21833:23;14297:80;;;;;;;;;;;;;;;;21913:4;;;;;;;;;-1:-1:-1;;;21913:4:0;;;;;;;;21897:22;21921:12;:10;:12::i;:::-;21943:4;21869:80;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;21869:80:0;;;21859:91;;;;;;21833:117;;21957:18;14505:52;;;;;;;;;;;;;;;21988:48;;22016:10;;22028:7;;21988:48;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;21988:48:0;;;21978:59;;;;;;21957:80;;22044:14;22100:15;22117:10;22071:57;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;22071:57:0;;;22061:68;;;;;;22044:85;;22136:17;22156:26;22166:6;22174:1;22177;22180;22156:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;22156:26:0;;-1:-1:-1;;22156:26:0;;;-1:-1:-1;;;;;;;22197:23:0;;22189:83;;;;-1:-1:-1;;;22189:83:0;;;;;;;;;22286:41;22296:9;22307:10;22319:7;22286:9;:41::i;:::-;22279:48;;;;21734:599;;;;;:::o;23289:159::-;23347:8;;-1:-1:-1;;;;;23347:8:0;23333:10;:22;23325:89;;;;-1:-1:-1;;;23325:89:0;;;;;;;;;23421:8;:21;;-1:-1:-1;;;;;;23421:21:0;;;23289:159::o;21173:327::-;21309:11;:18;21255:7;;;;;21336:138;21360:3;21356:1;:7;21336:138;;;21387:79;21394:5;21414:11;21426:1;21414:14;;;;;;;;;;;;;;;;;;21401:64;;-1:-1:-1;;;21401:64:0;;-1:-1:-1;;;;;21414:14:0;;;;21401:42;;:64;;21444:7;;21453:11;;21401:64;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21401:64:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21401:64:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;21401:64:0;;;;;;;;;21387:79;;:6;:79::i;:::-;21379:87;-1:-1:-1;21365:3:0;;21336:138;;;-1:-1:-1;21489:5:0;;-1:-1:-1;;21173:327:0;;;;;:::o;11740:74::-;11809:2;11740:74;:::o;23454:320::-;23565:8;;-1:-1:-1;;;;;23565:8:0;23551:10;:22;23543:109;;;;-1:-1:-1;;;23543:109:0;;;;;;;;;23659:8;;;23735:27;;-1:-1:-1;;;;;23659:8:0;;;;:25;;:8;;;23735:27;;23746:15;;23735:27;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;23735:27:0;;;23764:3;23659:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23659:109:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23659:109:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;23659:109:0;;;;;;;;11553:76;11618:8;11553:76;:::o;23117:166::-;23178:8;;-1:-1:-1;;;;;23178:8:0;23164:10;:22;23156:92;;;;-1:-1:-1;;;23156:92:0;;;;;;;;;23255:8;;;:22;;;-1:-1:-1;;;23255:22:0;;;;-1:-1:-1;;;;;23255:8:0;;;;:20;;:22;;;;;;;;;;:8;;:22;;;5:2:-1;;;;30:1;27;20:12;5:2;23255:22:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23255:22:0;;;;23117:166::o;21506:98::-;21555:16;21587:11;21580:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21580:18:0;;;;;;;;;;;;;;;;;;;;;;;21506:98;:::o;12239:33::-;;;-1:-1:-1;;;;;12239:33:0;;:::o;12511:25::-;;;;:::o;15614:1985::-;15776:4;15850:19;:17;:19::i;:::-;15797:50;15811:10;15823:23;15830:12;15844:1;15823:6;:23::i;15797:50::-;:72;15789:148;;;;-1:-1:-1;;;15789:148:0;;;;;;;;;15970:6;:13;15952:7;:14;:31;:70;;;;;16005:10;:17;15987:7;:14;:35;15952:70;:108;;;;;16044:9;:16;16026:7;:14;:34;15952:108;15944:189;;;;-1:-1:-1;;;15944:189:0;;;;;;;;;16148:14;;16140:76;;;;-1:-1:-1;;;16140:76:0;;;;;;;;;16249:23;:21;:23::i;:::-;16231:7;:14;:41;;16223:94;;;;-1:-1:-1;;;16223:94:0;;;;;;;;;16368:10;16326:21;16350:29;;;:17;:29;;;;;;16390:21;;16386:438;;16422:42;16467:23;16473:16;16467:5;:23::i;:::-;16422:68;-1:-1:-1;16539:20:0;16507:28;:52;;;;;;;;;;16499:153;;;;-1:-1:-1;;;16499:153:0;;;;;;;;;16701:21;16669:28;:53;;;;;;;;;;16661:155;;;;-1:-1:-1;;;16661:155:0;;;;;;;;;16386:438;;16832:15;16850:35;16857:12;16871:13;:11;:13::i;16850:35::-;16832:53;;16892:13;16908:34;16915:10;16927:14;:12;:14::i;16908:34::-;16951:13;:15;;;;;;16892:50;-1:-1:-1;16973:27:0;;:::i;:::-;17003:319;;;;;;;;17023:13;;17003:319;;;;17053:10;-1:-1:-1;;;;;17003:319:0;;;;;17075:1;17003:319;;;;17092:7;17003:319;;;;17114:6;17003:319;;;;17139:10;17003:319;;;;17167:9;17003:319;;;;17195:10;17003:319;;;;17222:8;17003:319;;;;17247:1;17003:319;;;;17269:1;17003:319;;;;17287:5;17003:319;;;;;;17309:5;17003:319;;;;;16973:349;;17359:11;17331:9;:25;17341:11;:14;;;17331:25;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17331:39:0;;;;;-1:-1:-1;;;;;17331:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;17331:39:0;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;17331:39:0;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;17331:39:0;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17419:11;:14;;;17377:17;:39;17395:11;:20;;;-1:-1:-1;;;;;17377:39:0;-1:-1:-1;;;;;17377:39:0;;;;;;;;;;;;:56;;;;17447:118;17463:11;:14;;;17479:10;17491:7;17500:6;17508:10;17520:9;17531:10;17543:8;17553:11;17447:118;;;;;;;;;;;;;;;;;;;;;;;17579:14;;-1:-1:-1;;;;15614:1985:0;;;;;;;;:::o;17605:541::-;17680:23;17659:17;17665:10;17659:5;:17::i;:::-;:44;;;;;;;;;17651:125;;;;-1:-1:-1;;;17651:125:0;;;;;;;;;17783:25;17811:21;;;:9;:21;;;;;;;;17874:8;;:16;;-1:-1:-1;;;17874:16:0;;;;17811:21;;17783:25;17850:41;;17857:15;;-1:-1:-1;;;;;17874:8:0;;;;:14;;:16;;;;;;;;;;:8;:16;;;5:2:-1;;;;30:1;27;20:12;17850:41:0;17839:52;-1:-1:-1;17903:6:0;17898:175;17919:16;;;:23;17915:27;;17898:175;;;17958:107;17973:8;:16;;17990:1;17973:19;;;;;;;;;;;;;;;;;;17994:15;;;:18;;-1:-1:-1;;;;;17973:19:0;;;;18010:1;;17994:18;;;;;;;;;;;;;;18014:8;:19;;18034:1;18014:22;;;;;;;;;;;;;;;;;;17958:107;;;;;;;-1:-1:-1;;17958:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18014:22;17958:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18038:8;:18;;18057:1;18038:21;;;;;;;;;;;;;;;;;;17958:107;;;;;;;-1:-1:-1;;17958:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18038:21;17958:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18061:3;17958:14;:107::i;:::-;17944:3;;17898:175;;;-1:-1:-1;18079:12:0;;;:18;;;18109:31;;;;;;18124:10;;18094:3;;18109:31;;14463:94;14505:52;;;;;;20064:146;20137:14;;:::i;:::-;-1:-1:-1;20167:21:0;;;;:9;:21;;;;;;;;-1:-1:-1;;;;;20167:37:0;;;;;;:30;;;;:37;;;;;;20160:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20064:146::o;12349:28::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12349:28:0;;-1:-1:-1;12349:28:0;:::o;18524:541::-;18609:20;18588:17;18594:10;18588:5;:17::i;:::-;:41;;;;;;;;;18580:123;;;;-1:-1:-1;;;18580:123:0;;;;;;;;;18710:25;18738:21;;;:9;:21;;;;;18766:17;;;:24;;-1:-1:-1;;18766:24:0;;;;;18738:21;18797:223;18818:16;;;:23;18814:27;;18797:223;;;18857:8;;18891:15;;;:18;;-1:-1:-1;;;;;18857:8:0;;;;:27;;18891:15;18907:1;;18891:18;;;;;;;;;;;;;;18911:8;:16;;18928:1;18911:19;;;;;;;;;;;;;;;;;;18932:15;;;:18;;-1:-1:-1;;;;;18911:19:0;;;;18948:1;;18932:18;;;;;;;;;;;;;;18952:8;:19;;18972:1;18952:22;;;;;;;;;;;;;;;18976:8;:18;;18995:1;18976:21;;;;;;;;;;;;;;;18999:8;:12;;;18857:155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18857:155:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;18857:155:0;;;;;;;39:16:-1;36:1;17:17;2:54;101:4;18857:155:0;80:15:-1;;;-1:-1;;76:31;65:43;;120:4;113:20;18857:155:0;;;;;;;;;-1:-1:-1;18843:3:0;;18797:223;;;;19031:28;19048:10;19031:28;;;;;;;;;;;;;;;18524:541;;:::o;22339:772::-;22449:20;22428:17;22434:10;22428:5;:17::i;:::-;:41;;;;;;;;;22420:96;;;;-1:-1:-1;;;22420:96:0;;;;;;;;;22523:25;22551:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;22605:24:0;;;;:17;;;:24;;;;;;22644:16;;;;:25;22636:83;;;;-1:-1:-1;;;22636:83:0;;;;;;;;;22726:13;22742:41;22756:5;22763:8;:19;;;22742:13;:41::i;:::-;22726:57;;22796:7;22792:165;;;22834:32;22841:8;:17;;;22860:5;22834:6;:32::i;:::-;22814:17;;;:52;22792:165;;;22913:36;22920:8;:21;;;22943:5;22913:6;:36::i;:::-;22889:21;;;:60;22792:165;22965:23;;22984:4;-1:-1:-1;;22965:23:0;;;;;-1:-1:-1;;22995:25:0;22965:23;22995:25;;;;;;;23027:13;;:21;;;23062:43;;;;;;23071:5;;23078:10;;22995:25;;23027:21;;23062:43;;;;;;;;;;22339:772;;;;;;:::o;24112:152::-;24173:4;24195:5;;;24215:6;;;;24207:36;;;;-1:-1:-1;;;24207:36:0;;;;;;;;;24257:1;24112:152;-1:-1:-1;;;24112:152:0:o;24270:139::-;24331:4;24357:1;24352;:6;;24344:40;;;;-1:-1:-1;;;24344:40:0;;;;;;;;;-1:-1:-1;24398:5:0;;;24270:139::o;24415:136::-;24514:9;24415:136;:::o;18152:366::-;18283:8;;18321:47;;-1:-1:-1;;;;;18283:8:0;;;;:27;;18321:47;;18332:6;;18340:5;;18347:9;;18358:4;;18364:3;;18321:47;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;18321:47:0;;;18311:58;;;;;;18283:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18283:87:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;18283:87:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;18283:87:0;;;;;;;;;18282:88;18274:169;;;;-1:-1:-1;;;18274:169:0;;;;;;;;;18450:8;;:62;;-1:-1:-1;;;18450:62:0;;-1:-1:-1;;;;;18450:8:0;;;;:25;;:62;;18476:6;;18484:5;;18491:9;;18502:4;;18508:3;;18450:62;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18450:62:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;18450:62:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;18450:62:0;;;;;;;;;;18152:366;;;;;:::o;11080:13474::-;;;;;;;;;;;;;;;-1:-1:-1;;;;;11080:13474:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11080:13474:0;-1:-1:-1;;;;;11080:13474:0;;;;;;;;;;;-1:-1:-1;11080:13474:0;;;;;;;-1:-1:-1;11080:13474:0;;;-1:-1:-1;11080:13474:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11080:13474:0;;;-1:-1:-1;11080:13474:0;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;11080:13474:0;;;-1:-1:-1;11080:13474:0;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;11080:13474:0;;;-1:-1:-1;11080:13474:0;:::i;:::-;;;;;;;;;-1:-1:-1;11080:13474:0;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;;11080:13474:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;5:130:-1:-;72:20;;97:33;72:20;97:33;;160:707;;277:3;270:4;262:6;258:17;254:27;244:2;;295:1;292;285:12;244:2;332:6;319:20;354:80;369:64;426:6;369:64;;;354:80;;;345:89;;451:5;476:6;469:5;462:21;506:4;498:6;494:17;484:27;;528:4;523:3;519:14;512:21;;581:6;628:3;620:4;612:6;608:17;603:3;599:27;596:36;593:2;;;645:1;642;635:12;593:2;670:1;655:206;680:6;677:1;674:13;655:206;;;738:3;760:37;793:3;781:10;760:37;;;748:50;;-1:-1;821:4;812:14;;;;840;;;;;702:1;695:9;655:206;;;659:14;237:630;;;;;;;;891:693;;1013:3;1006:4;998:6;994:17;990:27;980:2;;1031:1;1028;1021:12;980:2;1068:6;1055:20;1090:85;1105:69;1167:6;1105:69;;1090:85;1203:21;;;1247:4;1235:17;;;;1081:94;;-1:-1;1260:14;;1235:17;1355:1;1340:238;1365:6;1362:1;1359:13;1340:238;;;1448:3;1435:17;1427:6;1423:30;1472:42;1510:3;1498:10;1472:42;;;1460:55;;-1:-1;1538:4;1529:14;;;;1557;;;;;1387:1;1380:9;1340:238;;1609:696;;1732:3;1725:4;1717:6;1713:17;1709:27;1699:2;;1750:1;1747;1740:12;1699:2;1787:6;1774:20;1809:86;1824:70;1887:6;1824:70;;1809:86;1923:21;;;1967:4;1955:17;;;;1800:95;;-1:-1;1980:14;;1955:17;2075:1;2060:239;2085:6;2082:1;2079:13;2060:239;;;2168:3;2155:17;2147:6;2143:30;2192:43;2231:3;2219:10;2192:43;;;2180:56;;-1:-1;2259:4;2250:14;;;;2278;;;;;2107:1;2100:9;2060:239;;2331:707;;2448:3;2441:4;2433:6;2429:17;2425:27;2415:2;;2466:1;2463;2456:12;2415:2;2503:6;2490:20;2525:80;2540:64;2597:6;2540:64;;2525:80;2516:89;;2622:5;2647:6;2640:5;2633:21;2677:4;2669:6;2665:17;2655:27;;2699:4;2694:3;2690:14;2683:21;;2752:6;2799:3;2791:4;2783:6;2779:17;2774:3;2770:27;2767:36;2764:2;;;2816:1;2813;2806:12;2764:2;2841:1;2826:206;2851:6;2848:1;2845:13;2826:206;;;2909:3;2931:37;2964:3;2952:10;2931:37;;;2919:50;;-1:-1;2992:4;2983:14;;;;3011;;;;;2873:1;2866:9;2826:206;;3046:124;3110:20;;3135:30;3110:20;3135:30;;3177:128;3252:13;;3270:30;3252:13;3270:30;;3312:130;3379:20;;3404:33;3379:20;3404:33;;3449:134;3527:13;;3545:33;3527:13;3545:33;;3591:432;;3688:3;3681:4;3673:6;3669:17;3665:27;3655:2;;3706:1;3703;3696:12;3655:2;3743:6;3730:20;3765:60;3780:44;3817:6;3780:44;;3765:60;3756:69;;3845:6;3838:5;3831:21;3881:4;3873:6;3869:17;3914:4;3907:5;3903:16;3949:3;3940:6;3935:3;3931:16;3928:25;3925:2;;;3966:1;3963;3956:12;3925:2;3976:41;4010:6;4005:3;4000;3976:41;;;3648:375;;;;;;;;4032:442;;4144:3;4137:4;4129:6;4125:17;4121:27;4111:2;;4162:1;4159;4152:12;4111:2;4192:6;4186:13;4214:64;4229:48;4270:6;4229:48;;4214:64;4205:73;;4298:6;4291:5;4284:21;4334:4;4326:6;4322:17;4367:4;4360:5;4356:16;4402:3;4393:6;4388:3;4384:16;4381:25;4378:2;;;4419:1;4416;4409:12;4378:2;4429:39;4461:6;4456:3;4451;4429:39;;5654:126;5719:20;;5744:31;5719:20;5744:31;;5787:132;5864:13;;5882:32;5864:13;5882:32;;5926:241;;6030:2;6018:9;6009:7;6005:23;6001:32;5998:2;;;6046:1;6043;6036:12;5998:2;6081:1;6098:53;6143:7;6123:9;6098:53;;;6088:63;5992:175;-1:-1;;;;5992:175;6174:366;;;6295:2;6283:9;6274:7;6270:23;6266:32;6263:2;;;6311:1;6308;6301:12;6263:2;6346:1;6363:53;6408:7;6388:9;6363:53;;;6353:63;;6325:97;6453:2;6471:53;6516:7;6507:6;6496:9;6492:22;6471:53;;;6461:63;;6432:98;6257:283;;;;;;6547:1415;;;;;;6840:3;6828:9;6819:7;6815:23;6811:33;6808:2;;;6857:1;6854;6847:12;6808:2;6892:31;;6943:18;6932:30;;6929:2;;;6975:1;6972;6965:12;6929:2;6995:78;7065:7;7056:6;7045:9;7041:22;6995:78;;;6985:88;;6871:208;7138:2;7127:9;7123:18;7110:32;7162:18;7154:6;7151:30;7148:2;;;7194:1;7191;7184:12;7148:2;7214:78;7284:7;7275:6;7264:9;7260:22;7214:78;;;7204:88;;7089:209;7357:2;7346:9;7342:18;7329:32;7381:18;7373:6;7370:30;7367:2;;;7413:1;7410;7403:12;7367:2;7433:84;7509:7;7500:6;7489:9;7485:22;7433:84;;;7423:94;;7308:215;7582:2;7571:9;7567:18;7554:32;7606:18;7598:6;7595:30;7592:2;;;7638:1;7635;7628:12;7592:2;7658:83;7733:7;7724:6;7713:9;7709:22;7658:83;;;7648:93;;7533:214;7806:3;7795:9;7791:19;7778:33;7831:18;7823:6;7820:30;7817:2;;;7863:1;7860;7853:12;7817:2;7883:63;7938:7;7929:6;7918:9;7914:22;7883:63;;;7873:73;;7757:195;6802:1160;;;;;;;;;7969:257;;8081:2;8069:9;8060:7;8056:23;8052:32;8049:2;;;8097:1;8094;8087:12;8049:2;8132:1;8149:61;8202:7;8182:9;8149:61;;8233:263;;8348:2;8336:9;8327:7;8323:23;8319:32;8316:2;;;8364:1;8361;8354:12;8316:2;8399:1;8416:64;8472:7;8452:9;8416:64;;8503:360;;8627:2;8615:9;8606:7;8602:23;8598:32;8595:2;;;8643:1;8640;8633:12;8595:2;8678:24;;8722:18;8711:30;;8708:2;;;8754:1;8751;8744:12;8708:2;8774:73;8839:7;8830:6;8819:9;8815:22;8774:73;;8870:241;;8974:2;8962:9;8953:7;8949:23;8945:32;8942:2;;;8990:1;8987;8980:12;8942:2;9025:1;9042:53;9087:7;9067:9;9042:53;;9388:366;;;9509:2;9497:9;9488:7;9484:23;9480:32;9477:2;;;9525:1;9522;9515:12;9477:2;9560:1;9577:53;9622:7;9602:9;9577:53;;;9567:63;;9539:97;9667:2;9685:53;9730:7;9721:6;9710:9;9706:22;9685:53;;9761:360;;;9879:2;9867:9;9858:7;9854:23;9850:32;9847:2;;;9895:1;9892;9885:12;9847:2;9930:1;9947:53;9992:7;9972:9;9947:53;;;9937:63;;9909:97;10037:2;10055:50;10097:7;10088:6;10077:9;10073:22;10055:50;;10128:733;;;;;;10295:3;10283:9;10274:7;10270:23;10266:33;10263:2;;;10312:1;10309;10302:12;10263:2;10347:1;10364:53;10409:7;10389:9;10364:53;;;10354:63;;10326:97;10454:2;10472:50;10514:7;10505:6;10494:9;10490:22;10472:50;;;10462:60;;10433:95;10559:2;10577:51;10620:7;10611:6;10600:9;10596:22;10577:51;;;10567:61;;10538:96;10665:2;10683:53;10728:7;10719:6;10708:9;10704:22;10683:53;;;10673:63;;10644:98;10773:3;10792:53;10837:7;10828:6;10817:9;10813:22;10792:53;;10868:261;;10982:2;10970:9;10961:7;10957:23;10953:32;10950:2;;;10998:1;10995;10988:12;10950:2;11033:1;11050:63;11105:7;11085:9;11050:63;;11137:173;;11224:46;11266:3;11258:6;11224:46;;;-1:-1;;11299:4;11290:14;;11217:93;11319:177;;11430:60;11486:3;11478:6;11430:60;;11695:173;;11782:46;11824:3;11816:6;11782:46;;11876:142;11967:45;12006:5;11967:45;;;11962:3;11955:58;11949:69;;;12025:103;12098:24;12116:5;12098:24;;12286:690;;12431:54;12479:5;12431:54;;;12498:86;12577:6;12572:3;12498:86;;;12491:93;;12605:56;12655:5;12605:56;;;12681:7;12709:1;12694:260;12719:6;12716:1;12713:13;12694:260;;;12786:6;12780:13;12807:63;12866:3;12851:13;12807:63;;;12800:70;;12887:60;12940:6;12887:60;;;12877:70;-1:-1;;12741:1;12734:9;12694:260;;;-1:-1;12967:3;;12410:566;-1:-1;;;;;12410:566;13011:888;;13166:59;13219:5;13166:59;;;13238:91;13322:6;13317:3;13238:91;;;13231:98;;13352:3;13394:4;13386:6;13382:17;13377:3;13373:27;13421:61;13476:5;13421:61;;;13502:7;13530:1;13515:345;13540:6;13537:1;13534:13;13515:345;;;13602:9;13596:4;13592:20;13587:3;13580:33;13647:6;13641:13;13669:74;13738:4;13723:13;13669:74;;;13661:82;;13760:65;13818:6;13760:65;;;13848:4;13839:14;;;;;13750:75;-1:-1;;13562:1;13555:9;13515:345;;;-1:-1;13873:4;;13145:754;-1:-1;;;;;;;13145:754;13936:896;;14093:60;14147:5;14093:60;;;14166:92;14251:6;14246:3;14166:92;;;14159:99;;14281:3;14323:4;14315:6;14311:17;14306:3;14302:27;14350:62;14406:5;14350:62;;;14432:7;14460:1;14445:348;14470:6;14467:1;14464:13;14445:348;;;14532:9;14526:4;14522:20;14517:3;14510:33;14577:6;14571:13;14599:76;14670:4;14655:13;14599:76;;;14591:84;;14692:66;14751:6;14692:66;;;14781:4;14772:14;;;;;14682:76;-1:-1;;14492:1;14485:9;14445:348;;14871:690;;15016:54;15064:5;15016:54;;;15083:86;15162:6;15157:3;15083:86;;;15076:93;;15190:56;15240:5;15190:56;;;15266:7;15294:1;15279:260;15304:6;15301:1;15298:13;15279:260;;;15371:6;15365:13;15392:63;15451:3;15436:13;15392:63;;;15385:70;;15472:60;15525:6;15472:60;;;15462:70;-1:-1;;15326:1;15319:9;15279:260;;15569:94;15636:21;15651:5;15636:21;;15781:113;15864:24;15882:5;15864:24;;15901:152;16002:45;16022:24;16040:5;16022:24;;;16002:45;;16060:343;;16170:38;16202:5;16170:38;;;16220:70;16283:6;16278:3;16220:70;;;16213:77;;16295:52;16340:6;16335:3;16328:4;16321:5;16317:16;16295:52;;;16368:29;16390:6;16368:29;;;16359:39;;;;16150:253;-1:-1;;;16150:253;16755:818;;16872:5;16866:12;16906:1;16895:9;16891:17;16919:1;16914:247;;;;17172:1;17167:400;;;;16884:683;;16914:247;16992:4;16988:1;16977:9;16973:17;16969:28;17011:70;17074:6;17069:3;17011:70;;;-1:-1;;17100:25;;17088:38;;17004:77;-1:-1;;17149:4;17140:14;;;-1:-1;16914:247;;17167:400;17236:1;17225:9;17221:17;17252:70;17315:6;17310:3;17252:70;;;17245:77;;17344:37;17375:5;17344:37;;;17397:1;17405:130;17419:6;17416:1;17413:13;17405:130;;;17478:14;;17465:11;;;17458:35;17525:1;17512:15;;;;17441:4;17434:12;17405:130;;;17549:11;;;-1:-1;;;16884:683;;16842:731;;;;;;17581:176;17689:62;17745:5;17689:62;;17764:156;17862:52;17908:5;17862:52;;17927:142;18018:45;18057:5;18018:45;;19959:394;;20119:67;20183:2;20178:3;20119:67;;;20219:34;20199:55;;20288:27;20283:2;20274:12;;20267:49;20344:2;20335:12;;20105:248;-1:-1;;20105:248;20362:442;;20522:67;20586:2;20581:3;20522:67;;;20622:34;20602:55;;20691:34;20686:2;20677:12;;20670:56;-1:-1;;;20755:2;20746:12;;20739:28;20795:2;20786:12;;20508:296;-1:-1;;20508:296;20813:443;;20973:67;21037:2;21032:3;20973:67;;;21073:34;21053:55;;21142:34;21137:2;21128:12;;21121:56;-1:-1;;;21206:2;21197:12;;21190:29;21247:2;21238:12;;20959:297;-1:-1;;20959:297;21265:398;;21443:84;21525:1;21520:3;21443:84;;;-1:-1;;;21540:87;;21655:1;21646:11;;21429:234;-1:-1;;21429:234;21672:450;;21832:67;21896:2;21891:3;21832:67;;;21932:34;21912:55;;22001:34;21996:2;21987:12;;21980:56;-1:-1;;;22065:2;22056:12;;22049:36;22113:2;22104:12;;21818:304;-1:-1;;21818:304;22131:324;;22291:67;22355:2;22350:3;22291:67;;;22391:26;22371:47;;22446:2;22437:12;;22277:178;-1:-1;;22277:178;22464:378;;22624:67;22688:2;22683:3;22624:67;;;22724:34;22704:55;;-1:-1;;;22788:2;22779:12;;22772:33;22833:2;22824:12;;22610:232;-1:-1;;22610:232;22851:382;;23011:67;23075:2;23070:3;23011:67;;;23111:34;23091:55;;-1:-1;;;23175:2;23166:12;;23159:37;23224:2;23215:12;;22997:236;-1:-1;;22997:236;23242:463;;23402:67;23466:2;23461:3;23402:67;;;23502:34;23482:55;;23571:34;23566:2;23557:12;;23550:56;23640:27;23635:2;23626:12;;23619:49;23696:2;23687:12;;23388:317;-1:-1;;23388:317;23714:448;;23874:67;23938:2;23933:3;23874:67;;;23974:34;23954:55;;24043:34;24038:2;24029:12;;24022:56;-1:-1;;;24107:2;24098:12;;24091:34;24153:2;24144:12;;23860:302;-1:-1;;23860:302;24171:377;;24331:67;24395:2;24390:3;24331:67;;;24431:34;24411:55;;-1:-1;;;24495:2;24486:12;;24479:32;24539:2;24530:12;;24317:231;-1:-1;;24317:231;24557:317;;24717:67;24781:2;24776:3;24717:67;;;-1:-1;;;24797:40;;24865:2;24856:12;;24703:171;-1:-1;;24703:171;24883:477;;25061:85;25143:2;25138:3;25061:85;;;25179:34;25159:55;;25248:34;25243:2;25234:12;;25227:56;-1:-1;;;25312:2;25303:12;;25296:27;25351:2;25342:12;;25047:313;-1:-1;;25047:313;25369:412;;25547:85;25629:2;25624:3;25547:85;;;25665:34;25645:55;;-1:-1;;;25729:2;25720:12;;25713:31;25772:2;25763:12;;25533:248;-1:-1;;25533:248;25790:442;;25950:67;26014:2;26009:3;25950:67;;;26050:34;26030:55;;26119:34;26114:2;26105:12;;26098:56;-1:-1;;;26183:2;26174:12;;26167:28;26223:2;26214:12;;25936:296;-1:-1;;25936:296;26241:384;;26401:67;26465:2;26460:3;26401:67;;;26501:34;26481:55;;-1:-1;;;26565:2;26556:12;;26549:39;26616:2;26607:12;;26387:238;-1:-1;;26387:238;26634:442;;26794:67;26858:2;26853:3;26794:67;;;26894:34;26874:55;;26963:34;26958:2;26949:12;;26942:56;-1:-1;;;27027:2;27018:12;;27011:28;27067:2;27058:12;;26780:296;-1:-1;;26780:296;27085:381;;27245:67;27309:2;27304:3;27245:67;;;27345:34;27325:55;;-1:-1;;;27409:2;27400:12;;27393:36;27457:2;27448:12;;27231:235;-1:-1;;27231:235;27475:400;;27635:67;27699:2;27694:3;27635:67;;;27735:34;27715:55;;27804:33;27799:2;27790:12;;27783:55;27866:2;27857:12;;27621:254;-1:-1;;27621:254;27884:384;;28044:67;28108:2;28103:3;28044:67;;;28144:34;28124:55;;-1:-1;;;28208:2;28199:12;;28192:39;28259:2;28250:12;;28030:238;-1:-1;;28030:238;28277:462;;28437:67;28501:2;28496:3;28437:67;;;28537:34;28517:55;;28606:34;28601:2;28592:12;;28585:56;28675:26;28670:2;28661:12;;28654:48;28730:2;28721:12;;28423:316;-1:-1;;28423:316;28748:391;;28908:67;28972:2;28967:3;28908:67;;;29008:34;28988:55;;-1:-1;;;29072:2;29063:12;;29056:46;29130:2;29121:12;;28894:245;-1:-1;;28894:245;29148:379;;29308:67;29372:2;29367:3;29308:67;;;29408:34;29388:55;;-1:-1;;;29472:2;29463:12;;29456:34;29518:2;29509:12;;29294:233;-1:-1;;29294:233;29536:321;;29696:67;29760:2;29755:3;29696:67;;;-1:-1;;;29776:44;;29848:2;29839:12;;29682:175;-1:-1;;29682:175;29866:391;;30026:67;30090:2;30085:3;30026:67;;;30126:34;30106:55;;-1:-1;;;30190:2;30181:12;;30174:46;30248:2;30239:12;;30012:245;-1:-1;;30012:245;30350:624;30561:23;;30491:4;30482:14;;;30590:57;30486:3;30561:23;30590:57;;;30511:142;30729:4;30722:5;30718:16;30712:23;30741:57;30792:4;30787:3;30783:14;30769:12;30741:57;;;30663:141;30878:4;30871:5;30867:16;30861:23;30890:63;30947:4;30942:3;30938:14;30924:12;30890:63;;31211:107;31290:22;31306:5;31290:22;;31325:650;;31580:148;31724:3;31580:148;;;31573:155;;31739:75;31810:3;31801:6;31739:75;;;31836:2;31831:3;31827:12;31820:19;;31850:75;31921:3;31912:6;31850:75;;;-1:-1;31947:2;31938:12;;31561:414;-1:-1;;31561:414;31982:372;;32181:148;32325:3;32181:148;;32361:372;;32560:148;32704:3;32560:148;;32740:213;32858:2;32843:18;;32872:71;32847:9;32916:6;32872:71;;32960:953;33289:3;33274:19;;33304:71;33278:9;33348:6;33304:71;;;33386:80;33462:2;33451:9;33447:18;33438:6;33386:80;;;33514:9;33508:4;33504:20;33499:2;33488:9;33484:18;33477:48;33539:131;33665:4;33539:131;;;33531:139;;33718:9;33712:4;33708:20;33703:2;33692:9;33688:18;33681:48;33743:76;33814:4;33805:6;33743:76;;;33735:84;;33830:73;33898:3;33887:9;33883:19;33874:6;33830:73;;33920:324;34066:2;34051:18;;34080:71;34055:9;34124:6;34080:71;;;34162:72;34230:2;34219:9;34215:18;34206:6;34162:72;;34251:535;34447:3;34432:19;;34462:71;34436:9;34506:6;34462:71;;;34544:72;34612:2;34601:9;34597:18;34588:6;34544:72;;;34627:66;34689:2;34678:9;34674:18;34665:6;34627:66;;;34704:72;34772:2;34761:9;34757:18;34748:6;34704:72;;34793:831;35061:3;35046:19;;35076:71;35050:9;35120:6;35076:71;;;35158:72;35226:2;35215:9;35211:18;35202:6;35158:72;;;35278:9;35272:4;35268:20;35263:2;35252:9;35248:18;35241:48;35303:78;35376:4;35367:6;35303:78;;;35295:86;;35429:9;35423:4;35419:20;35414:2;35403:9;35399:18;35392:48;35454:76;35525:4;35516:6;35454:76;;;35446:84;;35541:73;35609:3;35598:9;35594:19;35585:6;35541:73;;;35032:592;;;;;;;;;35631:819;35893:3;35878:19;;35908:71;35882:9;35952:6;35908:71;;;35990:72;36058:2;36047:9;36043:18;36034:6;35990:72;;;36110:9;36104:4;36100:20;36095:2;36084:9;36080:18;36073:48;36135:75;36205:4;36196:6;36135:75;;;36127:83;;36258:9;36252:4;36248:20;36243:2;36232:9;36228:18;36221:48;36283:73;36351:4;36342:6;36283:73;;36457:361;36625:2;36639:47;;;36610:18;;36700:108;36610:18;36794:6;36700:108;;36825:1183;37249:3;37264:47;;;37234:19;;37325:108;37234:19;37419:6;37325:108;;;37317:116;;37481:9;37475:4;37471:20;37466:2;37455:9;37451:18;37444:48;37506:108;37609:4;37600:6;37506:108;;;37498:116;;37662:9;37656:4;37652:20;37647:2;37636:9;37632:18;37625:48;37687:120;37802:4;37793:6;37687:120;;;37679:128;;37855:9;37849:4;37845:20;37840:2;37829:9;37825:18;37818:48;37880:118;37993:4;37984:6;37880:118;;38015:213;38133:2;38118:18;;38147:71;38122:9;38191:6;38147:71;;38235:547;38437:3;38422:19;;38452:71;38426:9;38496:6;38452:71;;;38534:72;38602:2;38591:9;38587:18;38578:6;38534:72;;;38617;38685:2;38674:9;38670:18;38661:6;38617:72;;;38700;38768:2;38757:9;38753:18;38744:6;38700:72;;38789:423;38957:2;38942:18;;38971:71;38946:9;39015:6;38971:71;;;39053:72;39121:2;39110:9;39106:18;39097:6;39053:72;;;39136:66;39198:2;39187:9;39183:18;39174:6;39136:66;;39219:539;39417:3;39402:19;;39432:71;39406:9;39476:6;39432:71;;;39514:68;39578:2;39567:9;39563:18;39554:6;39514:68;;;39593:72;39661:2;39650:9;39646:18;39637:6;39593:72;;39765:263;39908:2;39893:18;;39922:96;39897:9;39991:6;39922:96;;40035:243;40168:2;40153:18;;40182:86;40157:9;40241:6;40182:86;;40285:293;40419:2;40433:47;;;40404:18;;40494:74;40404:18;40554:6;40494:74;;40585:407;40776:2;40790:47;;;40761:18;;40851:131;40761:18;40851:131;;40999:407;41190:2;41204:47;;;41175:18;;41265:131;41175:18;41265:131;;41413:407;41604:2;41618:47;;;41589:18;;41679:131;41589:18;41679:131;;41827:407;42018:2;42032:47;;;42003:18;;42093:131;42003:18;42093:131;;42241:407;42432:2;42446:47;;;42417:18;;42507:131;42417:18;42507:131;;42655:407;42846:2;42860:47;;;42831:18;;42921:131;42831:18;42921:131;;43069:407;43260:2;43274:47;;;43245:18;;43335:131;43245:18;43335:131;;43483:407;43674:2;43688:47;;;43659:18;;43749:131;43659:18;43749:131;;43897:407;44088:2;44102:47;;;44073:18;;44163:131;44073:18;44163:131;;44311:407;44502:2;44516:47;;;44487:18;;44577:131;44487:18;44577:131;;44725:407;44916:2;44930:47;;;44901:18;;44991:131;44901:18;44991:131;;45139:407;45330:2;45344:47;;;45315:18;;45405:131;45315:18;45405:131;;45553:407;45744:2;45758:47;;;45729:18;;45819:131;45729:18;45819:131;;45967:407;46158:2;46172:47;;;46143:18;;46233:131;46143:18;46233:131;;46381:407;46572:2;46586:47;;;46557:18;;46647:131;46557:18;46647:131;;46795:407;46986:2;47000:47;;;46971:18;;47061:131;46971:18;47061:131;;47209:407;47400:2;47414:47;;;47385:18;;47475:131;47385:18;47475:131;;47623:407;47814:2;47828:47;;;47799:18;;47889:131;47799:18;47889:131;;48037:407;48228:2;48242:47;;;48213:18;;48303:131;48213:18;48303:131;;48451:407;48642:2;48656:47;;;48627:18;;48717:131;48627:18;48717:131;;48865:407;49056:2;49070:47;;;49041:18;;49131:131;49041:18;49131:131;;49279:309;49445:2;49430:18;;49459:119;49434:9;49551:6;49459:119;;49815:1847;50407:3;50392:19;;50422:71;50396:9;50466:6;50422:71;;;50504:80;50580:2;50569:9;50565:18;50556:6;50504:80;;;50632:9;50626:4;50622:20;50617:2;50606:9;50602:18;50595:48;50657:108;50760:4;50751:6;50657:108;;;50649:116;;50813:9;50807:4;50803:20;50798:2;50787:9;50783:18;50776:48;50838:108;50941:4;50932:6;50838:108;;;50830:116;;50995:9;50989:4;50985:20;50979:3;50968:9;50964:19;50957:49;51020:120;51135:4;51126:6;51020:120;;;51012:128;;51189:9;51183:4;51179:20;51173:3;51162:9;51158:19;51151:49;51214:118;51327:4;51318:6;51214:118;;;51206:126;;51343:73;51411:3;51400:9;51396:19;51387:6;51343:73;;;51427;51495:3;51484:9;51480:19;51471:6;51427:73;;;51549:9;51543:4;51539:20;51533:3;51522:9;51518:19;51511:49;51574:78;51647:4;51638:6;51574:78;;;51566:86;50378:1284;-1:-1;;;;;;;;;;;50378:1284;51669:1083;51999:3;51984:19;;52014:71;51988:9;52058:6;52014:71;;;52096:72;52164:2;52153:9;52149:18;52140:6;52096:72;;;52179;52247:2;52236:9;52232:18;52223:6;52179:72;;;52262;52330:2;52319:9;52315:18;52306:6;52262:72;;;52345:73;52413:3;52402:9;52398:19;52389:6;52345:73;;;52429;52497:3;52486:9;52482:19;52473:6;52429:73;;;52513;52581:3;52570:9;52566:19;52557:6;52513:73;;;52597:67;52659:3;52648:9;52644:19;52635:6;52597:67;;;52675;52737:3;52726:9;52722:19;52713:6;52675:67;;;51970:782;;;;;;;;;;;;;52759:324;52905:2;52890:18;;52919:71;52894:9;52963:6;52919:71;;53090:256;53152:2;53146:9;53178:17;;;53253:18;53238:34;;53274:22;;;53235:62;53232:2;;;53310:1;53307;53300:12;53232:2;53326;53319:22;53130:216;;-1:-1;53130:216;53353:304;;53512:18;53504:6;53501:30;53498:2;;;53544:1;53541;53534:12;53498:2;-1:-1;53579:4;53567:17;;;53632:15;;53435:222;54608:317;;54747:18;54739:6;54736:30;54733:2;;;54779:1;54776;54769:12;54733:2;-1:-1;54910:4;54846;54823:17;;;;-1:-1;;54819:33;54900:15;;54670:255;55914:151;56038:4;56029:14;;55986:79;56557:157;;56651:14;;;56693:4;56680:18;;;56610:104;56886:137;56989:12;;56960:63;58451:178;58569:19;;;58618:4;58609:14;;58562:67;60029:91;;60091:24;60109:5;60091:24;;60127:85;60193:13;60186:21;;60169:43;60298:140;60377:5;60383:50;60377:5;60383:50;;60445:121;-1:-1;;;;;60507:54;;60490:76;60652:81;60723:4;60712:16;;60695:38;60740:104;60812:26;60801:38;;60784:60;60851:129;;60938:37;60969:5;60987:171;;61091:62;61147:5;61091:62;;61305:140;;61399:41;61434:5;61399:41;;61452:116;;61539:24;61557:5;61539:24;;61819:145;61900:6;61895:3;61890;61877:30;-1:-1;61956:1;61938:16;;61931:27;61870:94;61973:268;62038:1;62045:101;62059:6;62056:1;62053:13;62045:101;;;62126:11;;;62120:18;62107:11;;;62100:39;62081:2;62074:10;62045:101;;;62161:6;62158:1;62155:13;62152:2;;;-1:-1;;62226:1;62208:16;;62201:27;62022:219;62330:97;62418:2;62398:14;-1:-1;;62394:28;;62378:49;62435:108;62521:1;62514:5;62511:12;62501:2;;62527:9;62550:117;62619:24;62637:5;62619:24;;;62612:5;62609:35;62599:2;;62658:1;62655;62648:12;62674:111;62740:21;62755:5;62740:21;;62792:117;62861:24;62879:5;62861:24;;63040:113;63107:22;63123:5;63107:22;;63160:115;63228:23;63245:5;63228:23;

Swarm Source

bzzr://5aebc4f3ff8c336334b3a72d8b37d9209db39c4e2da2f343e0f9758bc77911c5

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.