Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- GDT
- Optimization enabled
- true
- Compiler version
- v0.5.16+commit.9c3226ce
- Optimization runs
- 1000000
- EVM Version
- default
- Verified at
- 2025-01-05T09:11:19.164784Z
Constructor Arguments
0x000000000000000000000000efd3183eb81f52bbd5c41dfb60c09028bc999ce8000000000000000000000000efd3183eb81f52bbd5c41dfb60c09028bc999ce800000000000000000000000000000000000000000000000000000000677140fb
Arg [0] (address) : 0xefd3183eb81f52bbd5c41dfb60c09028bc999ce8
Arg [1] (address) : 0xefd3183eb81f52bbd5c41dfb60c09028bc999ce8
Arg [2] (uint256) : 1735475451
contracts/factory/GDT.sol
/**
*Submitted for verification at Etherscan.io on 2020-09-16
*/
/**
*Submitted for verification at Etherscan.io on 2020-09-15
*/
pragma solidity ^0.5.16;
pragma experimental ABIEncoderV2;
// From https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/Math.sol
// Subject to the MIT license.
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the addition of two unsigned integers, reverting with custom message on overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, errorMessage);
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on underflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot underflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction underflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on underflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot underflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, errorMessage);
return c;
}
/**
* @dev Returns the integer division of two unsigned integers.
* Reverts on division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers.
* Reverts with custom message on division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
contract GDT {
/// @notice EIP-20 token name for this token
string public constant name = "GooDog";
/// @notice EIP-20 token symbol for this token
string public constant symbol = "GDT";
/// @notice EIP-20 token decimals for this token
uint8 public constant decimals = 18;
/// @notice Total number of tokens in circulation
uint public totalSupply = 100_000_000_000e18; // 100 billion GD
/// @notice Address which may mint new tokens
address public minter;
/// @notice The timestamp after which minting may occur
uint public mintingAllowedAfter;
/// @notice Minimum time between mints
uint32 public constant minimumTimeBetweenMints = 1 minutes; // mint for testing
/// @notice Cap on the percentage of totalSupply that can be minted at each mint
uint8 public constant mintCap = 1;
/// @notice Allowance amounts on behalf of others
mapping (address => mapping (address => uint256)) internal allowances;
/// @notice Official record of token balances for each account
mapping (address => uint256) internal balances;
/// @notice A record of each accounts delegate
mapping (address => address) public delegates;
/// @notice A checkpoint for marking number of votes from a given block
struct Checkpoint {
uint64 fromBlock;
uint256 votes;
}
/// @notice A record of votes checkpoints for each account, by index
mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;
/// @notice The number of checkpoints for each account
mapping (address => uint32) public numCheckpoints;
/// @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 delegation struct used by the contract
bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");
/// @notice The EIP-712 typehash for the permit struct used by the contract
bytes32 public constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
/// @notice A record of states for signing / validating signatures
mapping (address => uint) public nonces;
/// @notice An event thats emitted when the minter address is changed
event MinterChanged(address minter, address newMinter);
/// @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, uint256 previousBalance, uint256 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 Construct a new GD token
* @param account The initial account to grant all the tokens
* @param minter_ The account with minting ability
* @param mintingAllowedAfter_ The timestamp after which minting may occur
*/
constructor(address account, address minter_, uint mintingAllowedAfter_) public {
require(mintingAllowedAfter_ >= block.timestamp, "GD::constructor: minting can only begin after deployment");
balances[account] = totalSupply;
emit Transfer(address(0), account, totalSupply);
minter = minter_;
emit MinterChanged(address(0), minter);
mintingAllowedAfter = mintingAllowedAfter_;
}
/**
* @notice Change the minter address
* @param minter_ The address of the new minter
*/
function setMinter(address minter_) external {
require(msg.sender == minter, "GD::setMinter: only the minter can change the minter address");
emit MinterChanged(minter, minter_);
minter = minter_;
}
/**
* @notice Mint new tokens
* @param dst The address of the destination account
* @param rawAmount The number of tokens to be minted
*/
function mint(address dst, uint256 rawAmount) external {
require(msg.sender == minter, "GD::mint: only the minter can mint");
require(block.timestamp >= mintingAllowedAfter, "GD::mint: minting not allowed yet");
require(dst != address(0), "GD::mint: cannot transfer to the zero address");
mintingAllowedAfter = SafeMath.add(block.timestamp, minimumTimeBetweenMints);
require(rawAmount <= SafeMath.div(SafeMath.mul(totalSupply, mintCap), 100), "GD::mint: exceeded mint cap");
totalSupply = SafeMath.add(totalSupply, rawAmount);
balances[dst] = SafeMath.add(balances[dst], rawAmount, "GD::mint: balance overflow");
emit Transfer(address(0), dst, rawAmount);
_moveDelegates(address(0), delegates[dst], rawAmount);
}
/**
* @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 (uint256) {
return allowances[account][spender];
}
/**
* @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, uint256 rawAmount) external returns (bool) {
allowances[msg.sender][spender] = rawAmount;
emit Approval(msg.sender, spender, rawAmount);
return true;
}
/**
* @notice Triggers an approval from owner to spends
* @param owner The address to approve from
* @param spender The address to be approved
* @param rawAmount The number of tokens that are approved (2^256-1 means infinite)
* @param deadline 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 permit(address owner, address spender, uint rawAmount, uint deadline, uint8 v, bytes32 r, bytes32 s) external {
bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, rawAmount, nonces[owner]++, deadline));
bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
address signatory = ecrecover(digest, v, r, s);
require(signatory != address(0), "GD::permit: invalid signature");
require(signatory == owner, "GD::permit: unauthorized");
require(now <= deadline, "GD::permit: signature expired");
allowances[owner][spender] = rawAmount;
emit Approval(owner, spender, rawAmount);
}
/**
* @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 (uint256) {
return balances[account];
}
/**
* @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, uint256 rawAmount) external returns (bool) {
_transferTokens(msg.sender, dst, rawAmount);
return true;
}
/**
* @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, uint256 rawAmount) external returns (bool) {
address spender = msg.sender;
uint256 spenderAllowance = allowances[src][spender];
if (spender != src && spenderAllowance != uint256(-1)) {
uint256 newAllowance = spenderAllowance - rawAmount;
require(newAllowance <= spenderAllowance, "GD::transferFrom: transfer amount exceeds spender allowance");
allowances[src][spender] = newAllowance;
emit Approval(src, spender, newAllowance);
}
_transferTokens(src, dst, rawAmount);
return true;
}
/**
* @notice Delegate votes from `msg.sender` to `delegatee`
* @param delegatee The address to delegate votes to
*/
function delegate(address delegatee) public {
return _delegate(msg.sender, delegatee);
}
/**
* @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) public {
bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry));
bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
address signatory = ecrecover(digest, v, r, s);
require(signatory != address(0), "GD::delegateBySig: invalid signature");
require(nonce == nonces[signatory]++, "GD::delegateBySig: invalid nonce");
require(now <= expiry, "GD::delegateBySig: signature expired");
return _delegate(signatory, delegatee);
}
/**
* @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 (uint256) {
uint32 nCheckpoints = numCheckpoints[account];
return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
}
/**
* @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) public view returns (uint256) {
require(blockNumber < block.number, "GD::getPriorVotes: not yet determined");
uint32 nCheckpoints = numCheckpoints[account];
if (nCheckpoints == 0) {
return 0;
}
// First check most recent balance
if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
return checkpoints[account][nCheckpoints - 1].votes;
}
// Next check implicit zero balance
if (checkpoints[account][0].fromBlock > blockNumber) {
return 0;
}
uint32 lower = 0;
uint32 upper = nCheckpoints - 1;
while (upper > lower) {
uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
Checkpoint memory cp = checkpoints[account][center];
if (cp.fromBlock == blockNumber) {
return cp.votes;
} else if (cp.fromBlock < blockNumber) {
lower = center;
} else {
upper = center - 1;
}
}
return checkpoints[account][lower].votes;
}
function _delegate(address delegator, address delegatee) internal {
address currentDelegate = delegates[delegator];
uint256 delegatorBalance = balances[delegator];
delegates[delegator] = delegatee;
emit DelegateChanged(delegator, currentDelegate, delegatee);
_moveDelegates(currentDelegate, delegatee, delegatorBalance);
}
function _transferTokens(address src, address dst, uint256 amount) internal {
require(src != address(0), "GD::_transferTokens: cannot transfer from the zero address");
require(dst != address(0), "GD::_transferTokens: cannot transfer to the zero address");
balances[src] = SafeMath.sub(balances[src], amount, "GD::_transferTokens: transfer amount exceeds balance");
balances[dst] = SafeMath.add(balances[dst], amount, "GD::_transferTokens: transfer amount overflows");
emit Transfer(src, dst, amount);
_moveDelegates(delegates[src], delegates[dst], amount);
}
function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
if (srcRep != dstRep && amount > 0) {
if (srcRep != address(0)) {
uint32 srcRepNum = numCheckpoints[srcRep];
uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
uint256 srcRepNew = SafeMath.sub(srcRepOld, amount, "GD::_moveVotes: vote amount underflows");
_writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
}
if (dstRep != address(0)) {
uint32 dstRepNum = numCheckpoints[dstRep];
uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
uint256 dstRepNew = SafeMath.add(dstRepOld, amount, "GD::_moveVotes: vote amount overflows");
_writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
}
}
}
function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes) internal {
uint64 blockNumber = safe64(block.number, "GD::_writeCheckpoint: block number exceeds 64 bits");
if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
} else {
checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
numCheckpoints[delegatee] = nCheckpoints + 1;
}
emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
}
function safe64(uint n, string memory errorMessage) internal pure returns (uint64) {
require(n < 2**64, errorMessage);
return uint64(n);
}
function getChainId() internal pure returns (uint) {
uint256 chainId;
assembly { chainId := chainid() }
return chainId;
}
}
Compiler Settings
{"outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata"],"":["ast"]}},"optimizer":{"runs":1000000,"enabled":true},"libraries":{}}
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","payable":false,"inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"address","name":"minter_","internalType":"address"},{"type":"uint256","name":"mintingAllowedAfter_","internalType":"uint256"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"DelegateChanged","inputs":[{"type":"address","name":"delegator","internalType":"address","indexed":true},{"type":"address","name":"fromDelegate","internalType":"address","indexed":true},{"type":"address","name":"toDelegate","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"DelegateVotesChanged","inputs":[{"type":"address","name":"delegate","internalType":"address","indexed":true},{"type":"uint256","name":"previousBalance","internalType":"uint256","indexed":false},{"type":"uint256","name":"newBalance","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"MinterChanged","inputs":[{"type":"address","name":"minter","internalType":"address","indexed":false},{"type":"address","name":"newMinter","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"DELEGATION_TYPEHASH","inputs":[],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"DOMAIN_TYPEHASH","inputs":[],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"PERMIT_TYPEHASH","inputs":[],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}],"constant":true},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"rawAmount","internalType":"uint256"}],"constant":false},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint64","name":"fromBlock","internalType":"uint64"},{"type":"uint256","name":"votes","internalType":"uint256"}],"name":"checkpoints","inputs":[{"type":"address","name":"","internalType":"address"},{"type":"uint32","name":"","internalType":"uint32"}],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[],"constant":true},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[],"name":"delegate","inputs":[{"type":"address","name":"delegatee","internalType":"address"}],"constant":false},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[],"name":"delegateBySig","inputs":[{"type":"address","name":"delegatee","internalType":"address"},{"type":"uint256","name":"nonce","internalType":"uint256"},{"type":"uint256","name":"expiry","internalType":"uint256"},{"type":"uint8","name":"v","internalType":"uint8"},{"type":"bytes32","name":"r","internalType":"bytes32"},{"type":"bytes32","name":"s","internalType":"bytes32"}],"constant":false},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"address","name":"","internalType":"address"}],"name":"delegates","inputs":[{"type":"address","name":"","internalType":"address"}],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getCurrentVotes","inputs":[{"type":"address","name":"account","internalType":"address"}],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getPriorVotes","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"blockNumber","internalType":"uint256"}],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint32","name":"","internalType":"uint32"}],"name":"minimumTimeBetweenMints","inputs":[],"constant":true},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[],"name":"mint","inputs":[{"type":"address","name":"dst","internalType":"address"},{"type":"uint256","name":"rawAmount","internalType":"uint256"}],"constant":false},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"mintCap","inputs":[],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"address","name":"","internalType":"address"}],"name":"minter","inputs":[],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"mintingAllowedAfter","inputs":[],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"nonces","inputs":[{"type":"address","name":"","internalType":"address"}],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint32","name":"","internalType":"uint32"}],"name":"numCheckpoints","inputs":[{"type":"address","name":"","internalType":"address"}],"constant":true},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[],"name":"permit","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"rawAmount","internalType":"uint256"},{"type":"uint256","name":"deadline","internalType":"uint256"},{"type":"uint8","name":"v","internalType":"uint8"},{"type":"bytes32","name":"r","internalType":"bytes32"},{"type":"bytes32","name":"s","internalType":"bytes32"}],"constant":false},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[],"name":"setMinter","inputs":[{"type":"address","name":"minter_","internalType":"address"}],"constant":false},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[],"constant":true},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"dst","internalType":"address"},{"type":"uint256","name":"rawAmount","internalType":"uint256"}],"constant":false},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"src","internalType":"address"},{"type":"address","name":"dst","internalType":"address"},{"type":"uint256","name":"rawAmount","internalType":"uint256"}],"constant":false}]
Contract Creation Code
0x60806040526c01431e0fae6d7217caa00000006000553480156200002257600080fd5b5060405162002e3538038062002e35833981016040819052620000459162000154565b42811015620000715760405162461bcd60e51b8152600401620000689062000256565b60405180910390fd5b600080546001600160a01b03851680835260046020526040808420839055519092917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620000c1919062000268565b60405180910390a3600180546001600160a01b0319166001600160a01b0384811691909117918290556040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f692620001209260009291169062000230565b60405180910390a160025550620002cf9050565b80516200014181620002aa565b92915050565b80516200014181620002c4565b6000806000606084860312156200016a57600080fd5b600062000178868662000134565b93505060206200018b8682870162000134565b92505060406200019e8682870162000147565b9150509250925092565b620001b38162000296565b82525050565b620001b38162000281565b6000620001d360388362000278565b7f47443a3a636f6e7374727563746f723a206d696e74696e672063616e206f6e6c81527f7920626567696e206166746572206465706c6f796d656e740000000000000000602082015260400192915050565b620001b38162000293565b60408101620002408285620001a8565b6200024f6020830184620001b9565b9392505050565b602080825281016200014181620001c4565b6020810162000141828462000225565b90815260200190565b60006001600160a01b03821662000141565b90565b600062000141826000620001418262000281565b620002b58162000281565b8114620002c157600080fd5b50565b620002b58162000293565b612b5680620002df6000396000f3fe608060405234801561001057600080fd5b50600436106101b95760003560e01c80636fcfff45116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e1461035e578063e7a324dc14610371578063f1127ed814610379578063fca3b5aa1461039a576101b9565b8063b4b5ea5714610325578063c3cda52014610338578063d505accf1461034b576101b9565b8063782d6fe1116100d3578063782d6fe1146102e45780637ecebe00146102f757806395d89b411461030a578063a9059cbb14610312576101b9565b80636fcfff45146102b657806370a08231146102c957806376c71ca1146102dc576101b9565b806330adf81f1161016657806340c10f191161014057806340c10f1914610266578063587cde1e1461027b5780635c11d62f1461028e5780635c19a95c146102a3576101b9565b806330adf81f1461024157806330b36cef14610249578063313ce56714610251576101b9565b806318160ddd1161019757806318160ddd1461021157806320606b701461022657806323b872dd1461022e576101b9565b806306fdde03146101be57806307546172146101dc578063095ea7b3146101f1575b600080fd5b6101c66103ad565b6040516101d391906127f1565b60405180910390f35b6101e46103e6565b6040516101d391906126c4565b6102046101ff366004611df9565b610402565b6040516101d391906126ed565b61021961047a565b6040516101d391906126fb565b610219610480565b61020461023c366004611d10565b610497565b6102196105d2565b6102196105de565b6102596105e4565b6040516101d39190612949565b610279610274366004611df9565b6105e9565b005b6101e4610289366004611cb0565b61084e565b610296610876565b6040516101d3919061292d565b6102796102b1366004611cb0565b61087b565b6102966102c4366004611cb0565b610888565b6102196102d7366004611cb0565b6108a0565b6102596108c8565b6102196102f2366004611df9565b6108cd565b610219610305366004611cb0565b610b8c565b6101c6610b9e565b610204610320366004611df9565b610bd7565b610219610333366004611cb0565b610bed565b610279610346366004611e29565b610c88565b610279610359366004611d5d565b610f0d565b61021961036c366004611cd6565b61122b565b610219611263565b61038c610387366004611eb0565b61126f565b6040516101d392919061293b565b6102796103a8366004611cb0565b6112a0565b6040518060400160405280600681526020017f476f6f446f67000000000000000000000000000000000000000000000000000081525081565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906104689086906126fb565b60405180910390a35060015b92915050565b60005481565b60405161048c906126ae565b604051809103902081565b73ffffffffffffffffffffffffffffffffffffffff83166000818152600360209081526040808320338085529252822054919290919082148015906104fc57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114155b156105b95783810381811115610547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e906128f2565b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff80881660008181526003602090815260408083209488168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105af9085906126fb565b60405180910390a3505b6105c486868661138c565b6001925050505b9392505050565b60405161048c906126a3565b60025481565b601281565b60015473ffffffffffffffffffffffffffffffffffffffff16331461063a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e906128d2565b600254421015610676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90612862565b73ffffffffffffffffffffffffffffffffffffffff82166106c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90612852565b6106ce42603c61158d565b6002556000546106ea906106e39060016115cc565b6064611620565b811115610723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e906128c2565b61072f6000548261158d565b6000819055506107b4600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826040518060400160405280601a81526020017f47443a3a6d696e743a2062616c616e6365206f766572666c6f77000000000000815250611662565b73ffffffffffffffffffffffffffffffffffffffff83166000818152600460205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108109085906126fb565b60405180910390a373ffffffffffffffffffffffffffffffffffffffff80831660009081526005602052604081205461084a9216836116ac565b5050565b60056020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b603c81565b61088533826118bf565b50565b60076020526000908152604090205463ffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b600181565b6000438210610908576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90612902565b73ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604090205463ffffffff1680610943576000915050610474565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860116845290915290205467ffffffffffffffff168310610a105773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9490940163ffffffff16835292905220600101549050610474565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260066020908152604080832083805290915290205467ffffffffffffffff16831015610a5c576000915050610474565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b8163ffffffff168163ffffffff161115610b4857600282820363ffffffff16048103610aac611c6d565b5073ffffffffffffffffffffffffffffffffffffffff8716600090815260066020908152604080832063ffffffff851684528252918290208251808401909352805467ffffffffffffffff1680845260019091015491830191909152871415610b1f576020015194506104749350505050565b805167ffffffffffffffff16871115610b3a57819350610b41565b6001820392505b5050610a82565b5073ffffffffffffffffffffffffffffffffffffffff8516600090815260066020908152604080832063ffffffff9094168352929052206001015491505092915050565b60086020526000908152604090205481565b6040518060400160405280600381526020017f474454000000000000000000000000000000000000000000000000000000000081525081565b6000610be433848461138c565b50600192915050565b73ffffffffffffffffffffffffffffffffffffffff811660009081526007602052604081205463ffffffff1680610c255760006105cb565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff86011684529091529020600101549392505050565b6000604051610c96906126ae565b60408051918290038220828201909152600682527f476f6f446f6700000000000000000000000000000000000000000000000000006020909201919091527fd7fc369d1d773bd1de45db90355a8746be3a9943f281e50f39cd8af1610c359b610cfd611964565b30604051602001610d1194939291906127a1565b6040516020818303038152906040528051906020012090506000604051610d37906126b9565b604051908190038120610d52918a908a908a90602001612763565b60405160208183030381529060405280519060200120905060008282604051602001610d7f929190612672565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610dbc94939291906127d6565b6020604051602081039080840390855afa158015610dde573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116610e56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90612812565b73ffffffffffffffffffffffffffffffffffffffff811660009081526008602052604090208054600181019091558914610ebc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90612802565b87421115610ef6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90612822565b610f00818b6118bf565b505050505b505050505050565b6000604051610f1b906126ae565b60408051918290038220828201909152600682527f476f6f446f6700000000000000000000000000000000000000000000000000006020909201919091527fd7fc369d1d773bd1de45db90355a8746be3a9943f281e50f39cd8af1610c359b610f82611964565b30604051602001610f9694939291906127a1565b6040516020818303038152906040528051906020012090506000604051610fbc906126a3565b6040805191829003822073ffffffffffffffffffffffffffffffffffffffff8c1660009081526008602090815292902080546001810190915561100b9391928d928d928d9290918d9101612709565b60405160208183030381529060405280519060200120905060008282604051602001611038929190612672565b60405160208183030381529060405280519060200120905060006001828888886040516000815260200160405260405161107594939291906127d6565b6020604051602081039080840390855afa158015611097573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811661110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90612842565b8a73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e906128b2565b874211156111ae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e906128e2565b73ffffffffffffffffffffffffffffffffffffffff808c166000818152600360209081526040808320948f1680845294909152908190208c9055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611216908d906126fb565b60405180910390a35050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260036020908152604080832093909416825291909152205490565b60405161048c906126b9565b60066020908152600092835260408084209091529082529020805460019091015467ffffffffffffffff9091169082565b60015473ffffffffffffffffffffffffffffffffffffffff1633146112f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90612872565b6001546040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f69161133d9173ffffffffffffffffffffffffffffffffffffffff9091169084906126d2565b60405180910390a1600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff83166113d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90612892565b73ffffffffffffffffffffffffffffffffffffffff8216611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90612882565b611488600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482604051806060016040528060348152602001612ae060349139611968565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260046020908152604080832094909455918516815282902054825160608101909352602e8084526114e293919285929190612a3590830139611662565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526004602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115419085906126fb565b60405180910390a373ffffffffffffffffffffffffffffffffffffffff808416600090815260056020526040808220548584168352912054611588929182169116836116ac565b505050565b6000828201838110156105cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90612832565b6000826115db57506000610474565b828202828482816115e857fe5b04146105cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e906128a2565b60006105cb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506119ae565b600083830182858210156116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e91906127f1565b50949350505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156116e85750600081115b156115885773ffffffffffffffffffffffffffffffffffffffff8316156117d85773ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604081205463ffffffff16908161174257600061179f565b73ffffffffffffffffffffffffffffffffffffffff8516600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff87011684529091529020600101545b905060006117c68285604051806060016040528060268152602001612aba60269139611968565b90506117d4868484846119ff565b5050505b73ffffffffffffffffffffffffffffffffffffffff8216156115885773ffffffffffffffffffffffffffffffffffffffff821660009081526007602052604081205463ffffffff16908161182d57600061188a565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff87011684529091529020600101545b905060006118b18285604051806060016040528060258152602001612a9560259139611662565b9050610f05858484846119ff565b73ffffffffffffffffffffffffffffffffffffffff808316600081815260056020818152604080842080546004845282862054949093528787167fffffffffffffffffffffffff00000000000000000000000000000000000000008416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461195e8284836116ac565b50505050565b4690565b600081848411156119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e91906127f1565b505050900390565b600081836119e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e91906127f1565b5060008385816119f557fe5b0495945050505050565b6000611a2343604051806060016040528060328152602001612a6360329139611c1f565b905060008463ffffffff16118015611a9f575073ffffffffffffffffffffffffffffffffffffffff851660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff880163ffffffff16845290915290205467ffffffffffffffff8281169116145b15611b075773ffffffffffffffffffffffffffffffffffffffff8516600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff89011684529091529020600101829055611bc8565b60408051808201825267ffffffffffffffff8381168252602080830186815273ffffffffffffffffffffffffffffffffffffffff8a1660008181526006845286812063ffffffff8c81168352908552878220965187547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001696169590951786559151600195860155815260079091529290922080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000169187019092161790555b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611c10929190612912565b60405180910390a25050505050565b600081680100000000000000008410611c65576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e91906127f1565b509192915050565b604080518082019091526000808252602082015290565b803561047481612a05565b803561047481612a19565b803561047481612a22565b803561047481612a2b565b600060208284031215611cc257600080fd5b6000611cce8484611c84565b949350505050565b60008060408385031215611ce957600080fd5b6000611cf58585611c84565b9250506020611d0685828601611c84565b9150509250929050565b600080600060608486031215611d2557600080fd5b6000611d318686611c84565b9350506020611d4286828701611c84565b9250506040611d5386828701611c8f565b9150509250925092565b600080600080600080600060e0888a031215611d7857600080fd5b6000611d848a8a611c84565b9750506020611d958a828b01611c84565b9650506040611da68a828b01611c8f565b9550506060611db78a828b01611c8f565b9450506080611dc88a828b01611ca5565b93505060a0611dd98a828b01611c8f565b92505060c0611dea8a828b01611c8f565b91505092959891949750929550565b60008060408385031215611e0c57600080fd5b6000611e188585611c84565b9250506020611d0685828601611c8f565b60008060008060008060c08789031215611e4257600080fd5b6000611e4e8989611c84565b9650506020611e5f89828a01611c8f565b9550506040611e7089828a01611c8f565b9450506060611e8189828a01611ca5565b9350506080611e9289828a01611c8f565b92505060a0611ea389828a01611c8f565b9150509295509295509295565b60008060408385031215611ec357600080fd5b6000611ecf8585611c84565b9250506020611d0685828601611c9a565b611ee981612969565b82525050565b611ee981612974565b611ee981612979565b611ee9611f0d82612979565b612979565b6000611f1d82612957565b611f27818561295b565b9350611f378185602086016129b1565b611f40816129dd565b9093019392505050565b6000611f5760208361295b565b7f47443a3a64656c656761746542795369673a20696e76616c6964206e6f6e6365815260200192915050565b6000611f9060248361295b565b7f47443a3a64656c656761746542795369673a20696e76616c6964207369676e6181527f7475726500000000000000000000000000000000000000000000000000000000602082015260400192915050565b6000611fef60248361295b565b7f47443a3a64656c656761746542795369673a207369676e61747572652065787081527f6972656400000000000000000000000000000000000000000000000000000000602082015260400192915050565b600061204e600283612964565b7f1901000000000000000000000000000000000000000000000000000000000000815260020192915050565b6000612087601b8361295b565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b60006120c0601d8361295b565b7f47443a3a7065726d69743a20696e76616c6964207369676e6174757265000000815260200192915050565b60006120f9602d8361295b565b7f47443a3a6d696e743a2063616e6e6f74207472616e7366657220746f2074686581527f207a65726f206164647265737300000000000000000000000000000000000000602082015260400192915050565b600061215860218361295b565b7f47443a3a6d696e743a206d696e74696e67206e6f7420616c6c6f77656420796581527f7400000000000000000000000000000000000000000000000000000000000000602082015260400192915050565b60006121b7603c8361295b565b7f47443a3a7365744d696e7465723a206f6e6c7920746865206d696e746572206381527f616e206368616e676520746865206d696e746572206164647265737300000000602082015260400192915050565b6000612216605283612964565b7f5065726d69742861646472657373206f776e65722c616464726573732073706581527f6e6465722c75696e743235362076616c75652c75696e74323536206e6f6e636560208201527f2c75696e7432353620646561646c696e65290000000000000000000000000000604082015260520192915050565b600061229b60388361295b565b7f47443a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e81527f7366657220746f20746865207a65726f20616464726573730000000000000000602082015260400192915050565b60006122fa603a8361295b565b7f47443a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e81527f736665722066726f6d20746865207a65726f2061646472657373000000000000602082015260400192915050565b6000612359604383612964565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201527f6374290000000000000000000000000000000000000000000000000000000000604082015260430192915050565b60006123de60218361295b565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f81527f7700000000000000000000000000000000000000000000000000000000000000602082015260400192915050565b600061243d60188361295b565b7f47443a3a7065726d69743a20756e617574686f72697a65640000000000000000815260200192915050565b6000612476601b8361295b565b7f47443a3a6d696e743a206578636565646564206d696e74206361700000000000815260200192915050565b60006124af60228361295b565b7f47443a3a6d696e743a206f6e6c7920746865206d696e7465722063616e206d6981527f6e74000000000000000000000000000000000000000000000000000000000000602082015260400192915050565b600061250e601d8361295b565b7f47443a3a7065726d69743a207369676e61747572652065787069726564000000815260200192915050565b6000612547603a83612964565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b60006125a6603b8361295b565b7f47443a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e81527f742065786365656473207370656e64657220616c6c6f77616e63650000000000602082015260400192915050565b600061260560258361295b565b7f47443a3a6765745072696f72566f7465733a206e6f742079657420646574657281527f6d696e6564000000000000000000000000000000000000000000000000000000602082015260400192915050565b611ee981612995565b611ee98161299e565b611ee9816129ab565b600061267d82612041565b91506126898285611f01565b6020820191506126998284611f01565b5060200192915050565b600061047482612209565b60006104748261234c565b60006104748261253a565b602081016104748284611ee0565b604081016126e08285611ee0565b6105cb6020830184611ee0565b602081016104748284611eef565b602081016104748284611ef8565b60c081016127178289611ef8565b6127246020830188611ee0565b6127316040830187611ee0565b61273e6060830186611ef8565b61274b6080830185611ef8565b61275860a0830184611ef8565b979650505050505050565b608081016127718287611ef8565b61277e6020830186611ee0565b61278b6040830185611ef8565b6127986060830184611ef8565b95945050505050565b608081016127af8287611ef8565b6127bc6020830186611ef8565b6127c96040830185611ef8565b6127986060830184611ee0565b608081016127e48287611ef8565b61277e6020830186612669565b602080825281016105cb8184611f12565b6020808252810161047481611f4a565b6020808252810161047481611f83565b6020808252810161047481611fe2565b602080825281016104748161207a565b60208082528101610474816120b3565b60208082528101610474816120ec565b602080825281016104748161214b565b60208082528101610474816121aa565b602080825281016104748161228e565b60208082528101610474816122ed565b60208082528101610474816123d1565b6020808252810161047481612430565b6020808252810161047481612469565b60208082528101610474816124a2565b6020808252810161047481612501565b6020808252810161047481612599565b60208082528101610474816125f8565b604081016129208285611ef8565b6105cb6020830184611ef8565b602081016104748284612657565b604081016129208285612660565b602081016104748284612669565b5190565b90815260200190565b919050565b60006104748261297c565b151590565b90565b73ffffffffffffffffffffffffffffffffffffffff1690565b63ffffffff1690565b67ffffffffffffffff1690565b60ff1690565b60005b838110156129cc5781810151838201526020016129b4565b8381111561195e5750506000910152565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01690565b612a0e81612969565b811461088557600080fd5b612a0e81612979565b612a0e81612995565b612a0e816129ab56fe47443a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f777347443a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203634206269747347443a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f777347443a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777347443a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a365627a7a72315820567da01d52cde65e0e968e3c7ccc428855b09051d4565a5525547ee62823b72b6c6578706572696d656e74616cf564736f6c63430005100040000000000000000000000000efd3183eb81f52bbd5c41dfb60c09028bc999ce8000000000000000000000000efd3183eb81f52bbd5c41dfb60c09028bc999ce800000000000000000000000000000000000000000000000000000000677140fb
Deployed ByteCode
0x608060405234801561001057600080fd5b50600436106101b95760003560e01c80636fcfff45116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e1461035e578063e7a324dc14610371578063f1127ed814610379578063fca3b5aa1461039a576101b9565b8063b4b5ea5714610325578063c3cda52014610338578063d505accf1461034b576101b9565b8063782d6fe1116100d3578063782d6fe1146102e45780637ecebe00146102f757806395d89b411461030a578063a9059cbb14610312576101b9565b80636fcfff45146102b657806370a08231146102c957806376c71ca1146102dc576101b9565b806330adf81f1161016657806340c10f191161014057806340c10f1914610266578063587cde1e1461027b5780635c11d62f1461028e5780635c19a95c146102a3576101b9565b806330adf81f1461024157806330b36cef14610249578063313ce56714610251576101b9565b806318160ddd1161019757806318160ddd1461021157806320606b701461022657806323b872dd1461022e576101b9565b806306fdde03146101be57806307546172146101dc578063095ea7b3146101f1575b600080fd5b6101c66103ad565b6040516101d391906127f1565b60405180910390f35b6101e46103e6565b6040516101d391906126c4565b6102046101ff366004611df9565b610402565b6040516101d391906126ed565b61021961047a565b6040516101d391906126fb565b610219610480565b61020461023c366004611d10565b610497565b6102196105d2565b6102196105de565b6102596105e4565b6040516101d39190612949565b610279610274366004611df9565b6105e9565b005b6101e4610289366004611cb0565b61084e565b610296610876565b6040516101d3919061292d565b6102796102b1366004611cb0565b61087b565b6102966102c4366004611cb0565b610888565b6102196102d7366004611cb0565b6108a0565b6102596108c8565b6102196102f2366004611df9565b6108cd565b610219610305366004611cb0565b610b8c565b6101c6610b9e565b610204610320366004611df9565b610bd7565b610219610333366004611cb0565b610bed565b610279610346366004611e29565b610c88565b610279610359366004611d5d565b610f0d565b61021961036c366004611cd6565b61122b565b610219611263565b61038c610387366004611eb0565b61126f565b6040516101d392919061293b565b6102796103a8366004611cb0565b6112a0565b6040518060400160405280600681526020017f476f6f446f67000000000000000000000000000000000000000000000000000081525081565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906104689086906126fb565b60405180910390a35060015b92915050565b60005481565b60405161048c906126ae565b604051809103902081565b73ffffffffffffffffffffffffffffffffffffffff83166000818152600360209081526040808320338085529252822054919290919082148015906104fc57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114155b156105b95783810381811115610547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e906128f2565b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff80881660008181526003602090815260408083209488168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105af9085906126fb565b60405180910390a3505b6105c486868661138c565b6001925050505b9392505050565b60405161048c906126a3565b60025481565b601281565b60015473ffffffffffffffffffffffffffffffffffffffff16331461063a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e906128d2565b600254421015610676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90612862565b73ffffffffffffffffffffffffffffffffffffffff82166106c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90612852565b6106ce42603c61158d565b6002556000546106ea906106e39060016115cc565b6064611620565b811115610723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e906128c2565b61072f6000548261158d565b6000819055506107b4600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826040518060400160405280601a81526020017f47443a3a6d696e743a2062616c616e6365206f766572666c6f77000000000000815250611662565b73ffffffffffffffffffffffffffffffffffffffff83166000818152600460205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108109085906126fb565b60405180910390a373ffffffffffffffffffffffffffffffffffffffff80831660009081526005602052604081205461084a9216836116ac565b5050565b60056020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b603c81565b61088533826118bf565b50565b60076020526000908152604090205463ffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b600181565b6000438210610908576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90612902565b73ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604090205463ffffffff1680610943576000915050610474565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860116845290915290205467ffffffffffffffff168310610a105773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9490940163ffffffff16835292905220600101549050610474565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260066020908152604080832083805290915290205467ffffffffffffffff16831015610a5c576000915050610474565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b8163ffffffff168163ffffffff161115610b4857600282820363ffffffff16048103610aac611c6d565b5073ffffffffffffffffffffffffffffffffffffffff8716600090815260066020908152604080832063ffffffff851684528252918290208251808401909352805467ffffffffffffffff1680845260019091015491830191909152871415610b1f576020015194506104749350505050565b805167ffffffffffffffff16871115610b3a57819350610b41565b6001820392505b5050610a82565b5073ffffffffffffffffffffffffffffffffffffffff8516600090815260066020908152604080832063ffffffff9094168352929052206001015491505092915050565b60086020526000908152604090205481565b6040518060400160405280600381526020017f474454000000000000000000000000000000000000000000000000000000000081525081565b6000610be433848461138c565b50600192915050565b73ffffffffffffffffffffffffffffffffffffffff811660009081526007602052604081205463ffffffff1680610c255760006105cb565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff86011684529091529020600101549392505050565b6000604051610c96906126ae565b60408051918290038220828201909152600682527f476f6f446f6700000000000000000000000000000000000000000000000000006020909201919091527fd7fc369d1d773bd1de45db90355a8746be3a9943f281e50f39cd8af1610c359b610cfd611964565b30604051602001610d1194939291906127a1565b6040516020818303038152906040528051906020012090506000604051610d37906126b9565b604051908190038120610d52918a908a908a90602001612763565b60405160208183030381529060405280519060200120905060008282604051602001610d7f929190612672565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610dbc94939291906127d6565b6020604051602081039080840390855afa158015610dde573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116610e56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90612812565b73ffffffffffffffffffffffffffffffffffffffff811660009081526008602052604090208054600181019091558914610ebc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90612802565b87421115610ef6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90612822565b610f00818b6118bf565b505050505b505050505050565b6000604051610f1b906126ae565b60408051918290038220828201909152600682527f476f6f446f6700000000000000000000000000000000000000000000000000006020909201919091527fd7fc369d1d773bd1de45db90355a8746be3a9943f281e50f39cd8af1610c359b610f82611964565b30604051602001610f9694939291906127a1565b6040516020818303038152906040528051906020012090506000604051610fbc906126a3565b6040805191829003822073ffffffffffffffffffffffffffffffffffffffff8c1660009081526008602090815292902080546001810190915561100b9391928d928d928d9290918d9101612709565b60405160208183030381529060405280519060200120905060008282604051602001611038929190612672565b60405160208183030381529060405280519060200120905060006001828888886040516000815260200160405260405161107594939291906127d6565b6020604051602081039080840390855afa158015611097573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811661110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90612842565b8a73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e906128b2565b874211156111ae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e906128e2565b73ffffffffffffffffffffffffffffffffffffffff808c166000818152600360209081526040808320948f1680845294909152908190208c9055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611216908d906126fb565b60405180910390a35050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260036020908152604080832093909416825291909152205490565b60405161048c906126b9565b60066020908152600092835260408084209091529082529020805460019091015467ffffffffffffffff9091169082565b60015473ffffffffffffffffffffffffffffffffffffffff1633146112f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90612872565b6001546040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f69161133d9173ffffffffffffffffffffffffffffffffffffffff9091169084906126d2565b60405180910390a1600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff83166113d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90612892565b73ffffffffffffffffffffffffffffffffffffffff8216611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90612882565b611488600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482604051806060016040528060348152602001612ae060349139611968565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260046020908152604080832094909455918516815282902054825160608101909352602e8084526114e293919285929190612a3590830139611662565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526004602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115419085906126fb565b60405180910390a373ffffffffffffffffffffffffffffffffffffffff808416600090815260056020526040808220548584168352912054611588929182169116836116ac565b505050565b6000828201838110156105cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90612832565b6000826115db57506000610474565b828202828482816115e857fe5b04146105cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e906128a2565b60006105cb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506119ae565b600083830182858210156116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e91906127f1565b50949350505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156116e85750600081115b156115885773ffffffffffffffffffffffffffffffffffffffff8316156117d85773ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604081205463ffffffff16908161174257600061179f565b73ffffffffffffffffffffffffffffffffffffffff8516600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff87011684529091529020600101545b905060006117c68285604051806060016040528060268152602001612aba60269139611968565b90506117d4868484846119ff565b5050505b73ffffffffffffffffffffffffffffffffffffffff8216156115885773ffffffffffffffffffffffffffffffffffffffff821660009081526007602052604081205463ffffffff16908161182d57600061188a565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff87011684529091529020600101545b905060006118b18285604051806060016040528060258152602001612a9560259139611662565b9050610f05858484846119ff565b73ffffffffffffffffffffffffffffffffffffffff808316600081815260056020818152604080842080546004845282862054949093528787167fffffffffffffffffffffffff00000000000000000000000000000000000000008416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461195e8284836116ac565b50505050565b4690565b600081848411156119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e91906127f1565b505050900390565b600081836119e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e91906127f1565b5060008385816119f557fe5b0495945050505050565b6000611a2343604051806060016040528060328152602001612a6360329139611c1f565b905060008463ffffffff16118015611a9f575073ffffffffffffffffffffffffffffffffffffffff851660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff880163ffffffff16845290915290205467ffffffffffffffff8281169116145b15611b075773ffffffffffffffffffffffffffffffffffffffff8516600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff89011684529091529020600101829055611bc8565b60408051808201825267ffffffffffffffff8381168252602080830186815273ffffffffffffffffffffffffffffffffffffffff8a1660008181526006845286812063ffffffff8c81168352908552878220965187547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001696169590951786559151600195860155815260079091529290922080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000169187019092161790555b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611c10929190612912565b60405180910390a25050505050565b600081680100000000000000008410611c65576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e91906127f1565b509192915050565b604080518082019091526000808252602082015290565b803561047481612a05565b803561047481612a19565b803561047481612a22565b803561047481612a2b565b600060208284031215611cc257600080fd5b6000611cce8484611c84565b949350505050565b60008060408385031215611ce957600080fd5b6000611cf58585611c84565b9250506020611d0685828601611c84565b9150509250929050565b600080600060608486031215611d2557600080fd5b6000611d318686611c84565b9350506020611d4286828701611c84565b9250506040611d5386828701611c8f565b9150509250925092565b600080600080600080600060e0888a031215611d7857600080fd5b6000611d848a8a611c84565b9750506020611d958a828b01611c84565b9650506040611da68a828b01611c8f565b9550506060611db78a828b01611c8f565b9450506080611dc88a828b01611ca5565b93505060a0611dd98a828b01611c8f565b92505060c0611dea8a828b01611c8f565b91505092959891949750929550565b60008060408385031215611e0c57600080fd5b6000611e188585611c84565b9250506020611d0685828601611c8f565b60008060008060008060c08789031215611e4257600080fd5b6000611e4e8989611c84565b9650506020611e5f89828a01611c8f565b9550506040611e7089828a01611c8f565b9450506060611e8189828a01611ca5565b9350506080611e9289828a01611c8f565b92505060a0611ea389828a01611c8f565b9150509295509295509295565b60008060408385031215611ec357600080fd5b6000611ecf8585611c84565b9250506020611d0685828601611c9a565b611ee981612969565b82525050565b611ee981612974565b611ee981612979565b611ee9611f0d82612979565b612979565b6000611f1d82612957565b611f27818561295b565b9350611f378185602086016129b1565b611f40816129dd565b9093019392505050565b6000611f5760208361295b565b7f47443a3a64656c656761746542795369673a20696e76616c6964206e6f6e6365815260200192915050565b6000611f9060248361295b565b7f47443a3a64656c656761746542795369673a20696e76616c6964207369676e6181527f7475726500000000000000000000000000000000000000000000000000000000602082015260400192915050565b6000611fef60248361295b565b7f47443a3a64656c656761746542795369673a207369676e61747572652065787081527f6972656400000000000000000000000000000000000000000000000000000000602082015260400192915050565b600061204e600283612964565b7f1901000000000000000000000000000000000000000000000000000000000000815260020192915050565b6000612087601b8361295b565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b60006120c0601d8361295b565b7f47443a3a7065726d69743a20696e76616c6964207369676e6174757265000000815260200192915050565b60006120f9602d8361295b565b7f47443a3a6d696e743a2063616e6e6f74207472616e7366657220746f2074686581527f207a65726f206164647265737300000000000000000000000000000000000000602082015260400192915050565b600061215860218361295b565b7f47443a3a6d696e743a206d696e74696e67206e6f7420616c6c6f77656420796581527f7400000000000000000000000000000000000000000000000000000000000000602082015260400192915050565b60006121b7603c8361295b565b7f47443a3a7365744d696e7465723a206f6e6c7920746865206d696e746572206381527f616e206368616e676520746865206d696e746572206164647265737300000000602082015260400192915050565b6000612216605283612964565b7f5065726d69742861646472657373206f776e65722c616464726573732073706581527f6e6465722c75696e743235362076616c75652c75696e74323536206e6f6e636560208201527f2c75696e7432353620646561646c696e65290000000000000000000000000000604082015260520192915050565b600061229b60388361295b565b7f47443a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e81527f7366657220746f20746865207a65726f20616464726573730000000000000000602082015260400192915050565b60006122fa603a8361295b565b7f47443a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e81527f736665722066726f6d20746865207a65726f2061646472657373000000000000602082015260400192915050565b6000612359604383612964565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201527f6374290000000000000000000000000000000000000000000000000000000000604082015260430192915050565b60006123de60218361295b565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f81527f7700000000000000000000000000000000000000000000000000000000000000602082015260400192915050565b600061243d60188361295b565b7f47443a3a7065726d69743a20756e617574686f72697a65640000000000000000815260200192915050565b6000612476601b8361295b565b7f47443a3a6d696e743a206578636565646564206d696e74206361700000000000815260200192915050565b60006124af60228361295b565b7f47443a3a6d696e743a206f6e6c7920746865206d696e7465722063616e206d6981527f6e74000000000000000000000000000000000000000000000000000000000000602082015260400192915050565b600061250e601d8361295b565b7f47443a3a7065726d69743a207369676e61747572652065787069726564000000815260200192915050565b6000612547603a83612964565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b60006125a6603b8361295b565b7f47443a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e81527f742065786365656473207370656e64657220616c6c6f77616e63650000000000602082015260400192915050565b600061260560258361295b565b7f47443a3a6765745072696f72566f7465733a206e6f742079657420646574657281527f6d696e6564000000000000000000000000000000000000000000000000000000602082015260400192915050565b611ee981612995565b611ee98161299e565b611ee9816129ab565b600061267d82612041565b91506126898285611f01565b6020820191506126998284611f01565b5060200192915050565b600061047482612209565b60006104748261234c565b60006104748261253a565b602081016104748284611ee0565b604081016126e08285611ee0565b6105cb6020830184611ee0565b602081016104748284611eef565b602081016104748284611ef8565b60c081016127178289611ef8565b6127246020830188611ee0565b6127316040830187611ee0565b61273e6060830186611ef8565b61274b6080830185611ef8565b61275860a0830184611ef8565b979650505050505050565b608081016127718287611ef8565b61277e6020830186611ee0565b61278b6040830185611ef8565b6127986060830184611ef8565b95945050505050565b608081016127af8287611ef8565b6127bc6020830186611ef8565b6127c96040830185611ef8565b6127986060830184611ee0565b608081016127e48287611ef8565b61277e6020830186612669565b602080825281016105cb8184611f12565b6020808252810161047481611f4a565b6020808252810161047481611f83565b6020808252810161047481611fe2565b602080825281016104748161207a565b60208082528101610474816120b3565b60208082528101610474816120ec565b602080825281016104748161214b565b60208082528101610474816121aa565b602080825281016104748161228e565b60208082528101610474816122ed565b60208082528101610474816123d1565b6020808252810161047481612430565b6020808252810161047481612469565b60208082528101610474816124a2565b6020808252810161047481612501565b6020808252810161047481612599565b60208082528101610474816125f8565b604081016129208285611ef8565b6105cb6020830184611ef8565b602081016104748284612657565b604081016129208285612660565b602081016104748284612669565b5190565b90815260200190565b919050565b60006104748261297c565b151590565b90565b73ffffffffffffffffffffffffffffffffffffffff1690565b63ffffffff1690565b67ffffffffffffffff1690565b60ff1690565b60005b838110156129cc5781810151838201526020016129b4565b8381111561195e5750506000910152565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01690565b612a0e81612969565b811461088557600080fd5b612a0e81612979565b612a0e81612995565b612a0e816129ab56fe47443a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f777347443a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203634206269747347443a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f777347443a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777347443a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a365627a7a72315820567da01d52cde65e0e968e3c7ccc428855b09051d4565a5525547ee62823b72b6c6578706572696d656e74616cf564736f6c63430005100040